diff --git a/.clang-format b/.clang-format index 6ef53c0ba..2dd10f73e 100644 --- a/.clang-format +++ b/.clang-format @@ -1,7 +1,7 @@ --- # Language Language: Cpp -Standard: Cpp11 # Cpp14 and Cpp17 are not supported by clang 11 +Standard: c++20 # Indentation TabWidth: 4 diff --git a/.clang-tidy b/.clang-tidy index 5de9376e5..9c69f4c3c 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -20,7 +20,6 @@ Checks: > readability-simplify-boolean-expr WarningsAsErrors: '' HeaderFilterRegex: '' # don't show errors from headers -AnalyzeTemporaryDtors: false FormatStyle: none User: user CheckOptions: diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2c2e8dd73..9c812fd9b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,15 +5,15 @@ concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: - linux: - name: linux - runs-on: ubuntu-latest - container: ghcr.io/lmms/linux.gcc:20.04 + linux-x86_64: + name: linux-x86_64 + runs-on: ubuntu-22.04 env: CMAKE_OPTS: >- -DUSE_WERROR=ON -DCMAKE_BUILD_TYPE=RelWithDebInfo -DUSE_COMPILE_CACHE=ON + -DWANT_DEBUG_CPACK=ON CCACHE_MAXSIZE: 0 CCACHE_NOCOMPRESS: 1 MAKEFLAGS: -j2 @@ -25,6 +25,29 @@ jobs: with: fetch-depth: 0 submodules: recursive + - name: Clone fltk + uses: actions/checkout@v4 + with: + repository: fltk/fltk + path: fltk + ref: 27d991f046bdebb12bfd58f7c05a19f135979c29 + fetch-depth: 1 + - name: Configure winehq + run: | + sudo dpkg --add-architecture i386 + sudo mkdir -pm755 /etc/apt/keyrings + wget -O - https://dl.winehq.org/wine-builds/winehq.key | \ + sudo gpg --dearmor -o /etc/apt/keyrings/winehq-archive.key - + sudo wget -NP /etc/apt/sources.list.d/ \ + https://dl.winehq.org/wine-builds/ubuntu/dists/$(lsb_release -cs)/winehq-$(lsb_release -cs).sources + - name: Install packages + run: | + sudo apt-get update -y + sudo apt-get install -y --no-install-recommends \ + $(xargs < .github/workflows/deps-ubuntu-24.04-gcc.txt) + sudo apt-get install -y --install-recommends g++-multilib gcc-multilib winehq-stable wine-stable-dev + sudo apt-get install -y --install-recommends \ + $(xargs < .github/workflows/deps-ubuntu-24.04-fltk.txt) - name: Cache ccache data uses: actions/cache@v3 with: @@ -33,13 +56,20 @@ jobs: ccache-${{ github.job }}-${{ github.ref }}- ccache-${{ github.job }}- path: ~/.ccache + - name: Configure fltk + run: | + cmake -S fltk -B fltk/build -DFLTK_BUILD_SHARED_LIBS=ON -DFLTK_BACKEND_WAYLAND=ON \ + -DFLTK_USE_LIBDECOR_GTK=OFF -DFLTK_BUILD_TEST=OFF -DFLTK_BUILD_GL=OFF + - name: Install fltk + run: | + cmake --build fltk/build + sudo cmake --install fltk/build --prefix /usr - name: Configure run: | ccache --zero-stats source /opt/qt5*/bin/qt5*-env.sh || true cmake -S . \ -B build \ - -DCMAKE_INSTALL_PREFIX=./install \ $CMAKE_OPTS - name: Build run: cmake --build build @@ -49,8 +79,7 @@ jobs: ctest --output-on-failure -j2 - name: Package run: | - cmake --build build --target install - cmake --build build --target appimage + cmake --build build --target package - name: Upload artifacts uses: actions/upload-artifact@v4 with: @@ -65,6 +94,86 @@ jobs: ccache --show-stats env: CCACHE_MAXSIZE: 500M + linux-arm64: + name: linux-arm64 + runs-on: ubuntu-24.04-arm + env: + CMAKE_OPTS: >- + -DUSE_WERROR=ON + -DCMAKE_BUILD_TYPE=RelWithDebInfo + -DUSE_COMPILE_CACHE=ON + -DWANT_DEBUG_CPACK=ON + CCACHE_MAXSIZE: 0 + CCACHE_NOCOMPRESS: 1 + MAKEFLAGS: -j2 + DEBIAN_FRONTEND: noninteractive + steps: + - name: Configure git + run: git config --global --add safe.directory "$GITHUB_WORKSPACE" + - name: Check out + uses: actions/checkout@v3 + with: + fetch-depth: 0 + submodules: recursive + - name: Clone fltk + uses: actions/checkout@v4 + with: + repository: fltk/fltk + path: fltk + ref: 27d991f046bdebb12bfd58f7c05a19f135979c29 + fetch-depth: 1 + - name: Install system packages + run: | + sudo apt-get update -y + sudo apt-get install -y --no-install-recommends \ + $(xargs < .github/workflows/deps-ubuntu-24.04-gcc.txt) + sudo apt-get install -y --install-recommends \ + $(xargs < .github/workflows/deps-ubuntu-24.04-fltk.txt) + - name: Cache ccache data + uses: actions/cache@v3 + with: + key: ccache-${{ github.job }}-${{ github.ref }}-${{ github.run_id }} + restore-keys: | + ccache-${{ github.job }}-${{ github.ref }}- + ccache-${{ github.job }}- + path: ~/.ccache + - name: Configure fltk + run: | + cmake -S fltk -B fltk/build -DFLTK_BUILD_SHARED_LIBS=ON -DFLTK_BACKEND_WAYLAND=ON \ + -DFLTK_USE_LIBDECOR_GTK=OFF -DFLTK_BUILD_TEST=OFF -DFLTK_BUILD_GL=OFF + - name: Install fltk + run: | + cmake --build fltk/build + sudo cmake --install fltk/build --prefix /usr + - name: Configure + run: | + ccache --zero-stats + cmake -S . \ + -B build \ + $CMAKE_OPTS + - name: Build + run: cmake --build build + - name: Run tests + run: | + cd build/tests + ctest --output-on-failure -j2 + - name: Package + run: | + cmake --build build --target package + - name: Upload artifacts + uses: actions/upload-artifact@v4 + with: + name: linux-arm64 + path: build/lmms-*.AppImage + - name: Trim ccache and print statistics + run: | + ccache --cleanup + echo "[ccache config]" + ccache --show-config + echo "[ccache stats]" + ccache --show-stats + env: + CCACHE_MAXSIZE: 500M macos: strategy: fail-fast: false @@ -72,11 +181,11 @@ jobs: arch: [ x86_64, arm64 ] include: - arch: x86_64 - os: macos-12 - xcode: "13.1" + os: macos-13 + xcode: "15.2" - arch: arm64 os: macos-14 - xcode: "14.3.1" + xcode: "15.4" name: macos-${{ matrix.arch }} runs-on: ${{ matrix.os }} env: @@ -129,8 +238,6 @@ jobs: mkdir build cmake -S . \ -B build \ - -DCMAKE_INSTALL_PREFIX="../target" \ - -DCMAKE_PREFIX_PATH="$(brew --prefix qt@5)" \ -DCMAKE_OSX_ARCHITECTURES=${{ matrix.arch }} \ $CMAKE_OPTS \ -DUSE_WERROR=OFF @@ -142,8 +249,7 @@ jobs: ctest --output-on-failure -j3 - name: Package run: | - cmake --build build --target install - cmake --build build --target dmg + cmake --build build --target package - name: Upload artifacts uses: actions/upload-artifact@v4 with: @@ -168,13 +274,8 @@ jobs: key: "homebrew-${{ matrix.arch }}\ -${{ hashFiles('Brewfile.lock.json') }}" mingw: - strategy: - fail-fast: false - matrix: - arch: ['32', '64'] - name: mingw${{ matrix.arch }} + name: mingw64 runs-on: ubuntu-latest - container: ghcr.io/lmms/linux.mingw:20.04 env: CMAKE_OPTS: >- -Werror=dev @@ -185,12 +286,12 @@ jobs: CCACHE_NOCOMPRESS: 1 MAKEFLAGS: -j2 steps: - - name: Enable POSIX MinGW + - name: Configure apt run: | - update-alternatives --set i686-w64-mingw32-gcc /usr/bin/i686-w64-mingw32-gcc-posix - update-alternatives --set i686-w64-mingw32-g++ /usr/bin/i686-w64-mingw32-g++-posix - update-alternatives --set x86_64-w64-mingw32-gcc /usr/bin/x86_64-w64-mingw32-gcc-posix - update-alternatives --set x86_64-w64-mingw32-g++ /usr/bin/x86_64-w64-mingw32-g++-posix + sudo sh -c 'echo "deb http://ppa.launchpad.net/tobydox/mingw-w64/ubuntu focal main" > \ + /etc/apt/sources.list.d/tobydox-mingw-w64.list' + sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 72931B477E22FEFD47F8DECE02FE5F12ADDE29B2 + sudo apt-get update -y - name: Configure git run: git config --global --add safe.directory "$GITHUB_WORKSPACE" - name: Check out @@ -201,19 +302,22 @@ jobs: - name: Cache ccache data uses: actions/cache@v3 with: - key: "ccache-${{ github.job }}-${{ matrix.arch }}-${{ github.ref }}\ + key: "ccache-${{ github.job }}-64-${{ github.ref }}\ -${{ github.run_id }}" restore-keys: | - ccache-${{ github.job }}-${{ matrix.arch }}-${{ github.ref }}- - ccache-${{ github.job }}-${{ matrix.arch }}- + ccache-${{ github.job }}-64-${{ github.ref }}- + ccache-${{ github.job }}-64- path: ~/.ccache + - name: Install dependencies + run: | + sudo apt-get install -y --no-install-recommends \ + $(xargs < .github/workflows/deps-ubuntu-24.04-mingw.txt) - name: Configure run: | ccache --zero-stats cmake -S . \ -B build \ - -DCMAKE_INSTALL_PREFIX=./install \ - -DCMAKE_TOOLCHAIN_FILE="./cmake/toolchains/MinGW-W64-${{ matrix.arch }}.cmake" \ + -DCMAKE_TOOLCHAIN_FILE="./cmake/toolchains/MinGW-W64-64.cmake" \ $CMAKE_OPTS - name: Build run: cmake --build build @@ -222,7 +326,7 @@ jobs: - name: Upload artifacts uses: actions/upload-artifact@v4 with: - name: mingw${{ matrix.arch }} + name: mingw64 path: build/lmms-*.exe - name: Trim ccache and print statistics run: | @@ -234,11 +338,7 @@ jobs: env: CCACHE_MAXSIZE: 500M msvc: - strategy: - fail-fast: false - matrix: - arch: ['x86', 'x64'] - name: msvc-${{ matrix.arch }} + name: msvc-x64 runs-on: windows-2019 env: CCACHE_MAXSIZE: 0 @@ -253,19 +353,19 @@ jobs: id: cache-deps uses: actions/cache@v3 with: - key: vcpkg-${{ matrix.arch }}-${{ hashFiles('vcpkg.json') }} + key: vcpkg-msvc-x86_64-${{ hashFiles('vcpkg.json') }} restore-keys: | - vcpkg-${{ matrix.arch }}- + vcpkg-msvc-x86_64- path: build\vcpkg_installed - name: Cache ccache data uses: actions/cache@v3 with: # yamllint disable rule:line-length - key: "ccache-${{ github.job }}-${{ matrix.arch }}-${{ github.ref }}\ + key: "ccache-${{ github.job }}-x64-${{ github.ref }}\ -${{ github.run_id }}" restore-keys: | - ccache-${{ github.job }}-${{ matrix.arch }}-${{ github.ref }}- - ccache-${{ github.job }}-${{ matrix.arch }}- + ccache-${{ github.job }}-x64-${{ github.ref }}- + ccache-${{ github.job }}-x64- path: ~\AppData\Local\ccache # yamllint enable rule:line-length - name: Install tools @@ -274,21 +374,13 @@ jobs: uses: jurplel/install-qt-action@b3ea5275e37b734d027040e2c7fe7a10ea2ef946 with: version: '5.15.2' - arch: |- - ${{ - fromJSON(' - { - "x86": "win32_msvc2019", - "x64": "win64_msvc2019_64" - } - ')[matrix.arch] - }} + arch: "win64_msvc2019_64" archives: qtbase qtsvg qttools cache: true - name: Set up build environment uses: ilammy/msvc-dev-cmd@cec98b9d092141f74527d0afa6feb2af698cfe89 with: - arch: ${{ matrix.arch }} + arch: x64 - name: Configure run: | ccache --zero-stats @@ -301,8 +393,8 @@ jobs: -DCMAKE_BUILD_TYPE=RelWithDebInfo ` -DUSE_COMPILE_CACHE=ON ` -DUSE_WERROR=ON ` - -DVCPKG_TARGET_TRIPLET="${{ matrix.arch }}-windows" ` - -DVCPKG_HOST_TRIPLET="${{ matrix.arch }}-windows" ` + -DVCPKG_TARGET_TRIPLET="x64-windows" ` + -DVCPKG_HOST_TRIPLET="x64-windows" ` -DVCPKG_MANIFEST_INSTALL="${{ env.should_install_manifest }}" env: should_install_manifest: @@ -318,7 +410,7 @@ jobs: - name: Upload artifacts uses: actions/upload-artifact@v4 with: - name: msvc-${{ matrix.arch }} + name: msvc-x64 path: build\lmms-*.exe - name: Trim ccache and print statistics run: | diff --git a/.github/workflows/deps-ubuntu-24.04-fltk.txt b/.github/workflows/deps-ubuntu-24.04-fltk.txt new file mode 100644 index 000000000..05a127b94 --- /dev/null +++ b/.github/workflows/deps-ubuntu-24.04-fltk.txt @@ -0,0 +1,3 @@ +libcairo2-dev +libpango1.0-dev +wayland-protocols diff --git a/.github/workflows/deps-ubuntu-24.04-gcc.txt b/.github/workflows/deps-ubuntu-24.04-gcc.txt new file mode 100644 index 000000000..ce5fb7560 --- /dev/null +++ b/.github/workflows/deps-ubuntu-24.04-gcc.txt @@ -0,0 +1,52 @@ +binutils +ca-certificates +ccache +cmake +file +fluid +gcc +git +gpg +g++ +libasound2-dev +libc6-dev +libfftw3-dev +libfluidsynth-dev +libgig-dev +libgtk2.0-0 +libjack-jackd2-dev +liblilv-dev +liblist-moreutils-perl +libmp3lame-dev +libogg-dev +libqt5svg5-dev +libqt5x11extras5-dev +libsamplerate0-dev +libsdl2-dev +libsndfile1-dev +libsoundio-dev +libstk-dev +libsuil-dev +libvorbis-dev +libx11-xcb-dev +libxcb-keysyms1-dev +libxcb-util0-dev +libxft-dev +libxinerama-dev +libxml2-utils +libxml-perl +lsb-release +lv2-dev +make +perl +portaudio19-dev +qt5-qmake +qtbase5-dev +qtbase5-dev-tools +qtbase5-private-dev +qttools5-dev-tools +qtwayland5 +software-properties-common +ssh-client +stk +wget diff --git a/.github/workflows/deps-ubuntu-24.04-mingw.txt b/.github/workflows/deps-ubuntu-24.04-mingw.txt new file mode 100644 index 000000000..765a6712d --- /dev/null +++ b/.github/workflows/deps-ubuntu-24.04-mingw.txt @@ -0,0 +1,32 @@ +binutils-mingw-w64 +ccache +cmake +fftw-mingw-w64 +file +flac-mingw-w64 +fltk-mingw-w64 +fluidsynth-mingw-w64 +g++-mingw-w64-i686 +g++-mingw-w64-x86-64 +gcc-mingw-w64 +gcc-mingw-w64-i686 +gcc-mingw-w64-x86-64 +git +glib2-mingw-w64 +lame-mingw-w64 +libgig-mingw-w64 +liblist-moreutils-perl +libsamplerate-mingw-w64 +libsndfile-mingw-w64 +libsoundio-mingw-w64 +libvorbis-mingw-w64 +libxml-parser-perl +libz-mingw-w64-dev +mingw-w64-tools +nsis +portaudio-mingw-w64 +qt5base-mingw-w64 +qt5svg-mingw-w64 +qttools5-dev-tools +sdl2-mingw-w64 +stk-mingw-w64 \ No newline at end of file diff --git a/.gitmodules b/.gitmodules index 58c4d8526..87d9a04f1 100644 --- a/.gitmodules +++ b/.gitmodules @@ -16,6 +16,7 @@ [submodule "plugins/Xpressive/exprtk"] path = plugins/Xpressive/exprtk url = https://github.com/ArashPartow/exprtk + branch = release [submodule "plugins/LadspaEffect/swh/ladspa"] path = plugins/LadspaEffect/swh/ladspa url = https://github.com/swh/ladspa diff --git a/.tx/config b/.tx/config index ab92433c5..f75700e97 100644 --- a/.tx/config +++ b/.tx/config @@ -3,9 +3,8 @@ host = https://www.transifex.com minimum_perc = 51 #Need to finish at least 51% before merging back -[lmms.lmms] +[o:lmms:p:lmms:r:lmms] file_filter = data/locale/.ts source_file = data/locale/en.ts source_lang = en -type = QT - +type = QT diff --git a/Brewfile b/Brewfile index 1bfbd7b01..05f894209 100644 --- a/Brewfile +++ b/Brewfile @@ -13,7 +13,7 @@ brew "libsoundio" brew "libvorbis" brew "lilv" brew "lv2" -brew "pkg-config" +brew "pkgconf" brew "portaudio" brew "qt@5" brew "sdl2" diff --git a/CMakeLists.txt b/CMakeLists.txt index 5bb4adc4a..3c01bebf0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -46,7 +46,7 @@ include(StaticDependencies) STRING(TOUPPER "${CMAKE_PROJECT_NAME}" PROJECT_NAME_UCASE) -SET(PROJECT_YEAR 2024) +SET(PROJECT_YEAR 2025) SET(PROJECT_AUTHOR "LMMS Developers") SET(PROJECT_URL "https://lmms.io") @@ -102,7 +102,10 @@ option(WANT_DEBUG_ASAN "Enable AddressSanitizer" OFF) option(WANT_DEBUG_TSAN "Enable ThreadSanitizer" OFF) option(WANT_DEBUG_MSAN "Enable MemorySanitizer" OFF) option(WANT_DEBUG_UBSAN "Enable UndefinedBehaviorSanitizer" OFF) +option(WANT_DEBUG_GPROF "Enable gprof profiler" OFF) OPTION(BUNDLE_QT_TRANSLATIONS "Install Qt translation files for LMMS" OFF) +option(WANT_DEBUG_CPACK "Show detailed logs for packaging commands" OFF) +option(WANT_CPACK_TARBALL "Request CPack to create a tarball instead of an installer" OFF) IF(LMMS_BUILD_APPLE) @@ -170,7 +173,7 @@ check_library_exists(rt shm_open "" LMMS_HAVE_LIBRT) LIST(APPEND CMAKE_PREFIX_PATH "${CMAKE_INSTALL_PREFIX}") -FIND_PACKAGE(Qt5 5.9.0 COMPONENTS Core Gui Widgets Xml REQUIRED) +FIND_PACKAGE(Qt5 5.9.0 COMPONENTS Core Gui Widgets Xml Svg REQUIRED) FIND_PACKAGE(Qt5 COMPONENTS LinguistTools QUIET) include_directories(SYSTEM @@ -185,6 +188,7 @@ SET(QT_LIBRARIES Qt5::Gui Qt5::Widgets Qt5::Xml + Qt5::Svg ) IF(LMMS_BUILD_LINUX AND WANT_VST) @@ -236,29 +240,28 @@ if(LMMS_BUILD_APPLE) endif() find_package(Perl) -IF(WANT_LV2) - IF(PKG_CONFIG_FOUND) - PKG_CHECK_MODULES(LV2 lv2) - PKG_CHECK_MODULES(LILV lilv-0) - ENDIF() - IF(NOT LV2_FOUND AND NOT LILV_FOUND) - UNSET(LV2_FOUND CACHE) - UNSET(LILV_FOUND CACHE) - FIND_PACKAGE(LV2 CONFIG) - FIND_PACKAGE(LILV CONFIG) - IF(LILV_FOUND) - SET(LILV_LIBRARIES "lilv::lilv") - ENDIF() - ENDIF() - IF(LV2_FOUND AND LILV_FOUND) - SET(LMMS_HAVE_LV2 TRUE) - SET(STATUS_LV2 "OK") - ELSE() - SET(STATUS_LV2 "not found, install it or set PKG_CONFIG_PATH appropriately") - ENDIF() -ELSE(WANT_LV2) - SET(STATUS_LV2 "not built as requested") -ENDIF(WANT_LV2) +if(WANT_LV2) + if(PKG_CONFIG_FOUND) + pkg_check_modules(LV2 lv2) + endif() + + find_package(Lilv) + if(Lilv_FOUND) + set(LILV_LIBRARIES Lilv::lilv) + endif() + + # Ensure both dependencies are found + if(NOT LV2_FOUND) + set(STATUS_LV2 "not found, install lv2 or set PKG_CONFIG_PATH appropriately") + elseif(NOT Lilv_FOUND) + set(STATUS_LV2 "not found, install lilv or set PKG_CONFIG_PATH appropriately") + else() + set(LMMS_HAVE_LV2 TRUE) + set(STATUS_LV2 "OK") + endif() +else() + set(STATUS_LV2 "not built as requested") +endif() IF(WANT_SUIL) IF(PKG_CONFIG_FOUND) @@ -266,6 +269,7 @@ IF(WANT_SUIL) IF(SUIL_FOUND) SET(LMMS_HAVE_SUIL TRUE) SET(STATUS_SUIL "OK") + find_package(SuilModules) ELSE() SET(STATUS_SUIL "not found, install it or set PKG_CONFIG_PATH appropriately") ENDIF() @@ -604,6 +608,17 @@ ELSE() SET (STATUS_DEBUG_FPE "Disabled") ENDIF(WANT_DEBUG_FPE) +if(WANT_DEBUG_CPACK) + if((LMMS_BUILD_WIN32 AND CMAKE_VERSION VERSION_LESS "3.19") OR WANT_CPACK_TARBALL) + set(STATUS_DEBUG_CPACK "Wanted but disabled due to unsupported configuration") + else() + set(CPACK_DEBUG TRUE) + set(STATUS_DEBUG_CPACK "Enabled") + endif() +else() + set(STATUS_DEBUG_CPACK "Disabled") +endif() + # check for libsamplerate FIND_PACKAGE(Samplerate 0.1.8 MODULE REQUIRED) @@ -664,6 +679,22 @@ elseif(MSVC) add_compile_options("/utf-8") ENDIF() +# gcc builds support gprof for profiling +# clang too seems to support gprof, but i couldn't get it working. +# if needed, change the if condition to "GNU|CLANG" +if(NOT CMAKE_CXX_COMPILER_ID MATCHES "GNU") + set(STATUS_GPROF ", NOT SUPPORTED BY THIS COMPILER") + set(WANT_DEBUG_GPROF OFF) +endif() + +if(WANT_DEBUG_GPROF) + add_compile_options(-pg) + add_link_options(-pg) + set(STATUS_GPROF "OK") +else() + set(STATUS_GPROF "Disabled ${STATUS_GPROF}") +endif() + # add enabled sanitizers function(add_sanitizer sanitizer supported_compilers want_flag status_flag) if(${want_flag}) @@ -727,7 +758,7 @@ IF(LMMS_BUILD_LINUX) "${CMAKE_BINARY_DIR}/lmmsconfig.h" "${CMAKE_BINARY_DIR}/lmmsversion.h" "${CMAKE_SOURCE_DIR}/src/gui/embed.cpp" - DESTINATION "${CMAKE_INSTALL_PREFIX}/include/lmms/") + DESTINATION "include/lmms/") ENDIF(LMMS_BUILD_LINUX) # @@ -831,6 +862,8 @@ MESSAGE( "* Debug using ThreadSanitizer : ${STATUS_DEBUG_TSAN}\n" "* Debug using MemorySanitizer : ${STATUS_DEBUG_MSAN}\n" "* Debug using UBSanitizer : ${STATUS_DEBUG_UBSAN}\n" +"* Debug packaging commands : ${STATUS_DEBUG_CPACK}\n" +"* Profile using GNU profiler : ${STATUS_GPROF}\n" ) MESSAGE( diff --git a/README.md b/README.md index c8324226e..7d626fb4b 100644 --- a/README.md +++ b/README.md @@ -1,31 +1,39 @@ -# ![LMMS Logo](https://raw.githubusercontent.com/LMMS/artwork/master/Icon%20%26%20Mimetypes/lmms-64x64.svg) LMMS - -[![Build status](https://github.com/LMMS/lmms/actions/workflows/build.yml/badge.svg)](https://github.com/LMMS/lmms/actions/workflows/build.yml) -[![Latest stable release](https://img.shields.io/github/release/LMMS/lmms.svg?maxAge=3600)](https://lmms.io/download) -[![Overall downloads on Github](https://img.shields.io/github/downloads/LMMS/lmms/total.svg?maxAge=3600)](https://github.com/LMMS/lmms/releases) -[![Join the chat at Discord](https://img.shields.io/badge/chat-on%20discord-7289DA.svg)](https://discord.gg/3sc5su7) -[![Localise on transifex](https://img.shields.io/badge/localise-on_transifex-green.svg)](https://www.transifex.com/lmms/lmms/) +
+

+ LMMS Logo
LMMS +

+

Cross-platform music production software

+

+ Website + ⦁︎ + Releases + ⦁︎ + Developer wiki + ⦁︎ + User manual + ⦁︎ + Showcase + ⦁︎ + Sharing platform +

+

+ Build status + Latest stable release + Overall downloads on Github + Join the chat at Discord + +

+
What is LMMS? -------------- -LMMS is a free cross-platform alternative to commercial programs like -FL Studio®, which allow you to produce music with your computer. This includes -the creation of melodies and beats, the synthesis and mixing of sounds, and -arranging of samples. You can have fun with your MIDI-keyboard and much more; -all in a user-friendly and modern interface. - -[Homepage](https://lmms.io)
-[Downloads/Releases](https://github.com/LMMS/lmms/releases)
-[Developer Wiki](https://github.com/LMMS/lmms/wiki)
-[Artist & User Wiki/Documentation](https://lmms.io/documentation)
-[Sound Demos](https://lmms.io/showcase/)
-[LMMS Sharing Platform](https://lmms.io/lsp/) Share your songs! +LMMS is an open-source cross-platform digital audio workstation designed for music production. It includes an advanced Piano Roll, Beat Sequencer, Song Editor, and Mixer for composing, arranging, and mixing music. It comes with 15+ synthesizer plugins by default, along with VST(i) and SoundFont2 support. Features --------- -* Song-Editor for composing songs +* Song-Editor for arranging melodies, samples, patterns, and automation * Pattern-Editor for creating beats and patterns * An easy-to-use Piano-Roll for editing patterns and melodies * A Mixer with unlimited mixer channels and arbitrary number of effects @@ -37,22 +45,13 @@ Features Building --------- -See [Compiling LMMS](https://github.com/LMMS/lmms/wiki/Compiling) on our -wiki for information on how to build LMMS. - +See [Compiling LMMS](https://github.com/LMMS/lmms/wiki/Compiling) Join LMMS-development ---------------------- -If you are interested in LMMS, its programming, artwork, testing, writing demo -songs, (and improving this README...) or something like that, you're welcome -to participate in the development of LMMS! +If you are interested in LMMS, its programming, artwork, testing, writing demo songs, (and improving this README...) or something like that, you're welcome to participate in the development of LMMS! -Information about what you can do and how can be found in the -[wiki](https://github.com/LMMS/lmms/wiki). +Information about what you can do and how can be found in the [wiki](https://github.com/LMMS/lmms/wiki). -Before coding a new big feature, please _always_ -[file an issue](https://github.com/LMMS/lmms/issues/new) for your idea and -suggestions about your feature and about the intended implementation on GitHub, -or ask in one of the tech channels on Discord and wait for replies! Maybe there are different ideas, improvements, or hints, or -maybe your feature is not welcome/needed at the moment. +Before coding a new big feature, please _always_ [file an issue](https://github.com/LMMS/lmms/issues/new) for your idea and suggestions about your feature and about the intended implementation on GitHub, or ask in one of the tech channels on Discord and wait for replies! Maybe there are different ideas, improvements, or hints, or maybe your feature is not welcome/needed at the moment. diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index 833fad581..439a68852 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -14,10 +14,14 @@ ENDIF() SET(CPACK_PACKAGE_INSTALL_DIRECTORY "${PROJECT_NAME_UCASE}") SET(CPACK_SOURCE_GENERATOR "TBZ2") SET(CPACK_SOURCE_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${VERSION}") -IF(NOT DEFINED WIN32) - SET(CPACK_STRIP_FILES "bin/${CMAKE_PROJECT_NAME};${PLUGIN_DIR}/*.so") - SET(CPACK_PACKAGE_EXECUTABLES "${CMAKE_PROJECT_NAME}" "${PROJECT_NAME_UCASE} binary") -ENDIF() +SET(CPACK_PACKAGE_EXECUTABLES "${CMAKE_PROJECT_NAME}" "${PROJECT_NAME_UCASE} binary") + +# Disable strip for Debug|RelWithDebInfo +if(CMAKE_BUILD_TYPE MATCHES "Deb") + unset(CPACK_STRIP_FILES) +else() + set(CPACK_STRIP_FILES TRUE) +endif() IF(LMMS_BUILD_WIN32) ADD_SUBDIRECTORY(nsis) diff --git a/cmake/apple/CMakeLists.txt b/cmake/apple/CMakeLists.txt index 3fd0a4da4..71be84f81 100644 --- a/cmake/apple/CMakeLists.txt +++ b/cmake/apple/CMakeLists.txt @@ -1,24 +1,3 @@ -SET(MACOSX_BUNDLE_ICON_FILE "icon.icns") -SET(MACOSX_BUNDLE_GUI_IDENTIFIER "${PROJECT_NAME_UCASE}") -SET(MACOSX_BUNDLE_LONG_VERSION_STRING "${VERSION}") -SET(MACOSX_BUNDLE_BUNDLE_NAME "${PROJECT_NAME_UCASE}") -SET(MACOSX_BUNDLE_SHORT_VERSION_STRING "${VERSION}") -SET(MACOSX_BUNDLE_BUNDLE_VERSION "${VERSION}") -SET(MACOSX_BUNDLE_COPYRIGHT "${PROJECT_COPYRIGHT}") -SET(MACOSX_BUNDLE_MIMETYPE "application/x-lmms-project") -SET(MACOSX_BUNDLE_MIMETYPE_ICON "project.icns") -SET(MACOSX_BUNDLE_MIMETYPE_ID "io.lmms") -SET(MACOSX_BUNDLE_PROJECT_URL "${PROJECT_URL}") -SET(MACOSX_BUNDLE_DMG_TITLE "${MACOSX_BUNDLE_BUNDLE_NAME} ${MACOSX_BUNDLE_LONG_VERSION_STRING}") - -# FIXME: appdmg won't allow volume names > 27 char -# See also https://github.com/LinusU/node-appdmg/issues/48 -STRING(SUBSTRING "${MACOSX_BUNDLE_DMG_TITLE}" 0 27 MACOSX_BUNDLE_DMG_TITLE) - -CONFIGURE_FILE("lmms.plist.in" "${CMAKE_BINARY_DIR}/Info.plist") -CONFIGURE_FILE("install_apple.sh.in" "${CMAKE_BINARY_DIR}/install_apple.sh" @ONLY) -CONFIGURE_FILE("package_apple.json.in" "${CMAKE_BINARY_DIR}/package_apple.json" @ONLY) - IF(CMAKE_OSX_ARCHITECTURES) SET(DMG_ARCH "${CMAKE_OSX_ARCHITECTURES}") ELSEIF(IS_ARM64) @@ -29,18 +8,31 @@ ELSE() SET(DMG_ARCH "x86_64") ENDIF() -# DMG creation target -SET(DMG_FILE "${CMAKE_BINARY_DIR}/${CMAKE_PROJECT_NAME}-${VERSION}-mac${APPLE_OS_VER}-${DMG_ARCH}.dmg") +# Standard CPack options +set(CPACK_GENERATOR "External" PARENT_SCOPE) +set(CPACK_EXTERNAL_ENABLE_STAGING TRUE PARENT_SCOPE) +set(CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${VERSION}-mac${APPLE_OS_VER}-${DMG_ARCH}") +set(CPACK_PACKAGE_FILE_NAME "${CPACK_PACKAGE_FILE_NAME}" PARENT_SCOPE) +set(CPACK_PRE_BUILD_SCRIPTS "${CMAKE_CURRENT_SOURCE_DIR}/MacDeployQt.cmake" PARENT_SCOPE) +# disable cpack's strip: causes missing symbols on macOS +set(CPACK_STRIP_FILES_ORIG "${CPACK_STRIP_FILES}" PARENT_SCOPE) +set(CPACK_STRIP_FILES FALSE PARENT_SCOPE) -FILE(REMOVE "${DMG_FILE}") -ADD_CUSTOM_TARGET(removedmg - COMMAND touch "\"${DMG_FILE}\"" && rm "\"${DMG_FILE}\"" - COMMENT "Removing old DMG") -ADD_CUSTOM_TARGET(dmg - COMMAND appdmg "\"${CMAKE_BINARY_DIR}/package_apple.json\"" "\"${DMG_FILE}\"" - DEPENDS "${CMAKE_BINARY_DIR}/package_apple.json" - COMMENT "Generating DMG") -ADD_DEPENDENCIES(dmg removedmg) - -# see also ../postinstall/CMakeLists.txt +# Custom vars to expose to Cpack +# must be prefixed with "CPACK_" per https://stackoverflow.com/a/46526757/3196753) +set(CPACK_CURRENT_BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}" PARENT_SCOPE) +set(CPACK_CURRENT_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}" PARENT_SCOPE) +set(CPACK_BINARY_DIR "${CMAKE_BINARY_DIR}" PARENT_SCOPE) +set(CPACK_SOURCE_DIR "${CMAKE_SOURCE_DIR}" PARENT_SCOPE) +set(CPACK_QMAKE_EXECUTABLE "${QT_QMAKE_EXECUTABLE}" PARENT_SCOPE) +set(CPACK_CARLA_LIBRARIES "${CARLA_LIBRARIES}" PARENT_SCOPE) +set(CPACK_PROJECT_NAME "${PROJECT_NAME}" PARENT_SCOPE) +set(CPACK_PROJECT_VERSION "${VERSION}" PARENT_SCOPE) +set(CPACK_PROJECT_NAME_UCASE "${PROJECT_NAME_UCASE}" PARENT_SCOPE) +set(CPACK_PROJECT_URL "${PROJECT_URL}" PARENT_SCOPE) +set(CPACK_SUIL_MODULES "${Suil_MODULES}" PARENT_SCOPE) +set(CPACK_SUIL_MODULES_PREFIX "${Suil_MODULES_PREFIX}" PARENT_SCOPE) +if(CMAKE_VERSION VERSION_LESS "3.19") + message(WARNING "DMG creation requires at least CMake 3.19") +endif() diff --git a/cmake/apple/MacDeployQt.cmake b/cmake/apple/MacDeployQt.cmake new file mode 100644 index 000000000..d754b83c4 --- /dev/null +++ b/cmake/apple/MacDeployQt.cmake @@ -0,0 +1,175 @@ +# Create a macOS .dmg desktop installer using macdeployqt +# +# Copyright (c) 2025, Tres Finocchiaro, +# +# Redistribution and use is allowed according to the terms of the BSD license. +# For details see the accompanying COPYING-CMAKE-SCRIPTS file. + +# Variables must be prefixed with "CPACK_" to be visible here +set(lmms "${CPACK_PROJECT_NAME}") +set(APP "${CPACK_TEMPORARY_INSTALL_DIRECTORY}/${CPACK_PROJECT_NAME_UCASE}.app") + +# Toggle command echoing & verbosity +# 0 = no output, 1 = error/warning, 2 = normal, 3 = debug +if(DEFINED ENV{CPACK_DEBUG}) + set(CPACK_DEBUG "$ENV{CPACK_DEBUG}") +endif() +if(NOT CPACK_DEBUG) + set(VERBOSITY 1) + set(COMMAND_ECHO NONE) +else() + set(VERBOSITY 2) + set(COMMAND_ECHO STDOUT) +endif() + +# Detect release|debug build +if(NOT CPACK_STRIP_FILES_ORIG) + # -use-debug-libs implies -no-strip + if(CPACK_QMAKE_EXECUTABLE MATCHES "/homebrew/|/usr/local") + message(STATUS "Homebrew does not provide debug qt libraries, replacing \"-use-debug-libs\" with \"-no-strip\" instead") + set(USE_DEBUG_LIBS -no-strip) + else() + set(USE_DEBUG_LIBS -use-debug-libs) + endif() +endif() + +# Cleanup CPack "External" json, txt files, old DMG files +file(GLOB cleanup "${CPACK_BINARY_DIR}/${lmms}-*.json" + "${CPACK_BINARY_DIR}/${lmms}-*.dmg" + "${CPACK_BINARY_DIR}/install_manifest.txt") +list(SORT cleanup) +file(REMOVE ${cleanup}) + +# Create bundle structure +file(MAKE_DIRECTORY "${APP}/Contents/MacOS") +file(MAKE_DIRECTORY "${APP}/Contents/Frameworks") +file(MAKE_DIRECTORY "${APP}/Contents/Resources") + +# Fix layout +file(RENAME "${CPACK_TEMPORARY_INSTALL_DIRECTORY}/lib" "${APP}/Contents/lib") +file(RENAME "${CPACK_TEMPORARY_INSTALL_DIRECTORY}/share" "${APP}/Contents/share") +file(RENAME "${CPACK_TEMPORARY_INSTALL_DIRECTORY}/bin" "${APP}/Contents/bin") + +# Move binaries into Contents/MacOS +file(RENAME "${APP}/Contents/bin/${lmms}" "${APP}/Contents/MacOS/${lmms}") +file(RENAME "${APP}/Contents/lib/${lmms}/RemoteZynAddSubFx" "${APP}/Contents/MacOS/RemoteZynAddSubFx") +file(REMOVE_RECURSE "${APP}/Contents/bin") +file(REMOVE_RECURSE "${APP}/Contents/share/man1") +file(REMOVE_RECURSE "${APP}/Contents/include") + +# Copy missing files +# Convert https://lmms.io to io.lmms +string(REPLACE "." ";" mime_parts "${CPACK_PROJECT_URL}") +string(REPLACE ":" ";" mime_parts "${mime_parts}") +string(REPLACE "/" "" mime_parts "${mime_parts}") +list(REMOVE_AT mime_parts 0) +list(REVERSE mime_parts) +list(JOIN mime_parts "." MACOS_MIMETYPE_ID) +configure_file("${CPACK_CURRENT_SOURCE_DIR}/lmms.plist.in" "${APP}/Contents/Info.plist" @ONLY) +file(COPY "${CPACK_CURRENT_SOURCE_DIR}/project.icns" DESTINATION "${APP}/Contents/Resources") +file(COPY "${CPACK_CURRENT_SOURCE_DIR}/icon.icns" DESTINATION "${APP}/Contents/Resources") +file(RENAME "${APP}/Contents/Resources/icon.icns" "${APP}/Contents/Resources/${lmms}.icns") + +# Copy Suil modules +if(CPACK_SUIL_MODULES) + set(SUIL_MODULES_TARGET "${APP}/Contents/Frameworks/${CPACK_SUIL_MODULES_PREFIX}") + file(MAKE_DIRECTORY "${SUIL_MODULES_TARGET}") + file(COPY ${CPACK_SUIL_MODULES} DESTINATION "${SUIL_MODULES_TARGET}") +endif() + +# Make all libraries writable for macdeployqt +file(CHMOD_RECURSE "${APP}/Contents" PERMISSIONS + OWNER_EXECUTE OWNER_WRITE OWNER_READ + GROUP_EXECUTE GROUP_WRITE GROUP_READ + WORLD_READ) + +# Qt6: Fix @rpath bug https://github.com/orgs/Homebrew/discussions/2823 +include(CreateSymlink) +get_filename_component(QTBIN "${CPACK_QMAKE_EXECUTABLE}" DIRECTORY) +get_filename_component(QTDIR "${QTBIN}" DIRECTORY) +create_symlink("${QTDIR}/lib" "${CPACK_TEMPORARY_INSTALL_DIRECTORY}/lib") + +# Replace @rpath with @loader_path for Carla +execute_process(COMMAND install_name_tool -change + "@rpath/libcarlabase.dylib" + "@loader_path/libcarlabase.dylib" + "${APP}/Contents/lib/${lmms}/libcarlapatchbay.so" + COMMAND_ECHO ${COMMAND_ECHO} + COMMAND_ERROR_IS_FATAL ANY) +execute_process(COMMAND install_name_tool -change + "@rpath/libcarlabase.dylib" + "@loader_path/libcarlabase.dylib" + "${APP}/Contents/lib/${lmms}/libcarlarack.so" + COMMAND_ECHO ${COMMAND_ECHO} + COMMAND_ERROR_IS_FATAL ANY) + +# Build list of executables to inform macdeployqt about +# e.g. -executable=foo.dylib -executable=bar.dylib +file(GLOB LIBS "${APP}/Contents/lib/${lmms}/*.so") + +# Inform macdeployqt about LADSPA plugins; may depend on bundled fftw3f, etc. +file(GLOB LADSPA "${APP}/Contents/lib/${lmms}/ladspa/*.so") + +# Inform macdeployqt about remote plugins +file(GLOB REMOTE_PLUGINS "${APP}/Contents/MacOS/*Remote*") + +# Collect, sort and dedupe all libraries +list(APPEND LIBS ${LADSPA}) +list(APPEND LIBS ${REMOTE_PLUGINS}) +list(APPEND LIBS ${CPACK_SUIL_MODULES}) +list(REMOVE_DUPLICATES LIBS) +list(SORT LIBS) + +# Construct macdeployqt parameters +foreach(_lib IN LISTS LIBS) + if(EXISTS "${_lib}") + list(APPEND EXECUTABLES "-executable=${_lib}") + endif() +endforeach() + +# Call macdeployqt +get_filename_component(QTBIN "${CPACK_QMAKE_EXECUTABLE}" DIRECTORY) +message(STATUS "Calling ${QTBIN}/macdeployqt ${APP} [... executables]") +execute_process(COMMAND "${QTBIN}/macdeployqt" "${APP}" ${EXECUTABLES} + -verbose=${VERBOSITY} + ${USE_DEBUG_LIBS} + COMMAND_ECHO ${COMMAND_ECHO} + COMMAND_ERROR_IS_FATAL ANY) + +# Cleanup symlink +file(REMOVE "${CPACK_TEMPORARY_INSTALL_DIRECTORY}/lib") + +# Remove dummy carla libs, relink to a sane location (e.g. /Applications/Carla.app/...) +# (must be done after calling macdeployqt) +file(GLOB CARLALIBS "${APP}/Contents/lib/${lmms}/libcarla*") +foreach(_carlalib IN LISTS CARLALIBS) + foreach(_lib "${CPACK_CARLA_LIBRARIES}") + set(_oldpath "../../Frameworks/lib${_lib}.dylib") + set(_newpath "Carla.app/Contents/MacOS/lib${_lib}.dylib") + execute_process(COMMAND install_name_tool -change + "@loader_path/${_oldpath}" + "@executable_path/../../../${_newpath}" + "${_carlalib}" + COMMAND_ECHO ${COMMAND_ECHO} + COMMAND_ERROR_IS_FATAL ANY) + file(REMOVE "${APP}/Contents/Frameworks/lib${_lib}.dylib") + endforeach() +endforeach() + +# Call ad-hoc codesign manually (CMake offers this as well) +execute_process(COMMAND codesign --force --deep --sign - "${APP}" + COMMAND_ECHO ${COMMAND_ECHO} + COMMAND_ERROR_IS_FATAL ANY) + +# Create DMG +# appdmg won't allow volume names > 27 char https://github.com/LinusU/node-alias/issues/7 +find_program(APPDMG_BIN appdmg REQUIRED) +string(SUBSTRING "${CPACK_PROJECT_NAME_UCASE} ${CPACK_PROJECT_VERSION}" 0 27 APPDMG_VOLUME_NAME) +# We'll configure this file twice (again in MacDeployQt.cmake once we know CPACK_TEMPORARY_INSTALL_DIRECTORY) +configure_file("${CPACK_CURRENT_SOURCE_DIR}/appdmg.json.in" "${CPACK_CURRENT_BINARY_DIR}/appdmg.json" @ONLY) + +execute_process(COMMAND "${APPDMG_BIN}" + "${CPACK_CURRENT_BINARY_DIR}/appdmg.json" + "${CPACK_BINARY_DIR}/${CPACK_PACKAGE_FILE_NAME}.dmg" + COMMAND_ECHO ${COMMAND_ECHO} + COMMAND_ERROR_IS_FATAL ANY) \ No newline at end of file diff --git a/cmake/apple/appdmg.json.in b/cmake/apple/appdmg.json.in new file mode 100644 index 000000000..6e4f048a6 --- /dev/null +++ b/cmake/apple/appdmg.json.in @@ -0,0 +1,9 @@ +{ + "title": "@APPDMG_VOLUME_NAME@", + "background": "@CPACK_SOURCE_DIR@/cmake/apple/background.png", + "icon-size": 128, + "contents": [ + { "x": 139, "y": 200, "type": "file", "path": "@CPACK_TEMPORARY_INSTALL_DIRECTORY@/@CPACK_PROJECT_NAME_UCASE@.app" }, + { "x": 568, "y": 200, "type": "link", "path": "/Applications" } + ] +} diff --git a/cmake/apple/dmg_branding.png b/cmake/apple/background.png similarity index 100% rename from cmake/apple/dmg_branding.png rename to cmake/apple/background.png diff --git a/cmake/apple/background@2x.png b/cmake/apple/background@2x.png new file mode 100644 index 000000000..da44ceb8b Binary files /dev/null and b/cmake/apple/background@2x.png differ diff --git a/cmake/apple/dmg_branding@2x.png b/cmake/apple/dmg_branding@2x.png deleted file mode 100644 index 7af39fecd..000000000 Binary files a/cmake/apple/dmg_branding@2x.png and /dev/null differ diff --git a/cmake/apple/install_apple.sh.in b/cmake/apple/install_apple.sh.in deleted file mode 100644 index fc27d78b3..000000000 --- a/cmake/apple/install_apple.sh.in +++ /dev/null @@ -1,104 +0,0 @@ -#!/bin/bash -# Creates Apple ".app" bundle for @PROJECT_NAME_UCASE@ -# Note: -# Examine linkings using `otool -L somelib.so` -# Debug the loading of dynamic libraries using `export DYLD_PRINT_LIBRARIES=1` - -set -e - -# Place to create ".app" bundle -APP="@CMAKE_BINARY_DIR@/@PROJECT_NAME_UCASE@.app" - -MSG_COLOR='\x1B[1;36m' -COLOR_RESET='\x1B[0m' -echo -e "$MSG_COLOR\n\nCreating App Bundle \"$APP\"...$COLOR_RESET" - -qtpath="$(dirname "@QT_QMAKE_EXECUTABLE@")" -export PATH="$PATH:$qtpath" - -# Remove any old .app bundles -rm -Rf "$APP" - -# Copy/overwrite Info.plist -command cp "@CMAKE_BINARY_DIR@/Info.plist" "@CMAKE_INSTALL_PREFIX@/" - -# Create .app bundle containing contents from CMAKE_INSTALL_PREFIX -mkdir -p "$APP/Contents/MacOS" -mkdir -p "$APP/Contents/Frameworks" -mkdir -p "$APP/Contents/Resources" -cd "@CMAKE_INSTALL_PREFIX@" -cp -R ./* "$APP/Contents" -cp "@CMAKE_SOURCE_DIR@/cmake/apple/"*.icns "$APP/Contents/Resources/" - -# Make all libraries writable for macdeployqt -cd "$APP" -find . -type f -print0 | xargs -0 chmod u+w - -lmmsbin="MacOS/@CMAKE_PROJECT_NAME@" -zynbin="MacOS/RemoteZynAddSubFx" - -# Move lmms binary -mv "$APP/Contents/bin/@CMAKE_PROJECT_NAME@" "$APP/Contents/$lmmsbin" - -# Fix zyn linking -mv "$APP/Contents/lib/lmms/RemoteZynAddSubFx" "$APP/Contents/$zynbin" - -# Replace @rpath with @loader_path for Carla -# See also plugins/CarlaBase/CMakeLists.txt -# This MUST be done BEFORE calling macdeployqt -install_name_tool -change @rpath/libcarlabase.dylib \ - @loader_path/libcarlabase.dylib \ - "$APP/Contents/lib/lmms/libcarlapatchbay.so" - -install_name_tool -change @rpath/libcarlabase.dylib \ - @loader_path/libcarlabase.dylib \ - "$APP/Contents/lib/lmms/libcarlarack.so" - -# Link lmms binary -_executables="${_executables} -executable=$APP/Contents/$zynbin" - -# Build a list of shared objects in target/lib/lmms -for file in "$APP/Contents/lib/lmms/"*.so; do - _thisfile="$APP/Contents/lib/lmms/${file##*/}" - _executables="${_executables} -executable=$_thisfile" -done - -# Build a list of shared objects in target/lib/lmms/ladspa -for file in "$APP/Contents/lib/lmms/ladspa/"*.so; do - _thisfile="$APP/Contents/lib/lmms/ladspa/${file##*/}" - _executables="${_executables} -executable=$_thisfile" -done - -# Finalize .app -# shellcheck disable=SC2086 -macdeployqt "$APP" $_executables - -# Carla is a standalone plugin. Remove library, look for it side-by-side LMMS.app -# This MUST be done AFTER calling macdeployqt -# -# For example: -# /Applications/LMMS.app -# /Applications/Carla.app -carlalibs=$(echo "@CARLA_LIBRARIES@"|tr ";" "\n") - -# Loop over all libcarlas, fix linking -for file in "$APP/Contents/lib/lmms/"libcarla*; do - _thisfile="$APP/Contents/lib/lmms/${file##*/}" - for lib in $carlalibs; do - _oldpath="../../Frameworks/lib${lib}.dylib" - _newpath="Carla.app/Contents/MacOS/lib${lib}.dylib" - # shellcheck disable=SC2086 - install_name_tool -change @loader_path/$_oldpath \ - @executable_path/../../../$_newpath \ - "$_thisfile" - rm -f "$APP/Contents/Frameworks/lib${lib}.dylib" - done -done - -# Cleanup -rm -rf "$APP/Contents/bin" - -# Codesign -codesign --force --deep --sign - "$APP" - -echo -e "\nFinished.\n\n" diff --git a/cmake/apple/lmms.plist.in b/cmake/apple/lmms.plist.in index 88fe0b0bf..dd656a1d5 100644 --- a/cmake/apple/lmms.plist.in +++ b/cmake/apple/lmms.plist.in @@ -7,13 +7,13 @@ English CFBundleIconFile - @MACOSX_BUNDLE_ICON_FILE@ + @CPACK_PROJECT_NAME@ CFBundlePackageType APPL CFBundleGetInfoString - @MACOSX_BUNDLE_GUI_IDENTIFIER@ @MACOSX_BUNDLE_LONG_VERSION_STRING@ + @CPACK_PROJECT_NAME_UCASE@ @CPACK_PROJECT_VERSION@ CFBundleSignature - @MACOSX_BUNDLE_GUI_IDENTIFIER@ + @CPACK_PROJECT_NAME_UCASE@ CFBundleExecutable - @MACOSX_BUNDLE_GUI_IDENTIFIER@ + @CPACK_PROJECT_NAME@ CFBundleVersion - @MACOSX_BUNDLE_LONG_VERSION_STRING@ + @CPACK_PROJECT_VERSION@ CFBundleShortVersionString - @MACOSX_BUNDLE_LONG_VERSION_STRING@ + @VERSIONCPACK_PROJECT_VERSION@ CFBundleName - @MACOSX_BUNDLE_BUNDLE_NAME@ + @CPACK_PROJECT_NAME_UCASE@ CFBundleInfoDictionaryVersion 6.0 CFBundleIdentifier - @MACOSX_BUNDLE_MIMETYPE_ID@ + @MACOS_MIMETYPE_ID@ CFBundleDocumentTypes - + CFBundleTypeExtensions mmpz CFBundleTypeIconFile - @MACOSX_BUNDLE_MIMETYPE_ICON@ + project CFBundleTypeName - @MACOSX_BUNDLE_GUI_IDENTIFIER@ Project + @CPACK_PROJECT_NAME_UCASE@ Project CFBundleTypeOSTypes mmpz @@ -69,19 +69,19 @@ Editor CFBundleTypeMIMETypes - @MACOSX_BUNDLE_MIMETYPE@ + application/x-@CPACK_PROJECT_NAME@-project - + CFBundleTypeExtensions mmp CFBundleTypeIconFile - @MACOSX_BUNDLE_MIMETYPE_ICON@ + project CFBundleTypeName - @MACOSX_BUNDLE_GUI_IDENTIFIER@ Project (uncompressed) + @CPACK_PROJECT_NAME_UCASE@ Project (uncompressed) CFBundleTypeOSTypes mmp @@ -90,23 +90,23 @@ Editor CFBundleTypeMIMETypes - @MACOSX_BUNDLE_MIMETYPE@ + application/x-@CPACK_PROJECT_NAME@-project - + UTExportedTypeDeclarations UTTypeIdentifier - @MACOSX_BUNDLE_MIMETYPE_ID@.mmpz + @MACOS_MIMETYPE_ID@.mmpz UTTypeReferenceURL - @MACOSX_BUNDLE_PROJECT_URL@ + @CPACK_PROJECT_URL@ UTTypeDescription - @MACOSX_BUNDLE_GUI_IDENTIFIER@ Project + @CPACK_PROJECT_VERSIONPROJECT_NAME_UCASE@ Project UTTypeIconFile - @MACOSX_BUNDLE_MIMETYPE_ICON@ + project UTTypeConformsTo public.data @@ -122,13 +122,13 @@ UTTypeIdentifier - @MACOSX_BUNDLE_MIMETYPE_ID@.mmp + @MACOS_MIMETYPE_ID@.mmp UTTypeReferenceURL - @MACOSX_BUNDLE_PROJECT_URL@ + @CPACK_PROJECT_URL@ UTTypeDescription - @MACOSX_BUNDLE_GUI_IDENTIFIER@ Project (uncompressed) + @CPACK_PROJECT_NAME_UCASE@ Project (uncompressed) UTTypeIconFile - @MACOSX_BUNDLE_MIMETYPE_ICON@ + project UTTypeConformsTo public.xml diff --git a/cmake/apple/package_apple.json.in b/cmake/apple/package_apple.json.in deleted file mode 100644 index f6660b345..000000000 --- a/cmake/apple/package_apple.json.in +++ /dev/null @@ -1,9 +0,0 @@ -{ - "title": "@MACOSX_BUNDLE_DMG_TITLE@", - "background": "@CMAKE_SOURCE_DIR@/cmake/apple/dmg_branding.png", - "icon-size": 128, - "contents": [ - { "x": 139, "y": 200, "type": "file", "path": "@CMAKE_BINARY_DIR@/@MACOSX_BUNDLE_BUNDLE_NAME@.app" }, - { "x": 568, "y": 200, "type": "link", "path": "/Applications" } - ] -} diff --git a/cmake/install/CMakeLists.txt b/cmake/install/CMakeLists.txt index 3f6e3624e..0b81039ab 100644 --- a/cmake/install/CMakeLists.txt +++ b/cmake/install/CMakeLists.txt @@ -1,6 +1,9 @@ SET(PLUGIN_FILES "") IF(LMMS_BUILD_WIN32) - INSTALL(FILES $ DESTINATION platforms) + INSTALL(FILES $ DESTINATION platforms) + INSTALL(FILES $ DESTINATION iconengines) + INSTALL(FILES $ DESTINATION imageformats) + INSTALL(FILES $ DESTINATION .) ENDIF() IF(LMMS_BUILD_WIN32 OR LMMS_INSTALL_DEPENDENCIES) @@ -40,17 +43,10 @@ ENDIF() if(LMMS_HAVE_STK AND (LMMS_BUILD_WIN32 OR LMMS_BUILD_APPLE)) if(STK_RAWWAVE_ROOT) file(GLOB RAWWAVES "${STK_RAWWAVE_ROOT}/*.raw") + list(SORT RAWWAVES) install(FILES ${RAWWAVES} DESTINATION "${DATA_DIR}/stk/rawwaves") else() message(WARNING "Can't find STK rawwave root!") endif() endif() -IF(LMMS_BUILD_APPLE) - INSTALL(CODE "EXECUTE_PROCESS(COMMAND chmod u+x ${CMAKE_BINARY_DIR}/install_apple.sh)") - INSTALL(CODE "EXECUTE_PROCESS(COMMAND ${CMAKE_BINARY_DIR}/install_apple.sh RESULT_VARIABLE EXIT_CODE) - IF(NOT EXIT_CODE EQUAL 0) - MESSAGE(FATAL_ERROR \"Execution of install_apple.sh failed\") - ENDIF() - ") -ENDIF() diff --git a/cmake/linux/CMakeLists.txt b/cmake/linux/CMakeLists.txt index 27c6655eb..04efa1869 100644 --- a/cmake/linux/CMakeLists.txt +++ b/cmake/linux/CMakeLists.txt @@ -1,19 +1,51 @@ -INSTALL(DIRECTORY icons/ DESTINATION "${DATA_DIR}/icons/hicolor") -INSTALL(FILES lmms.desktop DESTINATION "${DATA_DIR}/applications") -INSTALL(FILES lmms.xml DESTINATION "${DATA_DIR}/mime/packages") +install(DIRECTORY icons/ DESTINATION "${DATA_DIR}/icons/hicolor") +install(FILES lmms.desktop DESTINATION "${DATA_DIR}/applications") +install(FILES lmms.xml DESTINATION "${DATA_DIR}/mime/packages") -# AppImage creation target -SET(APPIMAGE_FILE "${CMAKE_BINARY_DIR}/${CMAKE_PROJECT_NAME}-${VERSION}-linux-${CMAKE_SYSTEM_PROCESSOR}.AppImage") +# Preserve old CPack behavior +if(WANT_CPACK_TARBALL) + message(STATUS "Skipping AppImage creation") + return() +endif() -CONFIGURE_FILE("package_linux.sh.in" "${CMAKE_BINARY_DIR}/package_linux.sh" @ONLY) +# Standard CPack options +set(CPACK_GENERATOR "External" PARENT_SCOPE) +set(CPACK_EXTERNAL_ENABLE_STAGING true PARENT_SCOPE) +set(CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${VERSION}-linux-${CMAKE_SYSTEM_PROCESSOR}") +set(CPACK_PACKAGE_FILE_NAME "${CPACK_PACKAGE_FILE_NAME}" PARENT_SCOPE) +set(CPACK_PRE_BUILD_SCRIPTS "${CMAKE_CURRENT_SOURCE_DIR}/LinuxDeploy.cmake" PARENT_SCOPE) -FILE(REMOVE "${APPIMAGE_FILE}") -ADD_CUSTOM_TARGET(removeappimage - COMMAND rm -f "${APPIMAGE_FILE}" - COMMENT "Removing old AppImage") -ADD_CUSTOM_TARGET(appimage - COMMAND chmod +x "${CMAKE_BINARY_DIR}/package_linux.sh" - COMMAND "${CMAKE_BINARY_DIR}/package_linux.sh" - COMMENT "Generating AppImage" - WORKING_DIRECTORY "${CMAKE_BINARY_DIR}") -ADD_DEPENDENCIES(appimage removeappimage) +# Custom vars to expose to Cpack +# must be prefixed with "CPACK_" per https://stackoverflow.com/a/46526757/3196753) +set(CPACK_CURRENT_BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}" PARENT_SCOPE) +set(CPACK_CURRENT_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}" PARENT_SCOPE) +set(CPACK_BINARY_DIR "${CMAKE_BINARY_DIR}" PARENT_SCOPE) +set(CPACK_SOURCE_DIR "${CMAKE_SOURCE_DIR}" PARENT_SCOPE) +set(CPACK_QMAKE_EXECUTABLE "${QT_QMAKE_EXECUTABLE}" PARENT_SCOPE) +set(CPACK_CARLA_LIBRARIES "${CARLA_LIBRARIES}" PARENT_SCOPE) +set(CPACK_WINE_32_LIBRARY_DIRS "${WINE_32_LIBRARY_DIRS}" PARENT_SCOPE) +set(CPACK_WINE_64_LIBRARY_DIRS "${WINE_64_LIBRARY_DIRS}" PARENT_SCOPE) +set(CPACK_PROJECT_NAME "${PROJECT_NAME}" PARENT_SCOPE) +set(CPACK_PROJECT_NAME_UCASE "${PROJECT_NAME_UCASE}" PARENT_SCOPE) +set(CPACK_PROJECT_VERSION "${VERSION}" PARENT_SCOPE) +set(CPACK_CMAKE_COMMAND "${CMAKE_COMMAND}" PARENT_SCOPE) +set(CPACK_SUIL_MODULES "${Suil_MODULES}" PARENT_SCOPE) +set(CPACK_SUIL_MODULES_PREFIX "${Suil_MODULES_PREFIX}" PARENT_SCOPE) +set(CPACK_STK_RAWWAVE_ROOT "${STK_RAWWAVE_ROOT}" PARENT_SCOPE) + +# TODO: Canidate for DetectMachine.cmake +if(IS_X86_64) + set(CPACK_TARGET_ARCH x86_64 PARENT_SCOPE) +elseif(IS_X86) + set(CPACK_TARGET_ARCH i386 PARENT_SCOPE) +elseif(IS_ARM64) + set(CPACK_TARGET_ARCH aarch64 PARENT_SCOPE) +elseif(IS_ARM32) + set(CPACK_TARGET_ARCH armhf PARENT_SCOPE) +else() + set(CPACK_TARGET_ARCH unknown PARENT_SCOPE) +endif() + +if(CMAKE_VERSION VERSION_LESS "3.19") + message(WARNING "AppImage creation requires at least CMake 3.19") +endif() \ No newline at end of file diff --git a/cmake/linux/LinuxDeploy.cmake b/cmake/linux/LinuxDeploy.cmake new file mode 100644 index 000000000..f2530a10f --- /dev/null +++ b/cmake/linux/LinuxDeploy.cmake @@ -0,0 +1,327 @@ +# Create a Linux desktop installer using linuxdeploy +# * Creates a relocatable LMMS.AppDir installation in build/_CPack_Packages using linuxdeploy +# * If CPACK_TOOL=appimagetool or is not set, bundles AppDir into redistributable ".AppImage" file +# * If CPACK_TOOL=makeself is provided, bundles into a redistributable ".run" file +# +# Copyright (c) 2025, Tres Finocchiaro, +# +# Redistribution and use is allowed according to the terms of the BSD license. +# For details see the accompanying COPYING-CMAKE-SCRIPTS file. + +# Variables must be prefixed with "CPACK_" to be visible here +set(lmms "${CPACK_PROJECT_NAME}") +set(LMMS "${CPACK_PROJECT_NAME_UCASE}") +set(ARCH "${CPACK_TARGET_ARCH}") +set(APP "${CPACK_TEMPORARY_INSTALL_DIRECTORY}/${LMMS}.AppDir") + +# Target AppImage file +set(APPIMAGE_FILE "${CPACK_BINARY_DIR}/${CPACK_PACKAGE_FILE_NAME}.AppImage") +set(APPIMAGE_BEFORE_RENAME "${CPACK_BINARY_DIR}/${LMMS}-${ARCH}.AppImage") + +set(DESKTOP_FILE "${APP}/usr/share/applications/${lmms}.desktop") + +# Determine which packaging tool to use +if(NOT CPACK_TOOL) + # Pick up environmental variable + if(DEFINED ENV{CPACK_TOOL}) + set(CPACK_TOOL "$ENV{CPACK_TOOL}") + else() + set(CPACK_TOOL "appimagetool") + endif() +endif() + +# Toggle command echoing & verbosity +# 0 = no output, 1 = error/warning, 2 = normal, 3 = debug +if(DEFINED ENV{CPACK_DEBUG}) + set(CPACK_DEBUG "$ENV{CPACK_DEBUG}") +endif() +if(NOT CPACK_DEBUG) + set(VERBOSITY 1) + set(APPIMAGETOOL_VERBOSITY "") + set(COMMAND_ECHO NONE) + set(OUTPUT_QUIET OUTPUT_QUIET) +else() + set(VERBOSITY 2) + set(APPIMAGETOOL_VERBOSITY "--verbose") + set(COMMAND_ECHO STDOUT) + unset(OUTPUT_QUIET) +endif() + +include(DownloadBinary) +include(CreateSymlink) + +# Cleanup CPack "External" json, txt files, old AppImage files +file(GLOB cleanup "${CPACK_BINARY_DIR}/${lmms}-*.json" + "${CPACK_BINARY_DIR}/${lmms}-*.AppImage" + "${CPACK_BINARY_DIR}/install_manifest.txt") +list(SORT cleanup) +file(REMOVE ${cleanup}) + +# Download and extract linuxdeploy +download_binary(LINUXDEPLOY_BIN + "https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-${ARCH}.AppImage" + linuxdeploy-${ARCH}.AppImage + FALSE) + +# Guess the path to appimagetool +set(APPIMAGETOOL_BIN "${CPACK_CURRENT_BINARY_DIR}/.linuxdeploy-${ARCH}.AppImage/squashfs-root/plugins/linuxdeploy-plugin-appimage/appimagetool-prefix/AppRun") + +# Download linuxdeploy-plugin-qt +download_binary(LINUXDEPLOY_PLUGIN_BIN + "https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous/linuxdeploy-plugin-qt-${ARCH}.AppImage" + linuxdeploy-plugin-qt-${ARCH}.AppImage + FALSE) + +message(STATUS "Creating AppDir ${APP}...") + +file(REMOVE_RECURSE "${CPACK_TEMPORARY_INSTALL_DIRECTORY}/include") +file(MAKE_DIRECTORY "${APP}/usr") + +# Setup AppDir structure (/usr/bin, /usr/lib, /usr/share... etc) +file(GLOB files "${CPACK_TEMPORARY_INSTALL_DIRECTORY}/*") +list(SORT files) +foreach(_file ${files}) + get_filename_component(_filename "${_file}" NAME) + if(NOT _filename MATCHES ".AppDir") + file(RENAME "${_file}" "${APP}/usr/${_filename}") + endif() +endforeach() + +# Copy Suil modules +if(CPACK_SUIL_MODULES) + set(SUIL_MODULES_TARGET "${APP}/usr/lib/${CPACK_SUIL_MODULES_PREFIX}") + file(MAKE_DIRECTORY "${SUIL_MODULES_TARGET}") + file(COPY ${CPACK_SUIL_MODULES} DESTINATION "${SUIL_MODULES_TARGET}") +endif() + +# Copy stk/rawwaves +if(CPACK_STK_RAWWAVE_ROOT) + set(STK_RAWWAVE_TARGET "${APP}/usr/share/stk/rawwaves/") + file(MAKE_DIRECTORY "${STK_RAWWAVE_TARGET}") + file(GLOB RAWWAVES "${CPACK_STK_RAWWAVE_ROOT}/*.raw") + file(COPY ${RAWWAVES} DESTINATION "${STK_RAWWAVE_TARGET}") +endif() + +# Ensure project's "qmake" executable is first on the PATH +get_filename_component(QTBIN "${CPACK_QMAKE_EXECUTABLE}" DIRECTORY) +set(ENV{PATH} "${QTBIN}:$ENV{PATH}") + +# Promote finding our own libraries first +set(ENV{LD_LIBRARY_PATH} "${APP}/usr/lib/${lmms}/:${APP}/usr/lib/${lmms}/optional:$ENV{LD_LIBRARY_PATH}") + +# Skip slow searching of copyright files https://github.com/linuxdeploy/linuxdeploy/issues/278 +set(ENV{DISABLE_COPYRIGHT_FILES_DEPLOYMENT} 1) + +# Patch desktop file +file(APPEND "${DESKTOP_FILE}" "X-AppImage-Version=${CPACK_PROJECT_VERSION}\n") + +# Custom scripts to run immediately before lmms is executed +file(COPY "${CPACK_SOURCE_DIR}/cmake/linux/apprun-hooks" DESTINATION "${APP}") +file(REMOVE "${APP}/apprun-hooks/README.md") + +# Prefer a hard-copy of .DirIcon over appimagetool's symlinking +# 256x256 default for Cinnamon Desktop https://forums.linuxmint.com/viewtopic.php?p=2585952 +file(COPY "${APP}/usr/share/icons/hicolor/256x256/apps/${lmms}.png" DESTINATION "${APP}") +file(RENAME "${APP}/${lmms}.png" "${APP}/.DirIcon") +file(COPY "${APP}/usr/share/icons/hicolor/256x256/apps/${lmms}.png" DESTINATION "${APP}") + +# Build list of libraries to inform linuxdeploy about +# e.g. --library=foo.so --library=bar.so +file(GLOB LIBS "${APP}/usr/lib/${lmms}/*.so") + +# Inform linuxdeploy about LADSPA plugins; may depend on bundled fftw3f, etc. +file(GLOB LADSPA "${APP}/usr/lib/${lmms}/ladspa/*.so") + +# Inform linuxdeploy about remote plugins +file(GLOB REMOTE_PLUGINS "${APP}/usr/lib/${lmms}/*Remote*") + +# Inform linuxdeploy-plugin-qt about wayland plugin +set(ENV{EXTRA_PLATFORM_PLUGINS} "libqwayland-generic.so") +set(ENV{EXTRA_QT_MODULES} "waylandcompositor") + +# Collect, sort and dedupe all libraries +list(APPEND LIBS ${LADSPA}) +list(APPEND LIBS ${REMOTE_PLUGINS}) +list(APPEND LIBS ${CPACK_SUIL_MODULES}) +list(REMOVE_DUPLICATES LIBS) +list(SORT LIBS) + +# Handle non-relinkable files (e.g. RemoveVstPlugin[32|64], but not NativeLinuxRemoteVstPlugin) +list(FILTER LIBS EXCLUDE REGEX "\\/RemoteVst") + +# Construct linuxdeploy parameters +foreach(_lib IN LISTS LIBS) + if(EXISTS "${_lib}") + list(APPEND LIBRARIES "--library=${_lib}") + endif() +endforeach() + +list(APPEND SKIP_LIBRARIES "--exclude-library=*libgallium*") + +# Call linuxdeploy +message(STATUS "Calling ${LINUXDEPLOY_BIN} --appdir \"${APP}\" ... [... libraries].") +execute_process(COMMAND "${LINUXDEPLOY_BIN}" + --appdir "${APP}" + --desktop-file "${DESKTOP_FILE}" + --plugin qt + ${LIBRARIES} + ${SKIP_LIBRARIES} + --verbosity ${VERBOSITY} + WORKING_DIRECTORY "${CPACK_CURRENT_BINARY_DIR}" + ${OUTPUT_QUIET} + COMMAND_ECHO ${COMMAND_ECHO} + COMMAND_ERROR_IS_FATAL ANY) + +# Remove svg ambitiously placed by linuxdeploy +file(REMOVE "${APP}/${lmms}.svg") + +# Remove libraries that are normally system-provided +file(GLOB EXCLUDE_LIBS + "${APP}/usr/lib/libwine*" + "${APP}/usr/lib/libcarla_native*" + "${APP}/usr/lib/${lmms}/optional/libcarla*" + "${APP}/usr/lib/libjack*") + +list(SORT EXCLUDE_LIBS) +foreach(_lib IN LISTS EXCLUDE_LIBS) + if(EXISTS "${_lib}") + file(REMOVE "${_lib}") + endif() +endforeach() + +# FIXME: Remove when linuxdeploy supports subfolders https://github.com/linuxdeploy/linuxdeploy/issues/305 +foreach(_lib IN LISTS LIBS) + if(EXISTS "${_lib}") + file(REMOVE "${_lib}") + endif() +endforeach() +# Move RemotePlugins into to LMMS_PLUGIN_DIR +file(GLOB WINE_VST_LIBS + "${APP}/usr/lib/${lmms}/RemoteVstPlugin*" + "${APP}/usr/lib/${lmms}/32") +foreach(_file IN LISTS WINE_VST_LIBS) + if(EXISTS "${_file}") + get_filename_component(_name "${_file}" NAME) + file(RENAME "${_file}" "${APP}/usr/lib/${_name}") + endif() +endforeach() +file(GLOB WINE_32_LIBS + "${APP}/usr/lib/${lmms}/RemoteVstPlugin*") +foreach(_lib IN LISTS WINE_64_LIBS) + if(EXISTS "${_lib}") + get_filename_component(_file "${_lib}" NAME) + file(RENAME "${_lib}" "${APP}/usr/lib/${_file}") + endif() +endforeach() + +file(REMOVE_RECURSE "${SUIL_MODULES_TARGET}" "${APP}/usr/lib/${lmms}/ladspa/") + +# Copy "exclude-list" lib(s) into specified location +macro(copy_excluded ldd_target name_match destination relocated_lib) + execute_process(COMMAND ldd + "${ldd_target}" + OUTPUT_VARIABLE ldd_output + OUTPUT_STRIP_TRAILING_WHITESPACE + COMMAND_ECHO ${COMMAND_ECHO} + COMMAND_ERROR_IS_FATAL ANY) + + # escape periods to avoid double-escaping + string(REPLACE "." "\\." name_match "${name_match}") + + # cli output --> list + string(REPLACE "\n" ";" ldd_list "${ldd_output}") + + foreach(line ${ldd_list}) + if(line MATCHES "${name_match}") + # Assumes format "libname.so.0 => /lib/location/libname.so.0 (0x00007f48d0b0e000)" + string(REPLACE " " ";" parts "${line}") + list(LENGTH parts len) + math(EXPR index "${len}-2") + list(GET parts ${index} lib) + # Resolve any possible symlinks + file(REAL_PATH "${lib}" libreal) + get_filename_component(symname "${lib}" NAME) + get_filename_component(realname "${libreal}" NAME) + file(MAKE_DIRECTORY "${destination}") + # Copy, but with original symlink name + file(COPY "${libreal}" DESTINATION "${destination}") + file(RENAME "${destination}/${realname}" "${destination}/${symname}") + set("${relocated_lib}" "${destination}/${symname}") + break() + endif() + endforeach() +endmacro() + +# copy libjack +copy_excluded("${APP}/usr/bin/${lmms}" "libjack.so" "${APP}/usr/lib/jack" relocated_jack) +if(relocated_jack) + # libdb's not excluded however we'll re-use the macro as a convenient path calculation + # See https://github.com/LMMS/lmms/issues/7689s + copy_excluded("${relocated_jack}" "libdb-" "${APP}/usr/lib/jack" relocated_libdb) + get_filename_component(libdb_name "${relocated_libdb}" NAME) + if(relocated_libdb AND EXISTS "${APP}/usr/lib/${libdb_name}") + # assume a copy already resides in usr/lib and symlink + file(REMOVE "${relocated_libdb}") + create_symlink("${APP}/usr/lib/${libdb_name}" "${relocated_libdb}") + endif() +endif() + +# cleanup empty directories +file(REMOVE_RECURSE "${APP}/usr/lib/${lmms}/optional/") + +if(CPACK_TOOL STREQUAL "appimagetool") + # Create ".AppImage" file using appimagetool (default) + + # appimage plugin needs ARCH set when running in extracted form from squashfs-root / CI + set(ENV{ARCH} "${ARCH}") + message(STATUS "Finishing the AppImage...") + execute_process(COMMAND "${APPIMAGETOOL_BIN}" "${APP}" "${APPIMAGE_FILE}" + ${APPIMAGETOOL_VERBOSITY} + ${OUTPUT_QUIET} + COMMAND_ECHO ${COMMAND_ECHO} + COMMAND_ERROR_IS_FATAL ANY) + + message(STATUS "AppImage created: ${APPIMAGE_FILE}") +elseif(CPACK_TOOL STREQUAL "makeself") + # Create self-extracting ".run" script using makeself + find_program(MAKESELF_BIN makeself REQUIRED) + + message(STATUS "Finishing the .run file using ${MAKESELF_BIN}...") + string(REPLACE ".AppImage" ".run" RUN_FILE "${APPIMAGE_FILE}") + configure_file( + "${CPACK_SOURCE_DIR}/cmake/linux/makeself_setup.sh.in" "${APP}/setup.sh" @ONLY + FILE_PERMISSIONS + OWNER_EXECUTE OWNER_WRITE OWNER_READ + GROUP_EXECUTE GROUP_WRITE GROUP_READ + WORLD_READ) + + if(OUTPUT_QUIET) + set(MAKESELF_QUIET "--quiet") + set(ERROR_QUIET ERROR_QUIET) + endif() + + # makeself.sh [args] archive_dir file_name label startup_script [script_args] + file(REMOVE "${RUN_FILE}") + execute_process(COMMAND "${MAKESELF_BIN}" + --keep-umask + --nox11 + ${MAKESELF_QUIET} + "${APP}" + "${RUN_FILE}" + "${LMMS} Installer" + "./setup.sh" + ${OUTPUT_QUIET} + COMMAND_ECHO ${COMMAND_ECHO} + COMMAND_ERROR_IS_FATAL ANY) + + # ensure the installer can be executed as a script file + execute_process(COMMAND "${RUN_FILE}" --help + ${OUTPUT_QUIET} + ${ERROR_QUIET} + COMMAND_ECHO ${COMMAND_ECHO} + COMMAND_ERROR_IS_FATAL ANY) + + message(STATUS "Installer created: ${RUN_FILE}") +else() + message(FATAL_ERROR "Packaging tool CPACK_TOOL=\"${CPACK_TOOL}\" is not yet supported") +endif() diff --git a/cmake/linux/apprun-hooks/README.md b/cmake/linux/apprun-hooks/README.md new file mode 100644 index 000000000..2bac9f1cb --- /dev/null +++ b/cmake/linux/apprun-hooks/README.md @@ -0,0 +1,11 @@ +# AppRun Hooks + +Scripts placed in this directory will automatically be bundled into AppImages +(e.g. `LMMS.AppDir/apprun-hooks`) and executed immediately before lmms. + +Quoting: + +> "Sometimes it's important to perform actions before running the actual app. Some plugins might have to set e.g., +> environment variables to work properly." + +See also: https://github.com/linuxdeploy/linuxdeploy/wiki/Plugin-system#apprun-hooks \ No newline at end of file diff --git a/cmake/linux/apprun-hooks/carla-hook.sh b/cmake/linux/apprun-hooks/carla-hook.sh new file mode 100644 index 000000000..8cbe43d02 --- /dev/null +++ b/cmake/linux/apprun-hooks/carla-hook.sh @@ -0,0 +1,46 @@ +#!/usr/bin/env bash + +# Workaround nuances with carla being an optional-yet-hard-linked plugin +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )" +ME="$( basename "${BASH_SOURCE[0]}")" +CARLA_LIB_NAME="libcarla_native-plugin.so" +KNOWN_LOCATIONS=("lib" "lib64") +unset CARLA_LIB_FILE + +# Check for carla at "known" locations +if command -v carla > /dev/null 2>&1; then + CARLA_PATH="$(command -v carla)" + CARLA_PREFIX="${CARLA_PATH%/bin*}" + + # Look for libcarla_native-plugin.so in adjacent lib directory + for lib in "${KNOWN_LOCATIONS[@]}"; do + if [ -e "$CARLA_PREFIX/$lib/carla/$CARLA_LIB_NAME" ]; then + # Add directory to LD_LIBRARY_PATH so libcarlabase.so can find it + CARLA_LIB_FILE="$CARLA_PREFIX/$lib/carla/$CARLA_LIB_NAME" + export LD_LIBRARY_PATH="$CARLA_PREFIX/$lib/carla/:$LD_LIBRARY_PATH" + echo "[$ME] Carla appears to be installed on this system at $CARLA_PREFIX/$lib/carla so we'll use it." >&2 + break + fi + done +else + echo "[$ME] Carla does not appear to be installed, we'll remove it from the plugin listing." >&2 + export "LMMS_EXCLUDE_PLUGINS=libcarla,${LMMS_EXCLUDE_PLUGINS}" + export "LMMS_EXCLUDE_LADSPA=libcarla,${LMMS_EXCLUDE_LADSPA}" +fi + +# Additional workarounds for library conflicts +# libgobject has been versioned "2.0" for over 20 years, but the ABI is constantly changing +KNOWN_CONFLICTS=("libgobject-2.0.so.0") +if [ -n "$CARLA_LIB_FILE" ]; then + for conflict in "${KNOWN_CONFLICTS[@]}"; do + # Only prepend LD_PRELOAD if we bundle the same version + if [ -e "$DIR/usr/lib/$conflict" ]; then + conflict_sys="$(ldd "$CARLA_LIB_FILE" | grep "$conflict" | awk '{print $3}')" + if [ -e "$conflict_sys" ]; then + # Add library to LD_PRELOAD so lmms can find it over its bundled version + echo "[$ME] Preferring the system's \"$conflict\" over the version bundled." >&2 + export LD_PRELOAD="$conflict_sys:$LD_PRELOAD" + fi + fi + done +fi diff --git a/cmake/linux/apprun-hooks/jack-hook.sh b/cmake/linux/apprun-hooks/jack-hook.sh new file mode 100644 index 000000000..e8a2d16c3 --- /dev/null +++ b/cmake/linux/apprun-hooks/jack-hook.sh @@ -0,0 +1,15 @@ +#!/usr/bin/env bash + +# Workaround crash when jack is missing by providing a dummy version +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )" +ME="$( basename "${BASH_SOURCE[0]}")" +# Set language to English +export LC_ALL=C +if ldd "$DIR/usr/bin/lmms" |grep "libjack.so" |grep "not found" > /dev/null 2>&1; then + echo "[$ME] Jack does not appear to be installed. That's OK, we'll use a dummy version instead." >&2 + export LD_LIBRARY_PATH="$DIR/usr/lib/jack:$LD_LIBRARY_PATH" +else + echo "[$ME] Jack appears to be installed on this system, so we'll use it." >&2 +fi +# Restore language +unset LC_ALL diff --git a/cmake/linux/apprun-hooks/unity-hook.sh b/cmake/linux/apprun-hooks/unity-hook.sh new file mode 100644 index 000000000..7b0052ff7 --- /dev/null +++ b/cmake/linux/apprun-hooks/unity-hook.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash + +# Workaround Unity desktop menubar integration +# - Unity's menubar relocation breaks Qt's MDI window handling in Linux +# - Unity was default in Ubuntu 11.04 - 18.04 +if [ "$XDG_CURRENT_DESKTOP" = "Unity" ]; then + export QT_X11_NO_NATIVE_MENUBAR=1 +fi diff --git a/cmake/linux/apprun-hooks/usr-lib-hooks.sh b/cmake/linux/apprun-hooks/usr-lib-hooks.sh new file mode 100644 index 000000000..d33b8a22d --- /dev/null +++ b/cmake/linux/apprun-hooks/usr-lib-hooks.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash + +# Workaround libraries being incorrectly placed in usr/lib (e.g. instead of usr/lib/lmms, etc) +# FIXME: Remove when linuxdeploy supports subfolders https://github.com/linuxdeploy/linuxdeploy/issues/305 +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )" +export LMMS_PLUGIN_DIR="$DIR/usr/lib/" +export LADSPA_PATH="$DIR/usr/lib/" +export SUIL_MODULE_DIR="$DIR/usr/lib/" diff --git a/cmake/linux/apprun-hooks/vbox-hook.sh b/cmake/linux/apprun-hooks/vbox-hook.sh new file mode 100644 index 000000000..e2ff1f6e0 --- /dev/null +++ b/cmake/linux/apprun-hooks/vbox-hook.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +ME="$( basename "${BASH_SOURCE[0]}")" +# Workaround crash in VirtualBox when hardware rendering is enabled +if lsmod |grep vboxguest > /dev/null 2>&1; then + echo "[$ME] VirtualBox detected. Forcing libgl software rendering." >&2 + export LIBGL_ALWAYS_SOFTWARE=1; +fi diff --git a/cmake/linux/apprun-hooks/wayland-hook.sh b/cmake/linux/apprun-hooks/wayland-hook.sh new file mode 100644 index 000000000..a24a1a563 --- /dev/null +++ b/cmake/linux/apprun-hooks/wayland-hook.sh @@ -0,0 +1,12 @@ +#!/usr/bin/env bash + +# Configure QPlatform Abstraction (qpa) to prefer X-Protocol C-Bindings (xcb) over Wayland +ME="$( basename "${BASH_SOURCE[0]}")" + +if [ -n "$QT_QPA_PLATFORM" ]; then + echo "[$ME] QT_QPA_PLATFORM=\"$QT_QPA_PLATFORM\" was provided, using." >&2 +else + export QT_QPA_PLATFORM="xcb" + echo "[$ME] Defaulting to QT_QPA_PLATFORM=\"$QT_QPA_PLATFORM\" for compatibility purposes." >&2 + echo "[$ME] To force wayland, set QT_QPA_PLATFORM=\"wayland\" or call using \"-platform wayland\"." >&2 +fi diff --git a/cmake/linux/icons/256x256/apps/lmms.png b/cmake/linux/icons/256x256/apps/lmms.png new file mode 100644 index 000000000..c069239dd Binary files /dev/null and b/cmake/linux/icons/256x256/apps/lmms.png differ diff --git a/cmake/linux/icons/256x256/mimetypes/application-x-lmms-project.png b/cmake/linux/icons/256x256/mimetypes/application-x-lmms-project.png new file mode 100644 index 000000000..0e03e7012 Binary files /dev/null and b/cmake/linux/icons/256x256/mimetypes/application-x-lmms-project.png differ diff --git a/cmake/linux/launch_lmms.sh b/cmake/linux/launch_lmms.sh deleted file mode 100644 index ba26fb9c7..000000000 --- a/cmake/linux/launch_lmms.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env bash -DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" -export PATH="$PATH:/sbin" -if command -v carla > /dev/null 2>&1; then - CARLAPATH="$(command -v carla)" - CARLAPREFIX="${CARLAPATH%/bin*}" - echo "Carla appears to be installed on this system at $CARLAPREFIX/lib[64]/carla so we'll use it." >&2 - export LD_LIBRARY_PATH=$CARLAPREFIX/lib/carla:$CARLAPREFIX/lib64/carla:$LD_LIBRARY_PATH -else - echo "Carla does not appear to be installed. That's OK, please ignore any related library errors." >&2 -fi -export LD_LIBRARY_PATH=$DIR/usr/lib/:$DIR/usr/lib/lmms:$LD_LIBRARY_PATH -# Prevent segfault on VirualBox -if lsmod |grep vboxguest > /dev/null 2>&1; then - echo "VirtualBox detected. Forcing libgl software rendering." >&2 - export LIBGL_ALWAYS_SOFTWARE=1; -fi -if ldconfig -p | grep libjack.so.0 > /dev/null 2>&1; then - echo "Jack appears to be installed on this system, so we'll use it." >&2 -else - echo "Jack does not appear to be installed. That's OK, we'll use a dummy version instead." >&2 - export LD_LIBRARY_PATH=$DIR/usr/lib/lmms/optional:$LD_LIBRARY_PATH -fi -QT_X11_NO_NATIVE_MENUBAR=1 "$DIR"/usr/bin/lmms.real "$@" diff --git a/cmake/linux/makeself_setup.sh.in b/cmake/linux/makeself_setup.sh.in new file mode 100644 index 000000000..22aa5c474 --- /dev/null +++ b/cmake/linux/makeself_setup.sh.in @@ -0,0 +1,35 @@ +#!/bin/bash + +# Halt on first error +set -e + +DESTDIR="/opt/@CPACK_PROJECT_NAME@" +BASHCOMPLETIONS="/usr/share/bash-completion/completions" +if [ "$(id -u)" != "0" ]; then + # Prepend "$HOME" so we can install to a writable location + DESTDIR="${HOME}${DESTDIR}" + BASHCOMPLETIONS="${HOME}/.local/share/bash-completion/completions" + echo "Installing as a regular user to ${DESTDIR}/..." +else + echo "Installing as elevated user to ${DESTDIR}/..." +fi + +# Deploy @CPACK_PROJECT_NAME_UCASE@ +mkdir -p "${DESTDIR}" +unalias cp &> /dev/null || true +cp -rf ./* "${DESTDIR}" +rm -f "${DESTDIR}/setup.sh" +mv "${DESTDIR}/AppRun" "${DESTDIR}/@CPACK_PROJECT_NAME@" + +# Install bash completions +mkdir -p "${BASHCOMPLETIONS}" +ln -sf "${DESTDIR}/usr/share/@CPACK_PROJECT_NAME@/bash-completion/completions/@CPACK_PROJECT_NAME@" "${BASHCOMPLETIONS}/@CPACK_PROJECT_NAME@" + +# Test @CPACK_PROJECT_NAME_UCASE@ +echo "Installation complete... Testing \"@CPACK_PROJECT_NAME@\"..." +"${DESTDIR}/@CPACK_PROJECT_NAME@" --allowroot --version &> /dev/null + +# TODO: Register file associations, desktop icon, etc + +echo "@CPACK_PROJECT_NAME_UCASE@ was installed successfully to ${DESTDIR}. To run:" +echo " ${DESTDIR}/@CPACK_PROJECT_NAME@" \ No newline at end of file diff --git a/cmake/linux/package_linux.sh.in b/cmake/linux/package_linux.sh.in deleted file mode 100644 index 16cd5719b..000000000 --- a/cmake/linux/package_linux.sh.in +++ /dev/null @@ -1,213 +0,0 @@ -#!/usr/bin/env bash -# Creates Linux ".AppImage" for @PROJECT_NAME_UCASE@ -# -# Depends: linuxdeployqt -# -# Notes: Will attempt to fetch linuxdeployqt automatically (x86_64 only) -# See Also: https://github.com/probonopd/linuxdeployqt/blob/master/BUILDING.md - -VERBOSITY=2 # 3=debug -LOGFILE="@CMAKE_BINARY_DIR@/appimage.log" -APPDIR="@CMAKE_BINARY_DIR@/@PROJECT_NAME_UCASE@.AppDir/" -DESKTOPFILE="${APPDIR}usr/share/applications/lmms.desktop" -STRIP="" - -# Don't strip for Debug|RelWithDebInfo builds -# shellcheck disable=SC2193 -if [[ "@CMAKE_BUILD_TYPE@" == *"Deb"* ]]; then - STRIP="-no-strip" -fi - -# Console colors -RED="\\x1B[1;31m" -GREEN="\\x1B[1;32m" -YELLOW="\\x1B[1;33m" -PLAIN="\\x1B[0m" - -function error { - echo -e " ${PLAIN}[${RED}error${PLAIN}] ${1}" - return 1 -} - -function success { - echo -e " ${PLAIN}[${GREEN}success${PLAIN}] ${1}" -} - -function skipped { - echo -e " ${PLAIN}[${YELLOW}skipped${PLAIN}] ${1}" -} - -# Exit with error message if any command fails -trap "error 'Failed to generate AppImage'; exit 1" ERR - -# Run a command silently, but print output if it fails -function run_and_log { - echo -e "\n\n>>>>> $1" >> "$LOGFILE" - output="$("$@" 2>&1)" - status=$? - echo "$output" >> "$LOGFILE" - [[ $status != 0 ]] && echo "$output" - return $status -} - -# Blindly assume system arch is appimage arch -ARCH=$(uname -m) -export ARCH - -# Check for problematic install locations -INSTALL=$(echo "@CMAKE_INSTALL_PREFIX@" | sed 's/\/*$//g') -if [ "$INSTALL" == "/usr/local" ] || [ "$INSTALL" == "/usr" ] ; then - error "Incompatible CMAKE_INSTALL_PREFIX for creating AppImage: @CMAKE_INSTALL_PREFIX@" -fi - -# Ensure linuxdeployqt uses the same qmake version as cmake -PATH="$(dirname "@QT_QMAKE_EXECUTABLE@"):$PATH" -export PATH - -# Use linuxdeployqt from env or in PATH -[[ $LINUXDEPLOYQT ]] || LINUXDEPLOYQT="$(which linuxdeployqt 2>/dev/null)" || true -[[ $APPIMAGETOOL ]] || APPIMAGETOOL="$(which appimagetool 2>/dev/null)" || true - -# Fetch portable linuxdeployqt if not in PATH -if [[ -z $LINUXDEPLOYQT || -z $APPIMAGETOOL ]]; then - filename="linuxdeployqt-continuous-$ARCH.AppImage" - url="https://github.com/probonopd/linuxdeployqt/releases/download/continuous/$filename" - echo " [.......] Downloading: ${url}" - wget -N -q "$url" && err=0 || err=$? - case "$err" in - 0) success "Downloaded $PWD/$filename" ;; - # 8 == server issued 4xx error - 8) error "Download failed (perhaps no package available for $ARCH)" ;; - *) error "Download failed" ;; - esac - - # Extract AppImage and replace LINUXDEPLOYQT variable with extracted binary - # to support systems without fuse - # Also, we need to set LD_LIBRARY_PATH, but linuxdepoyqt's AppRun unsets it - # See https://github.com/probonopd/linuxdeployqt/pull/370/ - chmod +x "$filename" - ./"$filename" --appimage-extract >/dev/null - success "Extracted $filename" - - # Use the extracted linuxdeployqt and appimagetool - PATH="$(pwd -P)/squashfs-root/usr/bin:$PATH" - [[ $LINUXDEPLOYQT ]] || LINUXDEPLOYQT="$(which linuxdeployqt)" - [[ $APPIMAGETOOL ]] || APPIMAGETOOL="$(which appimagetool)" -fi - -# Make skeleton AppDir -echo -e "\nCreating ${APPDIR}..." -rm -rf "${APPDIR}" -mkdir -p "${APPDIR}usr" -success "Created ${APPDIR}" - -# Clone install to AppDir -echo -e "\nCopying @CMAKE_INSTALL_PREFIX@ to ${APPDIR}..." -cp -R "@CMAKE_INSTALL_PREFIX@/." "${APPDIR}usr" -rm -rf "${APPDIR}usr/include" -success "${APPDIR}" - -# Copy rawwaves directory for stk/mallets -mkdir -p "${APPDIR}usr/share/stk/" -cp -R /usr/share/stk/rawwaves/ "${APPDIR}usr/share/stk/" - -# Create a wrapper script which calls the lmms executable -mv "${APPDIR}usr/bin/lmms" "${APPDIR}usr/bin/lmms.real" - -cp "@CMAKE_CURRENT_SOURCE_DIR@/launch_lmms.sh" "${APPDIR}usr/bin/lmms" - -chmod +x "${APPDIR}usr/bin/lmms" - -# Per https://github.com/probonopd/linuxdeployqt/issues/129 -unset LD_LIBRARY_PATH - -# Ensure linuxdeployqt can find shared objects -export LD_LIBRARY_PATH="${APPDIR}"usr/lib/lmms/:"${APPDIR}"usr/lib/lmms/optional:"$LD_LIBRARY_PATH" - -# Move executables so linuxdeployqt can find them -ZYNLIB="${APPDIR}usr/lib/lmms/RemoteZynAddSubFx" -VSTLIB32="${APPDIR}usr/lib/lmms/32/RemoteVstPlugin32.exe.so" -VSTLIB64="${APPDIR}usr/lib/lmms/RemoteVstPlugin64.exe.so" - -ZYNBIN="${APPDIR}usr/bin/RemoteZynAddSubFx" -VSTBIN32="${APPDIR}usr/bin/RemoteVstPlugin32.exe.so" -VSTBIN64="${APPDIR}usr/bin/RemoteVstPlugin64.exe.so" - -mv "$ZYNLIB" "$ZYNBIN" -mv "$VSTLIB32" "$VSTBIN32" || true -mv "$VSTLIB64" "$VSTBIN64" || true - -# Handle wine linking -if [ -d "@WINE_32_LIBRARY_DIR@" ] && \ - ldd "$VSTBIN32" | grep "libwine\.so" | grep "not found"; then - export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:"@WINE_32_LIBRARY_DIRS@" -fi -if [ -d "@WINE_64_LIBRARY_DIR@" ] && \ - ldd "$VSTBIN64" | grep "libwine\.so" | grep "not found"; then - export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:"@WINE_64_LIBRARY_DIRS@" -fi - -# Patch the desktop file -sed -i 's/.*Exec=.*/Exec=lmms.real/' "$DESKTOPFILE" -echo "X-AppImage-Version=@VERSION@" >> "$DESKTOPFILE" - -# Fix linking for soft-linked plugins -for file in "${APPDIR}usr/lib/lmms/"*.so; do - thisfile="${APPDIR}usr/lib/lmms/${file##*/}" - executables="${executables} -executable=$thisfile" -done -executables="${executables} -executable=${ZYNBIN}" -executables="${executables} -executable=${VSTBIN32}" -executables="${executables} -executable=${VSTBIN64}" -executables="${executables} -executable=${APPDIR}usr/lib/lmms/ladspa/imp_1199.so" -executables="${executables} -executable=${APPDIR}usr/lib/lmms/ladspa/imbeq_1197.so" -executables="${executables} -executable=${APPDIR}usr/lib/lmms/ladspa/pitch_scale_1193.so" -executables="${executables} -executable=${APPDIR}usr/lib/lmms/ladspa/pitch_scale_1194.so" - -echo -e "\nWriting verbose output to \"${LOGFILE}\"" -echo -n > "$LOGFILE" - -# Bundle both qt and non-qt dependencies into appimage format -echo -e "\nBundling and relinking system dependencies..." - -# shellcheck disable=SC2086 -run_and_log "$LINUXDEPLOYQT" "$DESKTOPFILE" $executables -bundle-non-qt-libs -verbose=$VERBOSITY $STRIP -success "Bundled and relinked dependencies" - -# Link to original location so lmms can find them -ln -sr "$ZYNBIN" "$ZYNLIB" -ln -sr "$VSTBIN32" "$VSTLIB32" || true -ln -sr "$VSTBIN64" "$VSTLIB64" || true - -# Remove wine library conflict -rm -f "${APPDIR}/usr/lib/libwine.so.1" - -# Use system-provided carla -rm -f "${APPDIR}usr/lib/"libcarla*.so -rm -f "${APPDIR}usr/lib/lmms/optional/"libcarla*.so - -# Remove bundled jack in LD_LIBRARY_PATH if exists -if [ -e "${APPDIR}/usr/lib/libjack.so.0" ]; then - rm "${APPDIR}/usr/lib/libjack.so.0" -fi - -# Bundle jack out of LD_LIBRARY_PATH -JACK_LIB=$(ldd "${APPDIR}/usr/bin/lmms.real" | sed -n 's/\tlibjack\.so\.0 => \(.\+\) (0x[0-9a-f]\+)/\1/p') -if [ -e "$JACK_LIB" ]; then - mkdir -p "${APPDIR}usr/lib/lmms/optional/" - cp "$JACK_LIB" "${APPDIR}usr/lib/lmms/optional/" -fi - -# Point the AppRun to the shim launcher -rm -f "${APPDIR}/AppRun" -ln -sr "${APPDIR}/usr/bin/lmms" "${APPDIR}/AppRun" - -# Add icon -ln -srf "${APPDIR}/lmms.png" "${APPDIR}/.DirIcon" - -# Create AppImage -echo -e "\nFinishing the AppImage..." -run_and_log "$APPIMAGETOOL" "${APPDIR}" "@APPIMAGE_FILE@" -success "Created @APPIMAGE_FILE@" - -echo -e "\nFinished" diff --git a/cmake/modules/BashCompletion.cmake b/cmake/modules/BashCompletion.cmake index 7301e82aa..7ce5a4886 100644 --- a/cmake/modules/BashCompletion.cmake +++ b/cmake/modules/BashCompletion.cmake @@ -1,93 +1,78 @@ -# A wrapper around pkg-config-provided and cmake-provided bash completion that -# will have dynamic behavior at INSTALL() time to allow both root-level -# INSTALL() as well as user-level INSTALL(). -# -# See also https://github.com/scop/bash-completion -# -# Copyright (c) 2018, Tres Finocchiaro, +# Copyright (c) 2024, Tres Finocchiaro, # Redistribution and use is allowed according to the terms of the BSD license. # For details see the accompanying COPYING-CMAKE-SCRIPTS file. # +# Description: +# Fail-safe bash-completion installation support +# - Installs to ${CMAKE_INSTALL_PREFIX}/share/bash-completion/completions +# - Attempts to calculate and install to system-wide location +# - See also https://github.com/scop/bash-completion +# # Usage: # INCLUDE(BashCompletion) # BASHCOMP_INSTALL(foo) # ... where "foo" is a shell script adjacent to the CMakeLists.txt -# -# How it determines BASHCOMP_PKG_PATH, in order: -# 1. Uses BASHCOMP_PKG_PATH if already set (e.g. -DBASHCOMP_PKG_PATH=...) -# a. If not, uses pkg-config's PKG_CHECK_MODULES to determine path -# b. Fallback to cmake's FIND_PACKAGE(bash-completion) path -# c. Fallback to hard-coded /usr/share/bash-completion/completions -# 2. Final fallback to ${CMAKE_INSTALL_PREFIX}/share/bash-completion/completions if -# detected path is unwritable. -# - Windows does not support bash completion -# - macOS support should eventually be added for Homebrew (TODO) -IF(WIN32) - MESSAGE(STATUS "Bash completion is not supported on this platform.") -ELSEIF(APPLE) - MESSAGE(STATUS "Bash completion is not yet implemented for this platform.") -ELSE() - INCLUDE(FindUnixCommands) - # Honor manual override if provided - IF(NOT BASHCOMP_PKG_PATH) - # First, use pkg-config, which is the most reliable - FIND_PACKAGE(PkgConfig QUIET) - IF(PKGCONFIG_FOUND) - PKG_CHECK_MODULES(BASH_COMPLETION bash-completion) - PKG_GET_VARIABLE(BASHCOMP_PKG_PATH bash-completion completionsdir) - ELSE() - # Second, use cmake (preferred but less common) - FIND_PACKAGE(bash-completion QUIET) - IF(BASH_COMPLETION_FOUND) - SET(BASHCOMP_PKG_PATH "${BASH_COMPLETION_COMPLETIONSDIR}") - ENDIF() - ENDIF() +# Honor manual override if provided +if(NOT BASHCOMP_PKG_PATH) + # First, use pkg-config, which is the most reliable + find_package(PkgConfig QUIET) + if(PKGCONFIG_FOUND) + PKG_CHECK_MODULES(BASH_COMPLETION bash-completion) + PKG_GET_VARIABLE(BASHCOMP_PKG_PATH bash-completion completionsdir) + else() + # Second, use cmake (preferred but less common) + find_package(bash-completion QUIET) + if(BASH_COMPLETION_FOUND) + set(BASHCOMP_PKG_PATH "${BASH_COMPLETION_COMPLETIONSDIR}") + endif() + endif() - # Third, use a hard-coded fallback value - IF("${BASHCOMP_PKG_PATH}" STREQUAL "") - SET(BASHCOMP_PKG_PATH "/usr/share/bash-completion/completions") - ENDIF() - ENDIF() + # Third, use a hard-coded fallback value + if("${BASHCOMP_PKG_PATH}" STREQUAL "") + set(BASHCOMP_PKG_PATH "/usr/share/bash-completion/completions") + endif() +endif() - # Always provide a fallback for non-root INSTALL() - SET(BASHCOMP_USER_PATH "${CMAKE_INSTALL_PREFIX}/share/bash-completion/completions") +# Always provide a fallback for non-root INSTALL() +# * "lmms" subfolder ensures we don't pollute /usr/local/share/ on default "make install" +set(BASHCOMP_USER_PATH "share/${PROJECT_NAME}/bash-completion/completions") - # Cmake doesn't allow easy use of conditional logic at INSTALL() time - # this is a problem because ${BASHCOMP_PKG_PATH} may not be writable and we - # need sane fallback behavior for bundled INSTALL() (e.g. .AppImage, etc). - # - # The reason this can't be detected by cmake is that it's fairly common to - # run "cmake" as a one user (i.e. non-root) and "make install" as another user - # (i.e. root). - # - # - Creates a script called "install_${SCRIPT_NAME}_completion.sh" into the - # working binary directory and invokes this script at install. - # - Script handles INSTALL()-time conditional logic for sane ballback behavior - # when ${BASHCOMP_PKG_PATH} is unwritable (i.e. non-root); Something cmake - # can't handle on its own at INSTALL() time) - MACRO(BASHCOMP_INSTALL SCRIPT_NAME) - # A shell script for wrapping conditionl logic - SET(BASHCOMP_SCRIPT "${CMAKE_CURRENT_BINARY_DIR}/install_${SCRIPT_NAME}_completion.sh") +macro(BASHCOMP_INSTALL SCRIPT_NAME) + # Note: When running from CPack, message(...) will be supressed unless WARNING + if(WIN32) + message(STATUS "Bash completion is not supported on this platform.") + else() + # Install a copy of bash completion to the default install prefix + # See also: https://github.com/LMMS/lmms/pull/7252/files#r1815749125 + install(FILES "${SCRIPT_NAME}" DESTINATION "${BASHCOMP_USER_PATH}") + + # Next, blindly attempt a system-wide install, ignoring failure + # See also: https://stackoverflow.com/q/58448332 + # * CPack doesn't use CMAKE_INSTALL_PREFIX, so the original will be missing when packaging + # and this step will be skipped + # * For non-root installs (e.g. ../target), this will silently fail + set(BASHCOMP_ORIG "${CMAKE_INSTALL_PREFIX}/${BASHCOMP_USER_PATH}/${CMAKE_PROJECT_NAME}") + set(BASHCOMP_LINK "${BASHCOMP_PKG_PATH}/${CMAKE_PROJECT_NAME}") + + if(BASHCOMP_PKG_PATH) + # TODO: CMake 3.21 Use "file(COPY_FILE ...)" + install(CODE " + if(EXISTS \"${BASHCOMP_ORIG}\") + file(REMOVE \"${BASHCOMP_LINK}\") + execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink + \"${BASHCOMP_ORIG}\" + \"${BASHCOMP_LINK}\" + ERROR_QUIET + RESULT_VARIABLE result) + if(result EQUAL 0) + message(STATUS \"Bash completion-support has been installed to ${BASHCOMP_LINK}\") + endif() + endif() + ") + endif() + endif() +endmacro() - FILE(WRITE ${BASHCOMP_SCRIPT} "\ -#!${BASH}\n\ -set -e\n\ -if [ -w \"${BASHCOMP_PKG_PATH}\" ]; then\n\ - BASHCOMP_PKG_PATH=\"${BASHCOMP_PKG_PATH}\"\n\ -else \n\ - BASHCOMP_PKG_PATH=\"\$DESTDIR${BASHCOMP_USER_PATH}\"\n\ -fi\n\ -echo -e \"\\nInstalling bash completion...\\n\"\n\ -mkdir -p \"\$BASHCOMP_PKG_PATH\"\n\ -cp \"${CMAKE_CURRENT_SOURCE_DIR}/${SCRIPT_NAME}\" \"\$BASHCOMP_PKG_PATH\"\n\ -chmod a+r \"\$BASHCOMP_PKG_PATH/${SCRIPT_NAME}\"\n\ -echo -e \"Bash completion for ${SCRIPT_NAME} has been installed to \$BASHCOMP_PKG_PATH/${SCRIPT_NAME}\"\n\ -") - INSTALL(CODE "EXECUTE_PROCESS(COMMAND chmod u+x \"install_${SCRIPT_NAME}_completion.sh\" WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} )") - INSTALL(CODE "EXECUTE_PROCESS(COMMAND \"./install_${SCRIPT_NAME}_completion.sh\" WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} )") - MESSAGE(STATUS "Bash completion script for ${SCRIPT_NAME} will be installed to ${BASHCOMP_PKG_PATH} or fallback to ${BASHCOMP_USER_PATH} if unwritable.") - ENDMACRO() -ENDIF() diff --git a/cmake/modules/CheckWineGcc.cmake b/cmake/modules/CheckWineGcc.cmake index 2956198d8..d1694924b 100644 --- a/cmake/modules/CheckWineGcc.cmake +++ b/cmake/modules/CheckWineGcc.cmake @@ -9,7 +9,19 @@ FUNCTION(CheckWineGcc BITNESS WINEGCC_EXECUTABLE RESULT) return 0; } ") - EXECUTE_PROCESS(COMMAND ${WINEGCC_EXECUTABLE} "-m${BITNESS}" + + # Handle non-Intel platforms + IF(LMMS_HOST_X86_64 OR LMMS_HOST_X86) + SET(MPLATFORM "-m${BITNESS}") + ELSEIF(BITNESS EQUAL 64) + SET(MPLATFORM "") + ELSE() + # Skip 32-bit for non-Intel + SET(${RESULT} False PARENT_SCOPE) + RETURN() + ENDIF() + + EXECUTE_PROCESS(COMMAND ${WINEGCC_EXECUTABLE} "${MPLATFORM}" "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/winegcc_test.cxx" "-o" "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/winegcc_test" OUTPUT_QUIET ERROR_QUIET diff --git a/cmake/modules/CreateSymlink.cmake b/cmake/modules/CreateSymlink.cmake new file mode 100644 index 000000000..41af2eb6f --- /dev/null +++ b/cmake/modules/CreateSymlink.cmake @@ -0,0 +1,34 @@ +# Offer relative symlink support via "cmake -E create_symlink" +# For verbose, set COMMAND_ECHO to STDOUT in calling script +macro(create_symlink filepath sympath) + if(CMAKE_COMMAND) + set(_cmake_command "${CMAKE_COMMAND}") + elseif(CPACK_CMAKE_COMMAND) + set(_cmake_command "${CPACK_CMAKE_COMMAND}") + else() + message(FATAL_ERROR "Sorry, can't resolve variable CMAKE_COMMAND") + endif() + + if(NOT IS_ABSOLUTE "${sympath}") + message(FATAL_ERROR "Sorry, this command only works with absolute paths") + endif() + + if(NOT DEFINED COMMAND_ECHO) + set(_command_echo NONE) + else() + set(_command_echo "${COMMAND_ECHO}") + endif() + + # Calculate the relative path + file(RELATIVE_PATH reldir "${sympath}/../" "${filepath}") + get_filename_component(symname "${sympath}" NAME) + + # Calculate the working directory + get_filename_component(sympath_parent "${sympath}" DIRECTORY) + + # Create the symbolic link + execute_process(COMMAND "${_cmake_command}" -E create_symlink "${reldir}" "${symname}" + WORKING_DIRECTORY "${sympath_parent}" + COMMAND_ECHO ${_command_echo} + COMMAND_ERROR_IS_FATAL ANY) +endmacro() \ No newline at end of file diff --git a/cmake/modules/DetectMachine.cmake b/cmake/modules/DetectMachine.cmake index b9aa4c8c6..7c3da342c 100644 --- a/cmake/modules/DetectMachine.cmake +++ b/cmake/modules/DetectMachine.cmake @@ -77,13 +77,15 @@ IF(WIN32) unset(MSVC_VER) else() # Cross-compiled - # TODO: Handle Windows ARM64 targets - IF(WIN64) - SET(IS_X86_64 TRUE) - SET(LMMS_BUILD_WIN64 TRUE) - ELSE(WIN64) - SET(IS_X86 TRUE) - ENDIF(WIN64) + if($ENV{MSYSTEM_CARCH} MATCHES "aarch64") + set(IS_ARM64 TRUE) + set(LMMS_BUILD_WIN64 TRUE) + elseif(WIN64) + set(IS_X86_64 TRUE) + set(LMMS_BUILD_WIN64 TRUE) + else() + set(IS_X86 TRUE) + endif() endif() ELSE() # Detect target architecture based on compiler target triple e.g. "x86_64-pc-linux" @@ -163,15 +165,26 @@ IF(LMMS_BUILD_APPLE) # Detect Homebrew versus Macports environment EXECUTE_PROCESS(COMMAND brew --prefix RESULT_VARIABLE DETECT_HOMEBREW OUTPUT_VARIABLE HOMEBREW_PREFIX ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE) EXECUTE_PROCESS(COMMAND which port RESULT_VARIABLE DETECT_MACPORTS OUTPUT_VARIABLE MACPORTS_PREFIX ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE) - IF(${DETECT_HOMEBREW} EQUAL 0) - SET(HOMEBREW 1) - SET(APPLE_PREFIX "${HOMEBREW_PREFIX}") - ELSEIF(${DETECT_MACPORTS} EQUAL 0) - SET(MACPORTS 1) - GET_FILENAME_COMPONENT(MACPORTS_PREFIX ${MACPORTS_PREFIX} DIRECTORY) - GET_FILENAME_COMPONENT(MACPORTS_PREFIX ${MACPORTS_PREFIX} DIRECTORY) - SET(APPLE_PREFIX "${MACPORTS_PREFIX}") - LINK_DIRECTORIES(${LINK_DIRECTORIES} ${APPLE_PREFIX}/lib) + IF(DETECT_HOMEBREW EQUAL 0) + SET(HOMEBREW 1) + SET(APPLE_PREFIX "${HOMEBREW_PREFIX}") + # Configure Qt + SET(Qt5_DIR "${HOMEBREW_PREFIX}/opt/qt@5/lib/cmake/Qt5") + SET(Qt5Test_DIR "${HOMEBREW_PREFIX}/opt/qt@5/lib/cmake/Qt5Test") + SET(Qt6_DIR "${HOMEBREW_PREFIX}/opt/qt@6/lib/cmake/Qt6") + SET(Qt6Test_DIR "${HOMEBREW_PREFIX}/opt/qt@6/lib/cmake/Qt6Test") + ELSEIF(DETECT_MACPORTS EQUAL 0) + SET(MACPORTS 1) + # move up two directories + GET_FILENAME_COMPONENT(MACPORTS_PREFIX "${MACPORTS_PREFIX}" DIRECTORY) + GET_FILENAME_COMPONENT(MACPORTS_PREFIX "${MACPORTS_PREFIX}" DIRECTORY) + SET(APPLE_PREFIX "${MACPORTS_PREFIX}") + # Configure Qt + SET(Qt5_DIR "${MACPORTS_PREFIX}/lib/cmake/Qt5") + SET(Qt5Test_DIR "${MACPORTS_PREFIX}/lib/cmake/Qt5Test") + SET(Qt6_DIR "${MACPORTS_PREFIX}/lib/cmake/Qt6") + SET(Qt6Test_DIR "${MACPORTS_PREFIX}/lib/cmake/Qt6Test") + LINK_DIRECTORIES(${LINK_DIRECTORIES} ${APPLE_PREFIX}/lib) ENDIF() # Detect OS Version diff --git a/cmake/modules/DownloadBinary.cmake b/cmake/modules/DownloadBinary.cmake new file mode 100644 index 000000000..a6b92dc44 --- /dev/null +++ b/cmake/modules/DownloadBinary.cmake @@ -0,0 +1,143 @@ +# Downloads an executable from the provided URL for use in a build system +# and optionally prepends it to the PATH +# +# Assumes: +# - CMAKE_CURRENT_BINARY_DIR/[${_name}] +# - CPACK_CURRENT_BINARY_DIR/[${_name}] +# - Fallback to $ENV{TMPDIR}/[RANDOM]/[${_name}] +# - For verbose, set COMMAND_ECHO to STDOUT in calling script +# +macro(download_binary RESULT_VARIABLE _url _name _prepend_to_path) + if(NOT COMMAND_ECHO OR "${COMMAND_ECHO}" STREQUAL "NONE") + set(_command_echo NONE) + set(_output_quiet OUTPUT_QUIET) + set(_error_quiet ERROR_QUIET) + else() + set(_command_echo "${COMMAND_ECHO}") + set(_output_quiet "") + set(_error_quiet "") + endif() + + # Check if fuse is needed + if("${RESULT_VARIABLE}" MATCHES "\\.AppImage$" OR "${_name}" MATCHES "\\.AppImage$") + message(STATUS "AppImage detected, we'll extract the AppImage before using") + set(_${RESULT_VARIABLE}_IS_APPIMAGE TRUE) + endif() + + # Determine a suitable working directory + if(CMAKE_CURRENT_BINARY_DIR) + # Assume we're called from configure step + set(_working_dir "${CMAKE_CURRENT_BINARY_DIR}") + elseif(CPACK_CURRENT_BINARY_DIR) + # Assume cpack (non-standard variable name, but used throughout) + set(_working_dir "${CPACK_CURRENT_BINARY_DIR}") + else() + # Fallback to somewhere temporary, writable + if($ENV{_tmpdir}) + # POSIX + set(_tmpdir "$ENV{_tmpdir}") + elseif($ENV{TEMP}) + # Windows + set(_tmpdir "$ENV{TEMP}") + else() + # Linux, shame on you! + find_program(MKTEMP mktemp) + if(MKTEMP) + execute_process(COMMAND mktemp + OUTPUT_VARIABLE _working_dir + OUTPUT_STRIP_TRAILING_WHITESPACE + ${_output_quiet} + COMMAND_ECHO ${_command_echo}) + # mktemp formats it how we want it + else() + # Ummm... Linux you can do better! + set(_tmpdir "/tmp") + endif() + endif() + if(NOT DEFINED _working_dir) + string(RANDOM subdir) + set(_working_dir "${_tmpdir}/tmp.${subdir}") + endif() + if(NOT EXISTS "${_working_dir}") + file(MAKE_DIRECTORY "${_working_dir}") + endif() + endif() + + if(_prepend_to_path) + # Ensure the PATH is configured + string(FIND "$ENV{PATH}" "${_working_dir}" _pathloc) + if(NOT $_pathloc EQUAL 0) + set(ENV{PATH} "${_working_dir}:$ENV{PATH}") + endif() + endif() + + # First ensure the binary doesn't already exist + find_program(_${RESULT_VARIABLE} "${_name}" HINTS "${_working_dir}") + + set(_binary_path "${_working_dir}/${_name}") + if(NOT _${RESULT_VARIABLE}) + message(STATUS "Downloading ${_name} from ${_url}...") + file(DOWNLOAD + "${_url}" + "${_binary_path}" + STATUS DOWNLOAD_STATUS) + # Check if download was successful. + list(GET DOWNLOAD_STATUS 0 STATUS_CODE) + list(GET DOWNLOAD_STATUS 1 ERROR_MESSAGE) + if(NOT ${STATUS_CODE} EQUAL 0) + file(REMOVE "${_binary_path}") + message(FATAL_ERROR "Error downloading ${_url} ${ERROR_MESSAGE}") + endif() + + # Ensure the file is executable + file(CHMOD "${_binary_path}" PERMISSIONS + OWNER_EXECUTE OWNER_WRITE OWNER_READ + GROUP_EXECUTE GROUP_WRITE GROUP_READ) + + # Ensure it's found + find_program(_${RESULT_VARIABLE} "${_name}" HINTS "${_working_dir}" REQUIRED) + endif() + + # We need to create a subdirectory for this binary and symlink it's AppRun to where it's expected + if(_${RESULT_VARIABLE}_IS_APPIMAGE AND NOT IS_SYMLINK "${_${RESULT_VARIABLE}}") + if(NOT COMMAND create_symlink) + include(CreateSymlink) + endif() + + message(STATUS "Extracting ${_${RESULT_VARIABLE}} to ${_working_dir}/.${_name}/") + + # extract appimage + execute_process(COMMAND "${_${RESULT_VARIABLE}}" --appimage-extract + WORKING_DIRECTORY "${_working_dir}" + COMMAND_ECHO ${_command_echo} + ${_output_quiet} + ${_error_quiet} + COMMAND_ERROR_IS_FATAL ANY) + + # move extracted files to dedicated location (e.g. ".linuxdeploy-x86_64.AppImage/squashfs-root/") + file(MAKE_DIRECTORY "${_working_dir}/.${_name}/") + file(RENAME "${_working_dir}/squashfs-root/" "${_working_dir}/.${_name}/squashfs-root/") + + # remove the unusable binary + file(REMOVE "${_${RESULT_VARIABLE}}") + + # symlink the expected binary name to the AppRun file + message(STATUS "Creating a symbolic link ${_${RESULT_VARIABLE}} which points to ${_working_dir}/.${_name}/squashfs-root/AppRun") + create_symlink("${_working_dir}/.${_name}/squashfs-root/AppRun" "${_${RESULT_VARIABLE}}") + endif() + + # Test the binary + # - TODO: Add support for bad binaries that set "$?" to an error code for no good reason + # - TODO: Add support for Windows binaries expecting "/?" instead of "--help" + message(STATUS "Testing that ${_name} works on this system...") + set(_test_param "--help") + + execute_process(COMMAND "${_${RESULT_VARIABLE}}" ${_test_param} + COMMAND_ECHO ${_command_echo} + ${_output_quiet} + ${_error_quiet} + COMMAND_ERROR_IS_FATAL ANY) + + message(STATUS "The binary \"${_${RESULT_VARIABLE}}\" is now available") + set(${RESULT_VARIABLE} "${_${RESULT_VARIABLE}}") +endmacro() \ No newline at end of file diff --git a/cmake/modules/ErrorFlags.cmake b/cmake/modules/ErrorFlags.cmake index 57cc6ad49..175c95611 100644 --- a/cmake/modules/ErrorFlags.cmake +++ b/cmake/modules/ErrorFlags.cmake @@ -65,6 +65,10 @@ elseif(MSVC) "/WX" # Treat warnings as errors ) endif() + + # Silence deprecation warnings for the std::atomic_... family of functions. + # TODO: Remove once C++20's std::atomic is fully supported. + add_compile_definitions("_SILENCE_CXX20_OLD_SHARED_PTR_ATOMIC_SUPPORT_DEPRECATION_WARNING") endif() # Add the flags to the whole directory tree. We use the third-party flags for diff --git a/cmake/modules/FindFluidSynth.cmake b/cmake/modules/FindFluidSynth.cmake index 70c40b8d8..d83fd31ca 100644 --- a/cmake/modules/FindFluidSynth.cmake +++ b/cmake/modules/FindFluidSynth.cmake @@ -22,7 +22,7 @@ find_path(FluidSynth_INCLUDE_DIR ) find_library(FluidSynth_LIBRARY - NAMES "fluidsynth" + NAMES "fluidsynth" "fluidsynth-3" "fluidsynth-2" "fluidsynth-1" HINTS ${FLUIDSYNTH_PKG_LIBRARY_DIRS} ) diff --git a/cmake/modules/FindLilv.cmake b/cmake/modules/FindLilv.cmake new file mode 100644 index 000000000..d9124de38 --- /dev/null +++ b/cmake/modules/FindLilv.cmake @@ -0,0 +1,19 @@ +# Copyright (c) 2025 Dalton Messmer +# +# Redistribution and use is allowed according to the terms of the New BSD license. +# For details see the accompanying COPYING-CMAKE-SCRIPTS file. + +include(ImportedTargetHelpers) + +find_package_config_mode_with_fallback(Lilv Lilv::lilv + LIBRARY_NAMES "lilv" "lilv-0" + INCLUDE_NAMES "lilv/lilv.h" + PKG_CONFIG "lilv-0" +) + +include(FindPackageHandleStandardArgs) + +find_package_handle_standard_args(Lilv + REQUIRED_VARS Lilv_LIBRARY Lilv_INCLUDE_DIRS + VERSION_VAR Lilv_VERSION +) diff --git a/cmake/modules/FindSTK.cmake b/cmake/modules/FindSTK.cmake index 5564d24f8..8bbf3ac6c 100644 --- a/cmake/modules/FindSTK.cmake +++ b/cmake/modules/FindSTK.cmake @@ -14,7 +14,7 @@ if(STK_INCLUDE_DIRS) list(GET STK_INCLUDE_DIRS 0 STK_INCLUDE_DIR) find_path(STK_RAWWAVE_ROOT NAMES silence.raw sinewave.raw - HINTS "${STK_INCLUDE_DIR}/.." + HINTS "${STK_INCLUDE_DIR}/.." "${STK_INCLUDE_DIR}/../.." PATH_SUFFIXES share/stk/rawwaves share/libstk/rawwaves ) endif() @@ -22,6 +22,6 @@ endif() include(FindPackageHandleStandardArgs) find_package_handle_standard_args(STK - REQUIRED_VARS STK_LIBRARY STK_INCLUDE_DIR + REQUIRED_VARS STK_LIBRARY STK_INCLUDE_DIR STK_RAWWAVE_ROOT # STK doesn't appear to expose its version, so we can't pass it here ) diff --git a/cmake/modules/FindSuilModules.cmake b/cmake/modules/FindSuilModules.cmake new file mode 100644 index 000000000..998521c7a --- /dev/null +++ b/cmake/modules/FindSuilModules.cmake @@ -0,0 +1,40 @@ +# Copyright (c) 2024 Tres Finocchiaro +# +# Redistribution and use is allowed according to the terms of the New BSD license. +# For details see the accompanying COPYING-CMAKE-SCRIPTS file. + +# This module defines +# Suil_MODULES: List of full paths to Suil modules (e.g. "/usr/lib/suil-0/libsuil_x11.so;...") +# Suil_MODULES_PREFIX: Only the directory name of the Suil_MODULES path (e.g. "suil-0") + +pkg_check_modules(Suil QUIET suil-0) + +if(Suil_FOUND) + if(APPLE) + set(_lib_ext "dylib") + elseif(WIN32) + set(_lib_ext "dll") + else() + set(_lib_ext "so") + endif() + + # Isolate -- if needed -- the first suil library path (e.g. "/usr/lib/libsuil-0.so") + list(GET Suil_LINK_LIBRARIES 0 _lib) + if(EXISTS "${_lib}") + # Isolate -- if needed -- the first suil library name (e.g. "suil-0") + list(GET Suil_LIBRARIES 0 _modules_prefix) + get_filename_component(_lib_dir "${_lib}" DIRECTORY) + # Construct modules path (e.g. "/usr/lib/suil-0") + set(_modules_dir "${_lib_dir}/${_modules_prefix}") + if(IS_DIRECTORY "${_modules_dir}") + set(Suil_MODULES_PREFIX "${_modules_prefix}") + file(GLOB Suil_MODULES "${_modules_dir}/*.${_lib_ext}") + list(SORT Suil_MODULES) + endif() + endif() +endif() + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(SuilModules + REQUIRED_VARS Suil_MODULES Suil_MODULES_PREFIX +) \ No newline at end of file diff --git a/cmake/modules/FindWine.cmake b/cmake/modules/FindWine.cmake index 19a0cffbb..ea8d90cd2 100644 --- a/cmake/modules/FindWine.cmake +++ b/cmake/modules/FindWine.cmake @@ -35,6 +35,8 @@ list(APPEND WINE_LOCATIONS /opt/wine-staging /opt/wine-devel /opt/wine-stable + # Gentoo Systems + /etc/eselect/wine /usr/lib/wine) # Prepare bin search @@ -71,8 +73,13 @@ FIND_PROGRAM(WINE_BUILD NAMES winebuild PATHS ${WINE_CXX_LOCATIONS} NO_DEFAULT_P # Detect wine paths and handle linking problems IF(WINE_CXX) # call wineg++ to obtain implied includes and libs - execute_process(COMMAND ${WINE_CXX} -m32 -v /dev/zero OUTPUT_VARIABLE WINEBUILD_OUTPUT_32 ERROR_QUIET) - execute_process(COMMAND ${WINE_CXX} -m64 -v /dev/zero OUTPUT_VARIABLE WINEBUILD_OUTPUT_64 ERROR_QUIET) + if(LMMS_HOST_X86_64 OR LMMS_HOST_X86) + execute_process(COMMAND ${WINE_CXX} -m32 -v /dev/zero OUTPUT_VARIABLE WINEBUILD_OUTPUT_32 ERROR_QUIET) + execute_process(COMMAND ${WINE_CXX} -m64 -v /dev/zero OUTPUT_VARIABLE WINEBUILD_OUTPUT_64 ERROR_QUIET) + else() + execute_process(COMMAND ${WINE_CXX} -v /dev/zero OUTPUT_VARIABLE WINEBUILD_OUTPUT_64 ERROR_QUIET) + endif() + _findwine_find_flags("${WINEBUILD_OUTPUT_32}" "^-isystem/usr/include$" BUGGED_WINEGCC) _findwine_find_flags("${WINEBUILD_OUTPUT_32}" "^-isystem" WINEGCC_INCLUDE_DIR) _findwine_find_flags("${WINEBUILD_OUTPUT_32}" "libwinecrt0\\.a.*" WINECRT_32) diff --git a/cmake/modules/VersionInfo.cmake b/cmake/modules/VersionInfo.cmake index 6f4c371f1..18ed0db9f 100644 --- a/cmake/modules/VersionInfo.cmake +++ b/cmake/modules/VersionInfo.cmake @@ -8,6 +8,18 @@ IF(GIT_FOUND AND NOT FORCE_VERSION) # number from the environment and add it to the build metadata if("$ENV{GITHUB_REF}" MATCHES "refs/pull/([0-9]+)/merge") list(APPEND BUILD_METADATA "pr${CMAKE_MATCH_1}") + # Parse hash from merge description + # e.g. "Merge abc1234 into def4567" + execute_process( + COMMAND "${GIT_EXECUTABLE}" log -n 1 --format=%s + OUTPUT_VARIABLE COMMIT_HASH + WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}" + TIMEOUT 10 + OUTPUT_STRIP_TRAILING_WHITESPACE) + # If successful, use the first 7 characters to mimic github's hash style + if(COMMIT_HASH) + string(SUBSTRING "${COMMIT_HASH}" 6 7 COMMIT_HASH) + endif() endif() # Look for git tag information (e.g. Tagged: "v1.0.0", Untagged: "v1.0.0-123-a1b2c3d") @@ -44,7 +56,12 @@ IF(GIT_FOUND AND NOT FORCE_VERSION) ELSEIF(TAG_LIST_LENGTH EQUAL 3) # Get the number of commits and latest commit hash LIST(GET TAG_LIST 1 EXTRA_COMMITS) - LIST(GET TAG_LIST 2 COMMIT_HASH) + # Prefer PR hash from above if present + if(NOT COMMIT_HASH) + list(GET TAG_LIST 2 COMMIT_HASH) + # Mimic github's hash style + string(SUBSTRING "${COMMIT_HASH}" 1 7 COMMIT_HASH) + endif() list(APPEND PRERELEASE_DATA "${EXTRA_COMMITS}") list(APPEND BUILD_METADATA "${COMMIT_HASH}") # Bump the patch version, since a pre-release (as specified by the extra @@ -57,7 +74,12 @@ IF(GIT_FOUND AND NOT FORCE_VERSION) # Get the pre-release stage, number of commits, and latest commit hash LIST(GET TAG_LIST 1 VERSION_STAGE) LIST(GET TAG_LIST 2 EXTRA_COMMITS) - LIST(GET TAG_LIST 3 COMMIT_HASH) + # Prefer PR hash from above if present + if(NOT COMMIT_HASH) + list(GET TAG_LIST 3 COMMIT_HASH) + # Mimic github's hash style + string(SUBSTRING "${COMMIT_HASH}" 1 7 COMMIT_HASH) + endif() list(APPEND PRERELEASE_DATA "${VERSION_STAGE}") list(APPEND PRERELEASE_DATA "${EXTRA_COMMITS}") list(APPEND BUILD_METADATA "${COMMIT_HASH}") diff --git a/cmake/nsis/CMakeLists.txt b/cmake/nsis/CMakeLists.txt index e926e074d..a978b4ee4 100644 --- a/cmake/nsis/CMakeLists.txt +++ b/cmake/nsis/CMakeLists.txt @@ -35,7 +35,11 @@ SET(CPACK_NSIS_EXTRA_UNINSTALL_COMMANDS " " PARENT_SCOPE) IF(WIN64) - SET(CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${VERSION}-${WIN_PLATFORM}-win64") + if(IS_ARM64) + set(CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${VERSION}-${WIN_PLATFORM}-arm64") + else() + set(CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${VERSION}-${WIN_PLATFORM}-win64") + endif() SET(CPACK_INSTALL_FIX "$PROGRAMFILES64\\\\${CPACK_PACKAGE_INSTALL_DIRECTORY}\\\\") SET(CPACK_NSIS_DEFINES " ${CPACK_NSIS_DEFINES} @@ -49,6 +53,15 @@ SET(CPACK_NSIS_DEFINES "${CPACK_NSIS_DEFINES}" PARENT_SCOPE) SET(CPACK_PACKAGE_ICON "${CPACK_PACKAGE_ICON}" PARENT_SCOPE) SET(CPACK_NSIS_MUI_ICON "${CPACK_NSIS_MUI_ICON}" PARENT_SCOPE) +# Disable cpack's strip for historic reasons +set(CPACK_STRIP_FILES_ORIG "${CPACK_STRIP_FILES}" PARENT_SCOPE) +set(CPACK_STRIP_FILES FALSE PARENT_SCOPE) + +if(CPACK_DEBUG) + # CMake 3.19+ + set(CPACK_NSIS_EXECUTABLE_PRE_ARGUMENTS "-V4") +endif() + # Windows resource compilers CONFIGURE_FILE("lmms.rc.in" "${CMAKE_BINARY_DIR}/lmms.rc") CONFIGURE_FILE("zynaddsubfx.rc.in" "${CMAKE_BINARY_DIR}/plugins/ZynAddSubFx/zynaddsubfx.rc") diff --git a/data/backgrounds/lmms_tile.png b/data/backgrounds/lmms_tile.png index 07be3dd62..e2a344c58 100644 Binary files a/data/backgrounds/lmms_tile.png and b/data/backgrounds/lmms_tile.png differ diff --git a/data/backgrounds/newbg.png b/data/backgrounds/newbg.png index 6cafbdaf4..83f85f4b4 100644 Binary files a/data/backgrounds/newbg.png and b/data/backgrounds/newbg.png differ diff --git a/data/backgrounds/vinnie.png b/data/backgrounds/vinnie.png index bce36a889..5087b0593 100644 Binary files a/data/backgrounds/vinnie.png and b/data/backgrounds/vinnie.png differ diff --git a/data/locale/cs.ts b/data/locale/cs.ts index 16982e4ae..331a37c9b 100644 --- a/data/locale/cs.ts +++ b/data/locale/cs.ts @@ -1,4 +1,4 @@ - + AboutDialog @@ -69,811 +69,44 @@ If you're interested in translating LMMS in another language or want to imp - AmplifierControlDialog + AboutJuceDialog - - VOL - HLA - - - - Volume: - Hlasitost: - - - - PAN - PAN - - - - Panning: - Panoráma: - - - - LEFT - LEVÝ - - - - Left gain: - Zesílení vlevo: - - - - RIGHT - PRAVÝ - - - - Right gain: - Zesílení vpravo: - - - - AmplifierControls - - - Volume - Hlasitost - - - - Panning - Panoráma - - - - Left gain - Zesílení vlevo - - - - Right gain - Zesílení vpravo - - - - AudioAlsaSetupWidget - - - DEVICE - ZAŘÍZENÍ - - - - CHANNELS - KANÁLY - - - - AudioFileProcessorView - - - Open sample - Načíst sampl - - - - Reverse sample - Přehrávat pozpátku - - - - Disable loop - Vypnout smyčku - - - - Enable loop - Zapnout smyčku - - - - Enable ping-pong loop - Zapnout ping-pongovou smyčku - - - - Continue sample playback across notes - Pokračovat v přehrávání samplu přes znějící tóny - - - - Amplify: - Zesílení: - - - - Start point: - Počáteční bod: - - - - End point: - Koncový bod: - - - - Loopback point: - Začátek smyčky: - - - - AudioFileProcessorWaveView - - - Sample length: - Délka samplu: - - - - AudioJack - - - JACK client restarted - Klient JACK je restartován - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS bylo z nějakého důvodu shozeno JACKem. Proto byl ovladač JACK v LMMS restartován. Musíte znovu provést ruční připojení. - - - - JACK server down - JACK server byl zastaven - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - Vypnutí a nové spuštění serveru JACK se nezdařilo. LMMS proto nemůže pokračovat. Uložte svůj projekt a restartujte JACK i LMMS. - - - - Client name - Jméno klienta - - - - Channels - Kanály - - - - AudioOss - - - Device - Zařízení - - - - Channels - Kanály - - - - AudioPortAudio::setupWidget - - - Backend - Backend - - - - Device - Zařízení - - - - AudioPulseAudio - - - Device - Zařízení - - - - Channels - Kanály - - - - AudioSdl::setupWidget - - - Device - Zařízení - - - - AudioSndio - - - Device - Zařízení - - - - Channels - Kanály - - - - AudioSoundIo::setupWidget - - - Backend - Backend - - - - Device - Zařízení - - - - AutomatableModel - - - &Reset (%1%2) - &Resetovat hodnoty (%1%2) - - - - &Copy value (%1%2) - &Kopírovat hodnoty (%1%2) - - - - &Paste value (%1%2) - &Vložit hodnoty (%1%2) - - - - &Paste value - &Vložit hodnoty - - - - Edit song-global automation - Upravit hlavní automatizaci skladby - - - - Remove song-global automation - Odebrat hlavní automatizaci skladby - - - - Remove all linked controls - Odebrat všechny propojené ovládací prvky - - - - Connected to %1 - Připojeno k %1 - - - - Connected to controller - Připojeno k ovladači - - - - Edit connection... - Upravit připojení... - - - - Remove connection - Odebrat připojení - - - - Connect to controller... - Připojit k ovladači... - - - - AutomationEditor - - - Edit Value + + About JUCE - - New outValue + + <b>About JUCE</b> - - New inValue + + This program uses JUCE version 3.x.x. - - Please open an automation clip with the context menu of a control! - Otevřete prosím automatizační záznam pomocí kontextové nabídky ovládání! - - - - AutomationEditorWindow - - - Play/pause current clip (Space) - Přehrát/Pozastavit přehrávání aktuálního záznamu (mezerník) - - - - Stop playing of current clip (Space) - Zastavit přehrávání aktuálního záznamu (mezerník) - - - - Edit actions - Akce úprav - - - - Draw mode (Shift+D) - Režim kreslení (Shift+D) - - - - Erase mode (Shift+E) - Režim mazání (Shift+E) - - - - Draw outValues mode (Shift+C) + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. - - Flip vertically - Převrátit vertikálně - - - - Flip horizontally - Převrátit horizontálně - - - - Interpolation controls - Ovládání interpolace - - - - Discrete progression - Terasovitý průběh - - - - Linear progression - Lineární průběh - - - - Cubic Hermite progression - Křivkovitý průběh - - - - Tension value for spline - Hodnota napětí pro křivku - - - - Tension: - Napětí: - - - - Zoom controls - Ovládání zvětšení - - - - Horizontal zooming - Horizontální zvětšení - - - - Vertical zooming - Vertikální zvětšení - - - - Quantization controls - Ovládání kvantizace - - - - Quantization - Kvantizace - - - - - Automation Editor - no clip - Editor automatizace – žádný záznam - - - - - Automation Editor - %1 - Editor automatizace – %1 - - - - Model is already connected to this clip. - Model je již k tomuto záznamu připojen. - - - - AutomationClip - - - Drag a control while pressing <%1> - Ovládací prvek táhni při stisknutém <%1> - - - - AutomationClipView - - - Open in Automation editor - Otevřít v Editoru automatizace - - - - Clear - Vyčistit - - - - Reset name - Obnovit výchozí jméno - - - - Change name - Změnit jméno - - - - Set/clear record - Zapnout/Vypnout záznam - - - - Flip Vertically (Visible) - Převrátit vertikálně (viditelné) - - - - Flip Horizontally (Visible) - Převrátit horizontálně (viditelné) - - - - %1 Connections - %1 Připojení - - - - Disconnect "%1" - Odpojit "%1" - - - - Model is already connected to this clip. - Model je již k tomuto záznamu připojen. - - - - AutomationTrack - - - Automation track - Stopa automatizace - - - - PatternEditor - - - Beat+Bassline Editor - Editor bicích/basů - - - - Play/pause current beat/bassline (Space) - Přehrát/Pozastavit přehrávání aktuálního záznamu bicích/basů (mezerník) - - - - Stop playback of current beat/bassline (Space) - Zastavit přehrávání aktuálního záznamu bicích/basů (mezerník) - - - - Beat selector - Výběr rytmu - - - - Track and step actions - Akce stopy a kroků - - - - Add beat/bassline - Přidat bicí/basy - - - - Clone beat/bassline clip + + This program uses JUCE version - - - Add sample-track - Přidat stopu samplů - - - - Add automation-track - Přidat stopu automatizace - - - - Remove steps - Odstranit kroky - - - - Add steps - Přidat kroky - - - - Clone Steps - Klonovat kroky - - PatternClipView + AudioDeviceSetupWidget - - Open in Beat+Bassline-Editor - Otevřít v editoru bicích/basů - - - - Reset name - Resetovat jméno - - - - Change name - Změnit jméno - - - - PatternTrack - - - Beat/Bassline %1 - Bicí/basy %1 - - - - Clone of %1 - Klon z %1 - - - - BassBoosterControlDialog - - - FREQ - FREKV - - - - Frequency: - Frekvence: - - - - GAIN - ZES - - - - Gain: - Zesílení: - - - - RATIO - POMĚR - - - - Ratio: - Poměr: - - - - BassBoosterControls - - - Frequency - Frekvence - - - - Gain - Zesílení - - - - Ratio - Poměr - - - - BitcrushControlDialog - - - IN - IN - - - - OUT - OUT - - - - - GAIN - ZISK - - - - Input gain: - Zesílení vstupu: - - - - NOISE - ŠUM - - - - Input noise: - Vstup šumu: - - - - Output gain: - Zesílení výstupu: - - - - CLIP - OŘÍZ - - - - Output clip: - Oříznutí výstupu: - - - - Rate enabled - Frekvence zapnuta - - - - Enable sample-rate crushing - Zapnout drtič vzorkovací frekvence - - - - Depth enabled - Hloubka zapnuta - - - - Enable bit-depth crushing - Zapnout drtič bitové hloubky - - - - FREQ - FREKV - - - - Sample rate: - Vzorkovací frekvence: - - - - STEREO - STEREO - - - - Stereo difference: - Stereo rozdíl: - - - - QUANT - KVANT - - - - Levels: - Úrovně: - - - - BitcrushControls - - - Input gain - Zesílení vstupu - - - - Input noise - Vstup šumu - - - - Output gain - Zesílení výstupu - - - - Output clip - Oříznutí výstupu - - - - Sample rate - Vzorkovací frekvence - - - - Stereo difference - Stereo rozdíl - - - - Levels - Úrovně - - - - Rate enabled - Frekvence zapnuta - - - - Depth enabled - Hloubka zapnuta + + [System Default] + @@ -881,12 +114,12 @@ If you're interested in translating LMMS in another language or want to imp About Carla - + O programu Carla About - O LMMS + O programu @@ -899,124 +132,124 @@ If you're interested in translating LMMS in another language or want to imp - + Artwork - + Using KDE Oxygen icon set, designed by Oxygen Team. - + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. - + VST is a trademark of Steinberg Media Technologies GmbH. - + Special thanks to António Saraiva for a few extra icons and artwork! - + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. - + MIDI Keyboard designed by Thorsten Wilms. - + Carla, Carla-Control and Patchbay icons designed by DoosC. - + Features - + AU/AudioUnit: - + LADSPA: - + LADSPA: - - - - - - - - + + + + + + + + TextLabel - + VST2: - + VST2: - + DSSI: - + DSSI: - + LV2: - + LV2: - + VST3: - + VST3: - + OSC - + Host URLs: - + Valid commands: - + valid osc commands here - + Example: - + License Licence - + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -1301,50 +534,50 @@ POSSIBILITY OF SUCH DAMAGES. - + OSC Bridge Version - + Plugin Version - + Verze pluginu - + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> - - + + (Engine not running) - + Everything! (Including LRDF) - + Everything! (Including CustomData/Chunks) - + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - - - + + + Using Juce host - + About 85% complete (missing vst bank/presets and some minor stuff) @@ -1377,561 +610,598 @@ POSSIBILITY OF SUCH DAMAGES. - + + Save + + + + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + Buffer Size: - + Sample Rate: - + ? Xruns - + DSP Load: %p% - + &File &Soubor - + &Engine - + &Plugin - + Macros (all plugins) - + &Canvas - + Zoom - + &Settings - + &Help &Nápověda - - toolBar + + Tool Bar - + Disk - - + + Home Domů - + Transport - + Playback Controls - + Time Information - + Frame: - + 000'000'000 - + Time: Délka: - + 00:00:00 - + BBT: - + 000|00|0000 - + Settings Nastavení - + BPM - + Use JACK Transport - + Use Ableton Link - + &New &Nový - + Ctrl+N - + &Open... &Otevřít... - - + + Open... - + Ctrl+O - + &Save &Uložit - + Ctrl+S - + Save &As... Uložit &jako... - - + + Save As... - + Ctrl+Shift+S - + &Quit &Ukončit - + Ctrl+Q - + &Start - + F5 - + St&op - + F6 - + &Add Plugin... - + Ctrl+A - + &Remove All - + Enable - + Disable - + 0% Wet (Bypass) - + 100% Wet - + 0% Volume (Mute) - + 100% Volume - + Center Balance - + &Play - + Ctrl+Shift+P - + &Stop - + Ctrl+Shift+X - + &Backwards - + Ctrl+Shift+B - + &Forwards - + Ctrl+Shift+F - + &Arrange - + Ctrl+G - - + + &Refresh - + Ctrl+R - + Save &Image... - + Auto-Fit - + Zoom In Přiblížit - + Ctrl++ Ctrl++ - + Zoom Out Oddálit - + Ctrl+- Ctrl+- - + Zoom 100% - + Ctrl+1 - + Show &Toolbar - + &Configure Carla - + &About - + About &JUCE - + About &Qt - + Show Canvas &Meters - + Show Canvas &Keyboard - + Show Internal - + Show External - + Show Time Panel - + Show &Side Panel - + + Ctrl+P + + + + &Connect... - + Compact Slots - + Expand Slots - + Perform secret 1 - + Perform secret 2 - + Perform secret 3 - + Perform secret 4 - + Perform secret 5 - + Add &JACK Application... - + &Configure driver... - + Panic - + Open custom driver panel... + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + + CarlaHostWindow - + Export as... - - - - + + + + Error Chyba - + Failed to load project - + Failed to save project - + Quit - + Are you sure you want to quit Carla? - + Could not connect to Audio backend '%1', possible reasons: %2 - + Could not connect to Audio backend '%1' - + Warning - + There are still some plugins loaded, you need to remove them to stop the engine. Do you want to do this now? - - CarlaInstrumentView - - - Show GUI - Ukázat grafické rozhraní - - CarlaSettingsW @@ -1986,19 +1256,19 @@ Do you want to do this now? - + Main - + Canvas - + Engine @@ -2019,1487 +1289,589 @@ Do you want to do this now? - + Experimental - + <b>Main</b> - + Paths Cesty - + Default project folder: - + Interface - + + Use "Classic" as default rack skin + + + + Interface refresh interval: - - + + ms - + Show console output in Logs tab (needs engine restart) - + Show a confirmation dialog before quitting - - + + Theme - + Use Carla "PRO" theme (needs restart) - + Color scheme: - + Black - + System - + Enable experimental features - + <b>Canvas</b> - + Bezier Lines - + Theme: - + Size: Velikost: - + 775x600 - + 1550x1200 - + 3100x2400 - + 4650x3600 - + 6200x4800 - + + 12400x9600 + + + + Options - + Auto-hide groups with no ports - + Auto-select items on hover - + Basic eye-candy (group shadows) - + Render Hints - + Anti-Aliasing - + Full canvas repaints (slower, but prevents drawing issues) - + <b>Engine</b> - - + + Core - + Single Client - + Multiple Clients - - + + Continuous Rack - - + + Patchbay - + Audio driver: - + Process mode: - - - - + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog - + Max Parameters: - + ... - + Reset Xrun counter after project load - + Plugin UIs - - + + How much time to wait for OSC GUIs to ping back the host - + UI Bridge Timeout: - + Use OSC-GUI bridges when possible, this way separating the UI from DSP code - + Use UI bridges instead of direct handling when possible - + Make plugin UIs always-on-top - + Make plugin UIs appear on top of Carla (needs restart) - + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS - - + + Restart the engine to load the new settings - + <b>OSC</b> - + Enable OSC - + Enable TCP port - - + + Use specific port: - + Overridden by CARLA_OSC_TCP_PORT env var - - + + Use randomly assigned port - + Enable UDP port - + Overridden by CARLA_OSC_UDP_PORT env var - + DSSI UIs require OSC UDP port enabled - + <b>File Paths</b> - + Audio Zvuk - + MIDI MIDI - + Used for the "audiofile" plugin - + Used for the "midifile" plugin - - + + Add... - - + + Remove - - + + Change... - + <b>Plugin Paths</b> - + LADSPA - + LADSPA - + DSSI - + DSSI - + LV2 - + LV2 - + VST2 - + VST2 - + VST3 - + VST3 - + SF2/3 - + SF2/3 - + SFZ + SFZ + + + + JSFX - + + CLAP + + + + Restart Carla to find new plugins - + <b>Wine</b> - + Executable - + Path to 'wine' binary: - + Prefix - + Auto-detect Wine prefix based on plugin filename - + Fallback: - + Note: WINEPREFIX env var is preferred over this fallback - + Realtime Priority - + Base priority: - + WineServer priority: - + These options are not available for Carla as plugin - + <b>Experimental</b> - + Experimental options! Likely to be unstable! - + Enable plugin bridges - + Enable Wine bridges - + Enable jack applications - + Export single plugins to LV2 - + + Use system/desktop-theme icons (needs restart) + + + + Load Carla backend in global namespace (NOT RECOMMENDED) - + Fancy eye-candy (fade-in/out groups, glow connections) - + Use OpenGL for rendering (needs restart) - + High Quality Anti-Aliasing (OpenGL only) - + Render Ardour-style "Inline Displays" - + Force mono plugins as stereo by running 2 instances at the same time. This mode is not available for VST plugins. - + Force mono plugins as stereo - - Prevent plugins from doing bad stuff (needs restart) + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. - - Whenever possible, run the plugins in bridge mode. + + Prevent unsafe calls from plugins (needs restart) - + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + Run plugins in bridge mode when possible - - - - + + + + Add Path - - CompressorControlDialog - - - Threshold: - - - - - Volume at which the compression begins to take place - - - - - Ratio: - Poměr: - - - - How far the compressor must turn the volume down after crossing the threshold - - - - - Attack: - Náběh: - - - - Speed at which the compressor starts to compress the audio - - - - - Release: - Doznění: - - - - Speed at which the compressor ceases to compress the audio - - - - - Knee: - - - - - Smooth out the gain reduction curve around the threshold - - - - - Range: - - - - - Maximum gain reduction - - - - - Lookahead Length: - - - - - How long the compressor has to react to the sidechain signal ahead of time - - - - - Hold: - Zadržení: - - - - Delay between attack and release stages - - - - - RMS Size: - - - - - Size of the RMS buffer - - - - - Input Balance: - - - - - Bias the input audio to the left/right or mid/side - - - - - Output Balance: - - - - - Bias the output audio to the left/right or mid/side - - - - - Stereo Balance: - - - - - Bias the sidechain signal to the left/right or mid/side - - - - - Stereo Link Blend: - - - - - Blend between unlinked/maximum/average/minimum stereo linking modes - - - - - Tilt Gain: - - - - - Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. - - - - - Tilt Frequency: - - - - - Center frequency of sidechain tilt filter - - - - - Mix: - - - - - Balance between wet and dry signals - - - - - Auto Attack: - - - - - Automatically control attack value depending on crest factor - - - - - Auto Release: - - - - - Automatically control release value depending on crest factor - - - - - Output gain - Zesílení výstupu - - - - - Gain - Zesílení - - - - Output volume - - - - - Input gain - Zesílení vstupu - - - - Input volume - - - - - Root Mean Square - - - - - Use RMS of the input - - - - - Peak - - - - - Use absolute value of the input - - - - - Left/Right - - - - - Compress left and right audio - - - - - Mid/Side - - - - - Compress mid and side audio - - - - - Compressor - - - - - Compress the audio - - - - - Limiter - - - - - Set Ratio to infinity (is not guaranteed to limit audio volume) - - - - - Unlinked - - - - - Compress each channel separately - - - - - Maximum - - - - - Compress based on the loudest channel - - - - - Average - - - - - Compress based on the averaged channel volume - - - - - Minimum - - - - - Compress based on the quietest channel - - - - - Blend - - - - - Blend between stereo linking modes - - - - - Auto Makeup Gain - - - - - Automatically change makeup gain depending on threshold, knee, and ratio settings - - - - - - Soft Clip - - - - - Play the delta signal - - - - - Use the compressor's output as the sidechain input - - - - - Lookahead Enabled - - - - - Enable Lookahead, which introduces 20 milliseconds of latency - - - - - CompressorControls - - - Threshold - - - - - Ratio - Poměr - - - - Attack - Náběh - - - - Release - Doznění - - - - Knee - - - - - Hold - Držení - - - - Range - - - - - RMS Size - - - - - Mid/Side - - - - - Peak Mode - - - - - Lookahead Length - - - - - Input Balance - - - - - Output Balance - - - - - Limiter - - - - - Output Gain - Zesílení výstupu - - - - Input Gain - Vstupní úroveň - - - - Blend - - - - - Stereo Balance - - - - - Auto Makeup Gain - - - - - Audition - - - - - Feedback - Zpětná vazba - - - - Auto Attack - - - - - Auto Release - - - - - Lookahead - - - - - Tilt - - - - - Tilt Frequency - - - - - Stereo Link - - - - - Mix - Poměr - - - - Controller - - - Controller %1 - Ovladač %1 - - - - ControllerConnectionDialog - - - Connection Settings - Nastavení připojení - - - - MIDI CONTROLLER - MIDI OVLADAČ - - - - Input channel - Vstupní kanál - - - - CHANNEL - KANÁL - - - - Input controller - Vstupní ovladač - - - - CONTROLLER - OVLADAČ - - - - - Auto Detect - Autodetekce - - - - MIDI-devices to receive MIDI-events from - MIDI zařízení k přijmu MIDI události - - - - USER CONTROLLER - UŽIVATELSKÝ OVLADAČ - - - - MAPPING FUNCTION - MAPOVACÍ FUNKCE - - - - OK - OK - - - - Cancel - Zrušit - - - - LMMS - LMMS - - - - Cycle Detected. - Zjištěno zacyklení. - - - - ControllerRackView - - - Controller Rack - Ovladače - - - - Add - Přidat - - - - Confirm Delete - Potvrdit smazání - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Opravdu smazat? Je (jsou) zde propojení na tento ovladač. Nebude možné vrátit se zpět. - - - - ControllerView - - - Controls - Ovládací prvky - - - - Rename controller - Přejmenovat ovladač - - - - Enter the new name for this controller - Vložte nové jméno pro tento ovladač - - - - LFO - LFO - - - - &Remove this controller - Odst&ranit tento ovladač - - - - Re&name this controller - Přejme&novat tento ovladač - - - - CrossoverEQControlDialog - - - Band 1/2 crossover: - Přechod mezi pásmy 1/2: - - - - Band 2/3 crossover: - Přechod mezi pásmy 2/3: - - - - Band 3/4 crossover: - Přechod mezi pásmy 3/4: - - - - Band 1 gain - Zesílení pásma 1 - - - - Band 1 gain: - Zesílení pásma 1: - - - - Band 2 gain - Zesílení pásma 2 - - - - Band 2 gain: - Zesílení pásma 2: - - - - Band 3 gain - Zesílení pásma 3 - - - - Band 3 gain: - Zesílení pásma 3: - - - - Band 4 gain - Zesílení pásma 4 - - - - Band 4 gain: - Zesílení pásma 4: - - - - Band 1 mute - Ztlumení pásma 1 - - - - Mute band 1 - Ztlumit pásmo 1 - - - - Band 2 mute - Ztlumení pásma 2 - - - - Mute band 2 - Ztlumit pásmo 2 - - - - Band 3 mute - Ztlumení pásma 3 - - - - Mute band 3 - Ztlumit pásmo 3 - - - - Band 4 mute - Ztlumení pásma 4 - - - - Mute band 4 - Ztlumit pásmo 4 - - - - DelayControls - - - Delay samples - Zpoždění vzorků - - - - Feedback - Zpětná vazba - - - - LFO frequency - Frekvence LFO - - - - LFO amount - Hloubka LFO - - - - Output gain - Zesílení výstupu - - - - DelayControlsDialog - - - DELAY - ZPOŽ - - - - Delay time - Délka zpoždění - - - - FDBK - ZPVAZ - - - - Feedback amount - Hloubka zpětné vazby - - - - RATE - RYCH - - - - LFO frequency - Frekvence LFO - - - - AMNT - MNOŽ - - - - LFO amount - Hloubka LFO - - - - Out gain - Zesílení výstupu - - - - Gain - Zesílení - - Dialog - - - Add JACK Application - - - - - Note: Features not implemented yet are greyed out - - - - - Application - - - - - Name: - - - - - Application: - - - - - From template - - - - - Custom - - - - - Template: - - - - - Command: - - - - - Setup - - - - - Session Manager: - - - - - None - Žádný - - - - Audio inputs: - - - - - MIDI inputs: - - - - - Audio outputs: - - - - - MIDI outputs: - - - - - Take control of main application window - - - - - Workarounds - - - - - Wait for external application start (Advanced, for Debug only) - - - - - Capture only the first X11 Window - - - - - Use previous client output buffer as input for the next client - - - - - Simulate 16 JACK MIDI outputs, with MIDI channel as port index - - - - - Error here - - Carla Control - Connect @@ -3525,27 +1897,6 @@ This mode is not available for VST plugins. TCP Port: - - - Reported host - - - - - Automatic - - - - - Custom: - - - - - In some networks (like USB connections), the remote system cannot reach the local network. You can specify here which hostname or IP to make the remote Carla connect to. -If you are unsure, leave it as 'Automatic'. - - Set value @@ -3600,948 +1951,6 @@ If you are unsure, leave it as 'Automatic'. - - DualFilterControlDialog - - - - FREQ - FREKV - - - - - Cutoff frequency - Frekvence oříznutí - - - - - RESO - REZON - - - - - Resonance - Rezonance - - - - - GAIN - ZESIL - - - - - Gain - Zesílení - - - - MIX - POMĚR - - - - Mix - Poměr - - - - Filter 1 enabled - Filtr 1 zapnutý - - - - Filter 2 enabled - Filtr 2 zapnutý - - - - Enable/disable filter 1 - Zapnout/vypnout filtr 1 - - - - Enable/disable filter 2 - Zapnout/vypnout filtr 2 - - - - DualFilterControls - - - Filter 1 enabled - Filtr 1 zapnutý - - - - Filter 1 type - Typ filtru 1 - - - - Cutoff frequency 1 - Frekvence oříznutí 1 - - - - Q/Resonance 1 - Q/rezonance 1 - - - - Gain 1 - Zesílení 1 - - - - Mix - Mix - - - - Filter 2 enabled - Filtr 1 zapnutý - - - - Filter 2 type - Typ filtru 2 - - - - Cutoff frequency 2 - Frekvence oříznutí 2 - - - - Q/Resonance 2 - Q/rezonance 2 - - - - Gain 2 - Zesílení 2 - - - - - Low-pass - Dolní propust - - - - - Hi-pass - Horní propust - - - - - Band-pass csg - Pásmová propust csg - - - - - Band-pass czpg - Pásmová propust czpg - - - - - Notch - Pásmová zádrž - - - - - All-pass - All-pass - - - - - Moog - Moogův filtr - - - - - 2x Low-pass - 2x dolní propust - - - - - RC Low-pass 12 dB/oct - RC dolní propust 12 dB/okt - - - - - RC Band-pass 12 dB/oct - RC pásmová propust 12 dB/okt - - - - - RC High-pass 12 dB/oct - RC horní propust 12 dB/okt - - - - - RC Low-pass 24 dB/oct - RC dolní propust 24 dB/okt - - - - - RC Band-pass 24 dB/oct - RC pásmová propust 24 dB/okt - - - - - RC High-pass 24 dB/oct - RC horní propust 24 dB/okt - - - - - Vocal Formant - Vokální formant - - - - - 2x Moog - 2x Moogův filtr - - - - - SV Low-pass - SV dolní propust - - - - - SV Band-pass - SV pásmová propust - - - - - SV High-pass - SV horní propust - - - - - SV Notch - SV pásmová zádrž - - - - - Fast Formant - Rychlý formantový filtr - - - - - Tripole - Třípólový filtr - - - - Editor - - - Transport controls - Řízení přenosu - - - - Play (Space) - Přehrát (mezerník) - - - - Stop (Space) - Zastavit (mezerník) - - - - Record - Nahrávat - - - - Record while playing - Nahrávat při přehrávání - - - - Toggle Step Recording - - - - - Effect - - - Effect enabled - Efekt aktivován - - - - Wet/Dry mix - Poměr zpracovaného/původního signálu - - - - Gate - Brána - - - - Decay - Pokles - - - - EffectChain - - - Effects enabled - Efekty aktivovány - - - - EffectRackView - - - EFFECTS CHAIN - ŘETĚZ EFEKTŮ - - - - Add effect - Přidat efekt - - - - EffectSelectDialog - - - Add effect - Přidat efekt - - - - - Name - Název - - - - Type - Typ - - - - Description - Popis - - - - Author - Autor - - - - EffectView - - - On/Off - Zap/Vyp - - - - W/D - POM - - - - Wet Level: - Úroveň zpracovaného signálu: - - - - DECAY - POKLES - - - - Time: - Délka: - - - - GATE - BRÁ - - - - Gate: - Brána: - - - - Controls - Ovladače - - - - Move &up - Posunout &nahoru - - - - Move &down - Posunout &dolů - - - - &Remove this plugin - &Odstranit tento plugin - - - - EnvelopeAndLfoParameters - - - Env pre-delay - Obálka předzpoždění - - - - Env attack - Obálka náběh - - - - Env hold - Obálka zadržení - - - - Env decay - Obálka pokles - - - - Env sustain - Obálka držení - - - - Env release - Obálka doznění - - - - Env mod amount - Obálka hloubky modulace - - - - LFO pre-delay - Předzpoždění LFO - - - - LFO attack - Náběh LFO - - - - LFO frequency - Frekvence LFO - - - - LFO mod amount - Hloubka modulace LFO - - - - LFO wave shape - Tvar vlny LFO - - - - LFO frequency x 100 - Frekvence LFO x 100 - - - - Modulate env amount - Modulovat obálku - - - - EnvelopeAndLfoView - - - - DEL - PŘED - - - - - Pre-delay: - Předzpoždění: - - - - - ATT - NÁB - - - - - Attack: - Náběh: - - - - HOLD - ZADR - - - - Hold: - Zadržení: - - - - DEC - POK - - - - Decay: - Pokles: - - - - SUST - DRŽE - - - - Sustain: - Držení: - - - - REL - DOZ - - - - Release: - Doznění: - - - - - AMT - MOD - - - - - Modulation amount: - Hloubka modulace: - - - - SPD - RYCH - - - - Frequency: - Frekvence: - - - - FREQ x 100 - FREKVENCE x 100 - - - - Multiply LFO frequency by 100 - Vynásobit frekvenci LFO x 100 - - - - MODULATE ENV AMOUNT - MODULOVAT OBÁLKU - - - - Control envelope amount by this LFO - Řízení množství obálky tímto LFO - - - - ms/LFO: - ms/LFO: - - - - Hint - Rada - - - - Drag and drop a sample into this window. - Přetáhněte sampl do tohoto okna - - - - EqControls - - - Input gain - Zesílení vstupu - - - - Output gain - Zesílení výstupu - - - - Low-shelf gain - Zesílení dolního šelfu - - - - Peak 1 gain - Zesílení špičky 1 - - - - Peak 2 gain - Zesílení špičky 2 - - - - Peak 3 gain - Zesílení špičky 3 - - - - Peak 4 gain - Zesílení špičky 4 - - - - High-shelf gain - Zesílení horního šelfu - - - - HP res - Rezonance horní propusti - - - - Low-shelf res - Rezonance dolního šelfu - - - - Peak 1 BW - Šířka pásma špičky 1 - - - - Peak 2 BW - Šířka pásma špičky 2 - - - - Peak 3 BW - Šířka pásma špičky 3 - - - - Peak 4 BW - Šířka pásma špičky 4 - - - - High-shelf res - Rezonance horního šelfu - - - - LP res - Rezonance dolní propusti - - - - HP freq - Frekvence horní propusti - - - - Low-shelf freq - Frekvence dolního šelfu - - - - Peak 1 freq - Frekvence špičky 1 - - - - Peak 2 freq - Frekvence špičky 2 - - - - Peak 3 freq - Frekvence špičky 3 - - - - Peak 4 freq - Frekvence špičky 3 - - - - High-shelf freq - Frekvence horního šelfu - - - - LP freq - Frekvence dolní propusti - - - - HP active - Horní propust aktivní - - - - Low-shelf active - Dolní šelf aktivní - - - - Peak 1 active - Špička 1 aktivní - - - - Peak 2 active - Špička 2 aktivní - - - - Peak 3 active - Špička 3 aktivní - - - - Peak 4 active - Špička 4 aktivní - - - - High-shelf active - Horní šelf aktivní - - - - LP active - Dolní propust aktivní - - - - LP 12 - DP 12 - - - - LP 24 - DP 24 - - - - LP 48 - DP 48 - - - - HP 12 - HP 12 - - - - HP 24 - HP 24 - - - - HP 48 - HP 48 - - - - Low-pass type - Typ dolní propusti - - - - High-pass type - Typ horní propusti - - - - Analyse IN - Analýza VSTUPU - - - - Analyse OUT - Analýza VÝSTUPU - - - - EqControlsDialog - - - HP - HP - - - - Low-shelf - Dolní šelf - - - - Peak 1 - Špička 1 - - - - Peak 2 - Špička 2 - - - - Peak 3 - Špička 3 - - - - Peak 4 - Špička 4 - - - - High-shelf - Horní šelf - - - - LP - DP - - - - Input gain - Zesílení vstupu - - - - - - Gain - Zesílení - - - - Output gain - Zesílení výstupu - - - - Bandwidth: - Šířka pásma: - - - - Octave - oktávy - - - - Resonance : - Rezonance: - - - - Frequency: - Frekvence: - - - - LP group - Skupina DP - - - - HP group - Skupina HP - - - - EqHandle - - - Reso: - Rezon: - - - - BW: - ŠPás: - - - - - Freq: - Frekv: - - ExportProjectDialog @@ -4562,12 +1971,12 @@ If you are unsure, leave it as 'Automatic'. Render Looped Section: - + Opakovat smyčku: time(s) - + krát @@ -4725,2126 +2134,652 @@ If you are unsure, leave it as 'Automatic'. Sinc nejlepší (nejpomalejší) - - Oversampling: - Převzorkování: - - - - 1x (None) - 1x (žádné) - - - - 2x - 2x - - - - 4x - 4x - - - - 8x - 8x - - - + Start Začít - + Cancel Zrušit - - - Could not open file - Nemohu otevřít soubor - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Nelze otevřít soubor %1 pro zápis. -Ověřte si prosím, zda máte povolen zápis do souboru a do složky, ve které je umístěn, a zkuste znovu! - - - - Export project to %1 - Exportovat projekt do %1 - - - - ( Fastest - biggest ) - (Nejrychlejší – největší) - - - - ( Slowest - smallest ) - (Nejpomalejší – nejmenší) - - - - Error - Chyba - - - - Error while determining file-encoder device. Please try to choose a different output format. - Chyba při zjišťování souboru enkodéru. Zkuste prosím vybrat jiný výstupní formát. - - - - Rendering: %1% - Renderuji: %1% - - - - Fader - - - Set value - Nastavit hodnotu - - - - Please enter a new value between %1 and %2: - Vložte prosím novou hodnotu mezi %1 a %2: - - - - FileBrowser - - - User content - - - - - Factory content - - - - - Browser - Prohlížeč - - - - Search - Hledat - - - - Refresh list - Obnovit seznam - - - - FileBrowserTreeWidget - - - Send to active instrument-track - Odeslat do aktivní stopy nástroje - - - - Open containing folder - - - - - Song Editor - Editor skladby - - - - BB Editor - - - - - Send to new AudioFileProcessor instance - - - - - Send to new instrument track - - - - - (%2Enter) - - - - - Send to new sample track (Shift + Enter) - - - - - Loading sample - Načítám vzorek - - - - Please wait, loading sample for preview... - Počkejte prosím, načítám vzorek pro náhled... - - - - Error - Chyba - - - - %1 does not appear to be a valid %2 file - - - - - --- Factory files --- - --- Tovární soubory --- - - - - FlangerControls - - - Delay samples - Zpoždění vzorků - - - - LFO frequency - Frekvence LFO - - - - Seconds - Sekund - - - - Stereo phase - - - - - Regen - Obnov - - - - Noise - Šum - - - - Invert - Převrátit - - - - FlangerControlsDialog - - - DELAY - ZPOŽ - - - - Delay time: - Délka zpoždění: - - - - RATE - POMĚR - - - - Period: - Perioda: - - - - AMNT - MNOŽ - - - - Amount: - Množství: - - - - PHASE - - - - - Phase: - - - - - FDBK - ZP. VAZ - - - - Feedback amount: - Velikost zpětné vazby: - - - - NOISE - ŠUM - - - - White noise amount: - Množství bílého šumu: - - - - Invert - Převrátit - - - - FreeBoyInstrument - - - Sweep time - Trvání sweepu - - - - Sweep direction - Směr sweepu - - - - Sweep rate shift amount - Úroveň pro změnu frekvence sweepu - - - - - Wave pattern duty cycle - Pracovní cyklus vlnového vzorce - - - - Channel 1 volume - Hlasitost kanálu 1 - - - - - - Volume sweep direction - Směr hlasitosti sweepu - - - - - - Length of each step in sweep - Délka každého kroku ve sweepu - - - - Channel 2 volume - Hlasitost kanálu 2 - - - - Channel 3 volume - Hlasitost kanálu 3 - - - - Channel 4 volume - Hlasitost kanálu 4 - - - - Shift Register width - Posun šířky registru - - - - Right output level - Úroveň pravého výstupu - - - - Left output level - Úroveň levého výstupu - - - - Channel 1 to SO2 (Left) - Kanál 1 do SO2 (pravý) - - - - Channel 2 to SO2 (Left) - Kanál 2 do SO2 (pravý) - - - - Channel 3 to SO2 (Left) - Kanál 3 do SO2 (pravý) - - - - Channel 4 to SO2 (Left) - Kanál 4 do SO2 (pravý) - - - - Channel 1 to SO1 (Right) - Kanál 1 do SO1 (pravý) - - - - Channel 2 to SO1 (Right) - Kanál 2 do SO1 (pravý) - - - - Channel 3 to SO1 (Right) - Kanál 3 do SO1 (pravý) - - - - Channel 4 to SO1 (Right) - Kanál 4 do SO1 (pravý) - - - - Treble - Výšky - - - - Bass - Basy - - - - FreeBoyInstrumentView - - - Sweep time: - Trvání sweepu: - - - - Sweep time - Trvání sweepu - - - - Sweep rate shift amount: - Úroveň pro změnu frekvence sweepu: - - - - Sweep rate shift amount - Úroveň pro změnu frekvence sweepu - - - - - Wave pattern duty cycle: - Pracovní cyklus vlnového vzorce: - - - - - Wave pattern duty cycle - Pracovní cyklus vlnového vzorce - - - - Square channel 1 volume: - Hlasitost pulzního kanálu 1: - - - - Square channel 1 volume - Hlasitost pulzního kanálu 1 - - - - - - Length of each step in sweep: - Délka každého kroku ve sweepu: - - - - - - Length of each step in sweep - Délka každého kroku ve sweepu - - - - Square channel 2 volume: - Hlasitost pulzního kanálu 2: - - - - Square channel 2 volume - Hlasitost pulzního kanálu 2 - - - - Wave pattern channel volume: - Hlasitost kanálu vlnového vzorce: - - - - Wave pattern channel volume - Hlasitost kanálu vlnového vzorce - - - - Noise channel volume: - Hlasitost šumového kanálu: - - - - Noise channel volume - Hlasitost šumového kanálu - - - - SO1 volume (Right): - Hlasitost SO1 (pravý): - - - - SO1 volume (Right) - Hlasitost SO1 (pravý) - - - - SO2 volume (Left): - Hlasitost SO2 (levý): - - - - SO2 volume (Left) - Hlasitost SO2 (levý) - - - - Treble: - Výšky: - - - - Treble - Výšky - - - - Bass: - Basy: - - - - Bass - Basy - - - - Sweep direction - Směr sweepu - - - - - - - - Volume sweep direction - Směr hlasitosti sweepu - - - - Shift register width - Posun šířky registru - - - - Channel 1 to SO1 (Right) - Kanál 1 do SO1 (pravý) - - - - Channel 2 to SO1 (Right) - Kanál 2 do SO1 (pravý) - - - - Channel 3 to SO1 (Right) - Kanál 3 do SO1 (pravý) - - - - Channel 4 to SO1 (Right) - Kanál 4 do SO1 (pravý) - - - - Channel 1 to SO2 (Left) - Kanál 1 do SO2 (pravý) - - - - Channel 2 to SO2 (Left) - Kanál 2 do SO2 (pravý) - - - - Channel 3 to SO2 (Left) - Kanál 3 do SO2 (pravý) - - - - Channel 4 to SO2 (Left) - Kanál 4 do SO2 (pravý) - - - - Wave pattern graph - Zobrazení vlnového vzorce - - - - MixerChannelView - - - Channel send amount - Množství odeslaného kanálu - - - - Move &left - Přesunout do&leva - - - - Move &right - Přesun dop&rava - - - - Rename &channel - Přejmenovat &kanál - - - - R&emove channel - Př&esunout kanál - - - - Remove &unused channels - Odstranit nepo&užívané kanály - - - - Set channel color - - - - - Remove channel color - - - - - Pick random channel color - - - - - MixerChannelLcdSpinBox - - - Assign to: - Přiřadit k: - - - - New mixer Channel - Nový efektový kanál - - - - Mixer - - - Master - Hlavní - - - - - - Channel %1 - Efekt %1 - - - - Volume - Hlasitost - - - - Mute - Ztlumit - - - - Solo - Sólo - - - - MixerView - - - Mixer - Efektový mixážní panel - - - - Fader %1 - Efektový fader %1 - - - - Mute - Ztlumit - - - - Mute this mixer channel - Ztlumit tento efektový kanál - - - - Solo - Sólo - - - - Solo mixer channel - Sólovat efektový kanál - - - - MixerRoute - - - - Amount to send from channel %1 to channel %2 - Množství k odeslání z kanálu %1 do kanálu %2 - - - - GigInstrument - - - Bank - Banka - - - - Patch - Patch - - - - Gain - Zisk - - - - GigInstrumentView - - - - Open GIG file - Otevřít GIG soubor - - - - Choose patch - Vybrat patch - - - - Gain: - Zesílení: - - - - GIG Files (*.gig) - GIG soubory (*.gig) - - - - GuiApplication - - - Working directory - Pracovní adresář - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - Pracovní adresář LMMS %1 neexistuje. Chcete jej nyní vytvořit? Změnu adresáře mžete provést později v nabídce Úpravy -> Nastavení. - - - - Preparing UI - Připravuji UI - - - - Preparing song editor - Připravuji editor skladby - - - - Preparing mixer - Připravuji mixážní panel - - - - Preparing controller rack - Připravuji panel ovladačů - - - - Preparing project notes - Připravuji poznámky k projektu - - - - Preparing beat/bassline editor - Připravuji editor bicích/basů - - - - Preparing piano roll - Připravuji Piano roll - - - - Preparing automation editor - Připravuji Editor automatizace - - - - InstrumentFunctionArpeggio - - - Arpeggio - Arpeggio - - - - Arpeggio type - Typ arpeggia - - - - Arpeggio range - Rozsah arpeggia - - - - Note repeats - - - - - Cycle steps - Počet kroků v cyklu - - - - Skip rate - Míra vynechávání - - - - Miss rate - Míra míjení - - - - Arpeggio time - Trvání arpeggia - - - - Arpeggio gate - Brána arpeggia - - - - Arpeggio direction - Směr arpeggia - - - - Arpeggio mode - Styl arpeggia - - - - Up - Nahoru - - - - Down - Dolů - - - - Up and down - Nahoru a dolů - - - - Down and up - Dolů a nahoru - - - - Random - Náhodné - - - - Free - Volné - - - - Sort - Tříděné - - - - Sync - Synchronizované - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - ARPEGGIO - - - - RANGE - ROZSAH - - - - Arpeggio range: - Rozsah arpeggia: - - - - octave(s) - oktáva(y) - - - - REP - - - - - Note repeats: - - - - - time(s) - - - - - CYCLE - CYKL - - - - Cycle notes: - Počet not v cyklu: - - - - note(s) - nota(y) - - - - SKIP - VYNECH - - - - Skip rate: - Míra vynechávání: - - - - - - % - % - - - - MISS - MÍJ - - - - Miss rate: - Míra míjení: - - - - TIME - TRVÁNÍ - - - - Arpeggio time: - Trvání arpeggia: - - - - ms - ms - - - - GATE - BRÁNA - - - - Arpeggio gate: - Brána arpeggia: - - - - Chord: - Akord: - - - - Direction: - Směr: - - - - Mode: - Styl: - InstrumentFunctionNoteStacking - + octave Oktáva - - + + Major Dur - + Majb5 Maj5b - + minor Moll - + minb5 m5b - + sus2 sus2 - + sus4 sus4 - + aug aug - + augsus4 aug sus4 - + tri tri - + 6 6 - + 6sus4 6 sus4 - + 6add9 6 add9 - + m6 m6 - + m6add9 m6 add9 - + 7 7 - + 7sus4 7 sus4 - + 7#5 7/5# - + 7b5 7/5b - + 7#9 7/9# - + 7b9 7/9b - + 7#5#9 7/5#/9# - + 7#5b9 7/5#/9b - + 7b5b9 7/5b/9b - + 7add11 7 add11 - + 7add13 7 add13 - + 7#11 7/11# - + Maj7 Maj7 - + Maj7b5 Maj7/5b - + Maj7#5 Maj7/5# - + Maj7#11 Maj7/11# - + Maj7add13 Maj7 add13 - + m7 m7 - + m7b5 m7/5b - + m7b9 m7/9b - + m7add11 m7 add11 - + m7add13 m7 add13 - + m-Maj7 m-Maj7 - + m-Maj7add11 m-Maj7 add11 - + m-Maj7add13 m-Maj7 add13 - + 9 9 - + 9sus4 9 sus4 - + add9 add9 - + 9#5 9/5# - + 9b5 9/5b - + 9#11 9/11# - + 9b13 9/13b - + Maj9 Maj9 - + Maj9sus4 Maj9 sus4 - + Maj9#5 Maj9/5# - + Maj9#11 Maj9/11# - + m9 m9 - + madd9 m add9 - + m9b5 m9/5b - + m9-Maj7 m9-Maj7 - + 11 11 - + 11b9 11/9b - + Maj11 Maj11 - + m11 m11 - + m-Maj11 m-Maj11 - + 13 13 - + 13#9 13/9# - + 13b9 13/9b - + 13b5b9 13/9b/5b - + Maj13 Maj13 - + m13 m13 - + m-Maj13 m-Maj13 - + Harmonic minor Mollová harmonická - + Melodic minor Mollová melodická - + Whole tone Celotónová stupnice - + Diminished Zmenšená - + Major pentatonic Durová pentatonika - + Minor pentatonic Mollová pentatonika - + Jap in sen Japonská (in sen) stupnice - + Major bebop Durová bebopová - + Dominant bebop Dominantní bebopová - + Blues Bluesová stupnice - + Arabic Arabská - + Enigmatic Enigmatická - + Neopolitan Neapolská - + Neopolitan minor Mollová neapolská - + Hungarian minor Mollová maďarská - + Dorian Dórská - + Phrygian Frygický - + Lydian Lydická - + Mixolydian Mixolydická - + Aeolian Aiolská - + Locrian Lokrická - + Minor Moll - + Chromatic Chromatická - + Half-Whole Diminished Zmenšená (půltón–celý tón) - + 5 5 - + Phrygian dominant Frygická dominanta - + Persian Perská - - - Chords - Akordy - - - - Chord type - Typ akordu - - - - Chord range - Rozsah akordu - - - - InstrumentFunctionNoteStackingView - - - STACKING - VRSTVENÍ - - - - Chord: - Akord: - - - - RANGE - ROZSAH - - - - Chord range: - Rozsah akordu: - - - - octave(s) - oktáva(y) - - - - InstrumentMidiIOView - - - ENABLE MIDI INPUT - POVOLIT MIDI VSTUP - - - - ENABLE MIDI OUTPUT - POVOLIT MIDI VÝSTUP - - - - - CHAN - This string must be be short, its width must be less than * width of LCD spin-box of two digits - - - - - - VELOC - This string must be be short, its width must be less than * width of LCD spin-box of three digits - - - - - PROG - This string must be be short, its width must be less than the * width of LCD spin-box of three digits - - - - - NOTE - This string must be be short, its width must be less than * width of LCD spin-box of three digits - NOTA - - - - MIDI devices to receive MIDI events from - MIDI zařízení pro přijímání MIDI událostí - - - - MIDI devices to send MIDI events to - MIDI zařízení pro odesílání MIDI událostí - - - - CUSTOM BASE VELOCITY - VLASTNÍ VÝCHOZÍ DYNAMIKA - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. - Udává výchozí úroveň dynamiky pro MIDI nástroje při 100 % dynamiky tónu. - - - - BASE VELOCITY - VÝCHOZÍ DYNAMIKA - - - - InstrumentTuningView - - - MASTER PITCH - TRANSPOZICE - - - - Enables the use of master pitch - Povolí použití transpozice - InstrumentSoundShaping - + VOLUME HLASITOST - + Volume Hlasitost - + CUTOFF SEŘÍZNUTÍ - - + Cutoff frequency Frekvence oříznutí - + RESO REZONANCE - + Resonance Rezonance - - - Envelopes/LFOs - Obálky/LFO - - - - Filter type - Typ filtru - - - - Q/Resonance - Q/rezonance - - - - Low-pass - Dolní propust - - - - Hi-pass - Horní propust - - - - Band-pass csg - Pásmová propust csg - - - - Band-pass czpg - Pásmová propust czpg - - - - Notch - Pásmová zádrž - - - - All-pass - All-pass - - - - Moog - Moogův filtr - - - - 2x Low-pass - 2x dolní propust - - - - RC Low-pass 12 dB/oct - RC dolní propust 12 dB/okt - - - - RC Band-pass 12 dB/oct - RC pásmová propust 12 dB/okt - - - - RC High-pass 12 dB/oct - RC horní propust 12 dB/okt - - - - RC Low-pass 24 dB/oct - RC dolní propust 24 dB/okt - - - - RC Band-pass 24 dB/oct - RC pásmová propust 24 dB/okt - - - - RC High-pass 24 dB/oct - RC horní propust 24 dB/okt - - - - Vocal Formant - Vokální formant - - - - 2x Moog - 2x Moogův filtr - - - - SV Low-pass - SV dolní propust - - - - SV Band-pass - SV pásmová propust - - - - SV High-pass - SV horní propust - - - - SV Notch - SV pásmová zádrž - - - - Fast Formant - Rychlý formantový filtr - - - - Tripole - Třípólový filtr - - InstrumentSoundShapingView + JackAppDialog - - TARGET - CÍL: - - - - FILTER - FILTR - - - - FREQ - FREKV - - - - Cutoff frequency: - Frekvence oříznutí: - - - - Hz - Hz - - - - Q/RESO - Q/REZO - - - - Q/Resonance: - Q/rezonance - - - - Envelopes, LFOs and filters are not supported by the current instrument. - Obálky, LFO a filtry nejsou podporovány stávajícím nástrojem. - - - - InstrumentTrack - - - - unnamed_track - nepojmenovaná_stopa - - - - Base note - Základní nota - - - - First note + + Add JACK Application - - Last note - Podle poslední noty - - - - Volume - Hlasitost - - - - Panning - Panoráma - - - - Pitch - Ladění - - - - Pitch range - Výškový rozsah - - - - Mixer channel - Efektový kanál - - - - Master pitch - Transpozice - - - - Enable/Disable MIDI CC + + Note: Features not implemented yet are greyed out - - CC Controller %1 + + Application - - - Default preset - Výchozí předvolba - - - - InstrumentTrackView - - - Volume - Hlasitost - - - - Volume: - Hlasitost: - - - - VOL - HLA - - - - Panning - Panoráma - - - - Panning: - Panoráma: - - - - PAN - PAN - - - - MIDI - MIDI - - - - Input - Vstup - - - - Output - Výstup - - - - Open/Close MIDI CC Rack + + Name: - - Channel %1: %2 - Efekt %1: %2 - - - - InstrumentTrackWindow - - - GENERAL SETTINGS - HLAVNÍ NASTAVENÍ + + Application: + - - Volume - Hlasitost + + From template + - - Volume: - Hlasitost: + + Custom + - - VOL - HLA + + Template: + - - Panning - Panoráma + + Command: + - - Panning: - Panoráma: + + Setup + - - PAN - PAN + + Session Manager: + - - Pitch - Ladění + + None + - - Pitch: - Ladění: + + Audio inputs: + - - cents - centů + + MIDI inputs: + - - PITCH - LADĚNÍ + + Audio outputs: + - - Pitch range (semitones) - Rozsah výšky (v půltónech) + + MIDI outputs: + - - RANGE - ROZSAH + + Take control of main application window + - - Mixer channel - Efektový kanál + + Workarounds + - - CHANNEL - EFEKT + + Wait for external application start (Advanced, for Debug only) + - - Save current instrument track settings in a preset file - Uložit aktuální nastavení nástrojové stopy do souboru předvoleb + + Capture only the first X11 Window + - - SAVE - ULOŽIT + + Use previous client output buffer as input for the next client + - - Envelope, filter & LFO - Obálka, filtr a LFO + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + - - Chord stacking & arpeggio - Vrstvení akordů a arpeggio + + Error here + - - Effects - Efekty - - - - MIDI - MIDI - - - - Miscellaneous - Různé - - - - Save preset - Uložit předvolbu - - - - XML preset file (*.xpf) - XML soubor předvoleb (*.xpf) - - - - Plugin - Plugin - - - - JackApplicationW - - + NSM applications cannot use abstract or absolute paths - + NSM applications cannot use CLI arguments - + You need to save the current Carla project before NSM can be used @@ -6852,948 +2787,11 @@ Ověřte si prosím, zda máte povolen zápis do souboru a do složky, ve které JuceAboutW - - About JUCE - - - - - <b>About JUCE</b> - - - - - This program uses JUCE version 3.x.x. - - - - - JUCE (Jules' Utility Class Extensions) is an all-encompassing C++ class library for developing cross-platform software. - -It contains pretty much everything you're likely to need to create most applications, and is particularly well-suited for building highly-customised GUIs, and for handling graphics and sound. - -JUCE is licensed under the GNU Public Licence version 2.0. -One module (juce_core) is permissively licensed under the ISC. - -Copyright (C) 2017 ROLI Ltd. - - - - + This program uses JUCE version %1. - - Knob - - - Set linear - Lineární zobrazení - - - - Set logarithmic - Logaritmické zobrazení - - - - - Set value - Nastavit hodnotu - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - Zadejte prosím novou hodnotu mezi -96.0 dBFS a 6.0 dBFS: - - - - Please enter a new value between %1 and %2: - Vložte prosím novou hodnotu mezi %1 a %2: - - - - LadspaControl - - - Link channels - Propojit kanály - - - - LadspaControlDialog - - - Link Channels - Propojit kanály - - - - Channel - Kanál - - - - LadspaControlView - - - Link channels - Propojit kanály - - - - Value: - Hodnota: - - - - LadspaEffect - - - Unknown LADSPA plugin %1 requested. - Je požadován neznámý LADSPA plugin %1. - - - - LcdFloatSpinBox - - - Set value - Nastavit hodnotu - - - - Please enter a new value between %1 and %2: - Vložte prosím novou hodnotu mezi %1 a %2: - - - - LcdSpinBox - - - Set value - Nastavit hodnotu - - - - Please enter a new value between %1 and %2: - Vložte prosím novou hodnotu mezi %1 a %2: - - - - LeftRightNav - - - - - Previous - Předchozí - - - - - - Next - Další - - - - Previous (%1) - Předchozí (%1) - - - - Next (%1) - Další (%1) - - - - LfoController - - - LFO Controller - Ovladač LFO - - - - Base value - Základní hodnota - - - - Oscillator speed - Rychlost oscilátoru - - - - Oscillator amount - Míra oscilátoru - - - - Oscillator phase - Fáze oscilátoru - - - - Oscillator waveform - Vlna oscilátoru - - - - Frequency Multiplier - Frekvenční multiplikátor - - - - LfoControllerDialog - - - LFO - LFO - - - - BASE - ZÁKL - - - - Base: - - - - - FREQ - FREKV - - - - LFO frequency: - Frekvence LFO: - - - - AMNT - MNOŽ - - - - Modulation amount: - Hloubka modulace: - - - - PHS - FÁZ - - - - Phase offset: - Posun fáze: - - - - degrees - stupňů - - - - Sine wave - Sinusová vlna - - - - Triangle wave - Trojúhelníková vlna - - - - Saw wave - Pilovitá vlna - - - - Square wave - Pravoúhlá vlna - - - - Moog saw wave - Pilovitá vlna typu Moog - - - - Exponential wave - Exponenciální vlna - - - - White noise - Bílý šum - - - - User-defined shape. -Double click to pick a file. - Uživatelem definovaná křivka. -Poklepejte pro výběr souboru. - - - - Mutliply modulation frequency by 1 - Násobit frekvenci LFO x 1 - - - - Mutliply modulation frequency by 100 - Násobit frekvenci LFO x 100 - - - - Divide modulation frequency by 100 - Dělit frekvenci LFO / 100 - - - - Engine - - - Generating wavetables - Generuji vlny - - - - Initializing data structures - Inicializuji datové struktury - - - - Opening audio and midi devices - Spouštím zvuková a MIDI zařízení - - - - Launching mixer threads - Spouštím vlákna mixážního panelu - - - - MainWindow - - - Configuration file - Soubor nastavení - - - - Error while parsing configuration file at line %1:%2: %3 - Chyba při kontrole konfiguračního souboru na řádku %1:%2: %3 - - - - Could not open file - Nemohu otevřít soubor - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Nelze otevřít soubor %1 pro zápis. -Ujistěte se prosím, zda máte povolen zápis do souboru a do složky obsahující soubor a zkuste znovu! - - - - Project recovery - Obnovení projektu - - - - There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - Je k dispozici soubor pro obnovu. Zdá se, že poslední práce nebyla správně ukončena nebo že je již spuštěna jiná instance LMMS. Chcete obnovit tuto verzi projektu? - - - - - Recover - Obnovit - - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - Obnovit soubor. Před dokončením prosím nespouštějte další instance LMMS. - - - - - Discard - Zrušit - - - - Launch a default session and delete the restored files. This is not reversible. - Spustit LMMS do výchozího stavu a smazat obnovené soubory. Tento krok je nevratný. - - - - Version %1 - Verze %1 - - - - Preparing plugin browser - Připravuji prohlížeč pluginů - - - - Preparing file browsers - Připravuji prohlížeč souborů - - - - My Projects - Moje projekty - - - - My Samples - Moje samply - - - - My Presets - Moje předvolby - - - - My Home - Domů - - - - Root directory - Kořenový adresář - - - - Volumes - Hlasitosti - - - - My Computer - Můj počítač - - - - &File - &Soubor - - - - &New - &Nový - - - - &Open... - &Otevřít... - - - - Loading background picture - Načítání obrázku pozadí - - - - &Save - &Uložit - - - - Save &As... - Uložit &jako... - - - - Save as New &Version - Uložit jako novou &verzi - - - - Save as default template - Uložit jako výchozí šablonu - - - - Import... - Importovat... - - - - E&xport... - E&xportovat... - - - - E&xport Tracks... - E&xportovat stopy... - - - - Export &MIDI... - &Exportovat MIDI... - - - - &Quit - &Ukončit - - - - &Edit - Úpr&avy - - - - Undo - Zpět - - - - Redo - Znovu - - - - Settings - Nastavení - - - - &View - &Zobrazení - - - - &Tools - &Nástroje - - - - &Help - &Nápověda - - - - Online Help - Nápověda online - - - - Help - Nápověda - - - - About - O LMMS - - - - Create new project - Vytvořit nový projekt - - - - Create new project from template - Vytvořit nový projekt ze šablony - - - - Open existing project - Otevřít existující projekt - - - - Recently opened projects - Naposledy otevřené projekty - - - - Save current project - Uložit aktuální projekt - - - - Export current project - Exportovat aktuální projekt - - - - Metronome - Metronom - - - - - Song Editor - Editor skladby - - - - - Beat+Bassline Editor - Editor bicích/basů - - - - - Piano Roll - Piano roll - - - - - Automation Editor - Editor automatizace - - - - - Mixer - Efektový mixážní panel - - - - Show/hide controller rack - Zobrazit/Skrýt panel ovladačů - - - - Show/hide project notes - Zobrazit/Skrýt poznámky k projektu - - - - Untitled - Nepojmenovaný - - - - Recover session. Please save your work! - Obnovit projekt. Uložte prosím svou práci! - - - - LMMS %1 - LMMS %1 - - - - Recovered project not saved - Obnovený projekt není uložen - - - - This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? - Tento projekt byl obnoven z minulého spuštění LMMS. Zatím není uložen a pokud tak neučiníte, práce bude ztracena. Chcete jej nyní uložit? - - - - Project not saved - Projekt není uložen - - - - The current project was modified since last saving. Do you want to save it now? - Aktuální projekt byl od posledního uložení změněn. Chcete jej nyní uložit? - - - - Open Project - Otevřít projekt - - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - - Save Project - Uložit projekt - - - - LMMS Project - Projekt LMMS - - - - LMMS Project Template - Šablona projektu LMMS - - - - Save project template - Uložit šablonu projektu - - - - Overwrite default template? - Přepsat výchozí šablonu? - - - - This will overwrite your current default template. - Tímto se přepíše vaše nynější výchozí šablona. - - - - Help not available - Nápověda není dostupná - - - - Currently there's no help available in LMMS. -Please visit http://lmms.sf.net/wiki for documentation on LMMS. - V současnosti není v LMMS nápověda dostupná. -Navštivte prosím stránku s dokumentací k LMMS na adrese http://lmms.sf.net/wiki. - - - - Controller Rack - Panel ovladačů - - - - Project Notes - Poznámky k projektu - - - - Fullscreen - - - - - Volume as dBFS - Hlasitost v dBFS - - - - Smooth scroll - Plynulé posouvání - - - - Enable note labels in piano roll - Povolit názvy tónů v Piano rollu - - - - MIDI File (*.mid) - MIDI soubor (*.mid) - - - - - untitled - nepojmenovaný - - - - - Select file for project-export... - Vyberte soubor pro export projektu... - - - - Select directory for writing exported tracks... - Vyberte adresář pro zápis exportovaných stop... - - - - Save project - Uložit projekt - - - - Project saved - Projekt uložen - - - - The project %1 is now saved. - Projekt %1 je nyní uložen. - - - - Project NOT saved. - Projekt NENÍ uložen. - - - - The project %1 was not saved! - Projekt %1 nebyl uložen! - - - - Import file - Importovat soubor - - - - MIDI sequences - MIDI sekvence - - - - Hydrogen projects - Projekty Hydrogen - - - - All file types - Všechny typy souborů - - - - MeterDialog - - - - Meter Numerator - Počet dob v taktu - - - - Meter numerator - Počet dob v taktu - - - - - Meter Denominator - Délka doby v taktu - - - - Meter denominator - Délka doby v taktu - - - - TIME SIG - METRUM - - - - MeterModel - - - Numerator - Počet dob - - - - Denominator - Délka doby - - - - MidiCCRackView - - - - MIDI CC Rack - %1 - - - - - MIDI CC Knobs: - - - - - CC %1 - - - - - MidiController - - - MIDI Controller - MIDI ovladač - - - - unnamed_midi_controller - nepojmenovaný_midi_ovladač - - - - MidiImport - - - - Setup incomplete - Nastavení není dokončeno - - - - You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. - Nemáte nastaven výchozí soundfont v dialogovém okně (Edit-> Nastavení). Z tohoto důvodu nebude po importu MIDI souboru přehráván žádný zvuk. Stáhněte si nějaký General MIDI soundfont, zadejte jej v dialogovém okně nastavení a zkuste to znovu. - - - - You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - Nelze zkompilovat LMMS s podporou přehrávače SoundFont2, který je použitý k přidání výchozího zvuku do importovaných MIDI souborů. Proto nebude po importování tohoto MIDI souboru přehráván žádný zvuk. - - - - MIDI Time Signature Numerator - - - - - MIDI Time Signature Denominator - - - - - Numerator - Počet dob - - - - Denominator - Délka doby - - - - Track - Stopa - - - - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - JACK server zhavaroval - - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - Zdá se, že JACK server zhavaroval. - - MidiPatternW @@ -7999,2730 +2997,369 @@ Navštivte prosím stránku s dokumentací k LMMS na adrese http://lmms.sf.net/w &Ukončit - - &Insert Mode + + Esc + &Insert Mode + + + + F - + &Velocity Mode - + D - + Select All - + A - - MidiPort - - - Input channel - Vstupní kanál - - - - Output channel - Výstupní kanál - - - - Input controller - Vstupní ovladač - - - - Output controller - Výstupní ovladač - - - - Fixed input velocity - Pevná vstupní dynamika - - - - Fixed output velocity - Pevná výstupní dynamika - - - - Fixed output note - Pevná výstupní nota - - - - Output MIDI program - Výstupní MIDI program - - - - Base velocity - Výchozí dynamika - - - - Receive MIDI-events - Přijímat MIDI události - - - - Send MIDI-events - Posílat MIDI události - - - - MidiSetupWidget - - - Device - Zařízení - - - - MonstroInstrument - - - Osc 1 volume - Osc 1 hlasitost - - - - Osc 1 panning - Osc 1 panoráma - - - - Osc 1 coarse detune - Osc 1 hrubé rozladění - - - - Osc 1 fine detune left - Osc 1 jemné rozladění vlevo - - - - Osc 1 fine detune right - Osc 1 jemné rozladění vpravo - - - - Osc 1 stereo phase offset - Osc 1 posun stereo fáze - - - - Osc 1 pulse width - Osc 1 délka pulzu - - - - Osc 1 sync send on rise - Osc 1 synchronizace při nárůstu - - - - Osc 1 sync send on fall - Osc 1 synchronizace při poklesu - - - - Osc 2 volume - Osc 2 hlasitost - - - - Osc 2 panning - Osc 2 panoráma - - - - Osc 2 coarse detune - Osc 2 hrubé rozladění - - - - Osc 2 fine detune left - Osc 2 jemné rozladění vlevo - - - - Osc 2 fine detune right - Osc 2 jemné rozladění vpravo - - - - Osc 2 stereo phase offset - Osc 2 posun stereo fáze - - - - Osc 2 waveform - Osc 2 typ vlny - - - - Osc 2 sync hard - Osc 2 pevná synchronizace - - - - Osc 2 sync reverse - Osc 2 reverzní synchronizace - - - - Osc 3 volume - Osc 3 hlasitost - - - - Osc 3 panning - Osc 3 panoráma - - - - Osc 3 coarse detune - Osc 3 hrubé rozladění - - - - Osc 3 Stereo phase offset - Osc 3 posun stereo fáze - - - - Osc 3 sub-oscillator mix - Osc 3 smíchání se sub-oscilátorem - - - - Osc 3 waveform 1 - Osc 3 typ vlny 1 - - - - Osc 3 waveform 2 - Osc 3 typ vlny 2 - - - - Osc 3 sync hard - Osc 2 pevná synchronizace - - - - Osc 3 Sync reverse - Osc 3 reverzní synchronizace - - - - LFO 1 waveform - LFO 1 typ vlny - - - - LFO 1 attack - LFO 1 náběh - - - - LFO 1 rate - LFO 1 rychlost - - - - LFO 1 phase - LFO 1 fáze - - - - LFO 2 waveform - LFO 2 typ vlny - - - - LFO 2 attack - LFO 2 náběh - - - - LFO 2 rate - LFO 2 rychlost - - - - LFO 2 phase - LFO 2 fáze - - - - Env 1 pre-delay - Obálka 1 předzpoždění - - - - Env 1 attack - Obálka 1 náběh - - - - Env 1 hold - Obálka 1 zadržení - - - - Env 1 decay - Obálka 1 pokles - - - - Env 1 sustain - Obálka 1 držení - - - - Env 1 release - Obálka 1 doznění - - - - Env 1 slope - Obálka 1 strmost - - - - Env 2 pre-delay - Obálka 2 předzpoždění - - - - Env 2 attack - Obálka 2 náběh - - - - Env 2 hold - Obálka 2 zadržení - - - - Env 2 decay - Obálka 2 pokles - - - - Env 2 sustain - Obálka 2 držení - - - - Env 2 release - Obálka 2 doznění - - - - Env 2 slope - Obálka 2 strmost - - - - Osc 2+3 modulation - Osc 2+3 modulace - - - - Selected view - Zvolený pohled - - - - Osc 1 - Vol env 1 - Osc 1 – hlasitost obálka 1 - - - - Osc 1 - Vol env 2 - Osc 1 – hlasitost obálka 2 - - - - Osc 1 - Vol LFO 1 - Osc 1 – hlasitost LFO 1 - - - - Osc 1 - Vol LFO 2 - Osc 1 – hlasitost LFO 2 - - - - Osc 2 - Vol env 1 - Osc 2 – hlasitost obálka 1 - - - - Osc 2 - Vol env 2 - Osc 2 – hlasitost obálka 2 - - - - Osc 2 - Vol LFO 1 - Osc 2 – hlasitost LFO 1 - - - - Osc 2 - Vol LFO 2 - Osc 2 – hlasitost LFO 2 - - - - Osc 3 - Vol env 1 - Osc 3 – hlasitost obálka 1 - - - - Osc 3 - Vol env 2 - Osc 3 – hlasitost obálka 2 - - - - Osc 3 - Vol LFO 1 - Osc 3 – hlasitost LFO 1 - - - - Osc 3 - Vol LFO 2 - Osc 3 – hlasitost LFO 2 - - - - Osc 1 - Phs env 1 - Osc 1 – fáze obálka 1 - - - - Osc 1 - Phs env 2 - Osc 1 – fáze obálka 2 - - - - Osc 1 - Phs LFO 1 - Osc 1 – fáze LFO 1 - - - - Osc 1 - Phs LFO 2 - Osc 1 – fáze LFO 2 - - - - Osc 2 - Phs env 1 - Osc 2 – fáze obálka 1 - - - - Osc 2 - Phs env 2 - Osc 2 – fáze obálka 2 - - - - Osc 2 - Phs LFO 1 - Osc 2 – fáze LFO 1 - - - - Osc 2 - Phs LFO 2 - Osc 2 – fáze LFO 2 - - - - Osc 3 - Phs env 1 - Osc 3 – fáze obálka 1 - - - - Osc 3 - Phs env 2 - Osc 3 – fáze obálka 2 - - - - Osc 3 - Phs LFO 1 - Osc 3 – fáze LFO 1 - - - - Osc 3 - Phs LFO 2 - Osc 3 – fáze LFO 2 - - - - Osc 1 - Pit env 1 - Osc 1 – výška obálka 1 - - - - Osc 1 - Pit env 2 - Osc 1 – výška obálka 2 - - - - Osc 1 - Pit LFO 1 - Osc 1 – výška LFO 1 - - - - Osc 1 - Pit LFO 2 - Osc 1 – výška LFO 2 - - - - Osc 2 - Pit env 1 - Osc 2 – výška obálka 1 - - - - Osc 2 - Pit env 2 - Osc 2 – výška obálka 2 - - - - Osc 2 - Pit LFO 1 - Osc 2 – výška LFO 1 - - - - Osc 2 - Pit LFO 2 - Osc 2 – výška LFO 2 - - - - Osc 3 - Pit env 1 - Osc 3 – výška obálka 1 - - - - Osc 3 - Pit env 2 - Osc 3 – výška obálka 2 - - - - Osc 3 - Pit LFO 1 - Osc 3 – výška LFO 1 - - - - Osc 3 - Pit LFO 2 - Osc 3 – výška LFO 2 - - - - Osc 1 - PW env 1 - Osc 1 – délka pulzu obálka 1 - - - - Osc 1 - PW env 2 - Osc 1 – délka pulzu obálka 2 - - - - Osc 1 - PW LFO 1 - Osc 1 – délka pulzu LFO 1 - - - - Osc 1 - PW LFO 2 - Osc 1 – délka pulzu LFO 2 - - - - Osc 3 - Sub env 1 - Osc 3 – suboscilátor obálka 1 - - - - Osc 3 - Sub env 2 - Osc 3 – suboscilátor obálka 2 - - - - Osc 3 - Sub LFO 1 - Osc 3 – suboscilátor LFO 1 - - - - Osc 3 - Sub LFO 2 - Osc 3 – suboscilátor LFO 2 - - - - - Sine wave - Sinusová vlna - - - - Bandlimited Triangle wave - Pásmově zúžená trojúhelníková vlna - - - - Bandlimited Saw wave - Pásmově zúžená pilovitá vlna - - - - Bandlimited Ramp wave - Pásmově zúžená šikmá vlna - - - - Bandlimited Square wave - Pásmově zúžená pravoúhlá vlna - - - - Bandlimited Moog saw wave - Pásmově zúžená pilovitá vlna typu Moog - - - - - Soft square wave - Zaoblená pravoúhlá vlna - - - - Absolute sine wave - Absolutní sinusová vlna - - - - - Exponential wave - Exponenciální vlna - - - - White noise - Bílý šum - - - - Digital Triangle wave - Digitální trojúhelníková vlna - - - - Digital Saw wave - Digitální pilovitá vlna - - - - Digital Ramp wave - Digitální šikmá vlna - - - - Digital Square wave - Digitální pravoúhlá vlna - - - - Digital Moog saw wave - Digitální pilovitá vlna typu Moog - - - - Triangle wave - Trojúhelníková vlna - - - - Saw wave - Pilovitá vlna - - - - Ramp wave - Šikmá vlna - - - - Square wave - Pravoúhlá vlna - - - - Moog saw wave - Pilovitá vlna typu Moog - - - - Abs. sine wave - Abs. sinusová vlna - - - - Random - Náhodná - - - - Random smooth - Vyhlazená náhodná - - - - MonstroView - - - Operators view - Zobrazení operátorů - - - - Matrix view - Zobrazení matrice - - - - - - Volume - Hlasitost - - - - - - Panning - Panoráma - - - - - - Coarse detune - Hrubé rozladění - - - - - - semitones - půltónů - - - - - Fine tune left - Jemné rozladění vlevo - - - - - - - cents - centů - - - - - Fine tune right - Jemné rozladění vpravo - - - - - - Stereo phase offset - Posun stereo fáze - - - - - - - - deg - stupňů - - - - Pulse width - Délka pulzu - - - - Send sync on pulse rise - Synchronizace při nárůstu pulzu - - - - Send sync on pulse fall - Synchronizace při poklesu pulzu - - - - Hard sync oscillator 2 - Pevně synchronizovat oscilátor 2 - - - - Reverse sync oscillator 2 - Reverzně synchronizovat oscilátor 2 - - - - Sub-osc mix - Míchání sub-osc - - - - Hard sync oscillator 3 - Pevně synchronizovat oscilátor 3 - - - - Reverse sync oscillator 3 - Reverzně synchronizovat oscilátor 3 - - - - - - - Attack - Náběh - - - - - Rate - Typ - - - - - Phase - Fáze - - - - - Pre-delay - Předzpoždění - - - - - Hold - Držení - - - - - Decay - Pokles - - - - - Sustain - Držení - - - - - Release - Doznění - - - - - Slope - Strmost - - - - Mix osc 2 with osc 3 - Smíchat osc 2 s osc 3 - - - - Modulate amplitude of osc 3 by osc 2 - Modulovat amplitudu oscilátoru 3 oscilátorem 2 - - - - Modulate frequency of osc 3 by osc 2 - Modulovat frekvenci oscilátoru 3 oscilátorem 2 - - - - Modulate phase of osc 3 by osc 2 - Modulovat fázi oscilátoru 3 oscilátorem 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Modulation amount - Hloubka modulace - - - - MultitapEchoControlDialog - - - Length - Délka - - - - Step length: - Délka kroku: - - - - Dry - Poměr - - - - Dry gain: - Poměr zdrojového zvuku: - - - - Stages - Úrovně - - - - Low-pass stages: - Počet úrovní dolní propusti: - - - - Swap inputs - Přepnout vstupy - - - - Swap left and right input channels for reflections - Přepnout levý a pravý vstupní kanál pro odrazy - - - - NesInstrument - - - Channel 1 coarse detune - Kanál 1 hrubé rozladění - - - - Channel 1 volume - Hlasitost kanálu 1 - - - - Channel 1 envelope length - Kanál 1 délka obálky - - - - Channel 1 duty cycle - Kanál 1 pracovní cyklus - - - - Channel 1 sweep amount - Kanál 1 množství sweepu - - - - Channel 1 sweep rate - Kanál 1 rychlost sweepu - - - - Channel 2 Coarse detune - Kanál 2 hrubé rozladění - - - - Channel 2 Volume - Hlasitost kanálu 2 - - - - Channel 2 envelope length - Kanál 2 délka obálky - - - - Channel 2 duty cycle - Kanál 2 pracovní cyklus - - - - Channel 2 sweep amount - Kanál 2 množství sweepu - - - - Channel 2 sweep rate - Kanál 2 rychlost sweepu - - - - Channel 3 coarse detune - Kanál 3 hrubé rozladění - - - - Channel 3 volume - Hlasitost kanálu 3 - - - - Channel 4 volume - Hlasitost kanálu 4 - - - - Channel 4 envelope length - Kanál 4 délka obálky - - - - Channel 4 noise frequency - Kanál 4 frekvence šumu - - - - Channel 4 noise frequency sweep - Kanál 4 sweep frekvence šumu - - - - Master volume - Hlavní hlasitost - - - - Vibrato - Vibráto - - - - NesInstrumentView - - - - - - Volume - Hlasitost - - - - - - Coarse detune - Hrubé rozladění - - - - - - Envelope length - Délka obálky - - - - Enable channel 1 - Zapnout kanál 1 - - - - Enable envelope 1 - Zapnout obálku 1 - - - - Enable envelope 1 loop - Zapnout smyčku obálky 1 - - - - Enable sweep 1 - Zapnout sweep 1 - - - - - Sweep amount - Množství sweepu - - - - - Sweep rate - Rychlost sweepu - - - - - 12.5% Duty cycle - 12.5% pracovního cyklu - - - - - 25% Duty cycle - 25% pracovního cyklu - - - - - 50% Duty cycle - 50% pracovního cyklu - - - - - 75% Duty cycle - 75% pracovního cyklu - - - - Enable channel 2 - Zapnout kanál 2 - - - - Enable envelope 2 - Zapnout obálku 2 - - - - Enable envelope 2 loop - Zapnout smyčku obálky 2 - - - - Enable sweep 2 - Zapnout sweep 2 - - - - Enable channel 3 - Zapnout kanál 3 - - - - Noise Frequency - Frekvence šumu - - - - Frequency sweep - Frekvence sweepu - - - - Enable channel 4 - Zapnout kanál 4 - - - - Enable envelope 4 - Zapnout obálku 4 - - - - Enable envelope 4 loop - Zapnout smyčku obálky 4 - - - - Quantize noise frequency when using note frequency - Kvantizovat frekvenci šumu při použití frekvence noty - - - - Use note frequency for noise - Použít frekvenci pro šum - - - - Noise mode - Typ šumu - - - - Master volume - Hlavní hlasitost - - - - Vibrato - Vibráto - - - - OpulenzInstrument - - - Patch - Patch - - - - Op 1 attack - Op 1 náběh - - - - Op 1 decay - Op 1 pokles - - - - Op 1 sustain - Op 1 držení - - - - Op 1 release - Op 1 doznění - - - - Op 1 level - Op 1 úroveň - - - - Op 1 level scaling - Op 1 škálování úrovně - - - - Op 1 frequency multiplier - Op 1 násobení frekvence - - - - Op 1 feedback - Op 1 zpětná vazba - - - - Op 1 key scaling rate - Op 1 rychlost podle výšky klávesy - - - - Op 1 percussive envelope - Op 1 perkusivní obálka - - - - Op 1 tremolo - Op 1 tremolo - - - - Op 1 vibrato - Op 1 vibrato - - - - Op 1 waveform - Op 1 typ vlny - - - - Op 2 attack - Op 2 náběh - - - - Op 2 decay - Op 2 pokles - - - - Op 2 sustain - - - - - Op 2 release - Op 2 doznění - - - - Op 2 level - Op 2 úroveň - - - - Op 2 level scaling - Op 2 škálování úrovně - - - - Op 2 frequency multiplier - Op 2 násobení frekvence - - - - Op 2 key scaling rate - Op 2 rychlost podle výšky klávesy - - - - Op 2 percussive envelope - Op 2 perkusivní obálka - - - - Op 2 tremolo - Op 2 tremolo - - - - Op 2 vibrato - Op 2 vibrato - - - - Op 2 waveform - Op 2 typ vlny - - - - FM - FM - - - - Vibrato depth - Hloubka vibráta - - - - Tremolo depth - Hloubka tremola - - - - OpulenzInstrumentView - - - - Attack - Náběh - - - - - Decay - Pokles - - - - - Release - Doznění - - - - - Frequency multiplier - Násobič frekvence - - - - OscillatorObject - - - Osc %1 waveform - Osc %1 vlna - - - - Osc %1 harmonic - Osc %1 harmonické - - - - - Osc %1 volume - Osc %1 hlasitost - - - - - Osc %1 panning - Osc %1 panoráma - - - - - Osc %1 fine detuning left - Osc %1 jemné rozladění vlevo - - - - Osc %1 coarse detuning - Osc %1 hrubé rozladění - - - - Osc %1 fine detuning right - Osc %1 jemné rozladění vpravo - - - - Osc %1 phase-offset - Osc %1 posun fáze - - - - Osc %1 stereo phase-detuning - Osc %1 rozladění stereo fáze - - - - Osc %1 wave shape - Osc %1 forma vlny - - - - Modulation type %1 - Typ modulace %1 - - - - Oscilloscope - - - Oscilloscope - Osciloskop - - - - Click to enable - Klepněte pro zapnutí - - PatchesDialog + Qsynth: Channel Preset Qsynth: Předvolba kanálu + Bank selector Výběr banky + Bank Banka + Program selector Výběr programu + Patch Patch + Name Název + OK OK + Cancel Zrušit - - PatmanView - - - Open patch - Otevřít patch - - - - Loop - Smyčka - - - - Loop mode - Režim smyčky - - - - Tune - Ladění - - - - Tune mode - Režim ladění - - - - No file selected - Není vybrán žádný soubor - - - - Open patch file - Otevřít soubor patch - - - - Patch-Files (*.pat) - Soubor patch (*.pat) - - - - MidiClipView - - - Open in piano-roll - Otevřít v Piano rollu - - - - Set as ghost in piano-roll - - - - - Clear all notes - Vymazat všechny noty - - - - Reset name - Resetovat jméno - - - - Change name - Změnit jméno - - - - Add steps - Přidat kroky - - - - Remove steps - Odstranit kroky - - - - Clone Steps - Klonovat kroky - - - - PeakController - - - Peak Controller - Ovladač špičky - - - - Peak Controller Bug - Chyba ovladače špičky - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - Z důvodu chyby ve starší verzi LMMS nemusí být ovladače špiček správně připojeny. Ujistěte se prosím, zda jsou ovladače špiček správně připojeny a znovu uložte tento soubor. Omlouváme se za způsobené nepříjemnosti. - - - - PeakControllerDialog - - - PEAK - ŠPIČ - - - - LFO Controller - Ovladač LFO - - - - PeakControllerEffectControlDialog - - - BASE - ZÁKL - - - - Base: - - - - - AMNT - MNOŽ - - - - Modulation amount: - Hloubka modulace: - - - - MULT - NÁSB - - - - Amount multiplicator: - Násobič množství: - - - - ATCK - NÁBH - - - - Attack: - Náběh: - - - - DCAY - POKL - - - - Release: - Doznění: - - - - TRSH - PRÁH - - - - Treshold: - Práh: - - - - Mute output - Ztlumit výstup - - - - Absolute value - Absolutní hodnota - - - - PeakControllerEffectControls - - - Base value - Základní hodnota - - - - Modulation amount - Hloubka modulace - - - - Attack - Náběh - - - - Release - Doznění - - - - Treshold - Práh - - - - Mute output - Ztlumit výstup - - - - Absolute value - Absolutní hodnota - - - - Amount multiplicator - Násobič množství - - - - PianoRoll - - - Note Velocity - Dynamika noty - - - - Note Panning - Panoráma noty - - - - Mark/unmark current semitone - Zvýraznit/Skrýt zvolený tón - - - - Mark/unmark all corresponding octave semitones - Zvýraznit/Skrýt zvolený tón ve všech oktávách - - - - Mark current scale - Zvýraznit zvolenou stupnici - - - - Mark current chord - Zvýraznit zvolený akord - - - - Unmark all - Skrýt vše - - - - Select all notes on this key - Vybrat všechny noty zvolené výšky - - - - Note lock - Zamknout notu - - - - Last note - Podle poslední noty - - - - No key - - - - - No scale - Žádná stupnice - - - - No chord - Žádný akord - - - - Nudge - - - - - Snap - - - - - Velocity: %1% - Dynamika: %1% - - - - Panning: %1% left - Panoráma: %1% vlevo - - - - Panning: %1% right - Panoráma: %1% vpravo - - - - Panning: center - Panoráma: střed - - - - Glue notes failed - - - - - Please select notes to glue first. - - - - - Please open a clip by double-clicking on it! - Otevřete prosím záznam poklepáním! - - - - - Please enter a new value between %1 and %2: - Vložte prosím novou hodnotu mezi %1 a %2: - - - - PianoRollWindow - - - Play/pause current clip (Space) - Přehrát/Pozastavit přehrávání aktuálního záznamu (mezerník) - - - - Record notes from MIDI-device/channel-piano - Nahrávat z MIDI zařízení / virtuální klávesnice - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - Nahrávat z MIDI zařízení / virtuální klávesnice při přehrávání skladby nebo stopy bicích/basů - - - - Record notes from MIDI-device/channel-piano, one step at the time - Nahrává noty z MIDI zařízení / piano kanálu v jednotlivých krocích - - - - Stop playing of current clip (Space) - Zastavit přehrávání aktuálního záznamu (mezerník) - - - - Edit actions - Akce úprav - - - - Draw mode (Shift+D) - Režim kreslení (Shift+D) - - - - Erase mode (Shift+E) - Režim mazání (Shift+E) - - - - Select mode (Shift+S) - Režim výběru (Shift+S) - - - - Pitch Bend mode (Shift+T) - Režim ohýbání výšky (Shift+T) - - - - Quantize - Kvantizace - - - - Quantize positions - - - - - Quantize lengths - - - - - File actions - - - - - Import clip - - - - - - Export clip - - - - - Copy paste controls - Ovládání kopírování a vkládání - - - - Cut (%1+X) - Vystřihnout (%1+X) - - - - Copy (%1+C) - Kopírovat (%1+C) - - - - Paste (%1+V) - Vložit (%1+V) - - - - Timeline controls - Ovládání časové osy - - - - Glue - - - - - Knife - - - - - Fill - - - - - Cut overlaps - - - - - Min length as last - - - - - Max length as last - - - - - Zoom and note controls - Lupa a ovládání not - - - - Horizontal zooming - Horizontální zvětšení - - - - Vertical zooming - Vertikální zvětšení - - - - Quantization - Kvantizace - - - - Note length - Délka noty - - - - Key - - - - - Scale - Stupnice - - - - Chord - Akord - - - - Snap mode - - - - - Clear ghost notes - Vymazat stínové noty - - - - - Piano-Roll - %1 - Piano roll – %1 - - - - - Piano-Roll - no clip - Piano roll – žádný záznam - - - - - XML clip file (*.xpt *.xptz) - - - - - Export clip success - - - - - Clip saved to %1 - - - - - Import clip. - - - - - You are about to import a clip, this will overwrite your current clip. Do you want to continue? - - - - - Open clip - - - - - Import clip success - - - - - Imported clip %1! - - - - - PianoView - - - Base note - Základní nota - - - - First note - - - - - Last note - Podle poslední noty - - - - Plugin - - - Plugin not found - Plugin nenalezen - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - Plugin "%1" nebyl nalezen nebo nemůže být načten! -Důvod: "%2" - - - - Error while loading plugin - Při načítání pluginu došlo k chybě - - - - Failed to load plugin "%1"! - Načtení pluginu "%1" selhalo! - - PluginBrowser - - Instrument Plugins - Nástrojové pluginy - - - - Instrument browser - Prohlížeč nástrojů - - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - Nástroj přetáhněte do editoru skladby, editoru bicích/basů nebo do existující nástrojové stopy. - - - + no description bez popisu - + A native amplifier plugin Nativní plugin zesilovače - + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track Jednoduchý sampler s bohatým nastavením pro používání samplů (např. bicích nástrojů) v nástrojové stopě - + Boost your bass the fast and simple way Zesílení vašeho basu rychlým a snadným způsobem - + Customizable wavetable synthesizer Upravitelný tabulkový syntezátor - + An oversampling bitcrusher Bitcrusher založený na převzorkování - + Carla Patchbay Instrument Nástroj Carla Patchbay - + Carla Rack Instrument Nástroj Carla Rack - + A dynamic range compressor. - + A 4-band Crossover Equalizer 4 pásmový crossover ekvalizér - + A native delay plugin Nativní plugin delay - + A Dual filter plugin Plugin duální filtr - + plugin for processing dynamics in a flexible way plugin pro flexibilní práci s dynamikou - + A native eq plugin Nativní plugin ekvalizér - + A native flanger plugin Nativní plugin flanger - + Emulation of GameBoy (TM) APU Emulace APU GameBoye (TM) - + Player for GIG files Přehrávač GIG souborů - + Filter for importing Hydrogen files into LMMS Filtr pro import souborů Hydrogen do LMMS - + Versatile drum synthesizer Univerzální syntezátor bicích nástrojů - + List installed LADSPA plugins Seznam nainstalovaných LADSPA pluginů - + plugin for using arbitrary LADSPA-effects inside LMMS. plugin pro užití libovolných LADSPA efektů uvnitř LMMS. - + Incomplete monophonic imitation TB-303 - Nekompletní monofonní imitace TB-303 + - + plugin for using arbitrary LV2-effects inside LMMS. - + plugin for using arbitrary LV2 instruments inside LMMS. - + Filter for exporting MIDI-files from LMMS Filtr pro export souborů MIDI z LMMS - + Filter for importing MIDI-files into LMMS Filtr pro import MIDI souborů do LMMS - + Monstrous 3-oscillator synth with modulation matrix 3oscilátorový syntezátor Monstrous s modulační matricí - + A multitap echo delay plugin Plugin multi-tap delay - + A NES-like synthesizer Syntetizér typu NES - + 2-operator FM Synth 2 operátorová FM syntéza - + Additive Synthesizer for organ-like sounds Aditivní syntezátor pro zvuky podobné varhanám - + GUS-compatible patch instrument GUS kompatibilní patch instrument - + Plugin for controlling knobs with sound peaks Plugin pro řízení otočných ovladačů zvukovými špičkami - + Reverb algorithm by Sean Costello Algoritmus dozvuku od Seana Costello - + Player for SoundFont files Přehrávač SoundFont souborů - + LMMS port of sfxr LMMS port sfxr - + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Emulace MOS6581 a MOS8580 SID. Tento čip byl používán v počítačích Commodore 64. - + A graphical spectrum analyzer. Grafický analyzátor spektra - + Plugin for enhancing stereo separation of a stereo input file Plugin pro zlepšení stereo separace vstupních stereo souborů - + Plugin for freely manipulating stereo output Plugin pro volné úpravy stereo výstupu - + Tuneful things to bang on Melodické bicí nástroje - + Three powerful oscillators you can modulate in several ways 3 silné oscilátory, které můžete různými způsoby modulovat - + A stereo field visualizer. - + Vizualizér stereofonního pole. - + VST-host for using VST(i)-plugins within LMMS VST host pro užití VST(i) pluginů v LMMS - + Vibrating string modeler Vibrační modelátor strun - + plugin for using arbitrary VST effects inside LMMS. Plugin pro použití libovolného VST efektu v LMMS. - + 4-oscillator modulatable wavetable synth 4oscilátorový modulovatelný tabulkový syntezátor - + plugin for waveshaping plugin pro tvarování vln - + Mathematical expression parser Parser matematických výrazů - + Embedded ZynAddSubFX Vestavěný ZynAddSubFX - - - PluginDatabaseW - - Carla - Add New + + An all-pass filter allowing for extremely high orders. - - Format + + Granular pitch shifter - - Internal + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. - - LADSPA + + Basic Slicer - - DSSI - - - - - LV2 - - - - - VST2 - - - - - VST3 - - - - - AU - - - - - Sound Kits - - - - - Type - Typ - - - - Effects - Efekty - - - - Instruments - Nástroje - - - - MIDI Plugins - - - - - Other/Misc - - - - - Architecture - - - - - Native - - - - - Bridged - - - - - Bridged (Wine) - - - - - Requirements - - - - - With Custom GUI - - - - - With CV Ports - - - - - Real-time safe only - - - - - Stereo only - - - - - With Inline Display - - - - - Favorites only - - - - - (Number of Plugins go here) - - - - - &Add Plugin - - - - - Cancel - Zrušit - - - - Refresh - - - - - Reset filters - - - - - - - - - - - - - - - - - - - - TextLabel - - - - - Format: - - - - - Architecture: - - - - - Type: - Typ: - - - - MIDI Ins: - - - - - Audio Ins: - - - - - CV Outs: - - - - - MIDI Outs: - - - - - Parameter Ins: - - - - - Parameter Outs: - - - - - Audio Outs: - - - - - CV Ins: - - - - - UniqueID: - - - - - Has Inline Display: - - - - - Has Custom GUI: - - - - - Is Synth: - - - - - Is Bridged: - - - - - Information - - - - - Name - Název - - - - Label/URI - - - - - Maker - - - - - Binary/Filename - - - - - Focus Text Search - - - - - Ctrl+F + + Tap to the beat @@ -10821,93 +3458,98 @@ Tento čip byl používán v počítačích Commodore 64. - Send Bank/Program Changes + Send Notes - Send Control Changes + Send Bank/Program Changes - Send Channel Pressure + Send Control Changes - Send Note Aftertouch + Send Channel Pressure - Send Pitchbend + Send Note Aftertouch + Send Pitchbend + + + + Send All Sound/Notes Off - + Plugin Name - + Program: - + MIDI Program: - + Save State - + Load State - + Information - + Label/URI: - + Name: - + Type: Typ: - + Maker: - + Copyright: - + Unique ID: @@ -10915,16 +3557,457 @@ Plugin Name PluginFactory - + Plugin not found. Plugin nebyl nalezen. - + LMMS plugin %1 does not have a plugin descriptor named %2! U LMMS pluginu %1 chybí popisovač pluginu s názvem %2! + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + PluginParameter @@ -10939,157 +4022,61 @@ Plugin Name + TextLabel + + + + ... - PluginRefreshW + PluginRefreshDialog - - Carla - Refresh + + Plugin Refresh - - Search for new... + + Search for: - - LADSPA + + All plugins, ignoring cache - - DSSI + + Updated plugins only - - LV2 + + Check previously invalid plugins - - VST2 - - - - - VST3 - - - - - AU - - - - - SF2/3 - - - - - SFZ - - - - - Native - - - - - POSIX 32bit - - - - - POSIX 64bit - - - - - Windows 32bit - - - - - Windows 64bit - - - - - Available tools: - - - - - python3-rdflib (LADSPA-RDF support) - - - - - carla-discovery-win64 - - - - - carla-discovery-native - - - - - carla-discovery-posix32 - - - - - carla-discovery-posix64 - - - - - carla-discovery-win32 - - - - - Options: - - - - - Carla will run small processing checks when scanning the plugins (to make sure they won't crash). -You can disable these checks to get a faster scanning time (at your own risk). - - - - - Run processing checks while scanning - - - - + Press 'Scan' to begin the search - + Scan - + >> Skip - + Close - Zavřít + @@ -11104,50 +4091,50 @@ You can disable these checks to get a faster scanning time (at your own risk). - + Enable - + On/Off Zap/Vyp - + - + PluginName - + MIDI MIDI - + AUDIO IN - + AUDIO OUT - + GUI - + Edit - + Remove @@ -11162,2549 +4149,13816 @@ You can disable these checks to get a faster scanning time (at your own risk). - - ProjectNotes - - - Project Notes - Poznámky k projektu - - - - Enter project notes here - Sem zapište poznámky k projektu - - - - Edit Actions - Provedené úpravy - - - - &Undo - &Zpět - - - - %1+Z - %1+Z - - - - &Redo - &Znovu - - - - %1+Y - %1+Z - - - - &Copy - &Kopírovat - - - - %1+C - %1+C - - - - Cu&t - &Vyjmout - - - - %1+X - %1+X - - - - &Paste - V&ložit - - - - %1+V - %1+V - - - - Format Actions - Formátování - - - - &Bold - &Tučné - - - - %1+B - %1+B - - - - &Italic - &Kurzíva - - - - %1+I - %1+I - - - - &Underline - &Podtržené - - - - %1+U - %1+U - - - - &Left - &Vlevo - - - - %1+L - %1+L - - - - C&enter - &Na střed - - - - %1+E - %1+E - - - - &Right - V&pravo - - - - %1+R - %1+R - - - - &Justify - &Do bloku - - - - %1+J - %1+J - - - - &Color... - &Barva... - - ProjectRenderer - + WAV (*.wav) WAV (*.wav) - + FLAC (*.flac) FLAC (*.flac) - + OGG (*.ogg) OGG (*.ogg) - + MP3 (*.mp3) MP3 (*.mp3) - QObject + QGroupBox - - Reload Plugin + + + Settings for %1 + + + QObject - + + Reload Plugin + Restartuj plugin + + + Show GUI Ukázat grafické rozhraní - + Help Nápověda + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + QWidget - - - - + + Name: Název: - - URI: - - - - - - + Maker: Tvůrce: - - - + Copyright: Autorská práva: - - + Requires Real Time: Vyžaduje běh v reálném čase: - - - - - - + + + Yes Ano - - - - - - + + + No Ne - - + Real Time Capable: Schopnost běhu v reálném čase: - - + In Place Broken: Na místě poškozeného: - - + Channels In: Vstupní kanály: - - + Channels Out: Výstupní kanály: - + File: %1 Soubor: %1 - + File: Soubor: - RecentProjectsMenu + XYControllerW - - &Recently Opened Projects - &Naposledy otevřené projekty + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + - RenameDialog + lmms::AmplifierControls - - Rename... - Přejmenovat... + + Volume + + + + + Panning + + + + + Left gain + + + + + Right gain + - ReverbSCControlDialog + lmms::AudioFileProcessor - - Input - Vstup + + Amplify + - - Input gain: - Zesílení vstupu: + + Start of sample + - - Size - Velikost + + End of sample + - - Size: - Velikost: + + Loopback point + - - Color - Barva + + Reverse sample + - - Color: - Barva: + + Loop mode + - - Output - Výstup + + Stutter + - - Output gain: - Zesílení výstupu: + + Interpolation mode + + + + + None + + + + + Linear + + + + + Sinc + + + + + Sample not found + - ReverbSCControls + lmms::AudioJack - + + JACK client restarted + JACK klient restartován + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + LMMS bylo z nějakého důvodu odpojeno od JACKu. Ovladač JACK rozhraní v LMMS byl proto restartován. Budete muset znovu provést ruční připojení. + + + + JACK server down + JACK server byl zastaven + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + JACK server byl zřejmě zastaven, a jeho opětovné spuštění se nezdařilo. LMMS proto nemůže pokračovat. Uložte svůj projekt a restartujte JACK i LMMS. + + + + Client name + Název klienta + + + + Channels + Kanály + + + + lmms::AudioOss + + + Device + Zařízení + + + + Channels + Kanály + + + + lmms::AudioPortAudio::setupWidget + + + Backend + Backend + + + + Device + Zařízení + + + + lmms::AudioPulseAudio + + + Device + Zařízení + + + + Channels + Kanály + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + Zařízení + + + + Channels + Kanály + + + + lmms::AudioSoundIo::setupWidget + + + Backend + Backend + + + + Device + Zařízení + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + + Gain + + + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + Input gain - Zesílení vstupu + - - Size - Velikost + + Input noise + - - Color - Barva + + Output gain + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + + + + + Output gain + + + + + Attack time + + + + + Release time + + + + + Stereo mode + + + + + lmms::Effect + + + Effect enabled + + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + + + + + Denominator + + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + Input gain + + + + + Size + + + + + Color + + + + Output gain - Zesílení výstupu + - SaControls + lmms::SaControls - + Pause - Pauza + - + Reference freeze - + Waterfall - Vodopád + - + Averaging - - - Stereo - Stereo - - - - Peak hold - Držet špičku - - Logarithmic frequency - Logaritmická frekvence - - - - Logarithmic amplitude - Logaritmická amplituda - - - - Frequency range - Frekvenční rozsah - - - - Amplitude range - Rozsah amplitudy - - - - FFT block size - Velikost FFT bloku - - - - FFT window type - Typ FFT okna - - - - Peak envelope resolution + Stereo - - Spectrum display resolution - Rozlišení zobrazení spektra + + Peak hold + - - Peak decay multiplier + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type - Averaging weight + Peak envelope resolution - Waterfall history size + Spectrum display resolution - Waterfall gamma correction + Peak decay multiplier - FFT window overlap - Překrývání FFT oken + Averaging weight + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + FFT zero padding - - + + Full (auto) - - + + Audible - + Bass - Basy + - + Mids - + High - - - Extended - Rozšířený - - - - Loud - Hlasitý - - Silent - Tichý + Extended + - + + Loud + + + + + Silent + + + + (High time res.) - + (High freq. res.) - + Rectangular (Off) - + Blackman-Harris (Default) - + Hamming - + Hanning - SaControlsDialog + lmms::SampleClip - - Pause - Pauza - - - - Pause data acquisition - - - - - Reference freeze - - - - - Freeze current input as a reference / disable falloff in peak-hold mode. - - - - - Waterfall - Vodopád - - - - Display real-time spectrogram - - - - - Averaging - - - - - Enable exponential moving average - - - - - Stereo - Stereo - - - - Display stereo channels separately - - - - - Peak hold - Držet špičku - - - - Display envelope of peak values - - - - - Logarithmic frequency - Logaritmická frekvence - - - - Switch between logarithmic and linear frequency scale - Přepnout mezi mezi logaritmickým a lineárním zobrazením frekvence - - - - - Frequency range - Frekvenční rozsah - - - - Logarithmic amplitude - Logaritmická amplituda - - - - Switch between logarithmic and linear amplitude scale - Přepnout mezi mezi logaritmickým a lineárním zobrazením amplitudy - - - - - Amplitude range - Rozsah amplitudy - - - - Envelope res. - Rozliš. obálky - - - - Increase envelope resolution for better details, decrease for better GUI performance. - Zvyšte rozlišení obálky pro lepší detaily, snižte pro vyšší výkon rozhraní (GUI). - - - - - Draw at most - - - - - envelope points per pixel - - - - - Spectrum res. - Rozliš. spektra - - - - Increase spectrum resolution for better details, decrease for better GUI performance. - Zvyšte rozlišení spektra pro lepší detaily, snižte pro vyšší výkon rozhraní (GUI). - - - - spectrum points per pixel - bodů spektra na pixel - - - - Falloff factor - - - - - Decrease to make peaks fall faster. - - - - - Multiply buffered value by - - - - - Averaging weight - - - - - Decrease to make averaging slower and smoother. - - - - - New sample contributes - - - - - Waterfall height - - - - - Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. - - - - - Keep - Zachovat - - - - lines - linie - - - - Waterfall gamma - Gamma vodopádu - - - - Decrease to see very weak signals, increase to get better contrast. - - - - - Gamma value: - Hodnota gamma: - - - - Window overlap - Překrývání oken - - - - Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. - - - - - Each sample processed - Zpracování všech samplů - - - - times - - - - - Zero padding - - - - - Increase to get smoother-looking spectrum. Warning: high CPU usage. - - - - - Processing buffer is - - - - - steps larger than input block - - - - - Advanced settings - Rozšířená nastavení - - - - Access advanced settings - - - - - - FFT block size - Velikost FFT bloku - - - - - FFT window type - Typ FFT okna - - - - SampleBuffer - - - Fail to open file - Chyba otevírání souboru - - - - Audio files are limited to %1 MB in size and %2 minutes of playing time - Audio soubory jsou omezeny na %1 MB velikosti a %2 minut délky - - - - Open audio file - Otevřít audio soubor - - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - Všechny audio soubory (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - - Wave-Files (*.wav) - WAV soubory (*.wav) - - - - OGG-Files (*.ogg) - OGG soubory (*.ogg) - - - - DrumSynth-Files (*.ds) - DrumSynth soubory (*.ds) - - - - FLAC-Files (*.flac) - FLAC soubory (*.flac) - - - - SPEEX-Files (*.spx) - SPEEX soubory (*.spx) - - - - VOC-Files (*.voc) - VOC soubory (*.voc) - - - - AIFF-Files (*.aif *.aiff) - Soubory AIFF (*.aif *.aiff) - - - - AU-Files (*.au) - AU soubory (*.au) - - - - RAW-Files (*.raw) - RAW soubory (*.raw) - - - - SampleClipView - - - Double-click to open sample - Poklepejte pro výběr samplu - - - - Delete (middle mousebutton) - Smazat (prostřední tlačítko myši) - - - - Delete selection (middle mousebutton) - - - - - Cut - Vyjmout - - - - Cut selection - - - - - Copy - Kopírovat - - - - Copy selection - - - - - Paste - Vložit - - - - Mute/unmute (<%1> + middle click) - Ztlumit/Odtlumit (<%1> + prostřední tlačítko) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Reverse sample - Přehrávat pozpátku - - - - Set clip color - - - - - Use track color + + Sample not found - SampleTrack + lmms::SampleTrack - + Volume - Hlasitost + - + Panning - Panoráma + - + Mixer channel - Efektový kanál + - - + + Sample track - Stopa samplů - - - - SampleTrackView - - - Track volume - Hlasitost stopy - - - - Channel volume: - Hlasitost kanálu: - - - - VOL - HLA - - - - Panning - Panoráma - - - - Panning: - Panoráma: - - - - PAN - PAN - - - - Channel %1: %2 - Efekt %1: %2 - - - - SampleTrackWindow - - - GENERAL SETTINGS - HLAVNÍ NASTAVENÍ - - - - Sample volume - Hlasitost samplu - - - - Volume: - Hlasitost: - - - - VOL - HLA - - - - Panning - Panoráma - - - - Panning: - Panoráma: - - - - PAN - PAN - - - - Mixer channel - Efektový kanál - - - - CHANNEL - EFEKT - - - - SaveOptionsWidget - - - Discard MIDI connections - Zrušit MIDI připojení - - - - Save As Project Bundle (with resources) - SetupDialog + lmms::Scale - - Reset to default value - Obnovit výchozí hodnoty - - - - Use built-in NaN handler - Použít vestavěný NaN handler - - - - Settings - Nastavení - - - - - General - Hlavní - - - - Graphical user interface (GUI) - Grafické uživatelské rozhraní (GUI) - - - - Display volume as dBFS - Zobrazit hlasitost v dBFS - - - - Enable tooltips - Zapnout bublinovou nápovědu - - - - Enable master oscilloscope by default + + empty - - - Enable all note labels in piano roll - - - - - Enable compact track buttons - - - - - Enable one instrument-track-window mode - - - - - Show sidebar on the right-hand side - - - - - Let sample previews continue when mouse is released - - - - - Mute automation tracks during solo - - - - - Show warning when deleting tracks - - - - - Projects - Projekty - - - - Compress project files by default - - - - - Create a backup file when saving a project - - - - - Reopen last project on startup - - - - - Language - Jazyk - - - - - Performance - Výkon - - - - Autosave - Automatické ukládání - - - - Enable autosave - Povolit automatické ukládání - - - - Allow autosave while playing - Povolit automatické ukládání během přehrávání - - - - User interface (UI) effects vs. performance - Efekty uživatelského rozhraní (UI) vs. výkon - - - - Smooth scroll in song editor - - - - - Display playback cursor in AudioFileProcessor - - - - - Plugins - Pluginy - - - - VST plugins embedding: - Vložení VST pluginů: - - - - No embedding - Nevkládat - - - - Embed using Qt API - Vložit pomocí rozhraní Qt - - - - Embed using native Win32 API - Vložit pomocí nativního rozhraní Win32 - - - - Embed using XEmbed protocol - Vložit pomocí protokolu XEmbed - - - - Keep plugin windows on top when not embedded - Udržet okna pluginů na vrchu, když nejsou vložená - - - - Sync VST plugins to host playback - Synchronizace VST pluginů s hostujícím přehráváním - - - - Keep effects running even without input - Nechat efekty spuštěné i bez vstupu - - - - - Audio - Zvuk - - - - Audio interface - Zvukové rozhraní - - - - HQ mode for output audio device - HQ režim pro výstup audio zařízení - - - - Buffer size - Velikost bufferu - - - - - MIDI - MIDI - - - - MIDI interface - MIDI rozhraní - - - - Automatically assign MIDI controller to selected track - - - - - LMMS working directory - Pracovní adresář LMMS - - - - VST plugins directory - - - - - LADSPA plugins directories - - - - - SF2 directory - Adresář pro SF2 - - - - Default SF2 - - - - - GIG directory - Adresář pro GIG - - - - Theme directory - - - - - Background artwork - Obrázek na pozadí - - - - Some changes require restarting. - Některé změny vyžadují restartování. - - - - Autosave interval: %1 - Interval automatického ukládání: %1 - - - - Choose the LMMS working directory - Vyberte pracovní adresář LMMS - - - - Choose your VST plugins directory - Vyberte svůj adresář pro VST pluginy - - - - Choose your LADSPA plugins directory - Vyberte svůj adresář pro LADSPA pluginy - - - - Choose your default SF2 - Vyberte svůj výchozí SF2 soubor - - - - Choose your theme directory - Vyberte svůj adresář pro motivy - - - - Choose your background picture - Vyberte svou tapetu - - - - - Paths - Cesty - - - - OK - OK - - - - Cancel - Zrušit - - - - Frames: %1 -Latency: %2 ms - Rámce: %1 -Zpoždění %2 ms - - - - Choose your GIG directory - Vyberte svůj adresář pro GIG soubory - - - - Choose your SF2 directory - Vyberte svůj adresář pro SF2 soubory - - - - minutes - minut - - - - minute - minuta - - - - Disabled - Vypnuto - - SidInstrument + lmms::Sf2Instrument - + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + Cutoff frequency - Frekvence oříznutí + - + Resonance - Rezonance + + + + + Filter type + - Filter type - Typ filtru - - - Voice 3 off - Vypnout hlas 3 + - + Volume - Hlasitost + - + Chip model - Model čipu + - SidInstrumentView + lmms::SlicerT - - Volume: - Hlasitost: + + Note threshold + - - Resonance: - Rezonance: + + FadeOut + - - - Cutoff frequency: - Frekvence oříznutí: + + Original bpm + - - High-pass filter - Filtr horní propust + + Slice snap + - - Band-pass filter - Filtr pásmová propust + + BPM sync + - - Low-pass filter - Filtr dolní propust + + + slice_%1 + - - Voice 3 off - Vypnout hlas 3 - - - - MOS6581 SID - MOS6581 SID - - - - MOS8580 SID - MOS8580 SID - - - - - Attack: - Náběh: - - - - - Decay: - Pokles: - - - - Sustain: - Držení: - - - - - Release: - Doznění: - - - - Pulse Width: - Délka pulzu: - - - - Coarse: - Ladění: - - - - Pulse wave - Pulzní vlna - - - - Triangle wave - Trojúhelníková vlna - - - - Saw wave - Pilovitá vlna - - - - Noise - Šum - - - - Sync - Synch - - - - Ring modulation - Kruhová modulace - - - - Filtered - Filtrování - - - - Test - Test - - - - Pulse width: - Šířka pulzu: + + Sample not found: %1 + - SideBarWidget + lmms::Song - - Close - Zavřít - - - - Song - - + Tempo - Tempo + - + Master volume - Hlavní hlasitost + - + Master pitch - Transpozice - - - - Aborting project load + Aborting project load + + + + Project file contains local paths to plugins, which could be used to run malicious code. - + Can't load project: Project file contains local paths to plugins. - + LMMS Error report - Chybové hlášení LMMS + - + (repeated %1 times) - + The following errors occurred while loading: - SongEditor + lmms::StereoEnhancerControls - - Could not open file - Nemohu otevřít soubor - - - - Could not open file %1. You probably have no permissions to read this file. - Please make sure to have at least read permissions to the file and try again. - Nelze otevřít soubor %1. Pravděpodobně nemáte oprávnění číst tento soubor. - Ujistěte se prosím, že máte oprávnění alespoň číst tento soubor a zkuste to znovu. - - - - Operation denied - - - - - A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. - - - - - - - Error - Chyba - - - - Couldn't create bundle folder. - - - - - Couldn't create resources folder. - - - - - Failed to copy resources. - - - - - Could not write file - Nemohu zapsat soubor - - - - Could not open %1 for writing. You probably are not permitted towrite to this file. Please make sure you have write-access to the file and try again. - - - - - This %1 was created with LMMS %2 - - - - - Error in file - Chyba v souboru - - - - The file %1 seems to contain errors and therefore can't be loaded. - Soubor %1 pravděpodobně obsahuje chyby, a proto nemohl být načten. - - - - Version difference - Rozdíl verzí - - - - template - šablona - - - - project - projekt - - - - Tempo - Tempo - - - - TEMPO - TEMPO - - - - Tempo in BPM - Tempo v BPM - - - - High quality mode - Režim vysoké kvality - - - - - - Master volume - Hlavní hlasitost - - - - - - Master pitch - Transpozice - - - - Value: %1% - Hodnota: %1% - - - - Value: %1 semitones - Hodnota: %1 půltónů - - - - SongEditorWindow - - - Song-Editor - Editor skladby - - - - Play song (Space) - Přehrát skladbu (mezerník) - - - - Record samples from Audio-device - Nahrát samply z audio zařízení - - - - Record samples from Audio-device while playing song or BB track - Nahrát samply z audio zařízení při přehrávání skladby nebo stopy bicích/basů - - - - Stop song (Space) - Zastavit přehrávání (mezerník) - - - - Track actions - Akce stopy - - - - Add beat/bassline - Přidat bicí/basy - - - - Add sample-track - Přidat stopu samplů - - - - Add automation-track - Přidat stopu automatizace - - - - Edit actions - Akce úprav - - - - Draw mode - Režim kreslení - - - - Knife mode (split sample clips) - - - - - Edit mode (select and move) - Režim úprav (označit a přesunout) - - - - Timeline controls - Ovládání časové osy - - - - Bar insert controls - - - - - Insert bar - - - - - Remove bar - - - - - Zoom controls - Ovládání zvětšení - - - - Horizontal zooming - Horizontální zvětšení - - - - Snap controls - - - - - - Clip snapping size - - - - - Toggle proportional snap on/off - - - - - Base snapping size + + Width - StepRecorderWidget + lmms::StereoMatrixControls - - Hint - Rada - - - - Move recording curser using <Left/Right> arrows - Přesuňte ukazatel pozice nahrávání pomocí <Levé/Pravé> šipky - - - - SubWindow - - - Close - Zavřít - - - - Maximize - Maximalizovat - - - - Restore - Obnovit - - - - TabWidget - - - - Settings for %1 - Nastavení rpo %1 - - - - TemplatesMenu - - - New from template - Nový z šablony - - - - TempoSyncKnob - - - - Tempo Sync - Synchronizace tempa - - - - No Sync - Nesynchronizovat - - - - Eight beats - Osm dob - - - - Whole note - Celá nota - - - - Half note - Půlová nota - - - - Quarter note - Čtvrťová nota - - - - 8th note - Osminová nota - - - - 16th note - Šestnáctinová nota - - - - 32nd note - Dvaatřicetinová nota - - - - Custom... - Vlastní... - - - - Custom - Vlastní - - - - Synced to Eight Beats - Synchronizováno k osmi dobám - - - - Synced to Whole Note - Synchronizováno k celé notě - - - - Synced to Half Note - Synchronizováno k půlové notě - - - - Synced to Quarter Note - Synchronizováno ke čtvrťové notě - - - - Synced to 8th Note - Synchronizováno k osminové notě - - - - Synced to 16th Note - Synchronizováno k šestnáctinové notě - - - - Synced to 32nd Note - Synchronizováno k dvaatřicetinové notě - - - - TimeDisplayWidget - - - Time units - Časové jednotky - - - - MIN - MIN - - - - SEC - S - - - - MSEC - MS - - - - BAR - TAKT - - - - BEAT - DOBA - - - - TICK - TIK - - - - TimeLineWidget - - - Auto scrolling - Automatické posouvání - - - - Loop points - Body smyčky - - - - After stopping go back to beginning + + Left to Left - - After stopping go back to position at which playing was started - Po skončení přetočit zpět na pozici, ze které přehrávání začalo + + Left to Right + - - After stopping keep position - Po skončení zachovat pozici + + Right to Left + - - Hint - Rada - - - - Press <%1> to disable magnetic loop points. - Stiskněte <%1> pro vypnutí magnetických bodů smyčky. + + Right to Right + - Track + lmms::Track - + Mute - Ztlumit + - + Solo - Sólo + - TrackContainer + lmms::TrackContainer - + Couldn't import file - Nemohu importovat soubor + - + Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software. - Nemohu najít filtr pro import souboru %1. -Měli byste tento soubor převést do formátu podporovaného LMMS pomocí jiného software. + - + Couldn't open file - Nemohu otevřít soubor + - + Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! - Nemohu otevřít soubor %1 pro čtení. -Přesvědčte se prosím, že máte právo ke čtení tohoto souboru a příslušného adresáře a zkuste to znovu! + - + Loading project... - Načítám projekt... + - - + + Cancel - Zrušit + - - + + Please wait... - Prosím čekejte... + - + Loading cancelled - Načítání zrušeno + - + Project loading was cancelled. - Načítání projektu bylo zrušeno. + - + Loading Track %1 (%2/Total %3) - Načítám Stopu %1 (%2/celkem %3) + - + Importing MIDI-file... - Importuji MIDI soubor... - - - - Clip - - - Mute - Ztlumit - - - - ClipView - - - Current position - Aktuální pozice - - - - Current length - Aktuální délka - - - - - %1:%2 (%3:%4 to %5:%6) - %1:%2 (%3:%4 do %5:%6) - - - - Press <%1> and drag to make a copy. - K vytvoření kopie stiskněte <%1> a táhněte myší. - - - - Press <%1> for free resizing. - Stiskněte <%1> pro volnou změnu velikosti. - - - - Hint - Rada - - - - Delete (middle mousebutton) - Smazat (prostřední tlačítko myši) - - - - Delete selection (middle mousebutton) - - - - - Cut - Vyjmout - - - - Cut selection - - - - - Merge Selection - - - - - Copy - Kopírovat - - - - Copy selection - - - - - Paste - Vložit - - - - Mute/unmute (<%1> + middle click) - Ztlumit/Odtlumit (<%1> + prostřední tlačítko) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Set clip color - - - - - Use track color - TrackContentWidget + lmms::TripleOscillator - - Paste - Vložit - - - - TrackOperationsWidget - - - Press <%1> while clicking on move-grip to begin a new drag'n'drop action. - Při klepnutí na úchop držte <%1> pro zkopírování přetahované stopy. - - - - Actions - Akce - - - - - Mute - Ztlumit - - - - - Solo - Sólo - - - - After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? - - - - - Confirm removal - - - - - Don't ask again - - - - - Clone this track - Klonovat tuto stopu - - - - Remove this track - Odstranit tuto stopu - - - - Clear this track - Smazat tuto stopu - - - - Channel %1: %2 - Efekt %1: %2 - - - - Assign to new mixer Channel - Přiřadit k novému efektovému kanálu - - - - Turn all recording on - Spustit všechna nahrávání - - - - Turn all recording off - Zastavit všechna nahrávání - - - - Change color - Změnit barvu - - - - Reset color to default - Obnovit výchozí barvy - - - - Set random color - - - - - Clear clip colors + + Sample not found - TripleOscillatorView + lmms::VecControls - - Modulate phase of oscillator 1 by oscillator 2 - Modulovat fázi oscilátoru 1 oscilátorem 2 - - - - Modulate amplitude of oscillator 1 by oscillator 2 - Modulovat amplitudu oscilátoru 1 oscilátorem 2 - - - - Mix output of oscillators 1 & 2 - Smíchat výstupy oscilátorů 1 a 2 - - - - Synchronize oscillator 1 with oscillator 2 - Synchronizovat oscilátor 1 oscilátorem 2 - - - - Modulate frequency of oscillator 1 by oscillator 2 - Modulovat frekvenci oscilátoru 1 oscilátorem 2 - - - - Modulate phase of oscillator 2 by oscillator 3 - Modulovat fázi oscilátoru 2 oscilátorem 3 - - - - Modulate amplitude of oscillator 2 by oscillator 3 - Modulovat amplitudu oscilátoru 2 oscilátorem 3 - - - - Mix output of oscillators 2 & 3 - Smíchat výstupy oscilátorů 2 a 3 - - - - Synchronize oscillator 2 with oscillator 3 - Synchronizovat oscilátor 2 oscilátorem 3 - - - - Modulate frequency of oscillator 2 by oscillator 3 - Modulovat frekvenci oscilátoru 2 oscilátorem 3 - - - - Osc %1 volume: - Osc %1 hlasitost: - - - - Osc %1 panning: - Osc %1 panoráma: - - - - Osc %1 coarse detuning: - Osc %1 hrubé rozladění: - - - - semitones - půltónů - - - - Osc %1 fine detuning left: - Osc %1 jemné rozladění vlevo: - - - - - cents - centů - - - - Osc %1 fine detuning right: - Osc %1 jemné rozladění vpravo: - - - - Osc %1 phase-offset: - Osc %1 posun fáze: - - - - - degrees - stupňů - - - - Osc %1 stereo phase-detuning: - Osc %1 rozladění stereo fáze: - - - - Sine wave - Sinusová vlna - - - - Triangle wave - Trojúhelníková vlna - - - - Saw wave - Pilovitá vlna - - - - Square wave - Pravoúhlá vlna - - - - Moog-like saw wave - Pilovitá vlna typu Moog - - - - Exponential wave - Exponenciální vlna - - - - White noise - Bílý šum - - - - User-defined wave - Uživatelem definovaná vlna - - - - VecControls - - + Display persistence amount - + Logarithmic scale - + High quality - VecControlsDialog + lmms::VestigeInstrument - + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + + + + + Draw mode + + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + + + + + + Zoom + + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + + + + + lmms::gui::StepRecorderWidget + + + Hint + + + + + Move recording curser using <Left/Right> arrows + + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + + Close + + + + + Maximize + + + + + Restore + + + + + lmms::gui::TapTempoView + + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + + + + + lmms::gui::TemplatesMenu + + + New from template + + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + + + + + MIN + + + + + SEC + + + + + MSEC + + + + + BAR + + + + + BEAT + + + + + TICK + + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + + + + + After stopping go back to beginning + + + + + After stopping go back to position at which playing was started + + + + + After stopping keep position + + + + + Hint + + + + + Press <%1> to disable magnetic loop points. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + + Paste + + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + + + + + Actions + + + + + + Mute + + + + + + Solo + + + + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + + + + + Confirm removal + + + + + Don't ask again + + + + + Clone this track + + + + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors + + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + + + + + Modulate amplitude of oscillator 1 by oscillator 2 + + + + + Mix output of oscillators 1 & 2 + + + + + Synchronize oscillator 1 with oscillator 2 + + + + + Modulate frequency of oscillator 1 by oscillator 2 + + + + + Modulate phase of oscillator 2 by oscillator 3 + + + + + Modulate amplitude of oscillator 2 by oscillator 3 + + + + + Mix output of oscillators 2 & 3 + + + + + Synchronize oscillator 2 with oscillator 3 + + + + + Modulate frequency of oscillator 2 by oscillator 3 + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + + cents + + + + + Osc %1 fine detuning right: + + + + + Osc %1 phase-offset: + + + + + + degrees + + + + + Osc %1 stereo phase-detuning: + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog-like saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined wave + + + + + Use alias-free wavetable oscillators. + + + + + lmms::gui::VecControlsDialog + + HQ - + Double the resolution and simulate continuous analog-like trace. @@ -13719,2618 +17973,782 @@ Přesvědčte se prosím, že máte právo ke čtení tohoto souboru a příslu - + Persist. - + Trace persistence: higher amount means the trace will stay bright for longer time. - + Trace persistence - VersionedSaveDialog - - - Increment version number - Zvýšit číslo verze - + lmms::gui::VersionedSaveDialog + Increment version number + + + + Decrement version number - Snížení čísla verze + - + Save Options - Možnosti ukládání + - + already exists. Do you want to replace it? - již existuje. Přejete si jej přepsat? - - - - VestigeInstrumentView - - - - Open VST plugin - Otevřít VST plugin - - - - Control VST plugin from LMMS host - Ovládání VST pluginu hostitelským programem LMMS - - - - Open VST plugin preset - Otevřít předvolby VST pluginu - - - - Previous (-) - Předchozí (-) - - - - Save preset - Uložit předvolbu - - - - Next (+) - Další (+) - - - - Show/hide GUI - Zobrazit/Skrýt grafické rozhraní - - - - Turn off all notes - Vypnout všechny noty - - - - DLL-files (*.dll) - DLL soubory (*.dll) - - - - EXE-files (*.exe) - EXE soubory (*.exe) - - - - No VST plugin loaded - VST plugin není nahrán - - - - Preset - Předvolba - - - - by - od - - - - - VST plugin control - – ovládání VST pluginu - - - - VstEffectControlDialog - - - Show/hide - Ukázat/Skrýt - - - - Control VST plugin from LMMS host - Ovládání VST pluginu hostitelským programem LMMS - - - - Open VST plugin preset - Otevřít předvolby VST pluginu - - - - Previous (-) - Předchozí (-) - - - - Next (+) - Další (+) - - - - Save preset - Uložit předvolbu - - - - - Effect by: - Efekt od: - - - - &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - - - - VstPlugin - - - - The VST plugin %1 could not be loaded. - VST plugin %1 nelze načíst. - - - - Open Preset - Otevřít předvolbu - - - - - Vst Plugin Preset (*.fxp *.fxb) - Předvolba VST pluginu (*.fxp *.fxb) - - - - : default - : výchozí - - - - Save Preset - Uložit předvolbu - - - - .fxp - .fxp - - - - .FXP - .FXP - - - - .FXB - .FXB - - - - .fxb - .fxb - - - - Loading plugin - Načítám plugin - - - - Please wait while loading VST plugin... - Počkejte prosím, než se načte VST plugin... - - - - WatsynInstrument - - - Volume A1 - Hlasitost A1 - - - - Volume A2 - Hlasitost A2 - - - - Volume B1 - Hlasitost B1 - - - - Volume B2 - Hlasitost B2 - - - - Panning A1 - Panoráma A1 - - - - Panning A2 - Panoráma A2 - - - - Panning B1 - Panoráma B1 - - - - Panning B2 - Panoráma B2 - - - - Freq. multiplier A1 - Násobič frekv. A1 - - - - Freq. multiplier A2 - Násobič frekv. A2 - - - - Freq. multiplier B1 - Násobič frekv. B1 - - - - Freq. multiplier B2 - Násobič frekv. B2 - - - - Left detune A1 - Rozladění vlevo A1 - - - - Left detune A2 - Rozladění vlevo A2 - - - - Left detune B1 - Rozladění vlevo B1 - - - - Left detune B2 - Rozladění vlevo B2 - - - - Right detune A1 - Rozladění vpravo A1 - - - - Right detune A2 - Rozladění vpravo A2 - - - - Right detune B1 - Rozladění vpravo B1 - - - - Right detune B2 - Rozladění vpravo B2 - - - - A-B Mix - Směšovač A-B - - - - A-B Mix envelope amount - Množství obálky směšovače A-B - - - - A-B Mix envelope attack - Náběh obálky směšovače A-B - - - - A-B Mix envelope hold - Množství zadržení směšovače A-B - - - - A-B Mix envelope decay - Pokles obálky směšovače A-B - - - - A1-B2 Crosstalk - Přeslech A1-B2 - - - - A2-A1 modulation - Modulace A1-B2 - - - - B2-B1 modulation - Modulace B2-B1 - - - - Selected graph - Zvolený graf - - - - WatsynView - - - - - - Volume - Hlasitost - - - - - - - Panning - Panoráma - - - - - - - Freq. multiplier - Násobič frekv. - - - - - - - Left detune - Rozladění vlevo - - - - - - - - - - - cents - centů - - - - - - - Right detune - Rozladění vpravo - - - - A-B Mix - Směšovač A-B - - - - Mix envelope amount - Množství obálky směšovače - - - - Mix envelope attack - Náběh obálky směšovače - - - - Mix envelope hold - Zadržení obálky směšovače - - - - Mix envelope decay - Pokles obálky směšovače - - - - Crosstalk - Přeslech - - - - Select oscillator A1 - Vybrat oscilátor A1 - - - - Select oscillator A2 - Vybrat oscilátor A2 - - - - Select oscillator B1 - Vybrat oscilátor B1 - - - - Select oscillator B2 - Vybrat oscilátor B2 - - - - Mix output of A2 to A1 - Přimíchat výstup A1 do A2 - - - - Modulate amplitude of A1 by output of A2 - Modulovat amplitudu A1 výstupem A2 - - - - Ring modulate A1 and A2 - Kruhově modulovat A1 a A2 - - - - Modulate phase of A1 by output of A2 - Modulovat fázi A1 výstupem A2 - - - - Mix output of B2 to B1 - Přimíchat výstup B1 do B2 - - - - Modulate amplitude of B1 by output of B2 - Modulovat amplitudu B1 výstupem B2 - - - - Ring modulate B1 and B2 - Kruhově modulovat B1 a B2 - - - - Modulate phase of B1 by output of B2 - Modulovat fázi B1 výstupem B2 - - - - - - - Draw your own waveform here by dragging your mouse on this graph. - Kreslení vlastní křivky tahem myši na tomto grafu. - - - - Load waveform - Načíst vlnu - - - - Load a waveform from a sample file - Načíst vlnu ze souboru samplů - - - - Phase left - Fáze vlevo - - - - Shift phase by -15 degrees - Posunout fázi o -15 stupňů - - - - Phase right - Fáze vpravo - - - - Shift phase by +15 degrees - Posunout fázi o +15 stupňů - - - - - Normalize - Normalizovat - - - - - Invert - Převrátit - - - - - Smooth - Uhladit - - - - - Sine wave - Sinusová vlna - - - - - - Triangle wave - Trojúhelníková vlna - - - - Saw wave - Pilovitá vlna - - - - - Square wave - Pravoúhlá vlna - - - - Xpressive - - - Selected graph - Zvolený graf - - - - A1 - A1 - - - - A2 - A2 - - - - A3 - A3 - - - - W1 smoothing - W1 vyhlazování - - - - W2 smoothing - W2 vyhlazování - - - - W3 smoothing - W3 vyhlazování - - - - Panning 1 - Panoráma 1 - - - - Panning 2 - Panoráma 2 - - - - Rel trans - XpressiveView + lmms::gui::VestigeInstrumentView - - Draw your own waveform here by dragging your mouse on this graph. - Kreslení vlastní křivky tahem myši na tomto grafu. + + + Open VST plugin + - - Select oscillator W1 - Vybrat oscilátor W1 + + Control VST plugin from LMMS host + - - Select oscillator W2 - Vybrat oscilátor W2 + + Open VST plugin preset + - - Select oscillator W3 - Vybrat oscilátor W3 + + Previous (-) + - - Select output O1 - Vybrat výstup O1 + + Save preset + - - Select output O2 - Vybrat výstup O2 + + Next (+) + - - Open help window - Otevřít okno nápovědy + + Show/hide GUI + - - - Sine wave - Sinusová vlna + + Turn off all notes + - - - Moog-saw wave - Pilovitá vlna typu Moog + + DLL-files (*.dll) + - - - Exponential wave - Exponenciální vlna + + EXE-files (*.exe) + - - - Saw wave - Pilovitá vlna + + SO-files (*.so) + - - - User-defined wave - Uživatelem definovaná vlna + + No VST plugin loaded + - - - Triangle wave - Trojúhelníková vlna + + Preset + - - - Square wave - Pravoúhlá vlna + + by + - - - White noise - Bílý šum - - - - WaveInterpolate - Interpolace vlnění - - - - ExpressionValid - Platnost výrazu - - - - General purpose 1: - Celkový účel 1: - - - - General purpose 2: - Celkový účel 2: - - - - General purpose 3: - Celkový účel 3: - - - - O1 panning: - O1 vyvážení: - - - - O2 panning: - O2 vyvážení: - - - - Release transition: - Přechod mezi dozněním: - - - - Smoothness - Hladkost - - - - ZynAddSubFxInstrument - - - Portamento - Portamento - - - - Filter frequency - Frekvence filtru - - - - Filter resonance - Rezonance filtru - - - - Bandwidth - Šířka pásma - - - - FM gain - Zesílení FM - - - - Resonance center frequency - Střední frekvence rezonance - - - - Resonance bandwidth - Šířka pásma rezonance - - - - Forward MIDI control change events - Odesílat události MIDI control change - - - - ZynAddSubFxView - - - Portamento: - Portamento: - - - - PORT - PORT - - - - Filter frequency: - Frekvence filtru: - - - - FREQ - FREKV - - - - Filter resonance: - Rezonance filtru: - - - - RES - REZ - - - - Bandwidth: - Šířka pásma: - - - - BW - ŠP - - - - FM gain: - Zesílení FM: - - - - FM GAIN - ZISK FM - - - - Resonance center frequency: - Střední frekvence rezonance: - - - - RES CF - SF REZ - - - - Resonance bandwidth: - Šířka pásma rezonance: - - - - RES BW - ŠP REZ - - - - Forward MIDI control changes - Odesílat události MIDI control change - - - - Show GUI - Ukázat grafické rozhraní - - - - AudioFileProcessor - - - Amplify - Zesílení - - - - Start of sample - Začátek samplu - - - - End of sample - Konec samplu - - - - Loopback point - Začátek smyčky - - - - Reverse sample - Přehrávat pozpátku - - - - Loop mode - Režim smyčky - - - - Stutter - Pokračování v přehrávání samplu při změně noty - - - - Interpolation mode - Režim interpolace - - - - None - Žádný - - - - Linear - Lineární - - - - Sinc - Sinusový - - - - Sample not found: %1 - Vzorek nenalezen: %1 - - - - BitInvader - - - Sample length - Délka samplu - - - - BitInvaderView - - - Sample length - Délka samplu - - - - Draw your own waveform here by dragging your mouse on this graph. - Kreslení vlastní křivky tahem myši na tomto grafu. - - - - - Sine wave - Sinusová vlna - - - - - Triangle wave - Trojúhelníková vlna - - - - - Saw wave - Pilovitá vlna - - - - - Square wave - Pravoúhlá vlna - - - - - White noise - Bílý šum - - - - - User-defined wave - Uživatelem definovaná vlna - - - - - Smooth waveform - Vyhlazení vlny - - - - Interpolation - Interpolovat - - - - Normalize - Normalizovat - - - - DynProcControlDialog - - - INPUT - VSTUP - - - - Input gain: - Zesílení vstupu: - - - - OUTPUT - VÝSTUP - - - - Output gain: - Zesílení výstupu: - - - - ATTACK - NÁBĚH - - - - Peak attack time: - Délka náběhu špičky: - - - - RELEASE - DOZNĚNÍ - - - - Peak release time: - Délka doznění špičky: - - - - - Reset wavegraph - Vynulovat křivku - - - - - Smooth wavegraph - Vyhladit křivku - - - - - Increase wavegraph amplitude by 1 dB - Zvýšení amplitudy křivky o 1 dB - - - - - Decrease wavegraph amplitude by 1 dB - Snížení amplitudy křivky o 1 dB - - - - Stereo mode: maximum - Režim sterea: maximální - - - - Process based on the maximum of both stereo channels - Zpracování vycházející z maxima obou stereo kanálů - - - - Stereo mode: average - Režim sterea: průměr - - - - Process based on the average of both stereo channels - Zpracování vycházející z průměru obou stereo kanálů - - - - Stereo mode: unlinked - Režim sterea: nepropojené - - - - Process each stereo channel independently - Zpracování každého stereo kanálu zvlášť - - - - DynProcControls - - - Input gain - Zesílení vstupu - - - - Output gain - Zesílení výstupu - - - - Attack time - Doba náběhu - - - - Release time - Délka doznění - - - - Stereo mode - Režim sterea - - - - graphModel - - - Graph - Graf - - - - KickerInstrument - - - Start frequency - Počáteční frekvence - - - - End frequency - Konečná frekvence - - - - Length - Délka - - - - Start distortion - Začátek zkreslení - - - - End distortion - Konec zkreslení - - - - Gain - Zisk - - - - Envelope slope - Sklon obálky - - - - Noise - Šum - - - - Click - Klik - - - - Frequency slope - Sklon frekvence - - - - Start from note - Začít od noty - - - - End to note - Skončit na notě - - - - KickerInstrumentView - - - Start frequency: - Počáteční frekvence: - - - - End frequency: - Konečná frekvence: - - - - Frequency slope: - Sklon frekvence: - - - - Gain: - Zisk: - - - - Envelope length: - Délka obálky: - - - - Envelope slope: - Sklon obálky: - - - - Click: - Klik: - - - - Noise: - Šum: - - - - Start distortion: - Začátek zkreslení: - - - - End distortion: - Konec zkreslení: - - - - LadspaBrowserView - - - - Available Effects - Dostupné efekty - - - - - Unavailable Effects - Nedostupné efekty - - - - - Instruments - Nástroje - - - - - Analysis Tools - Analyzační nástroje - - - - - Don't know - Neznámé - - - - Type: - Typ: - - - - LadspaDescription - - - Plugins - Pluginy - - - - Description - Popis - - - - LadspaPortDialog - - - Ports - Porty - - - - Name - Název - - - - Rate - Druh - - - - Direction - Směr - - - - Type - Typ - - - - Min < Default < Max - Min < Výchozí < Max - - - - Logarithmic - Logaritmický - - - - SR Dependent - SR závislý - - - - Audio - Zvuk - - - - Control - Ovládání - - - - Input - Vstup - - - - Output - Výstup - - - - Toggled - Zapnuto - - - - Integer - Celočíselný - - - - Float - S plovoucí čárkou - - - - - Yes - Ano - - - - Lb302Synth - - - VCF Cutoff Frequency - VCF frekvence vypnutí - - - - VCF Resonance - VCF rezonance - - - - VCF Envelope Mod - VCF modulace obálky - - - - VCF Envelope Decay - VCF pokles obálky - - - - Distortion - Zkreslení - - - - Waveform - Vlna - - - - Slide Decay - Pokles sklouznutí - - - - Slide - Sklouznutí - - - - Accent - Důraz - - - - Dead - Dead - - - - 24dB/oct Filter - Filtr 24dB/okt - - - - Lb302SynthView - - - Cutoff Freq: - Frekvence odstřihnutí: - - - - Resonance: - Rezonance: - - - - Env Mod: - Modulace obálky: - - - - Decay: - Pokles: - - - - 303-es-que, 24dB/octave, 3 pole filter - 3pólový filtr 303-es-que, 24dB/okt - - - - Slide Decay: - Pokles sklouznutí: - - - - DIST: - Zkreslení: - - - - Saw wave - Pilovitá vlna - - - - Click here for a saw-wave. - Klepněte sem pro pilovitou vlnu. - - - - Triangle wave - Trojúhelníková vlna - - - - Click here for a triangle-wave. - Klepněte sem pro trojúhelníkovou vlnu. - - - - Square wave - Pravoúhlá vlna - - - - Click here for a square-wave. - Klepněte sem pro pravoúhlou vlnu. - - - - Rounded square wave - Oblá pravoúhlá vlna - - - - Click here for a square-wave with a rounded end. - Klepněte sem pro pravoúhlou vlnu s oblým zakončením. - - - - Moog wave - Vlna typu Moog - - - - Click here for a moog-like wave. - Klepněte sem pro vlnu typu Moog. - - - - Sine wave - Sinusová vlna - - - - Click for a sine-wave. - Klepněte sem pro sinusovou vlnu. - - - - - White noise wave - Bílý šum - - - - Click here for an exponential wave. - Klepněte sem pro exponenciální vlnu. - - - - Click here for white-noise. - Klepněte sem pro bílý šum. - - - - Bandlimited saw wave - Pásmově omezená pilovitá vlna - - - - Click here for bandlimited saw wave. - Klepněte sem pro pásmově omezenou pilovitou vlnu. - - - - Bandlimited square wave - Pásmově zúžená pravoúhlá vlna - - - - Click here for bandlimited square wave. - Klepněte sem pro pásmově zúženou pravoúhlou vlnu. - - - - Bandlimited triangle wave - Pásmově zúžená trojúhelníková vlna - - - - Click here for bandlimited triangle wave. - Klepněte sem pro pásmově zúženou trojúhelníkovou vlnu. - - - - Bandlimited moog saw wave - Pásmově zúžená pilovitá vlna typu Moog - - - - Click here for bandlimited moog saw wave. - Klepněte sem pro úzkopásmovou pilovitou vlnu typu Moog. - - - - MalletsInstrument - - - Hardness - Tvrdost - - - - Position - Pozice - - - - Vibrato gain - Zesílení vibráta - - - - Vibrato frequency - Frekvence vibráta - - - - Stick mix - Mix paliček - - - - Modulator - Modulátor - - - - Crossfade - Prolínání (crossfade) - - - - LFO speed - Rychlost LFO - - - - LFO depth - Hloubka LFO - - - - ADSR - ADSR - - - - Pressure - Tlak - - - - Motion - Pohyb - - - - Speed - Rychlost - - - - Bowed - Smyčcem - - - - Spread - Šíře - - - - Marimba - Marimba - - - - Vibraphone - Vibrafon - - - - Agogo - Agogo - - - - Wood 1 - Dřevěné 1 - - - - Reso - Rezo - - - - Wood 2 - Dřevěné 2 - - - - Beats - Údery - - - - Two fixed - Dvojité - - - - Clump - Svazek - - - - Tubular bells - Trubicové zvony - - - - Uniform bar - Obyčejná tyč - - - - Tuned bar - Laděná tyč - - - - Glass - Sklo - - - - Tibetan bowl - Tibetská mísa - - - - MalletsInstrumentView - - - Instrument - Nástroj - - - - Spread - Šíře - - - - Spread: - Šíře: - - - - Missing files - Chybějící soubory - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - Zdá se, že instalace Stk není kompletní. Ujistěte se prosím, že je nainstalován celý balík Stk! - - - - Hardness - Tvrdost - - - - Hardness: - Tvrdost: - - - - Position - Pozice - - - - Position: - Pozice: - - - - Vibrato gain - Zesílení vibráta - - - - Vibrato gain: - Zesílení vibráta: - - - - Vibrato frequency - Frekvence vibráta - - - - Vibrato frequency: - Frekvence vibráta: - - - - Stick mix - Mix paliček - - - - Stick mix: - Mix paliček: - - - - Modulator - Modulátor - - - - Modulator: - Modulátor: - - - - Crossfade - Prolínání (crossfade) - - - - Crossfade: - Prolínání (crossfade): - - - - LFO speed - Rychlost LFO - - - - LFO speed: - Rychlost LFO: - - - - LFO depth - Hloubka LFO - - - - LFO depth: - Hloubka LFO: - - - - ADSR - ADSR - - - - ADSR: - ADSR: - - - - Pressure - Tlak - - - - Pressure: - Tlak: - - - - Speed - Rychlost - - - - Speed: - Rychlost: - - - - ManageVSTEffectView - - - - VST parameter control - - řízení parametrů VST - - - - VST sync - VST synch - - - - - Automated - Automaticky - - - - Close - Zavřít - - - - ManageVestigeInstrumentView - - - + - VST plugin control - - ovládání VST pluginu - - - - VST Sync - VST synch - - - - - Automated - Automaticky - - - - Close - Zavřít + - OrganicInstrument + lmms::gui::VibedView - - Distortion - Zkreslení - - - - Volume - Hlasitost - - - - OrganicInstrumentView - - - Distortion: - Zkreslení: - - - - Volume: - Hlasitost: - - - - Randomise - Nastavit náhodně - - - - - Osc %1 waveform: - Osc %1 vlna: - - - - Osc %1 volume: - Osc %1 hlasitost: - - - - Osc %1 panning: - Osc %1 panoráma: - - - - Osc %1 stereo detuning - Osc %1 rozladění sterea - - - - cents - centů - - - - Osc %1 harmonic: - Osc %1 harmonické: - - - - PatchesDialog - - - Qsynth: Channel Preset - Qsynth: Předvolba kanálu - - - - Bank selector - Výběr banky - - - - Bank - Banka - - - - Program selector - Výběr programu - - - - Patch - Patch - - - - Name - Název - - - - OK - OK - - - - Cancel - Zrušit - - - - Sf2Instrument - - - Bank - Banka - - - - Patch - Patch - - - - Gain - Zisk - - - - Reverb - Dozvuk - - - - Reverb room size - Velikost místnosti - - - - Reverb damping - Útlum dozvuku - - - - Reverb width - Délka dozvuku - - - - Reverb level - Úroveň dozvuku - - - - Chorus - Chorus - - - - Chorus voices - Počet hlasů chorusu - - - - Chorus level - Úroveň chorusu - - - - Chorus speed - Rychlost chorusu - - - - Chorus depth - Hloubka chorusu - - - - A soundfont %1 could not be loaded. - Soundfont %1 nelze načíst. - - - - Sf2InstrumentView - - - - Open SoundFont file - Otevřít SoundFont soubor - - - - Choose patch - Vybrat patch - - - - Gain: - Zesílení: - - - - Apply reverb (if supported) - Použít dozvuk (je-li podporován) - - - - Room size: - Velikost místnosti: - - - - Damping: - Útlum: - - - - Width: - Šířka: - - - - - Level: - Úroveň: - - - - Apply chorus (if supported) - Použít chorus (je-li podporován) - - - - Voices: - Hlasů: - - - - Speed: - Rychlost: - - - - Depth: - Hloubka: - - - - SoundFont Files (*.sf2 *.sf3) - Soubory SoundFont (*.sf2 *.sf3) - - - - SfxrInstrument - - - Wave - Vlna - - - - StereoEnhancerControlDialog - - - WIDTH - ŠÍŘKA - - - - Width: - Šířka: - - - - StereoEnhancerControls - - - Width - Šířka - - - - StereoMatrixControlDialog - - - Left to Left Vol: - Levý do levého – hlasitost: - - - - Left to Right Vol: - Levý do pravého – hlasitost: - - - - Right to Left Vol: - Pravý do levého – hlasitost: - - - - Right to Right Vol: - Pravý do pravého – hlasitost: - - - - StereoMatrixControls - - - Left to Left - Levý do levého - - - - Left to Right - Levý do pravého - - - - Right to Left - Pravý do levého - - - - Right to Right - Pravý do pravého - - - - VestigeInstrument - - - Loading plugin - Načítám plugin - - - - Please wait while loading the VST plugin... - Počkejte prosím, než se načte VST plugin... - - - - Vibed - - - String %1 volume - Hlasitost struny %1 - - - - String %1 stiffness - Tvrdost struny %1 - - - - Pick %1 position - Místo drnknutí %1 - - - - Pickup %1 position - Umístění snímače %1 - - - - String %1 panning - Struna %1 panoráma - - - - String %1 detune - Struna %1 rozladění - - - - String %1 fuzziness - Struna %1 roztřepení - - - - String %1 length - Struna %1 délka - - - - Impulse %1 - Impulz %1 - - - - String %1 - Struna %1 - - - - VibedView - - - String volume: - Hlasitost struny: - - - - String stiffness: - Tvrdost struny: - - - - Pick position: - Místo drnknutí: - - - - Pickup position: - Pozice snímače: - - - - String panning: - Panoráma struny: - - - - String detune: - Rozladění struny: - - - - String fuzziness: - Roztřepení struny: - - - - String length: - Délka struny: - - - - Impulse - Impulz - - - - Octave - Oktáva - - - - Impulse Editor - Editor impulzu - - - + Enable waveform - Zapnout vlnu + - - Enable/disable string - Zapnout/vypnout strunu - - - - String - Struna - - - - - Sine wave - Sinusová vlna - - - - - Triangle wave - Trojúhelníková vlna - - - - - Saw wave - Pilovitá vlna - - - - - Square wave - Pravoúhlá vlna - - - - - White noise - Bílý šum - - - - - User-defined wave - Uživatelem definovaná vlna - - - - + + Smooth waveform - Vyhlazení vlny + - - + + Normalize waveform - Normalizovat vlnu + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + - VoiceObject + lmms::gui::VstEffectControlDialog - - Voice %1 pulse width - Hlas %1 šířka pulzu + + Show/hide + - - Voice %1 attack - Hlas %1 náběh + + Control VST plugin from LMMS host + - - Voice %1 decay - Hlas %1 pokles + + Open VST plugin preset + - - Voice %1 sustain - Hlas %1 držení + + Previous (-) + - - Voice %1 release - Hlas %1 doznění + + Next (+) + - - Voice %1 coarse detuning - Hlas %1 hrubé ladění + + Save preset + - - Voice %1 wave shape - Hlas %1 tvar vlny + + + Effect by: + - - Voice %1 sync - Hlas %1 synchronizace - - - - Voice %1 ring modulate - Hlas %1 kruhová modulace - - - - Voice %1 filtered - Hlas %1 filtrování - - - - Voice %1 test - Hlas %1 test + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + - WaveShaperControlDialog + lmms::gui::WatsynView - + + + + + Volume + + + + + + + + Panning + + + + + + + + Freq. multiplier + + + + + + + + Left detune + + + + + + + + + + + + cents + + + + + + + + Right detune + + + + + A-B Mix + + + + + Mix envelope amount + + + + + Mix envelope attack + + + + + Mix envelope hold + + + + + Mix envelope decay + + + + + Crosstalk + + + + + Select oscillator A1 + + + + + Select oscillator A2 + + + + + Select oscillator B1 + + + + + Select oscillator B2 + + + + + Mix output of A2 to A1 + + + + + Modulate amplitude of A1 by output of A2 + + + + + Ring modulate A1 and A2 + + + + + Modulate phase of A1 by output of A2 + + + + + Mix output of B2 to B1 + + + + + Modulate amplitude of B1 by output of B2 + + + + + Ring modulate B1 and B2 + + + + + Modulate phase of B1 by output of B2 + + + + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Load waveform + + + + + Load a waveform from a sample file + + + + + Phase left + + + + + Shift phase by -15 degrees + + + + + Phase right + + + + + Shift phase by +15 degrees + + + + + + Normalize + + + + + + Invert + + + + + + Smooth + + + + + + Sine wave + + + + + + + Triangle wave + + + + + Saw wave + + + + + + Square wave + + + + + lmms::gui::WaveShaperControlDialog + + INPUT - VSTUP + - + Input gain: - Zesílení vstupu: + - + OUTPUT - VÝSTUP - - - - Output gain: - Zesílení výstupu: + - - Reset wavegraph - Vynulovat křivku + Output gain: + + - - Smooth wavegraph - Vyhladit křivku + Reset wavegraph + + - - Increase wavegraph amplitude by 1 dB - Zvýšení amplitudy křivky o 1 dB + Smooth wavegraph + + - + Increase wavegraph amplitude by 1 dB + + + + + Decrease wavegraph amplitude by 1 dB - Snížení amplitudy křivky o 1 dB + - + Clip input - Ořezat vstup + - + Clip input signal to 0 dB - Ořezat vstupní signál na 0 dB + - WaveShaperControls + lmms::gui::XpressiveView - - Input gain - Zesílení vstupu + + Draw your own waveform here by dragging your mouse on this graph. + - - Output gain - Zesílení výstupu + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + - + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + + + + \ No newline at end of file diff --git a/data/locale/de.ts b/data/locale/de.ts index d5d0625c2..4736ea797 100644 --- a/data/locale/de.ts +++ b/data/locale/de.ts @@ -1,4 +1,4 @@ - + AboutDialog @@ -69,812 +69,45 @@ If you're interested in translating LMMS in another language or want to imp - AmplifierControlDialog + AboutJuceDialog - - VOL - VOL - - - - Volume: - Lautstärke: - - - - PAN - PAN - - - - Panning: - Balance: - - - - LEFT - LINKS - - - - Left gain: - Linke Verstärkung: - - - - RIGHT - RECHTS - - - - Right gain: - Rechte Verstärkung: - - - - AmplifierControls - - - Volume - Lautstärke - - - - Panning - Balance - - - - Left gain - Linke Verstärkung - - - - Right gain - Rechte Verstärkung - - - - AudioAlsaSetupWidget - - - DEVICE - GERÄT - - - - CHANNELS - KANÄLE - - - - AudioFileProcessorView - - - Open sample - Sample öffnen - - - - Reverse sample - Sample umkehren - - - - Disable loop - Wiederholung deaktivieren - - - - Enable loop - Wiederholung aktivieren - - - - Enable ping-pong loop - Ping Pong Loop aktivieren - - - - Continue sample playback across notes - Samplewiedergabe über Noten fortsetzen - - - - Amplify: - Verstärkung: - - - - Start point: - Anfangspunkt: - - - - End point: - Endpunkt: - - - - Loopback point: - Wiederholungspunkt: - - - - AudioFileProcessorWaveView - - - Sample length: - Samplelänge: - - - - AudioJack - - - JACK client restarted - JACK-Client neugestartet - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS wurde aus irgendeinem Grund von JACK verbannt. Aus diesem Grund wurde das JACK-Backend von LMMS neu gestartet. Sie müssen manuelle Verbindungen erneut vornehmen. - - - - JACK server down - JACK-Server nicht erreichbar - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - Der JACK-Server scheint heruntergefahren worden zu sein und es war nicht möglich, eine neue Instanz zu starten. LMMS ist daher nicht in der Lage, fortzufahren. Sie sollten Ihr Projekt speichern und JACK und LMMS neustarten. - - - - Client name + + About JUCE - - Channels - Kanäle - - - - AudioOss - - - Device - Gerät - - - - Channels - Kanäle - - - - AudioPortAudio::setupWidget - - - Backend + + <b>About JUCE</b> - - Device - Gerät - - - - AudioPulseAudio - - - Device - Gerät - - - - Channels - Kanäle - - - - AudioSdl::setupWidget - - - Device - Gerät - - - - AudioSndio - - - Device - Gerät - - - - Channels - Kanäle - - - - AudioSoundIo::setupWidget - - - Backend + + This program uses JUCE version 3.x.x. - - Device - Gerät + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + + + + + This program uses JUCE version + - AutomatableModel + AudioDeviceSetupWidget - - &Reset (%1%2) - &Zurücksetzen (%1%2) - - - - &Copy value (%1%2) - Wert &kopieren (%1%2) - - - - &Paste value (%1%2) - Wert &einfügen (%1%2) - - - - &Paste value + + [System Default] - - - Edit song-global automation - Song-globale Automation editieren - - - - Remove song-global automation - Song-globale Automation entfernen - - - - Remove all linked controls - Alle verknüpften Regler entfernen - - - - Connected to %1 - Verbunden mit %1 - - - - Connected to controller - Verbunden mit Controller - - - - Edit connection... - Verbindung bearbeiten... - - - - Remove connection - Verbindung entfernen - - - - Connect to controller... - Mit Controller verbinden... - - - - AutomationEditor - - - Edit Value - - - - - New outValue - - - - - New inValue - - - - - Please open an automation clip with the context menu of a control! - Bitte öffnen Sie einen Automation-Pattern mit Hilfe des Kontextmenüs eines Steuerelements! - - - - AutomationEditorWindow - - - Play/pause current clip (Space) - Aktuelles Pattern abspielen/pausieren (Leertaste) - - - - Stop playing of current clip (Space) - Abspielen des aktuellen Patterns stoppen (Leertaste) - - - - Edit actions - Aktionen bearbeiten - - - - Draw mode (Shift+D) - Zeichnenmodus (Umschalt+D) - - - - Erase mode (Shift+E) - Radiermodus (Umschalt+E) - - - - Draw outValues mode (Shift+C) - - - - - Flip vertically - Vertikal spiegeln - - - - Flip horizontally - Horizontal spiegeln - - - - Interpolation controls - Interpolations Regler - - - - Discrete progression - Diskretes Fortschreiten - - - - Linear progression - Lineares Fortschreiten - - - - Cubic Hermite progression - Kubisches, hermetisches Fortschreiten - - - - Tension value for spline - Spannungswert für Spline - - - - Tension: - Spannung: - - - - Zoom controls - Zoom Regler - - - - Horizontal zooming - Horizontales Zoomen - - - - Vertical zooming - Vertikales Zoomen - - - - Quantization controls - Quantisierungs Regler - - - - Quantization - Quantisierung - - - - - Automation Editor - no clip - Automation-Editor - Kein Pattern - - - - - Automation Editor - %1 - Automation-Editor - %1 - - - - Model is already connected to this clip. - Model ist bereits mit diesem Pattern verbunden. - - - - AutomationClip - - - Drag a control while pressing <%1> - Ein Steuerelement mit <Strg> hier her ziehen - - - - AutomationClipView - - - Open in Automation editor - Im Automation-Editor öffnen - - - - Clear - Zurücksetzen - - - - Reset name - Name zurücksetzen - - - - Change name - Name ändern - - - - Set/clear record - Aufnahme setzen/löschen - - - - Flip Vertically (Visible) - Vertikal spiegeln (Sichtbar) - - - - Flip Horizontally (Visible) - Horizontal spiegeln (Sichtbar) - - - - %1 Connections - %1 Verbindungen - - - - Disconnect "%1" - »%1« trennen - - - - Model is already connected to this clip. - Model ist bereits mit diesem Pattern verbunden. - - - - AutomationTrack - - - Automation track - Automation-Spur - - - - PatternEditor - - - Beat+Bassline Editor - Beat+Bassline Editor - - - - Play/pause current beat/bassline (Space) - Aktuellen Beat/Bassline abspielen/pausieren (Leertaste) - - - - Stop playback of current beat/bassline (Space) - Abspielen des aktuellen Beats/Bassline stoppen (Leertaste) - - - - Beat selector - Beat Wähler - - - - Track and step actions - - - - - Add beat/bassline - Beat/Bassline hinzufügen - - - - Clone beat/bassline clip - - - - - Add sample-track - Sample Spur hinzufügen - - - - Add automation-track - Automation-Spur hinzufügen - - - - Remove steps - Schritte entfernen - - - - Add steps - Schritte hinzufügen - - - - Clone Steps - Schritte Klonen - - - - PatternClipView - - - Open in Beat+Bassline-Editor - Im Beat+Bassline-Editor öffnen - - - - Reset name - Name zurücksetzen - - - - Change name - Name ändern - - - - PatternTrack - - - Beat/Bassline %1 - Beat/Bassline %1 - - - - Clone of %1 - Klon von %1 - - - - BassBoosterControlDialog - - - FREQ - FREQ - - - - Frequency: - Frequenz: - - - - GAIN - GAIN - - - - Gain: - Verstärkung: - - - - RATIO - RATIO - - - - Ratio: - Verhältnis: - - - - BassBoosterControls - - - Frequency - Frequenz - - - - Gain - Verstärkung - - - - Ratio - Verhältnis - - - - BitcrushControlDialog - - - IN - IN - - - - OUT - OUT - - - - - GAIN - GAIN - - - - Input gain: - Eingangsverstärkung: - - - - NOISE - NOISE - - - - Input noise: - - - - - Output gain: - Ausgabeverstärkung: - - - - CLIP - CLIP - - - - Output clip: - - - - - Rate enabled - Rate aktiviert - - - - Enable sample-rate crushing - - - - - Depth enabled - Tiefe aktiviert - - - - Enable bit-depth crushing - - - - - FREQ - FREQ - - - - Sample rate: - Sample Rate: - - - - STEREO - STEREO - - - - Stereo difference: - Stereo Unterschied: - - - - QUANT - - - - - Levels: - Stärke: - - - - BitcrushControls - - - Input gain - Eingangsverstärkung - - - - Input noise - - - - - Output gain - Ausgabeverstärkung - - - - Output clip - - - - - Sample rate - - - - - Stereo difference - - - - - Levels - Stärke - - - - Rate enabled - Rate aktiviert - - - - Depth enabled - Tiefe aktiviert - CarlaAboutW @@ -899,124 +132,124 @@ If you're interested in translating LMMS in another language or want to imp - + Artwork - + Using KDE Oxygen icon set, designed by Oxygen Team. - + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. - + VST is a trademark of Steinberg Media Technologies GmbH. - + Special thanks to António Saraiva for a few extra icons and artwork! - + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. - + MIDI Keyboard designed by Thorsten Wilms. - + Carla, Carla-Control and Patchbay icons designed by DoosC. - + Features - + AU/AudioUnit: - + LADSPA: - - - - - - - - + + + + + + + + TextLabel - + VST2: - + DSSI: - + LV2: - + VST3: - + OSC - + Host URLs: - + Valid commands: - + valid osc commands here - + Example: - + License Lizenz - + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -1301,50 +534,50 @@ POSSIBILITY OF SUCH DAMAGES. - + OSC Bridge Version - + Plugin Version - + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> - - + + (Engine not running) - + Everything! (Including LRDF) - + Everything! (Including CustomData/Chunks) - + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - - - + + + Using Juce host - + About 85% complete (missing vst bank/presets and some minor stuff) @@ -1377,562 +610,599 @@ POSSIBILITY OF SUCH DAMAGES. - + + Save + + + + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + Buffer Size: - + Sample Rate: - + ? Xruns - + DSP Load: %p% - + &File &Datei - + &Engine - + &Plugin - + Macros (all plugins) - + &Canvas - + Zoom - + &Settings - + &Help &Hilfe - - toolBar + + Tool Bar - + Disk - - + + Home Home - + Transport - + Playback Controls - + Time Information - + Frame: - + 000'000'000 - + Time: Zeit: - + 00:00:00 - + BBT: - + 000|00|0000 - + Settings Einstellungen - + BPM - + Use JACK Transport - + Use Ableton Link - + &New &Neu - + Ctrl+N - + &Open... Ö&ffnen... - - + + Open... - + Ctrl+O - + &Save &Speichern - + Ctrl+S - + Save &As... Speichern &als... - - + + Save As... - + Ctrl+Shift+S - + &Quit &Beenden - + Ctrl+Q - + &Start - + F5 - + St&op - + F6 - + &Add Plugin... - + Ctrl+A - + &Remove All - + Enable - + Disable - + 0% Wet (Bypass) - + 100% Wet - + 0% Volume (Mute) 0% Volumen (Mute) - + 100% Volume 100% Volumen - + Center Balance - + &Play - + Ctrl+Shift+P - + &Stop - + Ctrl+Shift+X - + &Backwards - + Ctrl+Shift+B - + &Forwards - + Ctrl+Shift+F - + &Arrange - + Ctrl+G - - + + &Refresh - + Ctrl+R - + Save &Image... - + Auto-Fit - + Zoom In - + Ctrl++ - + Zoom Out - + Ctrl+- - + Zoom 100% - + Ctrl+1 - + Show &Toolbar - + &Configure Carla - + &About - + About &JUCE - + About &Qt - + Show Canvas &Meters - + Show Canvas &Keyboard - + Show Internal - + Show External - + Show Time Panel - + Show &Side Panel - + + Ctrl+P + + + + &Connect... - + Compact Slots - + Expand Slots - + Perform secret 1 - + Perform secret 2 - + Perform secret 3 - + Perform secret 4 - + Perform secret 5 - + Add &JACK Application... - + &Configure driver... - + Panic - + Open custom driver panel... + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + + CarlaHostWindow - + Export as... - - - - + + + + Error Fehler - + Failed to load project - + Failed to save project - + Quit - + Are you sure you want to quit Carla? - + Could not connect to Audio backend '%1', possible reasons: %2 Konnte nicht zum Audio backend verbinden '%1', mögliche Gründe: %2 - + Could not connect to Audio backend '%1' Konnte nicht zum Audio backend verbinden '%1' - + Warning - + There are still some plugins loaded, you need to remove them to stop the engine. Do you want to do this now? - - CarlaInstrumentView - - - Show GUI - GUI anzeigen - - CarlaSettingsW @@ -1987,19 +1257,19 @@ Do you want to do this now? - + Main - + Canvas - + Engine @@ -2020,1487 +1290,589 @@ Do you want to do this now? - + Experimental - + <b>Main</b> - + Paths Pfade - + Default project folder: - + Interface - + + Use "Classic" as default rack skin + + + + Interface refresh interval: - - + + ms - + Show console output in Logs tab (needs engine restart) - + Show a confirmation dialog before quitting - - + + Theme - + Use Carla "PRO" theme (needs restart) - + Color scheme: - + Black - + System - + Enable experimental features - + <b>Canvas</b> - + Bezier Lines - + Theme: - + Size: Größe: - + 775x600 - + 1550x1200 - + 3100x2400 - + 4650x3600 - + 6200x4800 - + + 12400x9600 + + + + Options - + Auto-hide groups with no ports - + Auto-select items on hover - + Basic eye-candy (group shadows) - + Render Hints - + Anti-Aliasing - + Full canvas repaints (slower, but prevents drawing issues) - + <b>Engine</b> - - + + Core - + Single Client - + Multiple Clients - - + + Continuous Rack - - + + Patchbay - + Audio driver: - + Process mode: - - - - + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog - + Max Parameters: - + ... - + Reset Xrun counter after project load - + Plugin UIs - - + + How much time to wait for OSC GUIs to ping back the host - + UI Bridge Timeout: - + Use OSC-GUI bridges when possible, this way separating the UI from DSP code - + Use UI bridges instead of direct handling when possible - + Make plugin UIs always-on-top - + Make plugin UIs appear on top of Carla (needs restart) - + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS - - + + Restart the engine to load the new settings - + <b>OSC</b> - + Enable OSC - + Enable TCP port - - + + Use specific port: - + Overridden by CARLA_OSC_TCP_PORT env var - - + + Use randomly assigned port - + Enable UDP port - + Overridden by CARLA_OSC_UDP_PORT env var - + DSSI UIs require OSC UDP port enabled - + <b>File Paths</b> - + Audio Audio - + MIDI MIDI - + Used for the "audiofile" plugin - + Used for the "midifile" plugin - - + + Add... - - + + Remove - - + + Change... - + <b>Plugin Paths</b> - + LADSPA - + DSSI - + LV2 - + VST2 - + VST3 - + SF2/3 - + SFZ - + + JSFX + + + + + CLAP + + + + Restart Carla to find new plugins - + <b>Wine</b> - + Executable - + Path to 'wine' binary: - + Prefix - + Auto-detect Wine prefix based on plugin filename - + Fallback: - + Note: WINEPREFIX env var is preferred over this fallback - + Realtime Priority - + Base priority: - + WineServer priority: - + These options are not available for Carla as plugin - + <b>Experimental</b> - + Experimental options! Likely to be unstable! - + Enable plugin bridges - + Enable Wine bridges - + Enable jack applications - + Export single plugins to LV2 - + + Use system/desktop-theme icons (needs restart) + + + + Load Carla backend in global namespace (NOT RECOMMENDED) - + Fancy eye-candy (fade-in/out groups, glow connections) - + Use OpenGL for rendering (needs restart) - + High Quality Anti-Aliasing (OpenGL only) - + Render Ardour-style "Inline Displays" - + Force mono plugins as stereo by running 2 instances at the same time. This mode is not available for VST plugins. - + Force mono plugins as stereo - - Prevent plugins from doing bad stuff (needs restart) + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. - - Whenever possible, run the plugins in bridge mode. + + Prevent unsafe calls from plugins (needs restart) - + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + Run plugins in bridge mode when possible - - - - + + + + Add Path - - CompressorControlDialog - - - Threshold: - - - - - Volume at which the compression begins to take place - - - - - Ratio: - Verhältnis: - - - - How far the compressor must turn the volume down after crossing the threshold - - - - - Attack: - Anschwellzeit (attack): - - - - Speed at which the compressor starts to compress the audio - - - - - Release: - Ausklingzeit (release): - - - - Speed at which the compressor ceases to compress the audio - - - - - Knee: - - - - - Smooth out the gain reduction curve around the threshold - - - - - Range: - - - - - Maximum gain reduction - - - - - Lookahead Length: - - - - - How long the compressor has to react to the sidechain signal ahead of time - - - - - Hold: - Haltezeit (hold): - - - - Delay between attack and release stages - - - - - RMS Size: - - - - - Size of the RMS buffer - - - - - Input Balance: - - - - - Bias the input audio to the left/right or mid/side - - - - - Output Balance: - - - - - Bias the output audio to the left/right or mid/side - - - - - Stereo Balance: - - - - - Bias the sidechain signal to the left/right or mid/side - - - - - Stereo Link Blend: - - - - - Blend between unlinked/maximum/average/minimum stereo linking modes - - - - - Tilt Gain: - - - - - Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. - - - - - Tilt Frequency: - - - - - Center frequency of sidechain tilt filter - - - - - Mix: - - - - - Balance between wet and dry signals - - - - - Auto Attack: - - - - - Automatically control attack value depending on crest factor - - - - - Auto Release: - - - - - Automatically control release value depending on crest factor - - - - - Output gain - Ausgabeverstärkung - - - - - Gain - Verstärkung - - - - Output volume - - - - - Input gain - Eingangsverstärkung - - - - Input volume - - - - - Root Mean Square - - - - - Use RMS of the input - - - - - Peak - - - - - Use absolute value of the input - - - - - Left/Right - - - - - Compress left and right audio - - - - - Mid/Side - - - - - Compress mid and side audio - - - - - Compressor - - - - - Compress the audio - - - - - Limiter - - - - - Set Ratio to infinity (is not guaranteed to limit audio volume) - - - - - Unlinked - - - - - Compress each channel separately - - - - - Maximum - - - - - Compress based on the loudest channel - - - - - Average - - - - - Compress based on the averaged channel volume - - - - - Minimum - - - - - Compress based on the quietest channel - - - - - Blend - - - - - Blend between stereo linking modes - - - - - Auto Makeup Gain - - - - - Automatically change makeup gain depending on threshold, knee, and ratio settings - - - - - - Soft Clip - - - - - Play the delta signal - - - - - Use the compressor's output as the sidechain input - - - - - Lookahead Enabled - - - - - Enable Lookahead, which introduces 20 milliseconds of latency - - - - - CompressorControls - - - Threshold - - - - - Ratio - Verhältnis - - - - Attack - Anschwellzeit (attack) - - - - Release - Ausklingzeit (release) - - - - Knee - - - - - Hold - Haltezeit (hold) - - - - Range - - - - - RMS Size - - - - - Mid/Side - - - - - Peak Mode - - - - - Lookahead Length - - - - - Input Balance - - - - - Output Balance - - - - - Limiter - - - - - Output Gain - Ausgangsverstärkung - - - - Input Gain - Eingangsverstärkung - - - - Blend - - - - - Stereo Balance - - - - - Auto Makeup Gain - - - - - Audition - - - - - Feedback - Rückkopplung - - - - Auto Attack - - - - - Auto Release - - - - - Lookahead - - - - - Tilt - - - - - Tilt Frequency - - - - - Stereo Link - - - - - Mix - Mischung - - - - Controller - - - Controller %1 - Controller %1 - - - - ControllerConnectionDialog - - - Connection Settings - Verbindungseinstellungen - - - - MIDI CONTROLLER - MIDI CONTROLLER - - - - Input channel - Eingangskanal - - - - CHANNEL - KANAL - - - - Input controller - Eingangscontroller - - - - CONTROLLER - CONTROLLER - - - - - Auto Detect - Automatische Erkennung - - - - MIDI-devices to receive MIDI-events from - MIDI-Geräte, von denen MIDI-Events empfangen werden sollen - - - - USER CONTROLLER - BENUTZERDEFINIETER CONTROLLER - - - - MAPPING FUNCTION - ABBILDUNGS-FUNKTION - - - - OK - OK - - - - Cancel - Abbrechen - - - - LMMS - LMMS - - - - Cycle Detected. - Schleife erkannt. - - - - ControllerRackView - - - Controller Rack - Controller-Einheit - - - - Add - Hinzufügen - - - - Confirm Delete - Löschen bestätigen - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Löschen bestätigen? Es existiert/en Verbindung(en) mit dem assoziatierten Kontroller. Es gibt keine Möglichkeit es rückgängig zu machen. - - - - ControllerView - - - Controls - Regler - - - - Rename controller - Controller umbenennen - - - - Enter the new name for this controller - Geben Sie einen neuen Namen für diesen Controller ein - - - - LFO - LFO - - - - &Remove this controller - &Diesen Controller entfernen - - - - Re&name this controller - Diesen Controller umbenennen - - - - CrossoverEQControlDialog - - - Band 1/2 crossover: - Band 1/2 Crossover: - - - - Band 2/3 crossover: - Band 2/3 Crossover: - - - - Band 3/4 crossover: - - - - - Band 1 gain - - - - - Band 1 gain: - - - - - Band 2 gain - - - - - Band 2 gain: - - - - - Band 3 gain - - - - - Band 3 gain: - - - - - Band 4 gain - - - - - Band 4 gain: - - - - - Band 1 mute - - - - - Mute band 1 - - - - - Band 2 mute - - - - - Mute band 2 - - - - - Band 3 mute - - - - - Mute band 3 - - - - - Band 4 mute - - - - - Mute band 4 - - - - - DelayControls - - - Delay samples - - - - - Feedback - Rückkopplung - - - - LFO frequency - LFO Frequenz - - - - LFO amount - - - - - Output gain - Ausgabeverstärkung - - - - DelayControlsDialog - - - DELAY - VERZÖGERUNG - - - - Delay time - - - - - FDBK - FDBK - - - - Feedback amount - - - - - RATE - RATE - - - - LFO frequency - LFO Frequenz - - - - AMNT - AMNT - - - - LFO amount - - - - - Out gain - - - - - Gain - Verstärkung - - Dialog - - - Add JACK Application - - - - - Note: Features not implemented yet are greyed out - - - - - Application - - - - - Name: - - - - - Application: - - - - - From template - - - - - Custom - - - - - Template: - - - - - Command: - - - - - Setup - - - - - Session Manager: - - - - - None - Keiner - - - - Audio inputs: - - - - - MIDI inputs: - - - - - Audio outputs: - - - - - MIDI outputs: - - - - - Take control of main application window - - - - - Workarounds - - - - - Wait for external application start (Advanced, for Debug only) - - - - - Capture only the first X11 Window - - - - - Use previous client output buffer as input for the next client - - - - - Simulate 16 JACK MIDI outputs, with MIDI channel as port index - - - - - Error here - - Carla Control - Connect @@ -3526,27 +1898,6 @@ This mode is not available for VST plugins. TCP Port: - - - Reported host - - - - - Automatic - - - - - Custom: - - - - - In some networks (like USB connections), the remote system cannot reach the local network. You can specify here which hostname or IP to make the remote Carla connect to. -If you are unsure, leave it as 'Automatic'. - - Set value @@ -3601,948 +1952,6 @@ If you are unsure, leave it as 'Automatic'. - - DualFilterControlDialog - - - - FREQ - FREQ - - - - - Cutoff frequency - Kennfrequenz - - - - - RESO - RESO - - - - - Resonance - Resonanz - - - - - GAIN - GAIN - - - - - Gain - Verstärkung - - - - MIX - MIX - - - - Mix - Mischung - - - - Filter 1 enabled - Filter 1 aktiviert - - - - Filter 2 enabled - Filter 2 aktiviert - - - - Enable/disable filter 1 - - - - - Enable/disable filter 2 - - - - - DualFilterControls - - - Filter 1 enabled - Filter 1 aktiviert - - - - Filter 1 type - Filtertyp 1 - - - - Cutoff frequency 1 - - - - - Q/Resonance 1 - Q/Resonanz 1 - - - - Gain 1 - Verstärkung 1 - - - - Mix - Mischung - - - - Filter 2 enabled - Filter 2 aktiviert - - - - Filter 2 type - Filtertyp 2 - - - - Cutoff frequency 2 - - - - - Q/Resonance 2 - Q/Resonanz 2 - - - - Gain 2 - Verstärkung 2 - - - - - Low-pass - - - - - - Hi-pass - - - - - - Band-pass csg - - - - - - Band-pass czpg - - - - - - Notch - Notch - - - - - All-pass - - - - - - Moog - Moog - - - - - 2x Low-pass - - - - - - RC Low-pass 12 dB/oct - - - - - - RC Band-pass 12 dB/oct - - - - - - RC High-pass 12 dB/oct - - - - - - RC Low-pass 24 dB/oct - - - - - - RC Band-pass 24 dB/oct - - - - - - RC High-pass 24 dB/oct - - - - - - Vocal Formant - - - - - - 2x Moog - 2x Moog - - - - - SV Low-pass - - - - - - SV Band-pass - - - - - - SV High-pass - - - - - - SV Notch - - - - - - Fast Formant - - - - - - Tripole - Tripol - - - - Editor - - - Transport controls - - - - - Play (Space) - Abspielen (Leertaste) - - - - Stop (Space) - Stoppen (Leertaste) - - - - Record - Aufnahme - - - - Record while playing - Aufnahme während Abspielen - - - - Toggle Step Recording - - - - - Effect - - - Effect enabled - Effekt aktiviert - - - - Wet/Dry mix - Wet/Dry-Mix - - - - Gate - Gate - - - - Decay - Abfallzeit - - - - EffectChain - - - Effects enabled - Effekte aktiviert - - - - EffectRackView - - - EFFECTS CHAIN - EFFEKT-KETTE - - - - Add effect - Effekt hinzufügen - - - - EffectSelectDialog - - - Add effect - Effekt hinzufügen - - - - - Name - Name - - - - Type - Typ - - - - Description - Beschreibung - - - - Author - Verfasser - - - - EffectView - - - On/Off - An/aus - - - - W/D - W/D - - - - Wet Level: - Wet-Level: - - - - DECAY - DECAY - - - - Time: - Zeit: - - - - GATE - GATE - - - - Gate: - Gate: - - - - Controls - Regler - - - - Move &up - Nach &oben verschieben - - - - Move &down - Nach &unten verschieben - - - - &Remove this plugin - Plugin entfe&rnen - - - - EnvelopeAndLfoParameters - - - Env pre-delay - - - - - Env attack - - - - - Env hold - - - - - Env decay - - - - - Env sustain - - - - - Env release - - - - - Env mod amount - - - - - LFO pre-delay - - - - - LFO attack - - - - - LFO frequency - LFO Frequenz - - - - LFO mod amount - - - - - LFO wave shape - - - - - LFO frequency x 100 - - - - - Modulate env amount - - - - - EnvelopeAndLfoView - - - - DEL - DEL - - - - - Pre-delay: - - - - - - ATT - ATT - - - - - Attack: - Anschwellzeit (attack): - - - - HOLD - HOLD - - - - Hold: - Haltezeit (hold): - - - - DEC - DEC - - - - Decay: - Abfallzeit (decay): - - - - SUST - SUST - - - - Sustain: - Dauerpegel (sustain): - - - - REL - REL - - - - Release: - Ausklingzeit (release): - - - - - AMT - AMT - - - - - Modulation amount: - Modulationsintensität: - - - - SPD - SPD - - - - Frequency: - Frequenz: - - - - FREQ x 100 - FREQ x 100 - - - - Multiply LFO frequency by 100 - - - - - MODULATE ENV AMOUNT - - - - - Control envelope amount by this LFO - - - - - ms/LFO: - ms/LFO: - - - - Hint - Tipp - - - - Drag and drop a sample into this window. - - - - - EqControls - - - Input gain - Eingangsverstärkung - - - - Output gain - Ausgabeverstärkung - - - - Low-shelf gain - - - - - Peak 1 gain - Peak 1 gain - - - - Peak 2 gain - Peak 2 gain - - - - Peak 3 gain - Peak 3 gain - - - - Peak 4 gain - Peak 4 gain - - - - High-shelf gain - - - - - HP res - HP res - - - - Low-shelf res - - - - - Peak 1 BW - Peak 1 BW - - - - Peak 2 BW - Peak 2 BW - - - - Peak 3 BW - Peak 3 BW - - - - Peak 4 BW - Peak 4 BW - - - - High-shelf res - - - - - LP res - LP res - - - - HP freq - HP Freq - - - - Low-shelf freq - - - - - Peak 1 freq - - - - - Peak 2 freq - - - - - Peak 3 freq - - - - - Peak 4 freq - - - - - High-shelf freq - - - - - LP freq - TP Freq - - - - HP active - - - - - Low-shelf active - - - - - Peak 1 active - Peak 1 Aktiv - - - - Peak 2 active - Peak 2 Aktive - - - - Peak 3 active - Peak 3 Aktive - - - - Peak 4 active - Peak 4 Aktive - - - - High-shelf active - - - - - LP active - LP aktiv - - - - LP 12 - LP 12 - - - - LP 24 - LP 24 - - - - LP 48 - LP 48 - - - - HP 12 - HP 12 - - - - HP 24 - HP 24 - - - - HP 48 - HP 48 - - - - Low-pass type - - - - - High-pass type - - - - - Analyse IN - Analyse IN - - - - Analyse OUT - Analyse OUT - - - - EqControlsDialog - - - HP - HP - - - - Low-shelf - - - - - Peak 1 - Peak 1 - - - - Peak 2 - Peak 2 - - - - Peak 3 - Peak 3 - - - - Peak 4 - Peak 4 - - - - High-shelf - - - - - LP - LP - - - - Input gain - Eingangsverstärkung - - - - - - Gain - Verstärkung - - - - Output gain - Ausgabeverstärkung - - - - Bandwidth: - Bandbreite: - - - - Octave - Octave - - - - Resonance : - Resonanz: - - - - Frequency: - Frequenz: - - - - LP group - - - - - HP group - - - - - EqHandle - - - Reso: - Reso: - - - - BW: - - - - - - Freq: - Freq: - - ExportProjectDialog @@ -4726,2125 +2135,652 @@ If you are unsure, leave it as 'Automatic'. - - Oversampling: - - - - - 1x (None) - 1x (keine) - - - - 2x - 2x - - - - 4x - 4x - - - - 8x - 8x - - - + Start Start - + Cancel Abbrechen - - - Could not open file - Konnte Datei nicht öffnen - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Konnte Datei %1 nicht zum Schreiben öffnen. Bitte stellen Sie sicher, dass Sie Schreibberechtigungen für die Datei und das Verzeichnis, welches die Datei beinhaltet haben, und versuchen Sie es erneut. - - - - Export project to %1 - Projekt nach %1 exportieren - - - - ( Fastest - biggest ) - ( Schnellstes - Größtes ) - - - - ( Slowest - smallest ) - (Langsamstes - Kleinstes) - - - - Error - Fehler - - - - Error while determining file-encoder device. Please try to choose a different output format. - Fehler beim Bestimmen des Datei-Enkoder-Geräts. Bitte wählen Sie ein anderes Ausgabeformat. - - - - Rendering: %1% - Rendere: %1% - - - - Fader - - - Set value - Wert setzen - - - - Please enter a new value between %1 and %2: - Bitte geben Sie einen neuen Wert zwischen %1 und %2 ein: - - - - FileBrowser - - - User content - - - - - Factory content - - - - - Browser - Browser - - - - Search - - - - - Refresh list - - - - - FileBrowserTreeWidget - - - Send to active instrument-track - An aktive Instrumentspur senden - - - - Open containing folder - - - - - Song Editor - Zeige/verstecke Song-Editor - - - - BB Editor - - - - - Send to new AudioFileProcessor instance - - - - - Send to new instrument track - - - - - (%2Enter) - - - - - Send to new sample track (Shift + Enter) - - - - - Loading sample - Lade Sample - - - - Please wait, loading sample for preview... - Bitte warten, lade Sample für Vorschau… - - - - Error - Fehler - - - - %1 does not appear to be a valid %2 file - - - - - --- Factory files --- - --- Mitgelieferte Dateien --- - - - - FlangerControls - - - Delay samples - - - - - LFO frequency - LFO Frequenz - - - - Seconds - Sekunde - - - - Stereo phase - - - - - Regen - - - - - Noise - Rauschen - - - - Invert - Invertieren - - - - FlangerControlsDialog - - - DELAY - VERZÖGERUNG - - - - Delay time: - - - - - RATE - RATE - - - - Period: - Periode: - - - - AMNT - AMNT - - - - Amount: - Menge: - - - - PHASE - - - - - Phase: - - - - - FDBK - FDBK - - - - Feedback amount: - - - - - NOISE - NOISE - - - - White noise amount: - - - - - Invert - Invertieren - - - - FreeBoyInstrument - - - Sweep time - Streichzeit - - - - Sweep direction - Streichrichtung - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle - - - - - Channel 1 volume - Kanal 1 Lautstärke - - - - - - Volume sweep direction - Lautstärken-Streichrichtung - - - - - - Length of each step in sweep - Länge jedes Schritts beim Streichen - - - - Channel 2 volume - Kanal 2 Lautstärke - - - - Channel 3 volume - Kanal 3 Lautstärke - - - - Channel 4 volume - Kanal 4 Lautstärke - - - - Shift Register width - Schieberegister-Breite - - - - Right output level - - - - - Left output level - - - - - Channel 1 to SO2 (Left) - Kanal 1 zu SO2 (Links) - - - - Channel 2 to SO2 (Left) - Kanal 2 zu SO2 (Links) - - - - Channel 3 to SO2 (Left) - Kanal 3 zu SO2 (Links) - - - - Channel 4 to SO2 (Left) - Kanal 4 zu SO2 (Links) - - - - Channel 1 to SO1 (Right) - Kanal 1 zu SO1 (Rechts) - - - - Channel 2 to SO1 (Right) - Kanal 2 zu SO1 (Rechts) - - - - Channel 3 to SO1 (Right) - Kanal 3 zu SO1 (Rechts) - - - - Channel 4 to SO1 (Right) - Kanal 4 zu SO1 (Rechts) - - - - Treble - Höhe - - - - Bass - Bass - - - - FreeBoyInstrumentView - - - Sweep time: - - - - - Sweep time - Streichzeit - - - - Sweep rate shift amount: - - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle: - - - - - - Wave pattern duty cycle - - - - - Square channel 1 volume: - - - - - Square channel 1 volume - - - - - - - Length of each step in sweep: - Länge jedes Schritts beim Streichen: - - - - - - Length of each step in sweep - Länge jedes Schritts beim Streichen - - - - Square channel 2 volume: - - - - - Square channel 2 volume - - - - - Wave pattern channel volume: - - - - - Wave pattern channel volume - - - - - Noise channel volume: - - - - - Noise channel volume - - - - - SO1 volume (Right): - - - - - SO1 volume (Right) - - - - - SO2 volume (Left): - - - - - SO2 volume (Left) - - - - - Treble: - Höhe: - - - - Treble - Höhe - - - - Bass: - Bass: - - - - Bass - Bass - - - - Sweep direction - Streichrichtung - - - - - - - - Volume sweep direction - Lautstärken-Streichrichtung - - - - Shift register width - - - - - Channel 1 to SO1 (Right) - Kanal 1 zu SO1 (Rechts) - - - - Channel 2 to SO1 (Right) - Kanal 2 zu SO1 (Rechts) - - - - Channel 3 to SO1 (Right) - Kanal 3 zu SO1 (Rechts) - - - - Channel 4 to SO1 (Right) - Kanal 4 zu SO1 (Rechts) - - - - Channel 1 to SO2 (Left) - Kanal 1 zu SO2 (Links) - - - - Channel 2 to SO2 (Left) - Kanal 2 zu SO2 (Links) - - - - Channel 3 to SO2 (Left) - Kanal 3 zu SO2 (Links) - - - - Channel 4 to SO2 (Left) - Kanal 4 zu SO2 (Links) - - - - Wave pattern graph - - - - - MixerChannelView - - - Channel send amount - Kanal Sendemenge - - - - Move &left - Nach &links verschieben - - - - Move &right - Nach &rechts verschieben - - - - Rename &channel - &Kanal umbenennen - - - - R&emove channel - Kanal &Entfernen - - - - Remove &unused channels - Entferne &unbenutzte Kanäle - - - - Set channel color - - - - - Remove channel color - - - - - Pick random channel color - - - - - MixerChannelLcdSpinBox - - - Assign to: - Weise hinzu: - - - - New mixer Channel - Neuer FX-Kanal - - - - Mixer - - - Master - Master - - - - - - Channel %1 - FX %1 - - - - Volume - Lautstärke - - - - Mute - Stumm - - - - Solo - Solo - - - - MixerView - - - Mixer - Mixer - - - - Fader %1 - FX Schieber %1 - - - - Mute - Stumm - - - - Mute this mixer channel - Diesen FX-Kanal stummschalten - - - - Solo - Solo - - - - Solo mixer channel - Solo FX-Kanal - - - - MixerRoute - - - - Amount to send from channel %1 to channel %2 - Anteil, der von Kanal %1 zu Kanal %2 gesendet werden soll - - - - GigInstrument - - - Bank - Bank - - - - Patch - Patch - - - - Gain - Verstärkung - - - - GigInstrumentView - - - - Open GIG file - GIG Datei öffnen - - - - Choose patch - Patch wählen - - - - Gain: - Gain: - - - - GIG Files (*.gig) - GIG Dateien (*.gig) - - - - GuiApplication - - - Working directory - Arbeitsverzeichnis - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - Das LMMS-Arbeitsverzeichnis %1 existiert nicht. Soll es jetzt angelegt werden? Sie können das Verzeichnis später unter Bearbeiten -> Einstellungen ändern - - - - Preparing UI - Benutzeroberfläche vorbereiten - - - - Preparing song editor - Song Editor vorbereiten - - - - Preparing mixer - Mixer vorbereiten - - - - Preparing controller rack - Controller-Einheit vorbereiten - - - - Preparing project notes - Projektnotizen vorbereiten - - - - Preparing beat/bassline editor - Beat/Bassline Editor vorbreiten - - - - Preparing piano roll - - - - - Preparing automation editor - - - - - InstrumentFunctionArpeggio - - - Arpeggio - Arpeggio - - - - Arpeggio type - Arpeggiotyp - - - - Arpeggio range - Arpeggio-Bereich - - - - Note repeats - - - - - Cycle steps - - - - - Skip rate - - - - - Miss rate - - - - - Arpeggio time - Arpeggio-Zeit - - - - Arpeggio gate - Arpeggio-Gate - - - - Arpeggio direction - Arpeggio-Richtung - - - - Arpeggio mode - Arpeggio-Modus - - - - Up - Hoch - - - - Down - Runter - - - - Up and down - Hoch und runter - - - - Down and up - Hoch und runter - - - - Random - Zufällig - - - - Free - Frei - - - - Sort - Sortiert - - - - Sync - Synchron - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - ARPEGGIO - - - - RANGE - RANGE - - - - Arpeggio range: - Arpeggio-Bereich: - - - - octave(s) - Oktave(n) - - - - REP - - - - - Note repeats: - - - - - time(s) - - - - - CYCLE - CYCLE - - - - Cycle notes: - - - - - note(s) - Notizen - - - - SKIP - SKIP - - - - Skip rate: - - - - - - - % - % - - - - MISS - MISS - - - - Miss rate: - - - - - TIME - ZEIT - - - - Arpeggio time: - Arpeggio-Zeit: - - - - ms - ms - - - - GATE - GATE - - - - Arpeggio gate: - Arpeggio-Gate: - - - - Chord: - Akkord: - - - - Direction: - Richtung: - - - - Mode: - Modus: - InstrumentFunctionNoteStacking - + octave Oktave - - + + Major Dur - + Majb5 Durb5 - + minor moll - + minb5 mollb5 - + sus2 sus2 - + sus4 sus4 - + aug aug - + augsus4 augsus4 - + tri tri - + 6 6 - + 6sus4 6sus4 - + 6add9 6add9 - + m6 m6 - + m6add9 m6add9 - + 7 7 - + 7sus4 7sus4 - + 7#5 7#5 - + 7b5 7b5 - + 7#9 7#9 - + 7b9 7b9 - + 7#5#9 7#5#9 - + 7#5b9 7#5b9 - + 7b5b9 7b5b9 - + 7add11 7add11 - + 7add13 7add13 - + 7#11 7#11 - + Maj7 Maj7 - + Maj7b5 Maj7b5 - + Maj7#5 Maj7#5 - + Maj7#11 Maj7#11 - + Maj7add13 Maj7add13 - + m7 m7 - + m7b5 m7b5 - + m7b9 m7b9 - + m7add11 m7add11 - + m7add13 m7add13 - + m-Maj7 m-Maj7 - + m-Maj7add11 m-Maj7add11 - + m-Maj7add13 m-Maj7add13 - + 9 9 - + 9sus4 9sus4 - + add9 add9 - + 9#5 9#5 - + 9b5 9b5 - + 9#11 9#11 - + 9b13 9b13 - + Maj9 Maj9 - + Maj9sus4 Maj9sus4 - + Maj9#5 Maj9#5 - + Maj9#11 Maj9#11 - + m9 m9 - + madd9 madd9 - + m9b5 m9b5 - + m9-Maj7 m9-Maj7 - + 11 11 - + 11b9 11b9 - + Maj11 Maj11 - + m11 m11 - + m-Maj11 m-Maj11 - + 13 13 - + 13#9 13#9 - + 13b9 13b9 - + 13b5b9 13b5b9 - + Maj13 Maj13 - + m13 m13 - + m-Maj13 m-Maj13 - + Harmonic minor Harmonisches Moll - + Melodic minor Melodisches Moll - + Whole tone Ganze Töne - + Diminished Vermindert - + Major pentatonic Pentatonisches Dur - + Minor pentatonic Pentatonisches Moll - + Jap in sen Jap in sen - + Major bebop Dur Bebop - + Dominant bebop Dominanter Bebop - + Blues Blues - + Arabic Arabisch - + Enigmatic Enigmatisch - + Neopolitan Neopolitanisch - + Neopolitan minor Neopolitanisches Moll - + Hungarian minor Zigeunermoll - + Dorian Dorisch - + Phrygian Phrygisch - + Lydian Lydisch - + Mixolydian Mixolydisch - + Aeolian Äolisch - + Locrian Locrisch - + Minor Moll - + Chromatic Chromatisch - + Half-Whole Diminished Halbton-Ganzton-Leiter - + 5 5 - + Phrygian dominant - + Persian Persisch - - - Chords - Akkorde - - - - Chord type - Akkordtyp - - - - Chord range - Akkord-Bereich - - - - InstrumentFunctionNoteStackingView - - - STACKING - STACKING - - - - Chord: - Akkord: - - - - RANGE - RANGE - - - - Chord range: - Akkord-Bereich: - - - - octave(s) - Oktave(n) - - - - InstrumentMidiIOView - - - ENABLE MIDI INPUT - MIDI-EINGANG AKTIVIEREN - - - - ENABLE MIDI OUTPUT - MIDI-AUSGANG AKTIVIEREN - - - - - CHAN - This string must be be short, its width must be less than * width of LCD spin-box of two digits - - - - - - VELOC - This string must be be short, its width must be less than * width of LCD spin-box of three digits - - - - - PROG - This string must be be short, its width must be less than the * width of LCD spin-box of three digits - - - - - NOTE - This string must be be short, its width must be less than * width of LCD spin-box of three digits - NOTE - - - - MIDI devices to receive MIDI events from - MIDI Geräte, von denen MIDI-Events empfangen werden sollen - - - - MIDI devices to send MIDI events to - MIDI-Geräte, an die MIDI-Events gesendet werden sollen - - - - CUSTOM BASE VELOCITY - BENUTZERDEFINIERTE GRUNDLAUTSTÄRKE - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. - - - - - BASE VELOCITY - GRUNDLAUTSTÄRKE - - - - InstrumentTuningView - - - MASTER PITCH - - - - - Enables the use of master pitch - - InstrumentSoundShaping - + VOLUME LAUTSTÄRKE - + Volume Lautstärke - + CUTOFF KENNFREQ - - + Cutoff frequency Kennfrequenz - + RESO RESO - + Resonance Resonanz - - - Envelopes/LFOs - Hüllkurven/LFOs - - - - Filter type - Filtertyp - - - - Q/Resonance - Q/Resonanz - - - - Low-pass - - - - - Hi-pass - - - - - Band-pass csg - - - - - Band-pass czpg - - - - - Notch - Notch - - - - All-pass - - - - - Moog - Moog - - - - 2x Low-pass - - - - - RC Low-pass 12 dB/oct - - - - - RC Band-pass 12 dB/oct - - - - - RC High-pass 12 dB/oct - - - - - RC Low-pass 24 dB/oct - - - - - RC Band-pass 24 dB/oct - - - - - RC High-pass 24 dB/oct - - - - - Vocal Formant - - - - - 2x Moog - 2x Moog - - - - SV Low-pass - - - - - SV Band-pass - - - - - SV High-pass - - - - - SV Notch - - - - - Fast Formant - - - - - Tripole - Tripol - - InstrumentSoundShapingView + JackAppDialog - - TARGET - ZIEL - - - - FILTER - FILTER - - - - FREQ - FREQ - - - - Cutoff frequency: - Kennfrequenz: - - - - Hz - Hz - - - - Q/RESO + + Add JACK Application - - Q/Resonance: + + Note: Features not implemented yet are greyed out - - Envelopes, LFOs and filters are not supported by the current instrument. - Hüllkurven, LFOs und Filter sind vom aktuellen Instrument nicht unterstützt. - - - - InstrumentTrack - - - - unnamed_track - Unbenannter_Kanal - - - - Base note - Grundton - - - - First note + + Application - - Last note - Letzte Note - - - - Volume - Lautstärke - - - - Panning - Balance - - - - Pitch - Tonhöhe - - - - Pitch range - Tonhöhenbereich - - - - Mixer channel - FX-Kanal - - - - Master pitch - Master-Tonhöhe - - - - Enable/Disable MIDI CC + + Name: - - CC Controller %1 + + Application: - - - Default preset - Standard-Preset - - - - InstrumentTrackView - - - Volume - Lautstärke - - - - Volume: - Lautstärke: - - - - VOL - VOL - - - - Panning - Balance - - - - Panning: - Balance: - - - - PAN - PAN - - - - MIDI - MIDI - - - - Input - Eingang - - - - Output - Ausgang - - - - Open/Close MIDI CC Rack + + From template - - Channel %1: %2 - FX %1: %2 - - - - InstrumentTrackWindow - - - GENERAL SETTINGS - GRUNDLEGENDE EINSTELLUNGEN - - - - Volume - Lautstärke - - - - Volume: - Lautstärke: - - - - VOL - VOL - - - - Panning - Balance - - - - Panning: - Balance: - - - - PAN - PAN - - - - Pitch - Tonhöhe - - - - Pitch: - Tonhöhe: - - - - cents - Cent - - - - PITCH - PITCH - - - - Pitch range (semitones) - Tonhöhenbereich (Halbtöne) - - - - RANGE - RANGE - - - - Mixer channel - FX-Kanal - - - - CHANNEL - FX - - - - Save current instrument track settings in a preset file - Aktuelle Instrumentenspur-Einstelungen in einer Presetdatei speichern - - - - SAVE - SPEICHERN - - - - Envelope, filter & LFO + + Custom - - Chord stacking & arpeggio + + Template: - - Effects - Effekte + + Command: + - - MIDI - MIDI + + Setup + - - Miscellaneous - Verschiedenes + + Session Manager: + - - Save preset - Preset speichern + + None + - - XML preset file (*.xpf) - XML Preset Datei (*.xpf) + + Audio inputs: + - - Plugin - Plugin + + MIDI inputs: + - - - JackApplicationW - + + Audio outputs: + + + + + MIDI outputs: + + + + + Take control of main application window + + + + + Workarounds + + + + + Wait for external application start (Advanced, for Debug only) + + + + + Capture only the first X11 Window + + + + + Use previous client output buffer as input for the next client + + + + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + + + + + Error here + + + + NSM applications cannot use abstract or absolute paths - + NSM applications cannot use CLI arguments - + You need to save the current Carla project before NSM can be used @@ -6852,947 +2788,11 @@ Please make sure you have write permission to the file and the directory contain JuceAboutW - - About JUCE - - - - - <b>About JUCE</b> - - - - - This program uses JUCE version 3.x.x. - - - - - JUCE (Jules' Utility Class Extensions) is an all-encompassing C++ class library for developing cross-platform software. - -It contains pretty much everything you're likely to need to create most applications, and is particularly well-suited for building highly-customised GUIs, and for handling graphics and sound. - -JUCE is licensed under the GNU Public Licence version 2.0. -One module (juce_core) is permissively licensed under the ISC. - -Copyright (C) 2017 ROLI Ltd. - - - - + This program uses JUCE version %1. - - Knob - - - Set linear - Linear einstellen - - - - Set logarithmic - Logarithmisch einstellen - - - - - Set value - Wert setzen - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - Bitte geben Sie einen neuen Wert zwischen -96.0 dBFS und 6.0 dBFS: ein: - - - - Please enter a new value between %1 and %2: - Bitte geben Sie einen neuen Wert zwischen %1 und %2 ein: - - - - LadspaControl - - - Link channels - Kanäle verbinden - - - - LadspaControlDialog - - - Link Channels - Kanäle verbinden - - - - Channel - Kanal - - - - LadspaControlView - - - Link channels - Kanäle verbinden - - - - Value: - Wert: - - - - LadspaEffect - - - Unknown LADSPA plugin %1 requested. - Unbekanntes LADSPA-Plugin %1 angefordert. - - - - LcdFloatSpinBox - - - Set value - Wert setzen - - - - Please enter a new value between %1 and %2: - Bitte geben Sie einen neuen Wert zwischen %1 und %2 ein: - - - - LcdSpinBox - - - Set value - Wert setzen - - - - Please enter a new value between %1 and %2: - Bitte geben Sie einen neuen Wert zwischen %1 und %2 ein: - - - - LeftRightNav - - - - - Previous - Vorheriges - - - - - - Next - Nächstes - - - - Previous (%1) - Vorheriges (%1) - - - - Next (%1) - Nächstes (%1) - - - - LfoController - - - LFO Controller - LFO-Controller - - - - Base value - Grundwert - - - - Oscillator speed - Oszillator-Geschwindigkeit - - - - Oscillator amount - Oszillator-Stärke - - - - Oscillator phase - Oszillator-Phase - - - - Oscillator waveform - Oszillator-Wellenform - - - - Frequency Multiplier - Frequenzmultiplikator - - - - LfoControllerDialog - - - LFO - LFO - - - - BASE - BASE - - - - Base: - Basis - - - - FREQ - FREQ - - - - LFO frequency: - LFO Frequenz: - - - - AMNT - AMNT - - - - Modulation amount: - Modulationsintensität: - - - - PHS - PHS - - - - Phase offset: - Phasenverschiebung: - - - - degrees - Grad - - - - Sine wave - Sinuswelle - - - - Triangle wave - Dreieckwelle - - - - Saw wave - Sägezahnwelle - - - - Square wave - Rechteckwelle - - - - Moog saw wave - Moog-Sägezahnwelle - - - - Exponential wave - Exponentielle Welle - - - - White noise - Weißes Rauschen - - - - User-defined shape. -Double click to pick a file. - - - - - Mutliply modulation frequency by 1 - Multipliziere Modulationsfrequenz mit 1 - - - - Mutliply modulation frequency by 100 - Multipliziere Modulationsfrequenz mit 100 - - - - Divide modulation frequency by 100 - Dividiere Modulationsfrequenz mit 100 - - - - Engine - - - Generating wavetables - Wellenformtabllen erzeugen - - - - Initializing data structures - Datenstrukturen initialisieren - - - - Opening audio and midi devices - Audio und MIDI-Geräte öffnen - - - - Launching mixer threads - - - - - MainWindow - - - Configuration file - Konfigurationsdatei - - - - Error while parsing configuration file at line %1:%2: %3 - Fehler beim Parsen der Konfigurationsdatei in Zeile %1:%2: %3 - - - - Could not open file - Konnte Datei nicht öffnen - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Konnte Datei %1 nicht zum Schreiben öffnen. Bitte stellen Sie sicher, dass Sie Schreibberechtigungen für die Datei und das Verzeichnis, welches die Datei beinhaltet haben, und versuchen Sie es erneut. - - - - Project recovery - Project wiederherstellen - - - - There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - Es liegt eine Wiederherstellungsdatei vor. Es scheint, dass die letzte Sitzung nicht ordnungsgemäß beendet wurde oder eine andere Instanz von LMMS läuft bereits. Wollen Sie das Projekt von dieser Sitzung wiederherstellen? - - - - - Recover - Wiederherstellen - - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - Wiederherstellen der Datei. Bitte führen Sie nicht mehrere Instanzen von LMMS aus, wenn Sie das tun. - - - - - Discard - Verwerfen - - - - Launch a default session and delete the restored files. This is not reversible. - Starten einer Standardsitzung und löschen der wiederhergestellten Dateien. Diese Aktion kann nicht rückgängig gemacht werden. - - - - Version %1 - Version %1 - - - - Preparing plugin browser - Plugin Browser vorbereiten - - - - Preparing file browsers - Dateimanger vorbereiten - - - - My Projects - Meine Projekte - - - - My Samples - Meine Samples - - - - My Presets - Meine Presets - - - - My Home - Mein Home - - - - Root directory - Grundverzeichniss - - - - Volumes - Volumes - - - - My Computer - Mein Computer - - - - &File - &Datei - - - - &New - &Neu - - - - &Open... - Ö&ffnen... - - - - Loading background picture - Lade Hintegrundbild - - - - &Save - &Speichern - - - - Save &As... - Speichern &als... - - - - Save as New &Version - Speichern als neue &Version - - - - Save as default template - Speichere als Standard Vorlage - - - - Import... - Importieren... - - - - E&xport... - E&xportieren... - - - - E&xport Tracks... - E&xport Tracks... - - - - Export &MIDI... - Exportiere &MIDI - - - - &Quit - &Beenden - - - - &Edit - &Bearbeiten - - - - Undo - Rückgängig - - - - Redo - Wiederholen - - - - Settings - Einstellungen - - - - &View - &Ansicht - - - - &Tools - &Werkzeuge - - - - &Help - &Hilfe - - - - Online Help - Online Hilfe - - - - Help - Hilfe - - - - About - Über - - - - Create new project - Neues Projekt erstellen - - - - Create new project from template - Neues Projekt aus Vorlage erstellen - - - - Open existing project - Existierendes Projekt öffnen - - - - Recently opened projects - Zuletzt geöffnete Projekte - - - - Save current project - Aktuelles Projekt speichern - - - - Export current project - Aktuelles Projekt exportieren - - - - Metronome - Metronom - - - - - Song Editor - Zeige/verstecke Song-Editor - - - - - Beat+Bassline Editor - Zeige/verstecke Beat+Bassline Editor - - - - - Piano Roll - Zeige/verstecke Piano-Roll - - - - - Automation Editor - Zeige/Verstecke Automation-Editor - - - - - Mixer - Zeige/verstecke Mixer - - - - Show/hide controller rack - Zeige/Verstecke Kontroller Rack - - - - Show/hide project notes - Zeige/Verstecke Projekt Notizen - - - - Untitled - Unbenannt - - - - Recover session. Please save your work! - Session Wiederherstellung. Bitte speichere Deine Arbeit! - - - - LMMS %1 - LMMS %1 - - - - Recovered project not saved - Wiederhergestelltes Projekt nicht gespeichert - - - - This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? - - - - - Project not saved - Projekt nicht gespeichert - - - - The current project was modified since last saving. Do you want to save it now? - Das aktuelle Projekt wurde seit dem letzten Speichern geändert. Wollen Sie es jetzt speichern? - - - - Open Project - Projekt öffnen - - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - - Save Project - Projekt speichern - - - - LMMS Project - LMMS Projekt - - - - LMMS Project Template - LMMS Projektvorlage - - - - Save project template - Projektvorlage speichern - - - - Overwrite default template? - Standard Vorlage überschreiben? - - - - This will overwrite your current default template. - Das wird Ihre aktuelle Standardvorlage überschreiben. - - - - Help not available - Hilfe nicht verfügbar - - - - Currently there's no help available in LMMS. -Please visit http://lmms.sf.net/wiki for documentation on LMMS. - Derzeit ist in LMMS keine Hilfe verfügbar. -Bitte besuchen Sie http://lmms.sf.net/wiki für Dokumentationen über LMMS. - - - - Controller Rack - Zeige/verstecke Controller-Rack - - - - Project Notes - Zeige/verstecke Projekt-Notizen - - - - Fullscreen - - - - - Volume as dBFS - - - - - Smooth scroll - Sanftes Scrollen - - - - Enable note labels in piano roll - Notenbeschriftung in Piano-Roll aktivieren - - - - MIDI File (*.mid) - MIDI Datei (*.mid) - - - - - untitled - Unbenannt - - - - - Select file for project-export... - Datei für Projekt-Export wählen... - - - - Select directory for writing exported tracks... - - - - - Save project - Projekt speichern - - - - Project saved - Projekt gespeichert - - - - The project %1 is now saved. - Das Projekt %1 ist nun gespeichert. - - - - Project NOT saved. - Projekt NICHT gespeichert. - - - - The project %1 was not saved! - Das Projekt %1 wurde nicht gespeichert! - - - - Import file - Importiere Datei - - - - MIDI sequences - MIDI Sequenzen - - - - Hydrogen projects - Hydrogen-Projekte - - - - All file types - Alle Dateitypen - - - - MeterDialog - - - - Meter Numerator - Takt/Zähler - - - - Meter numerator - Taktzähler - - - - - Meter Denominator - Takt/Nenner - - - - Meter denominator - Taktnenner - - - - TIME SIG - TAKTART - - - - MeterModel - - - Numerator - Zähler - - - - Denominator - Nenner - - - - MidiCCRackView - - - - MIDI CC Rack - %1 - - - - - MIDI CC Knobs: - - - - - CC %1 - - - - - MidiController - - - MIDI Controller - MIDI-Controller - - - - unnamed_midi_controller - unbenannter_midi_controller - - - - MidiImport - - - - Setup incomplete - Unvollständige Einrichtung - - - - You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. - 97% match -Sie haben keine Standard-Soundfont im Einstellungsdialog (Bearbeiten->Einstellungen) festgelegt. Deshalb werden Sie nach dem Import der MIDI-Datei während der Wiedergabe nichts hören. Sie sollten eine General-MIDI-Soundfont herunterladen, diese in dem Einstellungdialog angeben und es erneut versuchen. - - - - You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - Sie haben LMMS ohne das SoundFont2-Player-Plugin gebaut. Dieses Plugin wird normalerweise benutzt, um Standardklänge bei importierten MIDI-Dateien einzurichten. Aus diesem Grund werden Sie nach dem Import der MIDI-Datei nichts hören. - - - - MIDI Time Signature Numerator - - - - - MIDI Time Signature Denominator - - - - - Numerator - Zähler - - - - Denominator - Nenner - - - - Track - Spur - - - - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - JACK-Server nicht erreichbar - - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - Der JACK-Server scheint heruntergefahren zu sein. - - MidiPatternW @@ -7998,2730 +2998,369 @@ Sie haben keine Standard-Soundfont im Einstellungsdialog (Bearbeiten->Einstel &Beenden - - &Insert Mode + + Esc + &Insert Mode + + + + F - + &Velocity Mode - + D - + Select All - + A - - MidiPort - - - Input channel - Eingangskanal - - - - Output channel - Ausgangskanal - - - - Input controller - Eingangscontroller - - - - Output controller - Ausgangscontroller - - - - Fixed input velocity - Feste Eingangslautstärke - - - - Fixed output velocity - Feste Ausgangslautstärke - - - - Fixed output note - Feste Ausgangnote - - - - Output MIDI program - Ausgangs-MIDI-Programm - - - - Base velocity - Grundlautstärke - - - - Receive MIDI-events - MIDI-Ereignisse empfangen - - - - Send MIDI-events - MIDI-Ereignisse senden - - - - MidiSetupWidget - - - Device - Gerät - - - - MonstroInstrument - - - Osc 1 volume - Oszilator 1 Lautstärke - - - - Osc 1 panning - Oszillator 1 Balance - - - - Osc 1 coarse detune - - - - - Osc 1 fine detune left - - - - - Osc 1 fine detune right - - - - - Osc 1 stereo phase offset - - - - - Osc 1 pulse width - - - - - Osc 1 sync send on rise - - - - - Osc 1 sync send on fall - - - - - Osc 2 volume - - - - - Osc 2 panning - - - - - Osc 2 coarse detune - - - - - Osc 2 fine detune left - - - - - Osc 2 fine detune right - - - - - Osc 2 stereo phase offset - - - - - Osc 2 waveform - - - - - Osc 2 sync hard - - - - - Osc 2 sync reverse - - - - - Osc 3 volume - - - - - Osc 3 panning - - - - - Osc 3 coarse detune - - - - - Osc 3 Stereo phase offset - Oszillator 3 Stereo Phasenverschiebung - - - - Osc 3 sub-oscillator mix - - - - - Osc 3 waveform 1 - - - - - Osc 3 waveform 2 - - - - - Osc 3 sync hard - - - - - Osc 3 Sync reverse - - - - - LFO 1 waveform - - - - - LFO 1 attack - - - - - LFO 1 rate - - - - - LFO 1 phase - - - - - LFO 2 waveform - - - - - LFO 2 attack - - - - - LFO 2 rate - - - - - LFO 2 phase - - - - - Env 1 pre-delay - - - - - Env 1 attack - - - - - Env 1 hold - - - - - Env 1 decay - - - - - Env 1 sustain - - - - - Env 1 release - - - - - Env 1 slope - - - - - Env 2 pre-delay - - - - - Env 2 attack - - - - - Env 2 hold - - - - - Env 2 decay - - - - - Env 2 sustain - - - - - Env 2 release - - - - - Env 2 slope - - - - - Osc 2+3 modulation - - - - - Selected view - Ausgewählte Ansicht - - - - Osc 1 - Vol env 1 - - - - - Osc 1 - Vol env 2 - - - - - Osc 1 - Vol LFO 1 - - - - - Osc 1 - Vol LFO 2 - - - - - Osc 2 - Vol env 1 - - - - - Osc 2 - Vol env 2 - - - - - Osc 2 - Vol LFO 1 - - - - - Osc 2 - Vol LFO 2 - - - - - Osc 3 - Vol env 1 - - - - - Osc 3 - Vol env 2 - - - - - Osc 3 - Vol LFO 1 - - - - - Osc 3 - Vol LFO 2 - - - - - Osc 1 - Phs env 1 - - - - - Osc 1 - Phs env 2 - - - - - Osc 1 - Phs LFO 1 - - - - - Osc 1 - Phs LFO 2 - - - - - Osc 2 - Phs env 1 - - - - - Osc 2 - Phs env 2 - - - - - Osc 2 - Phs LFO 1 - - - - - Osc 2 - Phs LFO 2 - - - - - Osc 3 - Phs env 1 - - - - - Osc 3 - Phs env 2 - - - - - Osc 3 - Phs LFO 1 - - - - - Osc 3 - Phs LFO 2 - - - - - Osc 1 - Pit env 1 - - - - - Osc 1 - Pit env 2 - - - - - Osc 1 - Pit LFO 1 - - - - - Osc 1 - Pit LFO 2 - - - - - Osc 2 - Pit env 1 - - - - - Osc 2 - Pit env 2 - - - - - Osc 2 - Pit LFO 1 - - - - - Osc 2 - Pit LFO 2 - - - - - Osc 3 - Pit env 1 - - - - - Osc 3 - Pit env 2 - - - - - Osc 3 - Pit LFO 1 - - - - - Osc 3 - Pit LFO 2 - - - - - Osc 1 - PW env 1 - - - - - Osc 1 - PW env 2 - - - - - Osc 1 - PW LFO 1 - - - - - Osc 1 - PW LFO 2 - - - - - Osc 3 - Sub env 1 - - - - - Osc 3 - Sub env 2 - - - - - Osc 3 - Sub LFO 1 - - - - - Osc 3 - Sub LFO 2 - - - - - - Sine wave - Sinuswelle - - - - Bandlimited Triangle wave - Bandlimittierte Dreieckwelle - - - - Bandlimited Saw wave - Bandbegrenzte Sägezahnwelle - - - - Bandlimited Ramp wave - Bandbegrenzte Sägezahnwelle - - - - Bandlimited Square wave - Bandbegrenzte Rechteckwelle - - - - Bandlimited Moog saw wave - Bandbegrenzte Moog-Sägezahnwelle - - - - - Soft square wave - Weiche Rechteckwelle - - - - Absolute sine wave - Absolute Sinuswelle - - - - - Exponential wave - Exponentielle Welle - - - - White noise - Weißes Rauschen - - - - Digital Triangle wave - Digitale Dreieckwelle - - - - Digital Saw wave - Digitale Sägezahnwelle - - - - Digital Ramp wave - Digitale Sägezahnwelle - - - - Digital Square wave - Digitale Rechteckwelle - - - - Digital Moog saw wave - Digitale Moog-Sägezahnwelle - - - - Triangle wave - Dreieckwelle - - - - Saw wave - Sägezahnwelle - - - - Ramp wave - Sägezahnwelle - - - - Square wave - Rechteckwelle - - - - Moog saw wave - Moog-Sägezahnwelle - - - - Abs. sine wave - Abs. Sinuswelle - - - - Random - Zufällig - - - - Random smooth - Zufällig gleitend - - - - MonstroView - - - Operators view - Operator-Ansicht - - - - Matrix view - Matrix-Ansicht - - - - - - Volume - Lautstärke - - - - - - Panning - Balance - - - - - - Coarse detune - - - - - - - semitones - Halbtöne - - - - - Fine tune left - - - - - - - - cents - Cent - - - - - Fine tune right - - - - - - - Stereo phase offset - - - - - - - - - deg - deg - - - - Pulse width - Pulsbreite - - - - Send sync on pulse rise - - - - - Send sync on pulse fall - - - - - Hard sync oscillator 2 - - - - - Reverse sync oscillator 2 - - - - - Sub-osc mix - - - - - Hard sync oscillator 3 - - - - - Reverse sync oscillator 3 - - - - - - - - Attack - Anschwellzeit (attack) - - - - - Rate - Rate - - - - - Phase - Phase - - - - - Pre-delay - - - - - - Hold - Haltezeit (hold) - - - - - Decay - Abfallzeit - - - - - Sustain - Haltepegel (sustain) - - - - - Release - Ausklingzeit (release) - - - - - Slope - - - - - Mix osc 2 with osc 3 - - - - - Modulate amplitude of osc 3 by osc 2 - - - - - Modulate frequency of osc 3 by osc 2 - - - - - Modulate phase of osc 3 by osc 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Modulation amount - Modulationsintensität - - - - MultitapEchoControlDialog - - - Length - Länge - - - - Step length: - - - - - Dry - Trocken - - - - Dry gain: - - - - - Stages - Stufen - - - - Low-pass stages: - - - - - Swap inputs - Eingänge vertauschen - - - - Swap left and right input channels for reflections - - - - - NesInstrument - - - Channel 1 coarse detune - - - - - Channel 1 volume - Kanal 1 Lautstärke - - - - Channel 1 envelope length - - - - - Channel 1 duty cycle - - - - - Channel 1 sweep amount - - - - - Channel 1 sweep rate - - - - - Channel 2 Coarse detune - Kanal 2 Grob-Verstimmung - - - - Channel 2 Volume - Kanal 2 Lautstärke - - - - Channel 2 envelope length - - - - - Channel 2 duty cycle - - - - - Channel 2 sweep amount - - - - - Channel 2 sweep rate - - - - - Channel 3 coarse detune - - - - - Channel 3 volume - Kanal 3 Lautstärke - - - - Channel 4 volume - Kanal 4 Lautstärke - - - - Channel 4 envelope length - - - - - Channel 4 noise frequency - - - - - Channel 4 noise frequency sweep - - - - - Master volume - Master-Lautstärke - - - - Vibrato - Vibrato - - - - NesInstrumentView - - - - - - Volume - Lautstärke - - - - - - Coarse detune - - - - - - - Envelope length - - - - - Enable channel 1 - Kanal 1 aktivieren - - - - Enable envelope 1 - - - - - Enable envelope 1 loop - - - - - Enable sweep 1 - - - - - - Sweep amount - - - - - - Sweep rate - - - - - - 12.5% Duty cycle - 12.5% Tastverhältnis - - - - - 25% Duty cycle - 25% Tastverhältnis - - - - - 50% Duty cycle - 50% Tastverhältnis - - - - - 75% Duty cycle - 75% Tastverhältnis - - - - Enable channel 2 - Kanal 2 aktivieren - - - - Enable envelope 2 - - - - - Enable envelope 2 loop - - - - - Enable sweep 2 - - - - - Enable channel 3 - Kanal 3 aktivieren - - - - Noise Frequency - Rauschfrequenz - - - - Frequency sweep - - - - - Enable channel 4 - Kanal 4 aktivieren - - - - Enable envelope 4 - - - - - Enable envelope 4 loop - - - - - Quantize noise frequency when using note frequency - - - - - Use note frequency for noise - - - - - Noise mode - Rausch Modus - - - - Master volume - Master-Lautstärke - - - - Vibrato - Vibrato - - - - OpulenzInstrument - - - Patch - Patch - - - - Op 1 attack - - - - - Op 1 decay - - - - - Op 1 sustain - - - - - Op 1 release - - - - - Op 1 level - - - - - Op 1 level scaling - - - - - Op 1 frequency multiplier - - - - - Op 1 feedback - - - - - Op 1 key scaling rate - - - - - Op 1 percussive envelope - - - - - Op 1 tremolo - - - - - Op 1 vibrato - - - - - Op 1 waveform - - - - - Op 2 attack - - - - - Op 2 decay - - - - - Op 2 sustain - - - - - Op 2 release - - - - - Op 2 level - - - - - Op 2 level scaling - - - - - Op 2 frequency multiplier - - - - - Op 2 key scaling rate - - - - - Op 2 percussive envelope - - - - - Op 2 tremolo - - - - - Op 2 vibrato - - - - - Op 2 waveform - - - - - FM - FM - - - - Vibrato depth - - - - - Tremolo depth - - - - - OpulenzInstrumentView - - - - Attack - Anschwellzeit (attack) - - - - - Decay - Abfallzeit - - - - - Release - Ausklingzeit (release) - - - - - Frequency multiplier - - - - - OscillatorObject - - - Osc %1 waveform - Oszillator %1 Wellenform - - - - Osc %1 harmonic - Oszillator %1 Harmonie - - - - - Osc %1 volume - Oszillator %1 Lautstärke - - - - - Osc %1 panning - Oszillator %1 Balance - - - - - Osc %1 fine detuning left - Oszillator %1 Fein-Verstimmung links - - - - Osc %1 coarse detuning - Oszillator %1 Grob-Verstimmung - - - - Osc %1 fine detuning right - Oszillator %1 Fein-Verstimmung rechts - - - - Osc %1 phase-offset - Oszillator %1 Phasenverschiebung - - - - Osc %1 stereo phase-detuning - Oszillator %1 Stereo Phasenverschiebung - - - - Osc %1 wave shape - Oszillator %1 Wellenform - - - - Modulation type %1 - Modulationsart %1 - - - - Oscilloscope - - - Oscilloscope - - - - - Click to enable - Klicken um zu aktivieren - - PatchesDialog + Qsynth: Channel Preset + Bank selector + Bank Bank + Program selector Programmwähler + Patch Patch + Name Name + OK OK + Cancel Abbrechen - - PatmanView - - - Open patch - - - - - Loop - Wiederholen - - - - Loop mode - Modus beim Wiederholen - - - - Tune - Stimmung - - - - Tune mode - Stimmungsmodus - - - - No file selected - Keine Datei ausgewählt - - - - Open patch file - Patch-Datei öffnen - - - - Patch-Files (*.pat) - Patch-Dateien (*.pat) - - - - MidiClipView - - - Open in piano-roll - Im Piano-Roll öffnen - - - - Set as ghost in piano-roll - - - - - Clear all notes - Alle Noten löschen - - - - Reset name - Name zurücksetzen - - - - Change name - Name ändern - - - - Add steps - Schritte hinzufügen - - - - Remove steps - Schritte entfernen - - - - Clone Steps - Schritte Klonen - - - - PeakController - - - Peak Controller - Peak Controller - - - - Peak Controller Bug - Peak Controller Fehler - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - Aufgrud eines Fehlers in einer älteren Version von LMMS, sind die Peak Controller möglicherweise nicht richtig verbunden. Bitte stellen Sie sicher, dass die Peak Controller richtig verbunden sind und speichern Sie die Datei erneut. Entschuldigung für jegliche verursachte Unannehmlichkeiten. - - - - PeakControllerDialog - - - PEAK - PEAK - - - - LFO Controller - LFO-Controller - - - - PeakControllerEffectControlDialog - - - BASE - BASE - - - - Base: - Basis - - - - AMNT - AMNT - - - - Modulation amount: - Modulationsintensität: - - - - MULT - MULT - - - - Amount multiplicator: - - - - - ATCK - ATCK - - - - Attack: - Anschwellzeit (attack): - - - - DCAY - DCAY - - - - Release: - Ausklingzeit (release): - - - - TRSH - - - - - Treshold: - Schwellwert: - - - - Mute output - Ausgang stummschalten - - - - Absolute value - - - - - PeakControllerEffectControls - - - Base value - Grundwert - - - - Modulation amount - Modulationsintensität - - - - Attack - Anschwellzeit (attack) - - - - Release - Ausklingzeit (release) - - - - Treshold - Schwellwert - - - - Mute output - Ausgang stummschalten - - - - Absolute value - - - - - Amount multiplicator - - - - - PianoRoll - - - Note Velocity - Noten-Lautstärke - - - - Note Panning - Noten-Balance - - - - Mark/unmark current semitone - Aktuellen Halbton markieren/demarkieren - - - - Mark/unmark all corresponding octave semitones - - - - - Mark current scale - Aktuelle Tonleiter markieren - - - - Mark current chord - Aktuellen Akkord markieren - - - - Unmark all - Alles Markierungen entfernen - - - - Select all notes on this key - - - - - Note lock - Notenraster - - - - Last note - Letzte Note - - - - No key - - - - - No scale - Keine Tonleiter - - - - No chord - Kein Akkord - - - - Nudge - - - - - Snap - - - - - Velocity: %1% - Lautstärke: %1% - - - - Panning: %1% left - Balance: %1% links - - - - Panning: %1% right - Balance: %1% rechts - - - - Panning: center - Balance: mittig - - - - Glue notes failed - - - - - Please select notes to glue first. - - - - - Please open a clip by double-clicking on it! - Bitte öffnen Sie einen Pattern, indem Sie ihn doppelklicken! - - - - - Please enter a new value between %1 and %2: - Bitte geben Sie einen neuen Wert zwischen %1 und %2 ein: - - - - PianoRollWindow - - - Play/pause current clip (Space) - Aktuelles Pattern abspielen/pausieren (Leertaste) - - - - Record notes from MIDI-device/channel-piano - Zeichnet Noten von einem MIDI-Gerät/Kanal Piano auf - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - - - - - Record notes from MIDI-device/channel-piano, one step at the time - - - - - Stop playing of current clip (Space) - Abspielen des aktuellen Patterns stoppen (Leertaste) - - - - Edit actions - Aktionen bearbeiten - - - - Draw mode (Shift+D) - Zeichnenmodus (Umschalt+D) - - - - Erase mode (Shift+E) - Radiermodus (Umschalt+E) - - - - Select mode (Shift+S) - Auswahl-Modus (Umschalt+S) - - - - Pitch Bend mode (Shift+T) - - - - - Quantize - Quantisiere - - - - Quantize positions - - - - - Quantize lengths - - - - - File actions - - - - - Import clip - - - - - - Export clip - - - - - Copy paste controls - - - - - Cut (%1+X) - - - - - Copy (%1+C) - - - - - Paste (%1+V) - - - - - Timeline controls - Zeitstrahlregler - - - - Glue - - - - - Knife - - - - - Fill - - - - - Cut overlaps - - - - - Min length as last - - - - - Max length as last - - - - - Zoom and note controls - - - - - Horizontal zooming - Horizontales Zoomen - - - - Vertical zooming - Vertikales Zoomen - - - - Quantization - Quantisierung - - - - Note length - Notenlänge - - - - Key - - - - - Scale - - - - - Chord - Akkord - - - - Snap mode - - - - - Clear ghost notes - - - - - - Piano-Roll - %1 - - - - - - Piano-Roll - no clip - - - - - - XML clip file (*.xpt *.xptz) - - - - - Export clip success - - - - - Clip saved to %1 - - - - - Import clip. - - - - - You are about to import a clip, this will overwrite your current clip. Do you want to continue? - - - - - Open clip - - - - - Import clip success - - - - - Imported clip %1! - - - - - PianoView - - - Base note - Grundton - - - - First note - - - - - Last note - Letzte Note - - - - Plugin - - - Plugin not found - Plugin nicht gefunden - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - Das Plugin »%1« konnte nicht gefunden oder geladen werden! -Grund: »%2« - - - - Error while loading plugin - Fehler beim Laden des Plugins - - - - Failed to load plugin "%1"! - Das Plugin »%1« konnte nicht geladen werden! - - PluginBrowser - - Instrument Plugins - - - - - Instrument browser - Instrument-Browser - - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - Ziehen Sie ein Instrument entweder in den Song-Editor, den Beat+Bassline-Editor oder in eine existierende Instrumentspur. - - - + no description keine Beschreibung - + A native amplifier plugin Ein natives Verstärker-Plugin - + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track Einfacher Sampler mit verschiedenen Einstellungen zum Benutzen von Samples (z.B. Trommeln) in einer Instrumentenspur - + Boost your bass the fast and simple way Verstärken Sie Ihren Bass auf schnellen und einfachen Wege - + Customizable wavetable synthesizer Flexibler Wavetable-Synthesizer - + An oversampling bitcrusher - + Carla Patchbay Instrument Carla Patchbay Instrument - + Carla Rack Instrument Carla Rack Instrument - + A dynamic range compressor. - + A 4-band Crossover Equalizer Ein 4-Band Crossover Equalizer - + A native delay plugin Ein natives Verzögerung-Plugin - + A Dual filter plugin Ein doppel Fliter Plugin - + plugin for processing dynamics in a flexible way Ein Plugin, um Dynamik auf Flexible Weise zu verarbeiten - + A native eq plugin Ein natives EQ-Plugin - + A native flanger plugin Ein natives Flanger-Plugin - + Emulation of GameBoy (TM) APU Emulation des GameBoy (TM) APU - + Player for GIG files - + Filter for importing Hydrogen files into LMMS Filter zum importieren von Hydrogendateien in LMMS - + Versatile drum synthesizer Vielseitiger Trommel-Synthesizer - + List installed LADSPA plugins Installierte LADSPA-Plugins auflisten - + plugin for using arbitrary LADSPA-effects inside LMMS. Plugin, um beliebige LADSPA-Effekte in LMMS nutzen zu können. - + Incomplete monophonic imitation TB-303 - Unvollständiger monophonischer TB303-Klon + - + plugin for using arbitrary LV2-effects inside LMMS. - + plugin for using arbitrary LV2 instruments inside LMMS. - + Filter for exporting MIDI-files from LMMS - + Filter for importing MIDI-files into LMMS Filter, um MIDI-Dateien in LMMS zu importieren - + Monstrous 3-oscillator synth with modulation matrix Monströser 3-Oszillator Synth mit Modulationsmatrix - + A multitap echo delay plugin - + A NES-like synthesizer Ein NES ähnlicher Synthesizer - + 2-operator FM Synth 2-Operator FM-Synth - + Additive Synthesizer for organ-like sounds Additiver Synthesizer für orgelähnliche Klänge - + GUS-compatible patch instrument GUS-kompatibles Patch-Instrument - + Plugin for controlling knobs with sound peaks Plugin zur Kontrolle von Knöpfen mit Hilfe von Klangspitzen - + Reverb algorithm by Sean Costello Hallalgorithmus von Sean Costello - + Player for SoundFont files Wiedergabe von SoundFont-Dateien - + LMMS port of sfxr LMMS-Portierung von sfxr - + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Emulation des MOS6581 und MOS8580 SID Chips. Dieser Chip wurde in Commodore 64 Computern genutzt. - + A graphical spectrum analyzer. - + Plugin for enhancing stereo separation of a stereo input file Plugin zur Erweiterung des Stereo-Klangeindrucks - + Plugin for freely manipulating stereo output Plugin zur freien Manipulation der Stereoausgabe - + Tuneful things to bang on Gegenstände, die nach etwas klingen, wenn man drauf rumkloppt - + Three powerful oscillators you can modulate in several ways Drei mächtige Oszillatoren, die Sie auf mehrere Weisen modulieren können - + A stereo field visualizer. - + VST-host for using VST(i)-plugins within LMMS VST-Host zum Benutzen von VST(i)-Plugins innerhalb von LMMS - + Vibrating string modeler Modellierung schwingender Saiten - + plugin for using arbitrary VST effects inside LMMS. Plugin um beliebige VST-Effekte in LMMS zu benutzen. - + 4-oscillator modulatable wavetable synth 4-Oszillator modulierbarer Wellenformtabellen Synth - + plugin for waveshaping Plugin für Wellenformen - + Mathematical expression parser - + Embedded ZynAddSubFX Eingebettetes ZynAddSubFX-Plugin - - - PluginDatabaseW - - Carla - Add New + + An all-pass filter allowing for extremely high orders. - - Format + + Granular pitch shifter - - Internal + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. - - LADSPA + + Basic Slicer - - DSSI - - - - - LV2 - - - - - VST2 - - - - - VST3 - - - - - AU - - - - - Sound Kits - - - - - Type - Typ - - - - Effects - Effekte - - - - Instruments - Instrumente - - - - MIDI Plugins - - - - - Other/Misc - - - - - Architecture - - - - - Native - - - - - Bridged - - - - - Bridged (Wine) - - - - - Requirements - - - - - With Custom GUI - - - - - With CV Ports - - - - - Real-time safe only - - - - - Stereo only - - - - - With Inline Display - - - - - Favorites only - - - - - (Number of Plugins go here) - - - - - &Add Plugin - - - - - Cancel - Abbrechen - - - - Refresh - - - - - Reset filters - - - - - - - - - - - - - - - - - - - - TextLabel - - - - - Format: - - - - - Architecture: - - - - - Type: - Typ: - - - - MIDI Ins: - - - - - Audio Ins: - - - - - CV Outs: - - - - - MIDI Outs: - - - - - Parameter Ins: - - - - - Parameter Outs: - - - - - Audio Outs: - - - - - CV Ins: - - - - - UniqueID: - - - - - Has Inline Display: - - - - - Has Custom GUI: - - - - - Is Synth: - - - - - Is Bridged: - - - - - Information - - - - - Name - Name - - - - Label/URI - - - - - Maker - - - - - Binary/Filename - - - - - Focus Text Search - - - - - Ctrl+F + + Tap to the beat @@ -10820,93 +3459,98 @@ Dieser Chip wurde in Commodore 64 Computern genutzt. - Send Bank/Program Changes + Send Notes - Send Control Changes + Send Bank/Program Changes - Send Channel Pressure + Send Control Changes - Send Note Aftertouch + Send Channel Pressure - Send Pitchbend + Send Note Aftertouch + Send Pitchbend + + + + Send All Sound/Notes Off - + Plugin Name - + Program: - + MIDI Program: - + Save State - + Load State - + Information - + Label/URI: - + Name: - + Type: Typ: - + Maker: - + Copyright: - + Unique ID: @@ -10914,16 +3558,457 @@ Plugin Name PluginFactory - + Plugin not found. Plugin nicht gefunden - + LMMS plugin %1 does not have a plugin descriptor named %2! + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + PluginParameter @@ -10938,157 +4023,61 @@ Plugin Name + TextLabel + + + + ... - PluginRefreshW + PluginRefreshDialog - - Carla - Refresh + + Plugin Refresh - - Search for new... + + Search for: - - LADSPA + + All plugins, ignoring cache - - DSSI + + Updated plugins only - - LV2 + + Check previously invalid plugins - - VST2 - - - - - VST3 - - - - - AU - - - - - SF2/3 - - - - - SFZ - - - - - Native - - - - - POSIX 32bit - - - - - POSIX 64bit - - - - - Windows 32bit - - - - - Windows 64bit - - - - - Available tools: - - - - - python3-rdflib (LADSPA-RDF support) - - - - - carla-discovery-win64 - - - - - carla-discovery-native - - - - - carla-discovery-posix32 - - - - - carla-discovery-posix64 - - - - - carla-discovery-win32 - - - - - Options: - - - - - Carla will run small processing checks when scanning the plugins (to make sure they won't crash). -You can disable these checks to get a faster scanning time (at your own risk). - - - - - Run processing checks while scanning - - - - + Press 'Scan' to begin the search - + Scan - + >> Skip - + Close - Schließen + @@ -11103,50 +4092,50 @@ You can disable these checks to get a faster scanning time (at your own risk). - + Enable - + On/Off An/aus - + - + PluginName - + MIDI MIDI - + AUDIO IN - + AUDIO OUT - + GUI - + Edit - + Remove @@ -11161,2285 +4150,13561 @@ You can disable these checks to get a faster scanning time (at your own risk). - - ProjectNotes - - - Project Notes - Zeige/verstecke Projekt-Notizen - - - - Enter project notes here - - - - - Edit Actions - - - - - &Undo - &Rückgängig - - - - %1+Z - %1+Z - - - - &Redo - &Wiederholen - - - - %1+Y - %1+Y - - - - &Copy - &Kopieren - - - - %1+C - %1+C - - - - Cu&t - Schnei&de - - - - %1+X - %1+X - - - - &Paste - &Einfügen - - - - %1+V - %1+V - - - - Format Actions - - - - - &Bold - &Fett - - - - %1+B - %1+B - - - - &Italic - &Kursiv - - - - %1+I - %1+l - - - - &Underline - &Unterstrichen - - - - %1+U - %1+U - - - - &Left - &Links - - - - %1+L - %1+L - - - - C&enter - Z&entrum - - - - %1+E - %1+E - - - - &Right - &Rechts - - - - %1+R - %1+R - - - - &Justify - - - - - %1+J - %1+J - - - - &Color... - &Farbe... - - ProjectRenderer - + WAV (*.wav) WAV (*.wav) - + FLAC (*.flac) FLAC (*.flac) - + OGG (*.ogg) OGG (*.ogg) - + MP3 (*.mp3) MP3 (*.mp3) + + QGroupBox + + + + Settings for %1 + + + QObject - + Reload Plugin - + Show GUI GUI anzeigen - + Help Hilfe + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + QWidget - - - - + + Name: Name: - - URI: - - - - - - + Maker: Hersteller: - - - + Copyright: Copyright: - - + Requires Real Time: Benötigt Echtzeit: - - - - - - + + + Yes Ja - - - - - - + + + No Nein - - + Real Time Capable: Echtzeitfähig: - - + In Place Broken: Operationen nicht In-Place: - - + Channels In: Eingangs-Kanäle: - - + Channels Out: Ausgangs-Kanäle: - + File: %1 Datei: %1 - + File: Datei: - RecentProjectsMenu + XYControllerW - - &Recently Opened Projects - &Zuletzt geöffnete Projekte + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + - RenameDialog + lmms::AmplifierControls - - Rename... - Umbenennen... + + Volume + + + + + Panning + + + + + Left gain + + + + + Right gain + - ReverbSCControlDialog + lmms::AudioFileProcessor - - Input - Eingang + + Amplify + - - Input gain: - Eingangsverstärkung: + + Start of sample + - - Size - Größe + + End of sample + - - Size: - Größe: + + Loopback point + - - Color - Farbe + + Reverse sample + - - Color: - Farbe: + + Loop mode + - - Output - Ausgang + + Stutter + - - Output gain: - Ausgabeverstärkung: + + Interpolation mode + + + + + None + + + + + Linear + + + + + Sinc + + + + + Sample not found + - ReverbSCControls + lmms::AudioJack - + + JACK client restarted + + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + + + + + Client name + + + + + Channels + + + + + lmms::AudioOss + + + Device + + + + + Channels + + + + + lmms::AudioPortAudio::setupWidget + + + Backend + + + + + Device + + + + + lmms::AudioPulseAudio + + + Device + + + + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + + + + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + + Gain + + + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + Input gain - Eingangsverstärkung + - - Size - Größe + + Input noise + - - Color - Farbe + + Output gain + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + + + + + Output gain + + + + + Attack time + + + + + Release time + + + + + Stereo mode + + + + + lmms::Effect + + + Effect enabled + + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + + + + + Denominator + + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + Input gain + + + + + Size + + + + + Color + + + + Output gain - Ausgabeverstärkung + - SaControls + lmms::SaControls - + Pause - + Reference freeze - + Waterfall - + Averaging - - - Stereo - Stereo - - - - Peak hold - - - Logarithmic frequency + Stereo - Logarithmic amplitude + Peak hold + + + + + Logarithmic frequency - Frequency range - - - - - Amplitude range - - - - - FFT block size + Logarithmic amplitude - FFT window type + Frequency range + + + + + Amplitude range + + + + + FFT block size - Peak envelope resolution - - - - - Spectrum display resolution - - - - - Peak decay multiplier + FFT window type - Averaging weight + Peak envelope resolution - Waterfall history size + Spectrum display resolution - Waterfall gamma correction + Peak decay multiplier - FFT window overlap + Averaging weight + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + FFT zero padding - - + + Full (auto) - - + + Audible - + Bass - Bass + - + Mids - Mitten - - - - High - Höhen + + High + + + + Extended - + Loud - Laut + - + Silent - Leise + - + (High time res.) - + (High freq. res.) - + Rectangular (Off) - + Blackman-Harris (Default) - + Hamming - + Hanning - SaControlsDialog + lmms::SampleClip - - Pause - - - - - Pause data acquisition - - - - - Reference freeze - - - - - Freeze current input as a reference / disable falloff in peak-hold mode. - - - - - Waterfall - - - - - Display real-time spectrogram - - - - - Averaging - - - - - Enable exponential moving average - - - - - Stereo - Stereo - - - - Display stereo channels separately - - - - - Peak hold - - - - - Display envelope of peak values - - - - - Logarithmic frequency - - - - - Switch between logarithmic and linear frequency scale - - - - - - Frequency range - - - - - Logarithmic amplitude - - - - - Switch between logarithmic and linear amplitude scale - - - - - - Amplitude range - - - - - Envelope res. - - - - - Increase envelope resolution for better details, decrease for better GUI performance. - - - - - - Draw at most - - - - - envelope points per pixel - - - - - Spectrum res. - - - - - Increase spectrum resolution for better details, decrease for better GUI performance. - - - - - spectrum points per pixel - - - - - Falloff factor - - - - - Decrease to make peaks fall faster. - - - - - Multiply buffered value by - - - - - Averaging weight - - - - - Decrease to make averaging slower and smoother. - - - - - New sample contributes - - - - - Waterfall height - - - - - Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. - - - - - Keep - - - - - lines - - - - - Waterfall gamma - - - - - Decrease to see very weak signals, increase to get better contrast. - - - - - Gamma value: - - - - - Window overlap - - - - - Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. - - - - - Each sample processed - Jedes Sample verarbeitet - - - - times - - - - - Zero padding - - - - - Increase to get smoother-looking spectrum. Warning: high CPU usage. - - - - - Processing buffer is - - - - - steps larger than input block - - - - - Advanced settings - - - - - Access advanced settings - - - - - - FFT block size - - - - - - FFT window type + + Sample not found - SampleBuffer + lmms::SampleTrack - - Fail to open file - Konnte Datei nicht öffnen - - - - Audio files are limited to %1 MB in size and %2 minutes of playing time - - - - - Open audio file - Audiodatei öffnen - - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - Alle Audiodateien (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - - Wave-Files (*.wav) - Wave-Dateien (*.wav) - - - - OGG-Files (*.ogg) - OGG-Dateien (*.ogg) - - - - DrumSynth-Files (*.ds) - DrumSynth-Dateien (*.ds) - - - - FLAC-Files (*.flac) - FLAC-Dateien (*.flac) - - - - SPEEX-Files (*.spx) - SPEEX-Dateien (*.spx) - - - - VOC-Files (*.voc) - VOC-Dateien (*.voc) - - - - AIFF-Files (*.aif *.aiff) - AIFF-Dateien (*.aif *.aiff) - - - - AU-Files (*.au) - AU-Dateien (*.au) - - - - RAW-Files (*.raw) - RAW-Dateien (*.raw) - - - - SampleClipView - - - Double-click to open sample - - - - - Delete (middle mousebutton) - Löschen (mittlere Maustaste) - - - - Delete selection (middle mousebutton) - - - - - Cut - Ausschneiden - - - - Cut selection - - - - - Copy - Kopieren - - - - Copy selection - - - - - Paste - Einfügen - - - - Mute/unmute (<%1> + middle click) - Stumm/Laut schalten (<Strg> + Mittelklick) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Reverse sample - Sample umkehren - - - - Set clip color - - - - - Use track color - - - - - SampleTrack - - + Volume - Lautstärke + - + Panning - Balance + - + Mixer channel - FX-Kanal + - - + + Sample track - Samplespur - - - - SampleTrackView - - - Track volume - Lautstärke der Spur - - - - Channel volume: - Kanal Lautstärke: - - - - VOL - VOL - - - - Panning - Balance - - - - Panning: - Balance: - - - - PAN - PAN - - - - Channel %1: %2 - FX %1: %2 - - - - SampleTrackWindow - - - GENERAL SETTINGS - GRUNDLEGENDE EINSTELLUNGEN - - - - Sample volume - - - - - Volume: - Lautstärke: - - - - VOL - VOL - - - - Panning - Balance - - - - Panning: - Balance: - - - - PAN - PAN - - - - Mixer channel - FX-Kanal - - - - CHANNEL - FX - - - - SaveOptionsWidget - - - Discard MIDI connections - - - - - Save As Project Bundle (with resources) - SetupDialog + lmms::Scale - - Reset to default value + + empty - - - Use built-in NaN handler - - - - - Settings - Einstellungen - - - - - General - - - - - Graphical user interface (GUI) - - - - - Display volume as dBFS - - - - - Enable tooltips - Tooltips aktivieren - - - - Enable master oscilloscope by default - - - - - Enable all note labels in piano roll - - - - - Enable compact track buttons - - - - - Enable one instrument-track-window mode - - - - - Show sidebar on the right-hand side - - - - - Let sample previews continue when mouse is released - - - - - Mute automation tracks during solo - - - - - Show warning when deleting tracks - - - - - Projects - - - - - Compress project files by default - - - - - Create a backup file when saving a project - - - - - Reopen last project on startup - - - - - Language - Sprache - - - - - Performance - - - - - Autosave - - - - - Enable autosave - - - - - Allow autosave while playing - - - - - User interface (UI) effects vs. performance - - - - - Smooth scroll in song editor - - - - - Display playback cursor in AudioFileProcessor - - - - - Plugins - Plugins - - - - VST plugins embedding: - - - - - No embedding - - - - - Embed using Qt API - - - - - Embed using native Win32 API - - - - - Embed using XEmbed protocol - - - - - Keep plugin windows on top when not embedded - - - - - Sync VST plugins to host playback - - - - - Keep effects running even without input - - - - - - Audio - Audio - - - - Audio interface - - - - - HQ mode for output audio device - - - - - Buffer size - - - - - - MIDI - MIDI - - - - MIDI interface - - - - - Automatically assign MIDI controller to selected track - - - - - LMMS working directory - LMMS-Arbeitsverzeichnis - - - - VST plugins directory - - - - - LADSPA plugins directories - - - - - SF2 directory - SF2 Verzeichniss - - - - Default SF2 - - - - - GIG directory - GIG Verzeichniss - - - - Theme directory - - - - - Background artwork - - - - - Some changes require restarting. - - - - - Autosave interval: %1 - - - - - Choose the LMMS working directory - LMMS-Arbeitsverzeichnis wählen - - - - Choose your VST plugins directory - Wählen Sie Ihr VST-Plugin-Verzeichnis - - - - Choose your LADSPA plugins directory - Wählen Sie Ihr LADSPA-Plugin-Verzeichnis - - - - Choose your default SF2 - Wählen Sie Ihr Standard SF2 - - - - Choose your theme directory - Wählen Sie Ihr Theme-Verzeichnis - - - - Choose your background picture - Wählen Sie Ihr Hintergrundbild - - - - - Paths - Pfade - - - - OK - OK - - - - Cancel - Abbrechen - - - - Frames: %1 -Latency: %2 ms - Frames: %1 -Latenz: %2 ms - - - - Choose your GIG directory - Wählen Sie Ihr CIG-Verzeichnis aus - - - - Choose your SF2 directory - Wählen Sie Ihr SF2-Verzeichnis aus - - - - minutes - Minutes - - - - minute - Minute - - - - Disabled - Deaktiviert - - SidInstrument + lmms::Sf2Instrument - + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + Cutoff frequency - Kennfrequenz + - + Resonance - Resonanz + + + + + Filter type + - Filter type - Filtertyp - - - Voice 3 off - Stimme 3 lautlos + - + Volume - Lautstärke + - + Chip model - Chipmodell - - - - SidInstrumentView - - - Volume: - Lautstärke: - - - - Resonance: - Resonanz: - - - - - Cutoff frequency: - Kennfrequenz: - - - - High-pass filter - - - - - Band-pass filter - - - - - Low-pass filter - - - - - Voice 3 off - - - - - MOS6581 SID - MOS6581 SID - - - - MOS8580 SID - MOS8580 SID - - - - - Attack: - Anschwellzeit (attack): - - - - - Decay: - Abfallzeit (decay): - - - - Sustain: - Dauerpegel (sustain): - - - - - Release: - Ausklingzeit (release): - - - - Pulse Width: - Pulsweite: - - - - Coarse: - Grob: - - - - Pulse wave - - - - - Triangle wave - Dreieckwelle - - - - Saw wave - Sägezahnwelle - - - - Noise - Rauschen - - - - Sync - Synchron - - - - Ring modulation - - - - - Filtered - Gefiltert - - - - Test - Test - - - - Pulse width: - SideBarWidget + lmms::SlicerT - - Close - Schließen + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + - Song + lmms::Song - + Tempo - Tempo + - + Master volume - Master-Lautstärke + - + Master pitch - Master-Tonhöhe - - - - Aborting project load + Aborting project load + + + + Project file contains local paths to plugins, which could be used to run malicious code. - + Can't load project: Project file contains local paths to plugins. - + LMMS Error report - + (repeated %1 times) - + The following errors occurred while loading: - SongEditor + lmms::StereoEnhancerControls - - Could not open file - Konnte Datei nicht öffnen + + Width + + + + + lmms::StereoMatrixControls + + + Left to Left + - + + Left to Right + + + + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + + + + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. - Konnte die Datei %1 nicht öffnen. Sie sind wahrscheinlich nicht berechtigt, diese Datei zu lesen. Bitte stellen Sie sicher, dass Sie wenigstens Leserechte auf diese Datei besitzen und versuchen es erneut. + - + Operation denied - + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. - - - + + + Error - Fehler + - + Couldn't create bundle folder. - + Couldn't create resources folder. - + Failed to copy resources. - + + Could not write file - Konnte Datei nicht schreiben - - - - Could not open %1 for writing. You probably are not permitted towrite to this file. Please make sure you have write-access to the file and try again. - + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + This %1 was created with LMMS %2 - - Error in file - Fehler in Datei + + Zoom + - - The file %1 seems to contain errors and therefore can't be loaded. - Die Datei %1 scheint fehlerhaft zu sein und kann daher nicht geladen werden. - - - - Version difference - Versionsunterschiede - - - - template - Vorlage - - - - project - Projekt - - - + Tempo - Tempo + - + TEMPO - + Tempo in BPM - - High quality mode - High-Quality-Modus - - - - - + + + Master volume - Master-Lautstärke + - - - - Master pitch - Master-Tonhöhe + + + + Global transposition + - + + 1/%1 Bar + + + + + %1 Bars + + + + Value: %1% - Wert: %1% + - - Value: %1 semitones - Wert: %1 Halbtöne + + Value: %1 keys + - SongEditorWindow + lmms::gui::SongEditorWindow - + Song-Editor - Song-Editor + - + Play song (Space) - Spiele Song ab (Leertaste) + - + Record samples from Audio-device - - Record samples from Audio-device while playing song or BB track + + Record samples from Audio-device while playing song or pattern track - + Stop song (Space) - Song anhalten (Leertaste) + - + Track actions - - Add beat/bassline - Beat/Bassline hinzufügen + + Add pattern-track + - + Add sample-track - Sample Spur hinzufügen + - + Add automation-track - Automation-Spur hinzufügen + - + Edit actions - Aktionen bearbeiten + - + Draw mode - Zeichenmodus + - + Knife mode (split sample clips) - + Edit mode (select and move) - + Timeline controls - Zeitstrahlregler + - + Bar insert controls - + Insert bar - + Remove bar - + Zoom controls - Zoom Regler + + - Horizontal zooming - Horizontales Zoomen + Zoom + - + Snap controls - - + + Clip snapping size - + Toggle proportional snap on/off - + Base snapping size - StepRecorderWidget + lmms::gui::StepRecorderWidget - + Hint - Tipp + - + Move recording curser using <Left/Right> arrows - SubWindow + lmms::gui::StereoEnhancerControlDialog - + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + Close - Schließen + - + Maximize - Maximieren + - + Restore - Wiederherstellen + - TabWidget + lmms::gui::TapTempoView - - - Settings for %1 - Einstellungen für %1 + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + - TemplatesMenu + lmms::gui::TemplatesMenu - + New from template - Neu von Vorlage + - TempoSyncKnob + lmms::gui::TempoSyncBarModelEditor - - + + Tempo Sync - Tempo-Synchronisation + - + No Sync - Keine Synchronisation + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + No Sync + + + + Eight beats - Acht Schläge + - + Whole note - Ganze Note + - + Half note - Halbe Note + - + Quarter note - Viertelnote + - + 8th note - Achtelnote - - - - 16th note - 16tel Note + + 16th note + + + + 32nd note - 32tel Note + - + Custom... - Benutzerdefiniert... + - + Custom - Benutzerdefiniert - - - - Synced to Eight Beats - Mit acht Schlägen synchronisiert + - Synced to Whole Note - Mit ganzer Note synchronisiert + Synced to Eight Beats + - Synced to Half Note - Mit halber Note synchronisiert + Synced to Whole Note + - Synced to Quarter Note - Mit Viertelnote synchronisiert + Synced to Half Note + - Synced to 8th Note - Mit Achtelnote synchronisiert + Synced to Quarter Note + - Synced to 16th Note - Mit 16tel Note synchronisiert + Synced to 8th Note + + Synced to 16th Note + + + + Synced to 32nd Note - Mit 32tel Note synchronisiert + - TimeDisplayWidget + lmms::gui::TimeDisplayWidget - + Time units - - - MIN - MIN - - SEC - SEC + MIN + - MSEC - MSEC + SEC + - - BAR - BAR + + MSEC + - BEAT - BEAT + BAR + + BEAT + + + + TICK - TICK + - TimeLineWidget + lmms::gui::TimeLineWidget - + Auto scrolling - + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + Loop points - + After stopping go back to beginning - + After stopping go back to position at which playing was started - + After stopping keep position - Nach dem Anhalten Position beibehalten + - + Hint - Tipp + - + Press <%1> to disable magnetic loop points. - Drücken Sie <%1>, um magnetische Loop-Punkte zu deaktivieren. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + - Track + lmms::gui::TrackContentWidget - - Mute - Stumm - - - - Solo - Solo - - - - TrackContainer - - - Couldn't import file - Datei konnte nicht importiert werden - - - - Couldn't find a filter for importing file %1. -You should convert this file into a format supported by LMMS using another software. - Es konnte kein Filter gefunden werden, um die Datei %1 zu importieren. -Sie sollten diese Datei mit Hilfe anderer Software in ein von LMMS unterstützes Format umwandeln. - - - - Couldn't open file - Datei konnte nicht geöffnet werden - - - - Couldn't open file %1 for reading. -Please make sure you have read-permission to the file and the directory containing the file and try again! - Datei %1 konnte nicht zum Lesen geöffnet werden. -Bitte stellen Sie sicher, dass Sie Leserechte auf diese Datei sowie das Verzeichnis besitzen und probieren es erneut! - - - - Loading project... - Lade Projekt… - - - - - Cancel - Abbrechen - - - - - Please wait... - Bitte warten… - - - - Loading cancelled - Laden abgebrochen - - - - Project loading was cancelled. - - - - - Loading Track %1 (%2/Total %3) - - - - - Importing MIDI-file... - Importiere MIDI-Datei… - - - - Clip - - - Mute - Stumm - - - - ClipView - - - Current position - Aktuelle Position - - - - Current length - Aktuelle Länge - - - - - %1:%2 (%3:%4 to %5:%6) - - - - - Press <%1> and drag to make a copy. - <%1> drücken und ziehen, um eine Kopie zu erstellen. - - - - Press <%1> for free resizing. - Drücken Sie <%1> für freie Größenänderung. - - - - Hint - Tipp - - - - Delete (middle mousebutton) - Löschen (mittlere Maustaste) - - - - Delete selection (middle mousebutton) - - - - - Cut - Ausschneiden - - - - Cut selection - - - - - Merge Selection - - - - - Copy - Kopieren - - - - Copy selection - - - - + Paste - Einfügen - - - - Mute/unmute (<%1> + middle click) - Stumm/Laut schalten (<Strg> + Mittelklick) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Set clip color - - - - - Use track color - TrackContentWidget + lmms::gui::TrackOperationsWidget - - Paste - Einfügen - - - - TrackOperationsWidget - - + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. @@ -13452,257 +17717,249 @@ Bitte stellen Sie sicher, dass Sie Leserechte auf diese Datei sowie das Verzeich Mute - Stumm + Solo - Solo + - + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? - + Confirm removal - + Don't ask again - + Clone this track - Diese Spur klonen + - + Remove this track - Diese Spur entfernen + + + + + Clear this track + - Clear this track - Diese Spur leeren - - - Channel %1: %2 - FX %1: %2 + - + Assign to new Mixer Channel - + Turn all recording on - Alle Aufnahmen einschalten - - - - Turn all recording off - Alle Aufnahmen ausschalten - - - - Change color - Farbe ändern - - - - Reset color to default - Farbe auf Standard zurücksetzen - - - - Set random color - - Clear clip colors + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors - TripleOscillatorView + lmms::gui::TripleOscillatorView - + Modulate phase of oscillator 1 by oscillator 2 - + Modulate amplitude of oscillator 1 by oscillator 2 - + Mix output of oscillators 1 & 2 - + Synchronize oscillator 1 with oscillator 2 - Synchronisiere Oszillator 1 mit Oszillator 2 - - - - Modulate frequency of oscillator 1 by oscillator 2 + Modulate frequency of oscillator 1 by oscillator 2 + + + + Modulate phase of oscillator 2 by oscillator 3 - + Modulate amplitude of oscillator 2 by oscillator 3 - + Mix output of oscillators 2 & 3 - + Synchronize oscillator 2 with oscillator 3 - Synchronisiere Oszillator 2 mit Oszillator 3 + - + Modulate frequency of oscillator 2 by oscillator 3 - + Osc %1 volume: - Oszillator %1 Lautstärke: + - + Osc %1 panning: - Oszillator %1 Balance: + - - Osc %1 coarse detuning: - Oszillator %1 Grob-Verstimmung: - - - - semitones - Halbtöne - - - - Osc %1 fine detuning left: - Oszillator %1 Fein-Verstimmung links: - - - + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + cents - Cent + - + Osc %1 fine detuning right: - Oszillator %1 Fein-Verstimmung rechts: + - + Osc %1 phase-offset: - Oszillator %1 Phasenverschiebung: + - - + + degrees - Grad + - + Osc %1 stereo phase-detuning: - Oszillator %1 Stereo Phasenverschiebung: + - + Sine wave - Sinuswelle + - + Triangle wave - Dreieckwelle + - + Saw wave - Sägezahnwelle + - + Square wave - Rechteckwelle + - + Moog-like saw wave - + Exponential wave - Exponentielle Welle + - + White noise - Weißes Rauschen + - + User-defined wave - Benutzerdefinierte Welle - - - - VecControls - - - Display persistence amount - - Logarithmic scale - - - - - High quality + + Use alias-free wavetable oscillators. - VecControlsDialog + lmms::gui::VecControlsDialog - + HQ - + Double the resolution and simulate continuous analog-like trace. @@ -13717,2618 +17974,782 @@ Bitte stellen Sie sicher, dass Sie Leserechte auf diese Datei sowie das Verzeich - + Persist. - + Trace persistence: higher amount means the trace will stay bright for longer time. - + Trace persistence - VersionedSaveDialog - - - Increment version number - Versionsnummer erhöhen - + lmms::gui::VersionedSaveDialog - Decrement version number - Versionsnummer vermindern + Increment version number + - + + Decrement version number + + + + Save Options - + already exists. Do you want to replace it? - existiert bereits. Möchten Sie es ersetzen? + - VestigeInstrumentView + lmms::gui::VestigeInstrumentView - - + + Open VST plugin - + Control VST plugin from LMMS host - + Open VST plugin preset - + Previous (-) - Vorheriges (-) + - + Save preset - Preset speichern + - + Next (+) - Nächstes (+) + - + Show/hide GUI - GUI zeigen/verstecken + - + Turn off all notes - Alle Noten ausschalten + - + DLL-files (*.dll) - DLL-Dateien (*.dll) + - + EXE-files (*.exe) - EXE-Dateien (*.exe) + - + + SO-files (*.so) + + + + No VST plugin loaded - + Preset - Preset + - + by - von + - + - VST plugin control - - VST Plugin Controller + - VstEffectControlDialog + lmms::gui::VibedView - - Show/hide - Anzeigen/ausblenden + + Enable waveform + - + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + + + + Control VST plugin from LMMS host - + Open VST plugin preset - + Previous (-) - Vorheriges (-) + - + Next (+) - Nächstes (+) + - + Save preset - Preset speichern + - - + + Effect by: - Effekt von: + - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + - VstPlugin + lmms::gui::WatsynView - - - The VST plugin %1 could not be loaded. - Das VST Plugin %1 konnte nicht geladen werden. + + + + + Volume + - - Open Preset - Preset öffnen - - - - - Vst Plugin Preset (*.fxp *.fxb) - VST-Plugin-Preset (*.fxp *.fxb) - - - - : default - : Standard - - - - Save Preset - Preset speichern - - - - .fxp - .fxp - - - - .FXP - .FXP - - - - .FXB - .FXB - - - - .fxb - .fxb - - - - Loading plugin - Lade Plugin - - - - Please wait while loading VST plugin... - Bitte warten, während das VST-Plugin geladen wird… - - - - WatsynInstrument - - - Volume A1 - Lautstärke A1 - - - - Volume A2 - Lautstärke A2 - - - - Volume B1 - Lautstärke B1 - - - - Volume B2 - Lautstärke B2 - - - - Panning A1 - Balance A1 - - - - Panning A2 - Balance A2 - - - - Panning B1 - Balance B1 - - - - Panning B2 - Balance B2 - - - - Freq. multiplier A1 - Frequenzmultiplikator-A1 - - - - Freq. multiplier A2 - Frequenzmultiplikator-A2 - - - - Freq. multiplier B1 - Frequenzmultiplikator-B1 - - - - Freq. multiplier B2 - Frequenzmultiplikator-B2 - - - - Left detune A1 - Links-Verstimmung A1 - - - - Left detune A2 - Links-Verstimmung A2 - - - - Left detune B1 - Links-Verstimmung B1 - - - - Left detune B2 - Links-Verstimmung B2 - - - - Right detune A1 - Rechts-Verstimmung A1 - - - - Right detune A2 - Rechts-Verstimmung A2 - - - - Right detune B1 - Rechts-Verstimmung B1 - - - - Right detune B2 - Rechts-Verstimmung B2 - - - - A-B Mix - A-B Mischung - - - - A-B Mix envelope amount - A-B Mischung Hüllkurvenintensität - - - - A-B Mix envelope attack - A-B Mischung Hüllkurvenanschwellzeit - - - - A-B Mix envelope hold - A-B Mischung Hüllkurvenhaltezeit - - - - A-B Mix envelope decay - A-B Mischung Hüllkurvenabfallzeit - - - - A1-B2 Crosstalk - A1-B2 Überlagerung - - - - A2-A1 modulation - A2-A1 Modulation - - - - B2-B1 modulation - B2-B1 Modulation - - - - Selected graph - Ausgewählter Graph - - - - WatsynView - + + - - - Volume - Lautstärke + Panning + + + - - - Panning - Balance - - - - - - Freq. multiplier - - - - + + + + Left detune + + + + + + - - - - - - cents - Cent + - - - - + + + + Right detune - + A-B Mix - A-B Mischung + - + Mix envelope amount - + Mix envelope attack - Hüllenkurvenanstieg mischen + - + Mix envelope hold - + Mix envelope decay - + Crosstalk - + Select oscillator A1 - Oszilator A1 auswählen + - + Select oscillator A2 - Oszilator A2 auswählen + - + Select oscillator B1 - Oszilator B1 auswählen + - + Select oscillator B2 - Oszilator B2 auswählen + - + Mix output of A2 to A1 - Mische Ausgang von A2 zu A1 + - + Modulate amplitude of A1 by output of A2 - + Ring modulate A1 and A2 - + Modulate phase of A1 by output of A2 - + Mix output of B2 to B1 - Mische Ausgang von B2 zu B1 + - + Modulate amplitude of B1 by output of B2 - + Ring modulate B1 and B2 - + Modulate phase of B1 by output of B2 - - - - + + + + Draw your own waveform here by dragging your mouse on this graph. - Zeichnen Sie heier eigene Wellenformen, indem Sie die Maus über den Graph ziehen. + - + Load waveform - Wellenform laden + - + Load a waveform from a sample file - + Phase left - Nach links verschieben + - + Shift phase by -15 degrees - + Phase right - Nach rechts verschieben + - + Shift phase by +15 degrees + + + + Normalize + + - Normalize - Normalisieren - - - - Invert - Invertieren + - - + + Smooth - Glätten + - - + + Sine wave - Sinuswelle + - - - + + + Triangle wave - Dreieckwelle + - + Saw wave - Sägezahnwelle + - - + + Square wave - Rechteckwelle - - - - Xpressive - - - Selected graph - Ausgewählter Graph - - - - A1 - - - - - A2 - - - - - A3 - - - - - W1 smoothing - - - - - W2 smoothing - - - - - W3 smoothing - - - - - Panning 1 - - - - - Panning 2 - - - - - Rel trans - XpressiveView + lmms::gui::WaveShaperControlDialog - + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Clip input + + + + + Clip input signal to 0 dB + + + + + lmms::gui::XpressiveView + + Draw your own waveform here by dragging your mouse on this graph. - Zeichnen Sie eigene Wellenformen, indem Sie die Maus über den Graph ziehen. + - + Select oscillator W1 - + Select oscillator W2 - + Select oscillator W3 - + Select output O1 - + Select output O2 - + Open help window - - + + Sine wave - Sinuswelle + - - + + Moog-saw wave - - - Exponential wave - Exponentielle Welle - - - - - Saw wave - Sägezahnwelle - - - - - User-defined wave - Benutzerdefinierte Welle - - - + - Triangle wave - Dreieckwelle + Exponential wave + - - Square wave - Rechteckwelle + + Saw wave + - - - White noise - Weißes Rauschen + + + User-defined wave + - - WaveInterpolate + + + Triangle wave + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + ExpressionValid - + General purpose 1: - + General purpose 2: - + General purpose 3: - + O1 panning: - + O2 panning: - + Release transition: - + Smoothness - ZynAddSubFxInstrument - - - Portamento - Portamento - - - - Filter frequency - - - - - Filter resonance - Filter Resonanz - - - - Bandwidth - Bandbreite - - - - FM gain - FM Gain - - - - Resonance center frequency - Resonanz Mittelfrequenz - - - - Resonance bandwidth - Resonanz Bandbreite - - - - Forward MIDI control change events - - - - - ZynAddSubFxView - - - Portamento: - Portamento: - + lmms::gui::ZynAddSubFxView - PORT - PORT + Portamento: + - - Filter frequency: - Filter Frequenz: + + PORT + - FREQ - FREQ + Filter frequency: + - - Filter resonance: + + FREQ - RES - RES + Filter resonance: + - - Bandwidth: - Bandbreite: + + RES + - BW - BW + Bandwidth: + - - FM gain: + + BW - FM GAIN - FM GAIN + FM gain: + - - Resonance center frequency: - Zentrale Resonanzfrequenz: + + FM GAIN + - RES CF - RES CF + Resonance center frequency: + - - Resonance bandwidth: - Resonanzbandbreite: + + RES CF + - RES BW - RES BW + Resonance bandwidth: + - + + RES BW + + + + Forward MIDI control changes - + Show GUI - GUI anzeigen - - - - AudioFileProcessor - - - Amplify - Verstärkung - - - - Start of sample - Sample-Anfang - - - - End of sample - Sample-Ende - - - - Loopback point - Wiederholungspunkt - - - - Reverse sample - Sample umkehren - - - - Loop mode - Wiederholungsmodus - - - - Stutter - Stottern - - - - Interpolation mode - Interpolationsmodus - - - - None - Keiner - - - - Linear - Linear - - - - Sinc - Sinc - - - - Sample not found: %1 - Sample nicht gefunden: %1 - - - - BitInvader - - - Sample length - - BitInvaderView - - - Sample length - - - - - Draw your own waveform here by dragging your mouse on this graph. - Zeichnen Sie eigene Wellenformen, indem Sie die Maus über den Graph ziehen. - - - - - Sine wave - Sinuswelle - - - - - Triangle wave - Dreieckwelle - - - - - Saw wave - Sägezahnwelle - - - - - Square wave - Rechteckwelle - - - - - White noise - Weißes Rauschen - - - - - User-defined wave - Benutzerdefinierte Welle - - - - - Smooth waveform - Wellenform glätten - - - - Interpolation - Interpolation - - - - Normalize - Normalisieren - - - - DynProcControlDialog - - - INPUT - INPUT - - - - Input gain: - Eingangsverstärkung: - - - - OUTPUT - OUTPUT - - - - Output gain: - Ausgabeverstärkung: - - - - ATTACK - ATTACK - - - - Peak attack time: - Spitzen Anschwellzeit: - - - - RELEASE - RELEASE - - - - Peak release time: - Spitzen Ausklingzeit: - - - - - Reset wavegraph - - - - - - Smooth wavegraph - - - - - - Increase wavegraph amplitude by 1 dB - Erhöhe wavegraph Amplitude um 1 dB - - - - - Decrease wavegraph amplitude by 1 dB - Verringere wavegraph Amplitude um 1 dB - - - - Stereo mode: maximum - - - - - Process based on the maximum of both stereo channels - Basierend auf dem Maximum beider Stereokanäle verarbeiten - - - - Stereo mode: average - - - - - Process based on the average of both stereo channels - Basierend auf dem Durchschnitt beider Stereokanäle verarbeiten - - - - Stereo mode: unlinked - - - - - Process each stereo channel independently - Jeden Stereokanal unabhängig verarbeiten - - - - DynProcControls - - - Input gain - Eingangsverstärkung - - - - Output gain - Ausgabeverstärkung - - - - Attack time - Anschwellzeit - - - - Release time - Ausklingzeit - - - - Stereo mode - Stereomodus - - - - graphModel - - - Graph - Graph - - - - KickerInstrument - - - Start frequency - Startfrequenz - - - - End frequency - Endfrequenz - - - - Length - Länge - - - - Start distortion - - - - - End distortion - - - - - Gain - Gain - - - - Envelope slope - - - - - Noise - Rauschen - - - - Click - Klick - - - - Frequency slope - - - - - Start from note - Starte bei Note - - - - End to note - Ende bei Note - - - - KickerInstrumentView - - - Start frequency: - Startfrequenz: - - - - End frequency: - Endfrequenz: - - - - Frequency slope: - - - - - Gain: - Gain: - - - - Envelope length: - - - - - Envelope slope: - - - - - Click: - Klick: - - - - Noise: - Rauschen: - - - - Start distortion: - - - - - End distortion: - - - - - LadspaBrowserView - - - - Available Effects - Verfügbare Effekte - - - - - Unavailable Effects - Nicht verfügbare Effekte - - - - - Instruments - Instrumente - - - - - Analysis Tools - Analysewerkzeuge - - - - - Don't know - Weiß nicht - - - - Type: - Typ: - - - - LadspaDescription - - - Plugins - Plugins - - - - Description - Beschreibung - - - - LadspaPortDialog - - - Ports - Ports - - - - Name - Name - - - - Rate - Rate - - - - Direction - Richtung - - - - Type - Typ - - - - Min < Default < Max - Min < Standard < Max - - - - Logarithmic - Logarithmisch - - - - SR Dependent - SR-abhängig - - - - Audio - Audio - - - - Control - Steuerung - - - - Input - Eingang - - - - Output - Ausgang - - - - Toggled - Umgeschaltet - - - - Integer - Ganzahl - - - - Float - Kommazahl - - - - - Yes - Ja - - - - Lb302Synth - - - VCF Cutoff Frequency - VCF-Kennfrequenz - - - - VCF Resonance - VCF-Resonanz - - - - VCF Envelope Mod - VCF-Hüllkurvenintensität - - - - VCF Envelope Decay - VCF-Hüllkurvenabfallzeit - - - - Distortion - Verzerrung - - - - Waveform - Wellenform - - - - Slide Decay - Slide-Abfallzeit - - - - Slide - Slide - - - - Accent - Betonung - - - - Dead - Stumpf - - - - 24dB/oct Filter - 24db/Okt Filter - - - - Lb302SynthView - - - Cutoff Freq: - Kennfrequenz: - - - - Resonance: - Resonanz: - - - - Env Mod: - Hüllkurven-Modulation: - - - - Decay: - Abfallzeit (decay): - - - - 303-es-que, 24dB/octave, 3 pole filter - - - - - Slide Decay: - Slide-Abfallzeit: - - - - DIST: - DIST: - - - - Saw wave - Sägezahnwelle - - - - Click here for a saw-wave. - Klick für eine Sägezahnwelle. - - - - Triangle wave - Dreieckwelle - - - - Click here for a triangle-wave. - Klick für eine Dreieckwelle. - - - - Square wave - Rechteckwelle - - - - Click here for a square-wave. - Klick für eine Rechteckwelle. - - - - Rounded square wave - Abgerundete Rechteckwelle - - - - Click here for a square-wave with a rounded end. - Klick für eine abgerundete Rechteckwelle. - - - - Moog wave - Moog-Welle - - - - Click here for a moog-like wave. - Klick für eine Moog-ähnliche Welle. - - - - Sine wave - Sinuswelle - - - - Click for a sine-wave. - Klick für eine Sinuswelle. - - - - - White noise wave - Weißes Rauschen - - - - Click here for an exponential wave. - Klick für eine exponentielle-Welle. - - - - Click here for white-noise. - Klick für weißes Rauschen. - - - - Bandlimited saw wave - Bandbegrenzte Sägezahnwelle - - - - Click here for bandlimited saw wave. - Klick für eine bandbegrenzte Sägezahnwelle. - - - - Bandlimited square wave - Bandbegrenzte Rechteckwelle - - - - Click here for bandlimited square wave. - Klick für eine bandbegrenzte Rechteckwelle. - - - - Bandlimited triangle wave - Bandlimittierte Dreieckwelle - - - - Click here for bandlimited triangle wave. - Klick für eine bandbegrenzte Dreieckwelle. - - - - Bandlimited moog saw wave - Bandbegrenzte Moog-Sägezahnwelle - - - - Click here for bandlimited moog saw wave. - Klick für eine bandbegrenzte Moog-Sägezahnwelle. - - - - MalletsInstrument - - - Hardness - Härte - - - - Position - Position - - - - Vibrato gain - - - - - Vibrato frequency - - - - - Stick mix - - - - - Modulator - Modulator - - - - Crossfade - Crossfade - - - - LFO speed - LFO-Geschwindigkeit - - - - LFO depth - - - - - ADSR - ADSR - - - - Pressure - Druck - - - - Motion - Bewegung - - - - Speed - Geschwindigkeit - - - - Bowed - Gestrichen - - - - Spread - Weite - - - - Marimba - Marimba - - - - Vibraphone - Vibraphon - - - - Agogo - Agogo - - - - Wood 1 - - - - - Reso - Reso - - - - Wood 2 - - - - - Beats - Beats - - - - Two fixed - - - - - Clump - Clump - - - - Tubular bells - - - - - Uniform bar - - - - - Tuned bar - - - - - Glass - Glas - - - - Tibetan bowl - - - - - MalletsInstrumentView - - - Instrument - Instrument - - - - Spread - Weite - - - - Spread: - Weite: - - - - Missing files - Dateien fehlen - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - Ihre Stk-Installation scheit unvollständig zu sein. Bitte stellen Sie sicher, dass das Stk-Paket installiert ist. - - - - Hardness - Härte - - - - Hardness: - Härte: - - - - Position - Position - - - - Position: - Position: - - - - Vibrato gain - - - - - Vibrato gain: - - - - - Vibrato frequency - - - - - Vibrato frequency: - - - - - Stick mix - - - - - Stick mix: - - - - - Modulator - Modulator - - - - Modulator: - Modulator: - - - - Crossfade - Crossfade - - - - Crossfade: - Crossfade: - - - - LFO speed - LFO-Geschwindigkeit - - - - LFO speed: - LFO-Geschwindigkeit: - - - - LFO depth - - - - - LFO depth: - - - - - ADSR - ADSR - - - - ADSR: - ADSR: - - - - Pressure - Druck - - - - Pressure: - Druck: - - - - Speed - Geschwindigkeit - - - - Speed: - Geschwindigkeit: - - - - ManageVSTEffectView - - - - VST parameter control - - VST Parameter Controller - - - - VST sync - - - - - - Automated - Automatisiert - - - - Close - Schließen - - - - ManageVestigeInstrumentView - - - - - VST plugin control - - VST Plugin Controller - - - - VST Sync - VST-Sync - - - - - Automated - Automatisiert - - - - Close - Schließen - - - - OrganicInstrument - - - Distortion - Verzerrung - - - - Volume - Lautstärke - - - - OrganicInstrumentView - - - Distortion: - Verzerrung: - - - - Volume: - Lautstärke: - - - - Randomise - Zufallswerte - - - - - Osc %1 waveform: - Oszillator %1 Wellenform: - - - - Osc %1 volume: - Oszillator %1 Lautstärke: - - - - Osc %1 panning: - Oszillator %1 Balance: - - - - Osc %1 stereo detuning - Oszillator %1 Stereo Verstimmung - - - - cents - Cent - - - - Osc %1 harmonic: - Oszillator %1 Harmonie: - - - - PatchesDialog - - - Qsynth: Channel Preset - - - - - Bank selector - - - - - Bank - Bank - - - - Program selector - Programmwähler - - - - Patch - Patch - - - - Name - Name - - - - OK - OK - - - - Cancel - Abbrechen - - - - Sf2Instrument - - - Bank - Bank - - - - Patch - Patch - - - - Gain - Gain - - - - Reverb - Hall - - - - Reverb room size - - - - - Reverb damping - - - - - Reverb width - - - - - Reverb level - - - - - Chorus - Chorus - - - - Chorus voices - - - - - Chorus level - - - - - Chorus speed - - - - - Chorus depth - - - - - A soundfont %1 could not be loaded. - Soundfont %1 konnte nicht geladen werden. - - - - Sf2InstrumentView - - - - Open SoundFont file - SoundFont-Datei öffnen - - - - Choose patch - Patch wählen - - - - Gain: - Gain: - - - - Apply reverb (if supported) - Hall anwenden (wenn unterstützt) - - - - Room size: - - - - - Damping: - - - - - Width: - Weite: - - - - - Level: - - - - - Apply chorus (if supported) - Chorus-Effekt anwenden (wenn unterstützt) - - - - Voices: - - - - - Speed: - Geschwindigkeit: - - - - Depth: - Genauigkeit: - - - - SoundFont Files (*.sf2 *.sf3) - - - - - SfxrInstrument - - - Wave - - - - - StereoEnhancerControlDialog - - - WIDTH - - - - - Width: - Weite: - - - - StereoEnhancerControls - - - Width - Weite - - - - StereoMatrixControlDialog - - - Left to Left Vol: - Links-nach-links Lautstärke: - - - - Left to Right Vol: - Links-nach-rechts Lautstärke: - - - - Right to Left Vol: - Rechts-nach-links Lautstärke: - - - - Right to Right Vol: - Rechts-nach-rechts Lautstärke: - - - - StereoMatrixControls - - - Left to Left - Links-nach-links - - - - Left to Right - Links-nach-rechts - - - - Right to Left - Rechts-nach-links - - - - Right to Right - Rechts-nach-rechts - - - - VestigeInstrument - - - Loading plugin - Lade Plugin - - - - Please wait while loading the VST plugin... - - - - - Vibed - - - String %1 volume - Seite %1 Lautstärke - - - - String %1 stiffness - Seite %1 Härte - - - - Pick %1 position - Zupf-Position %1 - - - - Pickup %1 position - Abnehmer-Position %1 - - - - String %1 panning - - - - - String %1 detune - - - - - String %1 fuzziness - - - - - String %1 length - - - - - Impulse %1 - Impuls %1 - - - - String %1 - - - - - VibedView - - - String volume: - - - - - String stiffness: - Härte der Saite: - - - - Pick position: - Zupf-Position: - - - - Pickup position: - Abnehmer-Position: - - - - String panning: - - - - - String detune: - - - - - String fuzziness: - - - - - String length: - - - - - Impulse - Impuls - - - - Octave - Okatve - - - - Impulse Editor - Impuls-Editor - - - - Enable waveform - Wellenform aktivieren - - - - Enable/disable string - - - - - String - Saite - - - - - Sine wave - Sinuswelle - - - - - Triangle wave - Dreieckwelle - - - - - Saw wave - Sägezahnwelle - - - - - Square wave - Rechteckwelle - - - - - White noise - Weißes Rauschen - - - - - User-defined wave - Benutzerdefinierte Welle - - - - - Smooth waveform - Wellenform glätten - - - - - Normalize waveform - Wellenform normalisieren - - - - VoiceObject - - - Voice %1 pulse width - Stimme %1 Pulsweite - - - - Voice %1 attack - Stimme %1 Anschwellzeit - - - - Voice %1 decay - Stimme %1 Abfallzeit - - - - Voice %1 sustain - Stimme %1 Haltepegel - - - - Voice %1 release - Stimme %1 Release - - - - Voice %1 coarse detuning - Stimme %1 Grob-Verstimmung - - - - Voice %1 wave shape - Stimme %1 Wellenform - - - - Voice %1 sync - Stimme %1 Sync - - - - Voice %1 ring modulate - Stimme %1 Ringmodulation - - - - Voice %1 filtered - Stimme %1 gefiltert - - - - Voice %1 test - Stimme %1 Test - - - - WaveShaperControlDialog - - - INPUT - INPUT - - - - Input gain: - Eingangsverstärkung: - - - - OUTPUT - OUTPUT - - - - Output gain: - Ausgabeverstärkung: - - - - - Reset wavegraph - - - - - - Smooth wavegraph - - - - - - Increase wavegraph amplitude by 1 dB - Erhöhe wavegraph Amplitude um 1 dB - - - - - Decrease wavegraph amplitude by 1 dB - Verringere wavegraph Amplitude um 1 dB - - - - Clip input - Eingang begrenzen - - - - Clip input signal to 0 dB - Schneide das Eingangssignal bei 0 dB ab - - - - WaveShaperControls - - - Input gain - Eingangsverstärkung - - - - Output gain - Ausgabeverstärkung - - - + \ No newline at end of file diff --git a/data/locale/es.ts b/data/locale/es.ts index 26c743784..4182096b9 100644 --- a/data/locale/es.ts +++ b/data/locale/es.ts @@ -1,4 +1,4 @@ - + AboutDialog @@ -69,810 +69,43 @@ If you're interested in translating LMMS in another language or want to imp - AmplifierControlDialog + AboutJuceDialog - - VOL - VOL - - - - Volume: - Volumen: - - - - PAN - PAN - - - - Panning: - Paneo: - - - - LEFT - IZQ - - - - Left gain: - Ganancia izquierda: - - - - RIGHT - DER - - - - Right gain: - Ganancia derecha: - - - - AmplifierControls - - - Volume - Volumen - - - - Panning - Paneo - - - - Left gain - Ganacia izquierda - - - - Right gain - Ganancia derecha - - - - AudioAlsaSetupWidget - - - DEVICE - DISPOSITIVO - - - - CHANNELS - CANALES - - - - AudioFileProcessorView - - - Open sample - Abrir muestra - - - - Reverse sample - Reproducir la muestra en reversa - - - - Disable loop - Desactivar bucle - - - - Enable loop - Activar bucle - - - - Enable ping-pong loop + + About JUCE - - Continue sample playback across notes - Reproducción continua a través de las notas - - - - Amplify: - Amplificar: - - - - Start point: + + <b>About JUCE</b> - - End point: + + This program uses JUCE version 3.x.x. - - Loopback point: - Inicio del bucle: - - - - AudioFileProcessorWaveView - - - Sample length: - Longitud de la muestra: - - - - AudioJack - - - JACK client restarted - Se ha reiniciado el cliente de JACK - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS fué rechazado por JACK por alguna razón. Por lo tanto, el motor de JACK de LMMS ha sido reiniciado. Tendrás que realizar las conexiones manuales nuevamente. - - - - JACK server down - Ha fallado el servidor JACK - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - El servidor de JACK parece haberse detenido y no hemos podido lanzar una nueva instancia. Por lo tanto LMMS no puede continuar. Debes guardar tu proyecto y reiniciar JACK y LMMS. - - - - Client name + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. - - Channels - Canales - - - - AudioOss - - - Device - - - - - Channels - Canales - - - - AudioPortAudio::setupWidget - - - Backend - - - - - Device + + This program uses JUCE version - AudioPulseAudio + AudioDeviceSetupWidget - - Device - - - - - Channels - Canales - - - - AudioSdl::setupWidget - - - Device - - - - - AudioSndio - - - Device - - - - - Channels - Canales - - - - AudioSoundIo::setupWidget - - - Backend - - - - - Device - - - - - AutomatableModel - - - &Reset (%1%2) - &Restaurar (%1%2) - - - - &Copy value (%1%2) - &Copiar valor (%1%2) - - - - &Paste value (%1%2) - &Pegar valor (%1%2) - - - - &Paste value - - - - - Edit song-global automation - Editar la automatización global de la canción - - - - Remove song-global automation - Borrar la automatización global de la canción - - - - Remove all linked controls - Quitar todos los controles enlazados - - - - Connected to %1 - Conectado a %1 - - - - Connected to controller - Conectado al controlador - - - - Edit connection... - Editar conexión... - - - - Remove connection - Quitar conexión - - - - Connect to controller... - Conectar al controlador... - - - - AutomationEditor - - - Edit Value - - - - - New outValue - - - - - New inValue - - - - - Please open an automation clip with the context menu of a control! - ¡Por favor abre un patrón de automatización con el menú contextual de un control! - - - - AutomationEditorWindow - - - Play/pause current clip (Space) - Reproducir/Pausar el patrón actual (Espacio) - - - - Stop playing of current clip (Space) - Detener la reproducción del patrón actual (Espacio) - - - - Edit actions - Acciones de edición - - - - Draw mode (Shift+D) - Modo de dibujo (Shift+D) - - - - Erase mode (Shift+E) - Modo de borrado (Shift+E) - - - - Draw outValues mode (Shift+C) - - - - - Flip vertically - Voltear verticalmente - - - - Flip horizontally - Voltear horizontalmente - - - - Interpolation controls - Controles de interpolación - - - - Discrete progression - Interpolación escalonada - - - - Linear progression - Interpolación lineal - - - - Cubic Hermite progression - Interpolación de Hermite (suave) - - - - Tension value for spline - Valor de tensión para la spline - - - - Tension: - Tensión: - - - - Zoom controls - Controles de Acercamiento - - - - Horizontal zooming - - - - - Vertical zooming - - - - - Quantization controls - Controles de cuantización - - - - Quantization - Cuantización - - - - - Automation Editor - no clip - Editor de Automatización - no hay patrón - - - - - Automation Editor - %1 - Editor de Automatización - %1 - - - - Model is already connected to this clip. - El modelo ya está conectado a este patrón. - - - - AutomationClip - - - Drag a control while pressing <%1> - Arrastre un control mientras presiona <%1> - - - - AutomationClipView - - - Open in Automation editor - Abrir en el editor de Automatización - - - - Clear - Limpiar - - - - Reset name - Restaurar nombre - - - - Change name - Cambiar nombre - - - - Set/clear record - Activar/Desactivar grabación - - - - Flip Vertically (Visible) - Voltear verticalmente (Visible) - - - - Flip Horizontally (Visible) - Voltear horizontalmente (Visible) - - - - %1 Connections - %1 Conexiones - - - - Disconnect "%1" - Desconectar "%1" - - - - Model is already connected to this clip. - El modelo ya está conectado a este patrón. - - - - AutomationTrack - - - Automation track - Pista de Automatización - - - - PatternEditor - - - Beat+Bassline Editor - Editor de Ritmo+Bajo - - - - Play/pause current beat/bassline (Space) - Reproducir/pausar el ritmo/bajo actual (espacio) - - - - Stop playback of current beat/bassline (Space) - Detener la reproducción del ritmo/bajo actual (Espacio) - - - - Beat selector - Selector de ritmo - - - - Track and step actions - Acciones de pista y pasos - - - - Add beat/bassline - Agregar Ritmo/bajo - - - - Clone beat/bassline clip - - - - - Add sample-track - Agregar pista de muestras - - - - Add automation-track - Agregar pista de Automatización - - - - Remove steps - Quitar pasos - - - - Add steps - Agregar pasos - - - - Clone Steps - Clonar Pasos - - - - PatternClipView - - - Open in Beat+Bassline-Editor - Abrir en Editor de Ritmo+Bajo - - - - Reset name - Restaurar nombre - - - - Change name - Cambiar nombre - - - - PatternTrack - - - Beat/Bassline %1 - Ritmo/Bajo %1 - - - - Clone of %1 - Clon de %1 - - - - BassBoosterControlDialog - - - FREQ - FREC - - - - Frequency: - Frecuencia: - - - - GAIN - GAN - - - - Gain: - Ganancia: - - - - RATIO - RAZÓN - - - - Ratio: - Razón: - - - - BassBoosterControls - - - Frequency - Frecuencia - - - - Gain - Ganancia - - - - Ratio - Razón - - - - BitcrushControlDialog - - - IN - ENTRADA - - - - OUT - SALIDA - - - - - GAIN - GAN - - - - Input gain: - Ganancia de Entrada: - - - - NOISE - RUIDO - - - - Input noise: - - - - - Output gain: - Ganancia de Salida: - - - - CLIP - RECORTE - - - - Output clip: - - - - - Rate enabled - - - - - Enable sample-rate crushing - Habilitar aplastamiento de frecuencia de muestreo - - - - Depth enabled - - - - - Enable bit-depth crushing - - - - - FREQ - FREC - - - - Sample rate: - Frecuencia de Muestreo: - - - - STEREO - ESTÉREO - - - - Stereo difference: - Diferencia estéreo: - - - - QUANT - SECUENCIADOR - - - - Levels: - Niveles: - - - - BitcrushControls - - - Input gain - Ganancia de entrada - - - - Input noise - - - - - Output gain - Ganancia de salida - - - - Output clip - - - - - Sample rate - Frecuencia de muestreo - - - - Stereo difference - - - - - Levels - Niveles - - - - Rate enabled - - - - - Depth enabled + + [System Default] @@ -899,124 +132,124 @@ If you're interested in translating LMMS in another language or want to imp - + Artwork - + Using KDE Oxygen icon set, designed by Oxygen Team. - + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. - + VST is a trademark of Steinberg Media Technologies GmbH. - + Special thanks to António Saraiva for a few extra icons and artwork! - + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. - + MIDI Keyboard designed by Thorsten Wilms. - + Carla, Carla-Control and Patchbay icons designed by DoosC. - + Features - + AU/AudioUnit: - + LADSPA: - - - - - - - - + + + + + + + + TextLabel - + VST2: - + DSSI: - + LV2: - + VST3: - + OSC - + Host URLs: - + Valid commands: - + valid osc commands here - + Example: - + License Licencia - + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -1301,50 +534,50 @@ POSSIBILITY OF SUCH DAMAGES. - + OSC Bridge Version - + Plugin Version - + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> - - + + (Engine not running) - + Everything! (Including LRDF) - + Everything! (Including CustomData/Chunks) - + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - - - + + + Using Juce host - + About 85% complete (missing vst bank/presets and some minor stuff) @@ -1377,561 +610,598 @@ POSSIBILITY OF SUCH DAMAGES. - + + Save + + + + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + Buffer Size: - + Sample Rate: Frecuencia de Muestreo: - + ? Xruns - + DSP Load: %p% - + &File Archivo (&F) - + &Engine - + &Plugin - + Macros (all plugins) - + &Canvas - + Zoom - + &Settings - + &Help Ayuda (&H) - - toolBar + + Tool Bar - + Disk - - + + Home - + Transport - + Playback Controls - + Time Information - + Frame: - + 000'000'000 - + Time: Tiempo: - + 00:00:00 - + BBT: - + 000|00|0000 - + Settings Configuración - + BPM - + Use JACK Transport - + Use Ableton Link - + &New &Nuevo - + Ctrl+N - + &Open... Abrir...(&O) - - + + Open... - + Ctrl+O - + &Save Guardar (&S) - + Ctrl+S - + Save &As... Guardar Como... (&A) - - + + Save As... - + Ctrl+Shift+S - + &Quit Salir (&Q) - + Ctrl+Q - + &Start - + F5 - + St&op - + F6 - + &Add Plugin... - + Ctrl+A - + &Remove All - + Enable - + Disable - + 0% Wet (Bypass) - + 100% Wet - + 0% Volume (Mute) - + 100% Volume - + Center Balance - + &Play - + Ctrl+Shift+P - + &Stop - + Ctrl+Shift+X - + &Backwards - + Ctrl+Shift+B - + &Forwards - + Ctrl+Shift+F - + &Arrange - + Ctrl+G - - + + &Refresh - + Ctrl+R - + Save &Image... - + Auto-Fit - + Zoom In - + Ctrl++ - + Zoom Out - + Ctrl+- - + Zoom 100% - + Ctrl+1 - + Show &Toolbar - + &Configure Carla - + &About - + About &JUCE - + About &Qt - + Show Canvas &Meters - + Show Canvas &Keyboard - + Show Internal - + Show External - + Show Time Panel - + Show &Side Panel - + + Ctrl+P + + + + &Connect... - + Compact Slots - + Expand Slots - + Perform secret 1 - + Perform secret 2 - + Perform secret 3 - + Perform secret 4 - + Perform secret 5 - + Add &JACK Application... - + &Configure driver... - + Panic - + Open custom driver panel... + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + + CarlaHostWindow - + Export as... - - - - + + + + Error Error - + Failed to load project - + Failed to save project - + Quit Salir - + Are you sure you want to quit Carla? - + Could not connect to Audio backend '%1', possible reasons: %2 - + Could not connect to Audio backend '%1' - + Warning - + There are still some plugins loaded, you need to remove them to stop the engine. Do you want to do this now? - - CarlaInstrumentView - - - Show GUI - Mostrar IGU - - CarlaSettingsW @@ -1986,19 +1256,19 @@ Do you want to do this now? - + Main - + Canvas - + Engine @@ -2019,1487 +1289,589 @@ Do you want to do this now? - + Experimental - + <b>Main</b> - + Paths Lugares - + Default project folder: - + Interface - + + Use "Classic" as default rack skin + + + + Interface refresh interval: - - + + ms - + Show console output in Logs tab (needs engine restart) - + Show a confirmation dialog before quitting - - + + Theme - + Use Carla "PRO" theme (needs restart) - + Color scheme: - + Black - + System - + Enable experimental features - + <b>Canvas</b> - + Bezier Lines - + Theme: - + Size: Tamaño: - + 775x600 - + 1550x1200 - + 3100x2400 - + 4650x3600 - + 6200x4800 - + + 12400x9600 + + + + Options - + Auto-hide groups with no ports - + Auto-select items on hover - + Basic eye-candy (group shadows) - + Render Hints - + Anti-Aliasing - + Full canvas repaints (slower, but prevents drawing issues) - + <b>Engine</b> - - + + Core - + Single Client - + Multiple Clients - - + + Continuous Rack - - + + Patchbay - + Audio driver: - + Process mode: - - - - + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog - + Max Parameters: - + ... - + Reset Xrun counter after project load - + Plugin UIs - - + + How much time to wait for OSC GUIs to ping back the host - + UI Bridge Timeout: - + Use OSC-GUI bridges when possible, this way separating the UI from DSP code - + Use UI bridges instead of direct handling when possible - + Make plugin UIs always-on-top - + Make plugin UIs appear on top of Carla (needs restart) - + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS - - + + Restart the engine to load the new settings - + <b>OSC</b> - + Enable OSC - + Enable TCP port - - + + Use specific port: - + Overridden by CARLA_OSC_TCP_PORT env var - - + + Use randomly assigned port - + Enable UDP port - + Overridden by CARLA_OSC_UDP_PORT env var - + DSSI UIs require OSC UDP port enabled - + <b>File Paths</b> - + Audio Audio - + MIDI MIDI - + Used for the "audiofile" plugin - + Used for the "midifile" plugin - - + + Add... - - + + Remove - - + + Change... - + <b>Plugin Paths</b> - + LADSPA - + DSSI - + LV2 - + VST2 - + VST3 - + SF2/3 - + SFZ - + + JSFX + + + + + CLAP + + + + Restart Carla to find new plugins - + <b>Wine</b> - + Executable - + Path to 'wine' binary: - + Prefix - + Auto-detect Wine prefix based on plugin filename - + Fallback: - + Note: WINEPREFIX env var is preferred over this fallback - + Realtime Priority - + Base priority: - + WineServer priority: - + These options are not available for Carla as plugin - + <b>Experimental</b> - + Experimental options! Likely to be unstable! - + Enable plugin bridges - + Enable Wine bridges - + Enable jack applications - + Export single plugins to LV2 - + + Use system/desktop-theme icons (needs restart) + + + + Load Carla backend in global namespace (NOT RECOMMENDED) - + Fancy eye-candy (fade-in/out groups, glow connections) - + Use OpenGL for rendering (needs restart) - + High Quality Anti-Aliasing (OpenGL only) - + Render Ardour-style "Inline Displays" - + Force mono plugins as stereo by running 2 instances at the same time. This mode is not available for VST plugins. - + Force mono plugins as stereo - - Prevent plugins from doing bad stuff (needs restart) + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. - - Whenever possible, run the plugins in bridge mode. + + Prevent unsafe calls from plugins (needs restart) - + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + Run plugins in bridge mode when possible - - - - + + + + Add Path - - CompressorControlDialog - - - Threshold: - - - - - Volume at which the compression begins to take place - - - - - Ratio: - Razón: - - - - How far the compressor must turn the volume down after crossing the threshold - - - - - Attack: - Ataque: - - - - Speed at which the compressor starts to compress the audio - - - - - Release: - Disipación: - - - - Speed at which the compressor ceases to compress the audio - - - - - Knee: - - - - - Smooth out the gain reduction curve around the threshold - - - - - Range: - - - - - Maximum gain reduction - - - - - Lookahead Length: - - - - - How long the compressor has to react to the sidechain signal ahead of time - - - - - Hold: - Mantener: - - - - Delay between attack and release stages - - - - - RMS Size: - - - - - Size of the RMS buffer - - - - - Input Balance: - - - - - Bias the input audio to the left/right or mid/side - - - - - Output Balance: - - - - - Bias the output audio to the left/right or mid/side - - - - - Stereo Balance: - - - - - Bias the sidechain signal to the left/right or mid/side - - - - - Stereo Link Blend: - - - - - Blend between unlinked/maximum/average/minimum stereo linking modes - - - - - Tilt Gain: - - - - - Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. - - - - - Tilt Frequency: - - - - - Center frequency of sidechain tilt filter - - - - - Mix: - - - - - Balance between wet and dry signals - - - - - Auto Attack: - - - - - Automatically control attack value depending on crest factor - - - - - Auto Release: - - - - - Automatically control release value depending on crest factor - - - - - Output gain - Ganancia de salida - - - - - Gain - Ganancia - - - - Output volume - - - - - Input gain - Ganancia de entrada - - - - Input volume - - - - - Root Mean Square - - - - - Use RMS of the input - - - - - Peak - - - - - Use absolute value of the input - - - - - Left/Right - - - - - Compress left and right audio - - - - - Mid/Side - - - - - Compress mid and side audio - - - - - Compressor - - - - - Compress the audio - - - - - Limiter - - - - - Set Ratio to infinity (is not guaranteed to limit audio volume) - - - - - Unlinked - - - - - Compress each channel separately - - - - - Maximum - - - - - Compress based on the loudest channel - - - - - Average - - - - - Compress based on the averaged channel volume - - - - - Minimum - - - - - Compress based on the quietest channel - - - - - Blend - - - - - Blend between stereo linking modes - - - - - Auto Makeup Gain - - - - - Automatically change makeup gain depending on threshold, knee, and ratio settings - - - - - - Soft Clip - - - - - Play the delta signal - - - - - Use the compressor's output as the sidechain input - - - - - Lookahead Enabled - - - - - Enable Lookahead, which introduces 20 milliseconds of latency - - - - - CompressorControls - - - Threshold - - - - - Ratio - Razón - - - - Attack - Ataque - - - - Release - Disipación - - - - Knee - - - - - Hold - Mantener - - - - Range - - - - - RMS Size - - - - - Mid/Side - - - - - Peak Mode - - - - - Lookahead Length - - - - - Input Balance - - - - - Output Balance - - - - - Limiter - - - - - Output Gain - Ganancia de salida - - - - Input Gain - Ganancia de entrada - - - - Blend - - - - - Stereo Balance - - - - - Auto Makeup Gain - - - - - Audition - - - - - Feedback - Realimentacion - - - - Auto Attack - - - - - Auto Release - - - - - Lookahead - - - - - Tilt - - - - - Tilt Frequency - - - - - Stereo Link - - - - - Mix - Mezcla - - - - Controller - - - Controller %1 - Controlador %1 - - - - ControllerConnectionDialog - - - Connection Settings - Configuración de conexiones - - - - MIDI CONTROLLER - CONTROLADOR MIDI - - - - Input channel - Canal de entrada - - - - CHANNEL - CANAL - - - - Input controller - Controlador de entrada - - - - CONTROLLER - CONTROLADOR - - - - - Auto Detect - Auto-detectar - - - - MIDI-devices to receive MIDI-events from - Dispositivos MIDI desde los cuales recibir eventos MIDI - - - - USER CONTROLLER - CONTROLADOR DE USUARIO - - - - MAPPING FUNCTION - FUNCIÓN DE MAPEO - - - - OK - De acuerdo - - - - Cancel - Cancelar - - - - LMMS - LMMS - - - - Cycle Detected. - Ciclo detectado. - - - - ControllerRackView - - - Controller Rack - Bandeja de Controladores - - - - Add - Añadir - - - - Confirm Delete - Confirmar borrado - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - ¿Confirmar borrar? Hay conexiones asociadas a este controlador. Esta acción no se puede deshacer. - - - - ControllerView - - - Controls - Controles - - - - Rename controller - Renombrar el controlador - - - - Enter the new name for this controller - Escribe un nombre nuevo para este controlador - - - - LFO - LFO - - - - &Remove this controller - Quita&R este controlador - - - - Re&name this controller - Re&nombrar este controlador - - - - CrossoverEQControlDialog - - - Band 1/2 crossover: - - - - - Band 2/3 crossover: - - - - - Band 3/4 crossover: - - - - - Band 1 gain - - - - - Band 1 gain: - - - - - Band 2 gain - - - - - Band 2 gain: - - - - - Band 3 gain - - - - - Band 3 gain: - - - - - Band 4 gain - - - - - Band 4 gain: - - - - - Band 1 mute - - - - - Mute band 1 - - - - - Band 2 mute - - - - - Mute band 2 - - - - - Band 3 mute - - - - - Mute band 3 - - - - - Band 4 mute - - - - - Mute band 4 - - - - - DelayControls - - - Delay samples - Muestras de retardo - - - - Feedback - Realimentacion - - - - LFO frequency - - - - - LFO amount - - - - - Output gain - Ganancia de salida - - - - DelayControlsDialog - - - DELAY - RETRASO - - - - Delay time - - - - - FDBK - RETRO - - - - Feedback amount - - - - - RATE - TASA - - - - LFO frequency - - - - - AMNT - CANT - - - - LFO amount - - - - - Out gain - - - - - Gain - Ganancia - - Dialog - - - Add JACK Application - - - - - Note: Features not implemented yet are greyed out - - - - - Application - - - - - Name: - - - - - Application: - - - - - From template - - - - - Custom - - - - - Template: - - - - - Command: - - - - - Setup - - - - - Session Manager: - - - - - None - Ninguno - - - - Audio inputs: - - - - - MIDI inputs: - - - - - Audio outputs: - - - - - MIDI outputs: - - - - - Take control of main application window - - - - - Workarounds - - - - - Wait for external application start (Advanced, for Debug only) - - - - - Capture only the first X11 Window - - - - - Use previous client output buffer as input for the next client - - - - - Simulate 16 JACK MIDI outputs, with MIDI channel as port index - - - - - Error here - - Carla Control - Connect @@ -3525,27 +1897,6 @@ This mode is not available for VST plugins. TCP Port: - - - Reported host - - - - - Automatic - - - - - Custom: - - - - - In some networks (like USB connections), the remote system cannot reach the local network. You can specify here which hostname or IP to make the remote Carla connect to. -If you are unsure, leave it as 'Automatic'. - - Set value @@ -3600,948 +1951,6 @@ If you are unsure, leave it as 'Automatic'. - - DualFilterControlDialog - - - - FREQ - FREC - - - - - Cutoff frequency - Frecuencia de corte - - - - - RESO - RESO - - - - - Resonance - Resonancia - - - - - GAIN - GAN - - - - - Gain - Ganancia - - - - MIX - MEZCLA - - - - Mix - Mezcla - - - - Filter 1 enabled - Filtro 1 activado - - - - Filter 2 enabled - Filtro 2 activado - - - - Enable/disable filter 1 - - - - - Enable/disable filter 2 - - - - - DualFilterControls - - - Filter 1 enabled - Filtro 1 activado - - - - Filter 1 type - Filtro 1 tipo - - - - Cutoff frequency 1 - - - - - Q/Resonance 1 - Q/Resonancia 1 - - - - Gain 1 - Ganancia 1 - - - - Mix - Mezcla - - - - Filter 2 enabled - Filtro 2 activado - - - - Filter 2 type - Filtro 2 tipo - - - - Cutoff frequency 2 - - - - - Q/Resonance 2 - Q/Resonancia 2 - - - - Gain 2 - Ganancia 2 - - - - - Low-pass - - - - - - Hi-pass - - - - - - Band-pass csg - - - - - - Band-pass czpg - - - - - - Notch - Notch - - - - - All-pass - - - - - - Moog - Moog - - - - - 2x Low-pass - - - - - - RC Low-pass 12 dB/oct - - - - - - RC Band-pass 12 dB/oct - - - - - - RC High-pass 12 dB/oct - - - - - - RC Low-pass 24 dB/oct - - - - - - RC Band-pass 24 dB/oct - - - - - - RC High-pass 24 dB/oct - - - - - - Vocal Formant - - - - - - 2x Moog - 2x Moog - - - - - SV Low-pass - - - - - - SV Band-pass - - - - - - SV High-pass - - - - - - SV Notch - SV Notch - - - - - Fast Formant - Formante Rápido - - - - - Tripole - Tripolar - - - - Editor - - - Transport controls - Controles de Transporte - - - - Play (Space) - Reproducir (Espacio) - - - - Stop (Space) - Detener (Espacio) - - - - Record - Grabar - - - - Record while playing - Grabar reproduciendo - - - - Toggle Step Recording - - - - - Effect - - - Effect enabled - Efecto activado - - - - Wet/Dry mix - Mezcla Wet/Dry - - - - Gate - Puerta - - - - Decay - Caída - - - - EffectChain - - - Effects enabled - Efectos activados - - - - EffectRackView - - - EFFECTS CHAIN - CADENA DE EFECTOS - - - - Add effect - Añadir efecto - - - - EffectSelectDialog - - - Add effect - Añadir efecto - - - - - Name - Nombre - - - - Type - Tipo - - - - Description - Descripción - - - - Author - Autor - - - - EffectView - - - On/Off - Encendido/Apagado - - - - W/D - W/D - - - - Wet Level: - NIvel de efecto: - - - - DECAY - CAÍDA - - - - Time: - Tiempo: - - - - GATE - PUERTA - - - - Gate: - Puerta: - - - - Controls - Controles - - - - Move &up - Mover arriba (&U) - - - - Move &down - Mover abajo (&D) - - - - &Remove this plugin - Quita&r este complemento - - - - EnvelopeAndLfoParameters - - - Env pre-delay - - - - - Env attack - - - - - Env hold - - - - - Env decay - - - - - Env sustain - - - - - Env release - - - - - Env mod amount - - - - - LFO pre-delay - - - - - LFO attack - - - - - LFO frequency - - - - - LFO mod amount - - - - - LFO wave shape - - - - - LFO frequency x 100 - - - - - Modulate env amount - - - - - EnvelopeAndLfoView - - - - DEL - RETR - - - - - Pre-delay: - - - - - - ATT - ATA - - - - - Attack: - Ataque: - - - - HOLD - MANT - - - - Hold: - Mantener: - - - - DEC - CAI - - - - Decay: - Caída: - - - - SUST - SOST - - - - Sustain: - Sostenido: - - - - REL - DIS - - - - Release: - Disipación: - - - - - AMT - CANT - - - - - Modulation amount: - Cantidad de modulación: - - - - SPD - VEL - - - - Frequency: - Frecuencia: - - - - FREQ x 100 - FREC x 100 - - - - Multiply LFO frequency by 100 - - - - - MODULATE ENV AMOUNT - - - - - Control envelope amount by this LFO - - - - - ms/LFO: - ms/LFO: - - - - Hint - Pista - - - - Drag and drop a sample into this window. - Arrastre y suelte una muestra en esta ventana. - - - - EqControls - - - Input gain - Ganancia de entrada - - - - Output gain - Ganancia de salida - - - - Low-shelf gain - - - - - Peak 1 gain - Ganancia del Pico 1 - - - - Peak 2 gain - Ganancia del Pico 2 - - - - Peak 3 gain - Ganancia del Pico 3 - - - - Peak 4 gain - Ganancia del Pico 4 - - - - High-shelf gain - - - - - HP res - PasoAlto res - - - - Low-shelf res - - - - - Peak 1 BW - Ancho de Banda del Pico 1 - - - - Peak 2 BW - Ancho de Banda del Pico 2 - - - - Peak 3 BW - Ancho de Banda del Pico 3 - - - - Peak 4 BW - Ancho de Banda del Pico 4 - - - - High-shelf res - - - - - LP res - PasoBajo res - - - - HP freq - PasoAlto frec - - - - Low-shelf freq - - - - - Peak 1 freq - Pico 1 frec - - - - Peak 2 freq - Pico 2 frec - - - - Peak 3 freq - Pico 3 frec - - - - Peak 4 freq - Pico 4 frec - - - - High-shelf freq - - - - - LP freq - PasoBajo frec - - - - HP active - PasoAlto activo - - - - Low-shelf active - - - - - Peak 1 active - Pico 1 activo - - - - Peak 2 active - Pico 2 activo - - - - Peak 3 active - Pico 3 activo - - - - Peak 4 active - Pico 4 activo - - - - High-shelf active - - - - - LP active - PasoBajo activo - - - - LP 12 - PB 12 - - - - LP 24 - PB 24 - - - - LP 48 - PB 48 - - - - HP 12 - PA 12 - - - - HP 24 - PA 24 - - - - HP 48 - PA 48 - - - - Low-pass type - - - - - High-pass type - - - - - Analyse IN - Analizar ENTRADA - - - - Analyse OUT - Analizar SALIDA - - - - EqControlsDialog - - - HP - PA - - - - Low-shelf - - - - - Peak 1 - Pico 1 - - - - Peak 2 - Pico 2 - - - - Peak 3 - Pico 3 - - - - Peak 4 - Pico 4 - - - - High-shelf - - - - - LP - PB - - - - Input gain - Ganancia de entrada - - - - - - Gain - Ganancia - - - - Output gain - Ganancia de salida - - - - Bandwidth: - AnchoDeBanda: - - - - Octave - Octava - - - - Resonance : - Resonancia : - - - - Frequency: - Frecuencia: - - - - LP group - - - - - HP group - - - - - EqHandle - - - Reso: - Reso: - - - - BW: - AB: - - - - - Freq: - Frec: - - ExportProjectDialog @@ -4725,2126 +2134,652 @@ If you are unsure, leave it as 'Automatic'. - - Oversampling: - Sobremuestreo: - - - - 1x (None) - 1x (Ninguno) - - - - 2x - 2x - - - - 4x - 4x - - - - 8x - 8x - - - + Start Comenzar - + Cancel Cancelar - - - Could not open file - No se puede abrir el archivo - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - El archivo %1 no puede abrirse para escritura. -Asegúrate de tener permisos de escritura tanto del archivo como del directorio que lo contiene e inténtalo de nuevo. - - - - Export project to %1 - Exportar proyecto a %1 - - - - ( Fastest - biggest ) - - - - - ( Slowest - smallest ) - - - - - Error - Error - - - - Error while determining file-encoder device. Please try to choose a different output format. - Error al determinar el dispositivo codificador. Intenta elegir un formato de salida diferente. - - - - Rendering: %1% - Renderizando: %1% - - - - Fader - - - Set value - - - - - Please enter a new value between %1 and %2: - Por favor ingresa un nuevo valor entre %1 y %2: - - - - FileBrowser - - - User content - - - - - Factory content - - - - - Browser - Explorador - - - - Search - Buscar - - - - Refresh list - Actualizar Lista - - - - FileBrowserTreeWidget - - - Send to active instrument-track - Enviar a la pista de instrumento activa - - - - Open containing folder - - - - - Song Editor - Editor de Canción - - - - BB Editor - - - - - Send to new AudioFileProcessor instance - - - - - Send to new instrument track - - - - - (%2Enter) - - - - - Send to new sample track (Shift + Enter) - - - - - Loading sample - Cargando muestra - - - - Please wait, loading sample for preview... - Espera por favor mientras se carga la muestra para previsualizar... - - - - Error - Error - - - - %1 does not appear to be a valid %2 file - - - - - --- Factory files --- - --- Archivos de Fábrica --- - - - - FlangerControls - - - Delay samples - Muestras de retardo - - - - LFO frequency - - - - - Seconds - Segundos - - - - Stereo phase - - - - - Regen - Intensidad - - - - Noise - Ruido - - - - Invert - Invertir - - - - FlangerControlsDialog - - - DELAY - RETRASO - - - - Delay time: - - - - - RATE - TASA - - - - Period: - Period: - - - - AMNT - CANT - - - - Amount: - Cantidad: - - - - PHASE - - - - - Phase: - - - - - FDBK - RETRO - - - - Feedback amount: - - - - - NOISE - RUIDO - - - - White noise amount: - - - - - Invert - Invertir - - - - FreeBoyInstrument - - - Sweep time - Duración del barrido - - - - Sweep direction - Dirección del barrido - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle - - - - - Channel 1 volume - Canal 1 Volumen - - - - - - Volume sweep direction - Dirección del barrido de volumen - - - - - - Length of each step in sweep - Duración de cada etapa del barrido - - - - Channel 2 volume - Canal 2 Volumen - - - - Channel 3 volume - Canal 3 Volumen - - - - Channel 4 volume - Canal 4 Volumen - - - - Shift Register width - Cambiar Amplitud del Registro - - - - Right output level - - - - - Left output level - - - - - Channel 1 to SO2 (Left) - Canal 1 a SO2 (izq) - - - - Channel 2 to SO2 (Left) - Canal 2 a SO2 (izq) - - - - Channel 3 to SO2 (Left) - Canal 3 a SO2 (izq) - - - - Channel 4 to SO2 (Left) - Canal 4 a SO2 (izq) - - - - Channel 1 to SO1 (Right) - Canal 1 a SO1 (der) - - - - Channel 2 to SO1 (Right) - Canal 2 a SO1 (der) - - - - Channel 3 to SO1 (Right) - Canal 3 a SO1 (der) - - - - Channel 4 to SO1 (Right) - Canal 4 a SO1 (der) - - - - Treble - Agudos - - - - Bass - Graves - - - - FreeBoyInstrumentView - - - Sweep time: - - - - - Sweep time - Duración del barrido - - - - Sweep rate shift amount: - - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle: - - - - - - Wave pattern duty cycle - - - - - Square channel 1 volume: - - - - - Square channel 1 volume - - - - - - - Length of each step in sweep: - Duración de cada etapa del barrido: - - - - - - Length of each step in sweep - Duración de cada etapa del barrido - - - - Square channel 2 volume: - - - - - Square channel 2 volume - - - - - Wave pattern channel volume: - - - - - Wave pattern channel volume - - - - - Noise channel volume: - - - - - Noise channel volume - - - - - SO1 volume (Right): - - - - - SO1 volume (Right) - - - - - SO2 volume (Left): - - - - - SO2 volume (Left) - - - - - Treble: - Agudos: - - - - Treble - Agudos - - - - Bass: - Graves: - - - - Bass - Graves - - - - Sweep direction - Dirección del barrido - - - - - - - - Volume sweep direction - Dirección del barrido de volumen - - - - Shift register width - - - - - Channel 1 to SO1 (Right) - Canal 1 a SO1 (der) - - - - Channel 2 to SO1 (Right) - Canal 2 a SO1 (der) - - - - Channel 3 to SO1 (Right) - Canal 3 a SO1 (der) - - - - Channel 4 to SO1 (Right) - Canal 4 a SO1 (der) - - - - Channel 1 to SO2 (Left) - Canal 1 a SO2 (izq) - - - - Channel 2 to SO2 (Left) - Canal 2 a SO2 (izq) - - - - Channel 3 to SO2 (Left) - Canal 3 a SO2 (izq) - - - - Channel 4 to SO2 (Left) - Canal 4 a SO2 (izq) - - - - Wave pattern graph - - - - - MixerChannelView - - - Channel send amount - Cantidad de envío del canal - - - - Move &left - Mover a la Izquierda (&L) - - - - Move &right - Mover a la Derecha (&R) - - - - Rename &channel - Renombrar &Canal - - - - R&emove channel - Borrar canal (&E) - - - - Remove &unused channels - Quitar los canales que no esten en &uso - - - - Set channel color - - - - - Remove channel color - - - - - Pick random channel color - - - - - MixerChannelLcdSpinBox - - - Assign to: - Asignar a: - - - - New mixer Channel - Nuevo Canal FX - - - - Mixer - - - Master - Maestro - - - - - - Channel %1 - FX %1 - - - - Volume - Volumen - - - - Mute - Silencio - - - - Solo - Solo - - - - MixerView - - - Mixer - Mezcladora FX - - - - Fader %1 - Fader FX %1 - - - - Mute - Silencio - - - - Mute this mixer channel - Silenciar este canal FX - - - - Solo - Solo - - - - Solo mixer channel - Canal FX Solo - - - - MixerRoute - - - - Amount to send from channel %1 to channel %2 - Cantidad de envío del canal %1 al canal %2 - - - - GigInstrument - - - Bank - Banco - - - - Patch - Ajuste - - - - Gain - Ganancia - - - - GigInstrumentView - - - - Open GIG file - Abrir archivo GIG - - - - Choose patch - - - - - Gain: - Ganancia: - - - - GIG Files (*.gig) - Archivos GIG (*.gig) - - - - GuiApplication - - - Working directory - Directorio de trabajo - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - El directorio de trabajo LMMS %1 no existe. ¿Deseas crearlo ahora? Puedes cambiar este directorio luego via Edición -> Configuración. - - - - Preparing UI - Preparando IU - - - - Preparing song editor - Preparando editor de canción - - - - Preparing mixer - Preparando mezclador - - - - Preparing controller rack - Preparando bandeja de controladores - - - - Preparing project notes - Preparando notas del proyecto - - - - Preparing beat/bassline editor - Preparando editor de ritmo/bajo - - - - Preparing piano roll - Preparando piano roll - - - - Preparing automation editor - Preparando editor de automatización - - - - InstrumentFunctionArpeggio - - - Arpeggio - Arpegio - - - - Arpeggio type - tipo de arpegio - - - - Arpeggio range - Extensión del arpegio - - - - Note repeats - - - - - Cycle steps - Ciclar pasos - - - - Skip rate - Tasa de salto - - - - Miss rate - Tasa de omisión - - - - Arpeggio time - Duración del arpegio - - - - Arpeggio gate - Puerta del arpegio - - - - Arpeggio direction - Dirección del arpegio - - - - Arpeggio mode - Modo del arpegio - - - - Up - Arriba - - - - Down - Abajo - - - - Up and down - Arriba y abajo - - - - Down and up - Abajo y arriba - - - - Random - Aleatorio - - - - Free - Libre - - - - Sort - Ordenado - - - - Sync - Sincronizado - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - ARPEGIO - - - - RANGE - EXTENSIÓN - - - - Arpeggio range: - Extensión del arpegio: - - - - octave(s) - octava(s) - - - - REP - - - - - Note repeats: - - - - - time(s) - - - - - CYCLE - CICLO - - - - Cycle notes: - Ciclar notas: - - - - note(s) - nota(s) - - - - SKIP - SALTAR - - - - Skip rate: - Tasa de salto: - - - - - - % - % - - - - MISS - OMITIR - - - - Miss rate: - Tasa de omisión: - - - - TIME - DURACIÓN - - - - Arpeggio time: - Duración de las notas (ms): - - - - ms - ms - - - - GATE - PUERTA - - - - Arpeggio gate: - Puerta del arpegio: - - - - Chord: - Acorde: - - - - Direction: - Dirección: - - - - Mode: - Modo: - InstrumentFunctionNoteStacking - + octave octava - - + + Major Mayor - + Majb5 Mayor b5 - + minor menor - + minb5 menor b5 - + sus2 sus 9na - + sus4 sus 4 - + aug aum - + augsus4 aum sus 4 - + tri disminuído - + 6 Mayor añad 6 - + 6sus4 sus 4 añad 6 - + 6add9 Mayor 6/9 - + m6 menor 6 - + m6add9 menor 6/9 - + 7 Dominante (1 3 5 b7) - + 7sus4 Dominante sus4 (1-4-5-b7) - + 7#5 Dominante #5 (1-3-#5-b7) - + 7b5 Dominante b5(1-3-b5-b7) - + 7#9 Dominante #9 - + 7b9 Dominante b9 - + 7#5#9 Dominante #5 #9 - + 7#5b9 Dominante #5b9 - + 7b5b9 Dominante b5b9 - + 7add11 Dominante añad 11 - + 7add13 Dominante añad13 - + 7#11 Dominante #11 - + Maj7 Mayor 7M - + Maj7b5 Mayor7M b5 - + Maj7#5 Mayor7may #5 - + Maj7#11 Mayor7may #11 - + Maj7add13 Mayor7may añad13 - + m7 m7(menor 7 men) - + m7b5 semidisminuído (1-b3-b5-b7) - + m7b9 m7 b9 - + m7add11 m7 añad11 - + m7add13 m7 añad13 - + m-Maj7 m 7M (1-b3-5-7) - + m-Maj7add11 m-7M añad11 - + m-Maj7add13 m-7M añad13 - + 9 Dom 9 (1-3-5-b7-9) - + 9sus4 Dom 9 sus4 - + add9 mayor añad 9 - + 9#5 Dom #5 9 - + 9b5 Dom b5 9 - + 9#11 Dom 9 #11 - + 9b13 Dom 9 b13 - + Maj9 9 (1-3-5-7-9) - + Maj9sus4 9sus4 (1-4-5-7-9) - + Maj9#5 9na #5 (1-3-#5-7-9) - + Maj9#11 9 #11 (1-3-5-7-9-#11) - + m9 m 7/9 - + madd9 m añad 9 - + m9b5 semidisminuído 9 - + m9-Maj7 m9-7M - + 11 Dom 11 (1-3-5-b7-9-11) - + 11b9 Dom b9/11 - + Maj11 11na (1-3-5-7-9-11) - + m11 m 11 (1-b3-5-b7-9-11) - + m-Maj11 m 7M 11 - + 13 Dom 13 (...b7-9-11-13) - + 13#9 Dom #9 13 - + 13b9 Dom b9 13 - + 13b5b9 Dom b5 b9 13 - + Maj13 13na (...7-9-11-13) - + m13 m13 (...b7-9-11-13) - + m-Maj13 m 7M 13 (...7-9-11-13) - + Harmonic minor Menor armónica - + Melodic minor Menor melódica - + Whole tone Hexatónica - + Diminished Escala Disminuida - + Major pentatonic Pentatónica mayor - + Minor pentatonic Pentatónica menor - + Jap in sen In Sen (japón) - + Major bebop Bebop mayor - + Dominant bebop Bebop dominante - + Blues Pentatónica con BlueNote - + Arabic Árabe - + Enigmatic Enigmática - + Neopolitan Napolitana - + Neopolitan minor Napolitana menor - + Hungarian minor Húngara menor - + Dorian modo Dórico - + Phrygian Frigio - + Lydian modo Lidio - + Mixolydian modo Mixolidio - + Aeolian modo Eólico - + Locrian modo Locrio - + Minor Menor Natural (Eólica) - + Chromatic Cromática - + Half-Whole Diminished Simétrica - + 5 5ta - + Phrygian dominant Frigio dominante - + Persian Persa - - - Chords - Acordes - - - - Chord type - Tipo de acorde - - - - Chord range - Extensión del acorde - - - - InstrumentFunctionNoteStackingView - - - STACKING - SUPERPOSICIÓN - - - - Chord: - Acorde: - - - - RANGE - EXTENSIÓN - - - - Chord range: - Extensión del acorde: - - - - octave(s) - octava(s) - - - - InstrumentMidiIOView - - - ENABLE MIDI INPUT - HABILITAR ENTRADA MIDI - - - - ENABLE MIDI OUTPUT - HABILITAR SALIDA MIDI - - - - - CHAN - This string must be be short, its width must be less than * width of LCD spin-box of two digits - - - - - - VELOC - This string must be be short, its width must be less than * width of LCD spin-box of three digits - - - - - PROG - This string must be be short, its width must be less than the * width of LCD spin-box of three digits - - - - - NOTE - This string must be be short, its width must be less than * width of LCD spin-box of three digits - NOTA - - - - MIDI devices to receive MIDI events from - Dispositivos MIDI desde los cuales recibir eventos MIDI - - - - MIDI devices to send MIDI events to - Dispositivos MIDI hacia los cuales enviar eventos MIDI - - - - CUSTOM BASE VELOCITY - VELOCIDAD BÁSICA PERSONALIZADA - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. - - - - - BASE VELOCITY - VELOCIDAD BÁSICA - - - - InstrumentTuningView - - - MASTER PITCH - TRANSPORTE - - - - Enables the use of master pitch - - InstrumentSoundShaping - + VOLUME VOLUMEN - + Volume Volumen - + CUTOFF CORTE - - + Cutoff frequency Frecuencia de corte - + RESO RESO - + Resonance Resonancia - - - Envelopes/LFOs - Envolventes/LFOs - - - - Filter type - Tipo de filtro - - - - Q/Resonance - Q/Resonancia - - - - Low-pass - - - - - Hi-pass - - - - - Band-pass csg - - - - - Band-pass czpg - - - - - Notch - Notch - - - - All-pass - - - - - Moog - Moog - - - - 2x Low-pass - - - - - RC Low-pass 12 dB/oct - - - - - RC Band-pass 12 dB/oct - - - - - RC High-pass 12 dB/oct - - - - - RC Low-pass 24 dB/oct - - - - - RC Band-pass 24 dB/oct - - - - - RC High-pass 24 dB/oct - - - - - Vocal Formant - - - - - 2x Moog - 2x Moog - - - - SV Low-pass - - - - - SV Band-pass - - - - - SV High-pass - - - - - SV Notch - SV Notch - - - - Fast Formant - Formante Rápido - - - - Tripole - Tripolar - - InstrumentSoundShapingView + JackAppDialog - - TARGET - DESTINO - - - - FILTER - FILTRO - - - - FREQ - FREC - - - - Cutoff frequency: - Frecuencia de corte: - - - - Hz - Hz - - - - Q/RESO + + Add JACK Application - - Q/Resonance: + + Note: Features not implemented yet are greyed out - - Envelopes, LFOs and filters are not supported by the current instrument. - Envolventes, LFOx y filtros no son soportados por este instrumento. - - - - InstrumentTrack - - - - unnamed_track - pista_sin_título - - - - Base note - Nota base - - - - First note + + Application - - Last note - Ultima nota - - - - Volume - Volumen - - - - Panning - Paneo - - - - Pitch - Altura - - - - Pitch range - Registro - - - - Mixer channel - Canal FX - - - - Master pitch - Transporte - - - - Enable/Disable MIDI CC + + Name: - - CC Controller %1 + + Application: - - - Default preset - Configuración predeterminada - - - - InstrumentTrackView - - - Volume - Volumen - - - - Volume: - Volumen: - - - - VOL - VOL - - - - Panning - Paneo - - - - Panning: - Paneo: - - - - PAN - PAN - - - - MIDI - MIDI - - - - Input - Entrada - - - - Output - Salida - - - - Open/Close MIDI CC Rack + + From template - - Channel %1: %2 - FX %1: %2 - - - - InstrumentTrackWindow - - - GENERAL SETTINGS - CONFIGURACIÓN GENERAL + + Custom + - - Volume - Volumen + + Template: + - - Volume: - Volumen: + + Command: + - - VOL - VOL + + Setup + - - Panning - Paneo + + Session Manager: + - - Panning: - Paneo: + + None + - - PAN - PAN + + Audio inputs: + - - Pitch - Altura + + MIDI inputs: + - - Pitch: - Altura: + + Audio outputs: + - - cents - cents + + MIDI outputs: + - - PITCH - ALTURA + + Take control of main application window + - - Pitch range (semitones) - Extensión (en semitonos) + + Workarounds + - - RANGE - EXTENSIÓN + + Wait for external application start (Advanced, for Debug only) + - - Mixer channel - Canal FX + + Capture only the first X11 Window + - - CHANNEL - FX + + Use previous client output buffer as input for the next client + - - Save current instrument track settings in a preset file - Guardar la configuración de esta pista de instrumento en un archivo de preconfiguración + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + - - SAVE - GUARDAR + + Error here + - - Envelope, filter & LFO - Sobre, Filtro y LFO - - - - Chord stacking & arpeggio - Acorde de Apilamiento y Arpegio - - - - Effects - Efectos - - - - MIDI - MIDI - - - - Miscellaneous - Diversos - - - - Save preset - Guardar preconfiguración - - - - XML preset file (*.xpf) - archivo de preconfiguración XML (*.xpf) - - - - Plugin - Plugin - - - - JackApplicationW - - + NSM applications cannot use abstract or absolute paths - + NSM applications cannot use CLI arguments - + You need to save the current Carla project before NSM can be used @@ -6852,947 +2787,11 @@ Asegúrate de tener permisos de escritura tanto del archivo como del directorio JuceAboutW - - About JUCE - - - - - <b>About JUCE</b> - - - - - This program uses JUCE version 3.x.x. - - - - - JUCE (Jules' Utility Class Extensions) is an all-encompassing C++ class library for developing cross-platform software. - -It contains pretty much everything you're likely to need to create most applications, and is particularly well-suited for building highly-customised GUIs, and for handling graphics and sound. - -JUCE is licensed under the GNU Public Licence version 2.0. -One module (juce_core) is permissively licensed under the ISC. - -Copyright (C) 2017 ROLI Ltd. - - - - + This program uses JUCE version %1. - - Knob - - - Set linear - Establecer como Lineal - - - - Set logarithmic - Establecer como Logarítmico - - - - - Set value - - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - Por favor ingresa un nuevo valor entre -96.0 dBFS y 6.0 dBFS: - - - - Please enter a new value between %1 and %2: - Por favor ingresa un nuevo valor entre %1 y %2: - - - - LadspaControl - - - Link channels - Enlazar canales - - - - LadspaControlDialog - - - Link Channels - Enlazar Canales - - - - Channel - Canal - - - - LadspaControlView - - - Link channels - Enlazar canales - - - - Value: - Valor: - - - - LadspaEffect - - - Unknown LADSPA plugin %1 requested. - Se requiere un complemento LADSPA desconocido %1. - - - - LcdFloatSpinBox - - - Set value - - - - - Please enter a new value between %1 and %2: - Por favor ingresa un nuevo valor entre %1 y %2: - - - - LcdSpinBox - - - Set value - - - - - Please enter a new value between %1 and %2: - Por favor ingresa un nuevo valor entre %1 y %2: - - - - LeftRightNav - - - - - Previous - Anterior - - - - - - Next - Siguiente - - - - Previous (%1) - Anterior (%1) - - - - Next (%1) - Siguiente (%1) - - - - LfoController - - - LFO Controller - Controlador LFO - - - - Base value - Valor base - - - - Oscillator speed - Velocidad del oscilador - - - - Oscillator amount - Cantidad del oscilador - - - - Oscillator phase - Fase del oscilador - - - - Oscillator waveform - Forma de onda del oscilador - - - - Frequency Multiplier - Multiplicador de frecuencia - - - - LfoControllerDialog - - - LFO - LFO - - - - BASE - BASE - - - - Base: - - - - - FREQ - FREC - - - - LFO frequency: - - - - - AMNT - CANT - - - - Modulation amount: - Cantidad de modulación: - - - - PHS - FASE - - - - Phase offset: - Desfase: - - - - degrees - - - - - Sine wave - Onda sinusoidal - - - - Triangle wave - Onda triangular - - - - Saw wave - Onda de sierra - - - - Square wave - Onda cuadrada - - - - Moog saw wave - Onda de sierra Moog - - - - Exponential wave - Onda Exponencial - - - - White noise - Ruido blanco - - - - User-defined shape. -Double click to pick a file. - - - - - Mutliply modulation frequency by 1 - - - - - Mutliply modulation frequency by 100 - - - - - Divide modulation frequency by 100 - - - - - Engine - - - Generating wavetables - Generando tablas de onda - - - - Initializing data structures - Inicializando estructuras de datos - - - - Opening audio and midi devices - Abriendo dispositivos de audio y midi - - - - Launching mixer threads - Lanzando tareas del mezclador - - - - MainWindow - - - Configuration file - Archivo de configuración - - - - Error while parsing configuration file at line %1:%2: %3 - Error al analizar el archivo de configuración en la línea %1:%2: %3 - - - - Could not open file - No se puede abrir el archivo - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - El archivo %1 no puede abrirse para escritura. -Asegúrate de tener permisos de escritura tanto del archivo como del directorio que lo contiene e inténtalo de nuevo. - - - - Project recovery - Recuperar proyecto - - - - There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - Hemos encontrado un archivo de recuperación de proyecto. Parece que la última sesión no se cerró correctamente o se está ejecutando otra instancia de LMMS. ¿Quieres recuperar el proyecto de esta sesión? - - - - - Recover - Recuperar - - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - Recuperar el archivo. Por favor no ejecutes múltiples instancias de LMMS al hacerlo. - - - - - Discard - Descartar - - - - Launch a default session and delete the restored files. This is not reversible. - Iniciar una sesión por defecto y borrar los archivos restaurados. Esta acción no es reversible. - - - - Version %1 - Versión %1 - - - - Preparing plugin browser - Preparando el explorador de complementos - - - - Preparing file browsers - Preparando el explorador de archivos - - - - My Projects - Mis Proyectos - - - - My Samples - Mis Muestras - - - - My Presets - Mis Preconfiguraciones - - - - My Home - Carpeta Personal - - - - Root directory - Directorio raíz - - - - Volumes - Volúmenes - - - - My Computer - Equipo - - - - &File - Archivo (&F) - - - - &New - &Nuevo - - - - &Open... - Abrir...(&O) - - - - Loading background picture - - - - - &Save - Guardar (&S) - - - - Save &As... - Guardar Como... (&A) - - - - Save as New &Version - Guardar como una Nueva &Versión - - - - Save as default template - Guardar como plantilla por defecto - - - - Import... - Importar... - - - - E&xport... - E&xportar... - - - - E&xport Tracks... - E&xportar Pistas... - - - - Export &MIDI... - Exportar &MIDI... - - - - &Quit - Salir (&Q) - - - - &Edit - &Editar - - - - Undo - Deshacer - - - - Redo - Rehacer - - - - Settings - Configuración - - - - &View - &Ver - - - - &Tools - Herramientas (&T) - - - - &Help - Ayuda (&H) - - - - Online Help - Ayuda en línea - - - - Help - Ayuda - - - - About - Acerca de - - - - Create new project - Crear un proyecto nuevo - - - - Create new project from template - Crear un proyecto nuevo desde una plantilla - - - - Open existing project - Abrir un proyecto existente - - - - Recently opened projects - Proyectos recientes - - - - Save current project - Guardar este proyecto - - - - Export current project - Exportar este proyecto - - - - Metronome - - - - - - Song Editor - Editor de Canción - - - - - Beat+Bassline Editor - Editor de Ritmo+Bajo - - - - - Piano Roll - Piano Roll - - - - - Automation Editor - Editor de Automatización - - - - - Mixer - Mezcladora FX - - - - Show/hide controller rack - Mostrar/ocultar bandeja de controladores - - - - Show/hide project notes - Mostrar/ocultar notas del proyecto - - - - Untitled - Sin Título - - - - Recover session. Please save your work! - Recuperar sesión. ¡Por favor guarda tu trabajo! - - - - LMMS %1 - LMMS %1 - - - - Recovered project not saved - Proyecto recuperado no guardado - - - - This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? - Este proyecto se ha recuperado de la sesión anterior. No ha sido guardado con anterioridad y se perderá para siempre si no lo guardas. ¿Deseas guardarlo ahora? - - - - Project not saved - Proyecto no guardado - - - - The current project was modified since last saving. Do you want to save it now? - El proyecto actual ha sido modificado desde la última vez que se guardó. ¿Quieres guardarlo ahora? - - - - Open Project - Abrir Proyecto - - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - - Save Project - Guardar proyecto - - - - LMMS Project - Proyecto LMMS - - - - LMMS Project Template - Plantilla de proyecto LMMS - - - - Save project template - Guardar plantilla de proyecto - - - - Overwrite default template? - ¿Sobreescribir la plantilla por defecto? - - - - This will overwrite your current default template. - Esta acción sobreescribirá tu actual plantilla por defecto. - - - - Help not available - Ayuda no disponible - - - - Currently there's no help available in LMMS. -Please visit http://lmms.sf.net/wiki for documentation on LMMS. - Actualmente no hay ayuda disponible en LMMS. -Por favor visita http://lmms.sf.net/wiki para obtener documentación acerca de LMMS. - - - - Controller Rack - Bandeja de Controladores - - - - Project Notes - Notas del Proyecto - - - - Fullscreen - - - - - Volume as dBFS - Volumen en dBFS - - - - Smooth scroll - Desplazamiento suave - - - - Enable note labels in piano roll - Nombres de notas en piano roll - - - - MIDI File (*.mid) - Archivo MIDI (*.mid) - - - - - untitled - Sin título - - - - - Select file for project-export... - Selecciona un archivo para exportar proyecto... - - - - Select directory for writing exported tracks... - Elige en qué directorio se escribirán las pistas exportadas... - - - - Save project - Guardar proyecto - - - - Project saved - Proyecto guardado - - - - The project %1 is now saved. - El proyecto %1 ha sido guardado. - - - - Project NOT saved. - Proyecto NO guardado. - - - - The project %1 was not saved! - ¡El proyecto %1 no ha sido guardado! - - - - Import file - Importar archivo - - - - MIDI sequences - secuencias MIDI - - - - Hydrogen projects - Proyectos de Hydrogen - - - - All file types - Todos los archivos - - - - MeterDialog - - - - Meter Numerator - Numerador del Compás - - - - Meter numerator - - - - - - Meter Denominator - Denominador del Compás - - - - Meter denominator - - - - - TIME SIG - COMPÁS - - - - MeterModel - - - Numerator - Numerador - - - - Denominator - Denominador - - - - MidiCCRackView - - - - MIDI CC Rack - %1 - - - - - MIDI CC Knobs: - - - - - CC %1 - - - - - MidiController - - - MIDI Controller - Controlador MIDI - - - - unnamed_midi_controller - controlador_midi_sin_nombre - - - - MidiImport - - - - Setup incomplete - Configuración incompleta - - - - You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. - - - - - You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - Nos has complidado LMMS con soporte para el reproductor SoundFont2, que se utiliza para añadir los sonidos por defecto de los archivos MIDI importados. Por lo tanto, no se reproducirá ningún sonido luego de importar este archivo MIDI. - - - - MIDI Time Signature Numerator - - - - - MIDI Time Signature Denominator - - - - - Numerator - Numerador - - - - Denominator - Denominador - - - - Track - Pista - - - - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - Ha fallado el servidor JACK - - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - Parece ser que el servidor JACK está apagado. - - MidiPatternW @@ -7998,2730 +2997,369 @@ Por favor visita http://lmms.sf.net/wiki para obtener documentación acerca de L Salir (&Q) - - &Insert Mode + + Esc + &Insert Mode + + + + F - + &Velocity Mode - + D - + Select All - + A - - MidiPort - - - Input channel - Canal de entrada - - - - Output channel - Canal de salida - - - - Input controller - Controlador de entrada - - - - Output controller - Controlador de salida - - - - Fixed input velocity - Velocidad de entrada fija - - - - Fixed output velocity - Velocidad de salida fija - - - - Fixed output note - Nota de salida fija - - - - Output MIDI program - Programa de salida MIDI - - - - Base velocity - Velocidad básica - - - - Receive MIDI-events - Recibir eventos MIDI - - - - Send MIDI-events - Enviar eventos MIDI - - - - MidiSetupWidget - - - Device - - - - - MonstroInstrument - - - Osc 1 volume - - - - - Osc 1 panning - - - - - Osc 1 coarse detune - - - - - Osc 1 fine detune left - - - - - Osc 1 fine detune right - - - - - Osc 1 stereo phase offset - - - - - Osc 1 pulse width - - - - - Osc 1 sync send on rise - - - - - Osc 1 sync send on fall - - - - - Osc 2 volume - - - - - Osc 2 panning - - - - - Osc 2 coarse detune - - - - - Osc 2 fine detune left - - - - - Osc 2 fine detune right - - - - - Osc 2 stereo phase offset - - - - - Osc 2 waveform - - - - - Osc 2 sync hard - - - - - Osc 2 sync reverse - - - - - Osc 3 volume - - - - - Osc 3 panning - - - - - Osc 3 coarse detune - - - - - Osc 3 Stereo phase offset - Osc 3 desfase estéreo - - - - Osc 3 sub-oscillator mix - - - - - Osc 3 waveform 1 - - - - - Osc 3 waveform 2 - - - - - Osc 3 sync hard - - - - - Osc 3 Sync reverse - - - - - LFO 1 waveform - - - - - LFO 1 attack - - - - - LFO 1 rate - - - - - LFO 1 phase - - - - - LFO 2 waveform - - - - - LFO 2 attack - - - - - LFO 2 rate - - - - - LFO 2 phase - - - - - Env 1 pre-delay - - - - - Env 1 attack - - - - - Env 1 hold - - - - - Env 1 decay - - - - - Env 1 sustain - - - - - Env 1 release - - - - - Env 1 slope - - - - - Env 2 pre-delay - - - - - Env 2 attack - - - - - Env 2 hold - - - - - Env 2 decay - - - - - Env 2 sustain - - - - - Env 2 release - - - - - Env 2 slope - - - - - Osc 2+3 modulation - - - - - Selected view - Vista seleccionada - - - - Osc 1 - Vol env 1 - - - - - Osc 1 - Vol env 2 - - - - - Osc 1 - Vol LFO 1 - - - - - Osc 1 - Vol LFO 2 - - - - - Osc 2 - Vol env 1 - - - - - Osc 2 - Vol env 2 - - - - - Osc 2 - Vol LFO 1 - - - - - Osc 2 - Vol LFO 2 - - - - - Osc 3 - Vol env 1 - - - - - Osc 3 - Vol env 2 - - - - - Osc 3 - Vol LFO 1 - - - - - Osc 3 - Vol LFO 2 - - - - - Osc 1 - Phs env 1 - - - - - Osc 1 - Phs env 2 - - - - - Osc 1 - Phs LFO 1 - - - - - Osc 1 - Phs LFO 2 - - - - - Osc 2 - Phs env 1 - - - - - Osc 2 - Phs env 2 - - - - - Osc 2 - Phs LFO 1 - - - - - Osc 2 - Phs LFO 2 - - - - - Osc 3 - Phs env 1 - - - - - Osc 3 - Phs env 2 - - - - - Osc 3 - Phs LFO 1 - - - - - Osc 3 - Phs LFO 2 - - - - - Osc 1 - Pit env 1 - - - - - Osc 1 - Pit env 2 - - - - - Osc 1 - Pit LFO 1 - - - - - Osc 1 - Pit LFO 2 - - - - - Osc 2 - Pit env 1 - - - - - Osc 2 - Pit env 2 - - - - - Osc 2 - Pit LFO 1 - - - - - Osc 2 - Pit LFO 2 - - - - - Osc 3 - Pit env 1 - - - - - Osc 3 - Pit env 2 - - - - - Osc 3 - Pit LFO 1 - - - - - Osc 3 - Pit LFO 2 - - - - - Osc 1 - PW env 1 - - - - - Osc 1 - PW env 2 - - - - - Osc 1 - PW LFO 1 - - - - - Osc 1 - PW LFO 2 - - - - - Osc 3 - Sub env 1 - - - - - Osc 3 - Sub env 2 - - - - - Osc 3 - Sub LFO 1 - - - - - Osc 3 - Sub LFO 2 - - - - - - Sine wave - Onda Sinusoidal - - - - Bandlimited Triangle wave - Onda triangular de BandaLimitada - - - - Bandlimited Saw wave - Onda de sierra de bandaLimitada - - - - Bandlimited Ramp wave - Onda de rampa de bandaLimitada - - - - Bandlimited Square wave - Onda cuadrada de BandaLimitada - - - - Bandlimited Moog saw wave - Onda de sierra Moog de banda Limitada - - - - - Soft square wave - Onda Cuadrada suave - - - - Absolute sine wave - Onda Sinusoidal Absoluta - - - - - Exponential wave - Onda Exponencial - - - - White noise - Ruido blanco - - - - Digital Triangle wave - Onda triangular digital - - - - Digital Saw wave - Onda de sierra digital - - - - Digital Ramp wave - Onda de Rampa digital - - - - Digital Square wave - Onda Cuadrada digital - - - - Digital Moog saw wave - Onda de sierra Moog digital - - - - Triangle wave - Onda triangular - - - - Saw wave - Onda de sierra - - - - Ramp wave - Onda de rampa - - - - Square wave - Onda Cuadrada - - - - Moog saw wave - Onda de sierra Moog - - - - Abs. sine wave - Onda sinus. abs - - - - Random - Aleatorio - - - - Random smooth - Aleatoria suave - - - - MonstroView - - - Operators view - Vista de Operadores - - - - Matrix view - Vista de Matriz - - - - - - Volume - Volumen - - - - - - Panning - Paneo - - - - - - Coarse detune - Desafinación gruesa - - - - - - semitones - semitonos - - - - - Fine tune left - - - - - - - - cents - cents - - - - - Fine tune right - - - - - - - Stereo phase offset - Desfase estéreo - - - - - - - - deg - deg - - - - Pulse width - Amplitud del pulso - - - - Send sync on pulse rise - Enviar sinc en la fase ascendente del pulso - - - - Send sync on pulse fall - Enviar sinc en la fase descendente del pulso - - - - Hard sync oscillator 2 - Sincronización dura oscilador 2 - - - - Reverse sync oscillator 2 - Sincronización reversa oscilador 2 - - - - Sub-osc mix - Mezcla de sub-osc - - - - Hard sync oscillator 3 - Sincronización dura oscilador 3 - - - - Reverse sync oscillator 3 - Sincronización reversa oscilador 3 - - - - - - - Attack - Ataque - - - - - Rate - Tasa - - - - - Phase - Fase - - - - - Pre-delay - Pre-retraso - - - - - Hold - Mantener - - - - - Decay - Caída - - - - - Sustain - Sostén - - - - - Release - Disipación - - - - - Slope - Curva - - - - Mix osc 2 with osc 3 - - - - - Modulate amplitude of osc 3 by osc 2 - - - - - Modulate frequency of osc 3 by osc 2 - - - - - Modulate phase of osc 3 by osc 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Modulation amount - Cantidad de modulación - - - - MultitapEchoControlDialog - - - Length - Duración - - - - Step length: - Longitud del paso: - - - - Dry - Limpio - - - - Dry gain: - - - - - Stages - Etapas - - - - Low-pass stages: - - - - - Swap inputs - Intercambiar entradas - - - - Swap left and right input channels for reflections - Intercambiar los canales de entrada izquierdo y derecho para reflexiones - - - - NesInstrument - - - Channel 1 coarse detune - - - - - Channel 1 volume - Canal 1 Volumen - - - - Channel 1 envelope length - - - - - Channel 1 duty cycle - - - - - Channel 1 sweep amount - - - - - Channel 1 sweep rate - - - - - Channel 2 Coarse detune - Canal 2 desafinación gruesa - - - - Channel 2 Volume - Canal 2 Volumen - - - - Channel 2 envelope length - - - - - Channel 2 duty cycle - - - - - Channel 2 sweep amount - - - - - Channel 2 sweep rate - - - - - Channel 3 coarse detune - - - - - Channel 3 volume - Canal 3 Volumen - - - - Channel 4 volume - Canal 4 Volumen - - - - Channel 4 envelope length - - - - - Channel 4 noise frequency - - - - - Channel 4 noise frequency sweep - - - - - Master volume - Volumen maestro - - - - Vibrato - Vibrato - - - - NesInstrumentView - - - - - - Volume - Volumen - - - - - - Coarse detune - Desafinación gruesa - - - - - - Envelope length - Longitud de la Envolvente - - - - Enable channel 1 - Habilitar el canal 1 - - - - Enable envelope 1 - Habilitar la envolvente 1 - - - - Enable envelope 1 loop - Habilitar el bucle de la envolvente 1 - - - - Enable sweep 1 - Habilitar barrido 1 - - - - - Sweep amount - Cantidad de barrido - - - - - Sweep rate - Tasa de barrido - - - - - 12.5% Duty cycle - Ciclo de trabajo 12.5% - - - - - 25% Duty cycle - Ciclo de trabajo 25% - - - - - 50% Duty cycle - Ciclo de trabajo 50% - - - - - 75% Duty cycle - Ciclo de trabajo 75% - - - - Enable channel 2 - Habilitar el canal 2 - - - - Enable envelope 2 - Habilitar la envolvente 2 - - - - Enable envelope 2 loop - Habilitar el bucle de la envolvente 2 - - - - Enable sweep 2 - Habilitar barrido 2 - - - - Enable channel 3 - Habilitar el canal 3 - - - - Noise Frequency - Frecuencia de Ruido - - - - Frequency sweep - Barrido de Frecuencia - - - - Enable channel 4 - Habilitar el canal 4 - - - - Enable envelope 4 - Habilitar la envolvente 4 - - - - Enable envelope 4 loop - Habilitar el bucle de la envolvente 4 - - - - Quantize noise frequency when using note frequency - Cuantizar la frecuencia de ruido al usar frecuencia de nota - - - - Use note frequency for noise - Usar frecuencia de nota para ruido - - - - Noise mode - Modo de Ruido - - - - Master volume - Volumen maestro - - - - Vibrato - Vibrato - - - - OpulenzInstrument - - - Patch - Ajuste - - - - Op 1 attack - - - - - Op 1 decay - - - - - Op 1 sustain - - - - - Op 1 release - - - - - Op 1 level - - - - - Op 1 level scaling - - - - - Op 1 frequency multiplier - - - - - Op 1 feedback - - - - - Op 1 key scaling rate - - - - - Op 1 percussive envelope - - - - - Op 1 tremolo - - - - - Op 1 vibrato - - - - - Op 1 waveform - - - - - Op 2 attack - - - - - Op 2 decay - - - - - Op 2 sustain - - - - - Op 2 release - - - - - Op 2 level - - - - - Op 2 level scaling - - - - - Op 2 frequency multiplier - - - - - Op 2 key scaling rate - - - - - Op 2 percussive envelope - - - - - Op 2 tremolo - - - - - Op 2 vibrato - - - - - Op 2 waveform - - - - - FM - FM - - - - Vibrato depth - - - - - Tremolo depth - - - - - OpulenzInstrumentView - - - - Attack - Ataque - - - - - Decay - Caída - - - - - Release - Disipación - - - - - Frequency multiplier - Multiplicador de frecuencia - - - - OscillatorObject - - - Osc %1 waveform - Forma de onda del osc %1 - - - - Osc %1 harmonic - armónicos del Osc %1 - - - - - Osc %1 volume - Osc %1 Volumen - - - - - Osc %1 panning - Osc %1 paneo - - - - - Osc %1 fine detuning left - Osc %1 desafinación fina izquierda - - - - Osc %1 coarse detuning - Osc %1 desafinación gruesa - - - - Osc %1 fine detuning right - Osc %1 desafinación fina derecha - - - - Osc %1 phase-offset - Osc %1 desfase - - - - Osc %1 stereo phase-detuning - Osc %1 desafinación de fase estéreo - - - - Osc %1 wave shape - Osc %1 forma de onda - - - - Modulation type %1 - Tipo de modulación %1 - - - - Oscilloscope - - - Oscilloscope - - - - - Click to enable - Click para activar - - PatchesDialog + Qsynth: Channel Preset Qsynth: Preconfiguración del Canal + Bank selector Selector de banco + Bank Banco + Program selector Selector de programa + Patch Ajuste + Name Nombre + OK De acuerdo + Cancel Cancelar - - PatmanView - - - Open patch - - - - - Loop - Bucle - - - - Loop mode - Modo Bucle - - - - Tune - Afinación - - - - Tune mode - Modo de Afinación - - - - No file selected - Ningún archivo seleccionado - - - - Open patch file - Abrir archivo Patch - - - - Patch-Files (*.pat) - Archivos Patch (*.pat) - - - - MidiClipView - - - Open in piano-roll - Abrir en piano-roll - - - - Set as ghost in piano-roll - - - - - Clear all notes - Borrar todas las notas - - - - Reset name - Restaurar nombre - - - - Change name - Cambiar nombre - - - - Add steps - Agregar pasos - - - - Remove steps - Quitar pasos - - - - Clone Steps - Clonar Pasos - - - - PeakController - - - Peak Controller - Controlador de Picos - - - - Peak Controller Bug - Error en el controlador de Picos - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - Debido a un error en versiones antiguas de LMMS, el controlador de Picos tal vez no se conecte apropiadamente. Por favor asegúrate que los controladores de picos estén conectados apropiadamente y vuelve a guardar este archivo. Disculpa los inconvenientes. - - - - PeakControllerDialog - - - PEAK - PICO - - - - LFO Controller - Controlador LFO - - - - PeakControllerEffectControlDialog - - - BASE - BASE - - - - Base: - - - - - AMNT - CANT - - - - Modulation amount: - Cantidad de modulación: - - - - MULT - MULT - - - - Amount multiplicator: - - - - - ATCK - ATQ - - - - Attack: - Ataque: - - - - DCAY - CAI - - - - Release: - Disipación: - - - - TRSH - UMBRAL - - - - Treshold: - Umbral: - - - - Mute output - Silenciar salida - - - - Absolute value - - - - - PeakControllerEffectControls - - - Base value - Valor base - - - - Modulation amount - Cantidad de modulación - - - - Attack - Ataque - - - - Release - Disipación - - - - Treshold - Umbral - - - - Mute output - Silenciar salida - - - - Absolute value - - - - - Amount multiplicator - - - - - PianoRoll - - - Note Velocity - Velocidad de Nota - - - - Note Panning - Paneo de nota - - - - Mark/unmark current semitone - Marcar/desmarcar este semitono - - - - Mark/unmark all corresponding octave semitones - Marcar/desmarcar todos los semitonos en la octava correspondiente - - - - Mark current scale - Marcar la escala actual - - - - Mark current chord - Marcar el acorde actual - - - - Unmark all - Desmarcar todo - - - - Select all notes on this key - Seleccionar todas las notas en este tono - - - - Note lock - Figura actual - - - - Last note - Ultima nota - - - - No key - - - - - No scale - Sin escala - - - - No chord - Sin acorde - - - - Nudge - - - - - Snap - - - - - Velocity: %1% - Velocidad: %1% - - - - Panning: %1% left - Paneo: %1% izq - - - - Panning: %1% right - Paneo: %1% der - - - - Panning: center - Paneo: centro - - - - Glue notes failed - - - - - Please select notes to glue first. - - - - - Please open a clip by double-clicking on it! - ¡Por favor abre el patrón haciendo doble click sobre él! - - - - - Please enter a new value between %1 and %2: - Por favor ingresa un nuevo valor entre %1 y %2: - - - - PianoRollWindow - - - Play/pause current clip (Space) - Reproducir/Pausar el patrón actual (Espacio) - - - - Record notes from MIDI-device/channel-piano - Grabar notas desde el dispositivo/canal/teclado MIDI - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - Grabar notas desde el dispositivo/canal/teclado MIDI escuchando la Canción o el Ritmo+Bajo - - - - Record notes from MIDI-device/channel-piano, one step at the time - - - - - Stop playing of current clip (Space) - Detener la reproducción del patrón actual (Espacio) - - - - Edit actions - Acciones de edición - - - - Draw mode (Shift+D) - Modo de dibujo (Shift+D) - - - - Erase mode (Shift+E) - Modo de borrado (Shift+E) - - - - Select mode (Shift+S) - Modo de Selección (Shift+S) - - - - Pitch Bend mode (Shift+T) - - - - - Quantize - Cuantizar - - - - Quantize positions - - - - - Quantize lengths - - - - - File actions - - - - - Import clip - - - - - - Export clip - - - - - Copy paste controls - Controles de copiado y pegado - - - - Cut (%1+X) - - - - - Copy (%1+C) - - - - - Paste (%1+V) - - - - - Timeline controls - Controles de la línea de Tiempo - - - - Glue - - - - - Knife - - - - - Fill - - - - - Cut overlaps - - - - - Min length as last - - - - - Max length as last - - - - - Zoom and note controls - Controles de acercamiento y nota - - - - Horizontal zooming - - - - - Vertical zooming - - - - - Quantization - Cuantización - - - - Note length - - - - - Key - - - - - Scale - - - - - Chord - - - - - Snap mode - - - - - Clear ghost notes - - - - - - Piano-Roll - %1 - Piano-Roll - %1 - - - - - Piano-Roll - no clip - Piano-Roll - sin patrón - - - - - XML clip file (*.xpt *.xptz) - - - - - Export clip success - - - - - Clip saved to %1 - - - - - Import clip. - - - - - You are about to import a clip, this will overwrite your current clip. Do you want to continue? - - - - - Open clip - - - - - Import clip success - - - - - Imported clip %1! - - - - - PianoView - - - Base note - Nota base - - - - First note - - - - - Last note - Ultima nota - - - - Plugin - - - Plugin not found - Complemento no encontrado - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - ¡El complemento "%1" no fue encontrado o no se pudo cargar! -Razón: "%2" - - - - Error while loading plugin - Error al cargar el complemento - - - - Failed to load plugin "%1"! - Falló la carga del complemento "%1"! - - PluginBrowser - - Instrument Plugins - Instrumentos - - - - Instrument browser - Explorador de Instrumentos - - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - Arrastra un instrumento al Editor de Canción, al Editor de Ritmo+Bajo o sobre una pista de instrumento existente. - - - + no description sin descripción - + A native amplifier plugin Un complemento de amplificación nativo - + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track Sampler simple con varias configuraciones para usar muestras (por ej. percusión) en una pista de instrumento - + Boost your bass the fast and simple way Realza tus graves de forma rápida y fácil - + Customizable wavetable synthesizer Sintetizador de tabla de ondas personalizable - + An oversampling bitcrusher Un reductor de bits de sobremuestreo - + Carla Patchbay Instrument Bahía de Conexiones Carla - + Carla Rack Instrument Bandeja de complementos Carla - + A dynamic range compressor. - + A 4-band Crossover Equalizer Un ecualizador cruzado de 4 bandas - + A native delay plugin Un complemento de Delay nativo - + A Dual filter plugin Un complemento de filtro dual - + plugin for processing dynamics in a flexible way Complemento para procesar dinámicas de una manera flexible - + A native eq plugin Un complemento de EQ nativo - + A native flanger plugin Un complemento Flanger nativo - + Emulation of GameBoy (TM) APU Emulación del APU de GameBoy (TM) - + Player for GIG files Reproductor para archivos GIG - + Filter for importing Hydrogen files into LMMS Filtro para importar archivos de Hydrogen a LMMS - + Versatile drum synthesizer Sintetizador de percusión versátil - + List installed LADSPA plugins Listar los complementos LADSPA instalados - + plugin for using arbitrary LADSPA-effects inside LMMS. complemento para usar efectos LADSPA a voluntad en LMMS. - + Incomplete monophonic imitation TB-303 - Imitación monofónica incompleta del TB-303 + - + plugin for using arbitrary LV2-effects inside LMMS. - + plugin for using arbitrary LV2 instruments inside LMMS. - + Filter for exporting MIDI-files from LMMS Filtro para exportar archivos MIDI desde LMMS - + Filter for importing MIDI-files into LMMS Filtro para importar archivos MIDI en LMMS - + Monstrous 3-oscillator synth with modulation matrix Monstruoso sinte de 3 osciladores con matriz de modulación - + A multitap echo delay plugin Un complemento de Multitap echo delay - + A NES-like synthesizer Un sintetizador tipo-NES - + 2-operator FM Synth Sintetizador FM de 2 operadores - + Additive Synthesizer for organ-like sounds Sintetizador Aditivo para crear sonidos estilo órgano - + GUS-compatible patch instrument Instrumento de "patches" compatible con GUS - + Plugin for controlling knobs with sound peaks Complemento para controlar perillas a través de los picos de sonido - + Reverb algorithm by Sean Costello Algoritmo de reverberación por Sean Costello - + Player for SoundFont files Reproductor de archivos SoundFont - + LMMS port of sfxr Port de sfxr para LMMS - + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Emulación del MOS6581 y del MOS8580 SID. Este chip fue usado en las computadoras Commodore 64. - + A graphical spectrum analyzer. - + Plugin for enhancing stereo separation of a stereo input file Complemento para mejorar la separación estéreo de un archivo de entrada estéreo - + Plugin for freely manipulating stereo output Complemento para manipular libremente la salida estéreo - + Tuneful things to bang on Cosas melodiosas para pegarles - + Three powerful oscillators you can modulate in several ways Tres poderosos osciladores que puedes modular de muchas maneras - + A stereo field visualizer. - + VST-host for using VST(i)-plugins within LMMS Anfitrión VST para usar complementos VST(i) en LMMS - + Vibrating string modeler Modelador de cuerdas vibrantes - + plugin for using arbitrary VST effects inside LMMS. complemento para usar efectos VST a voluntad en LMMS. - + 4-oscillator modulatable wavetable synth Sintetizador de tabla de ondas de 4 osciladores modulables - + plugin for waveshaping complemento para modelado de ondas - + Mathematical expression parser Analizador de Expresión Matemática - + Embedded ZynAddSubFX ZynAddSubFX integrado - - - PluginDatabaseW - - Carla - Add New + + An all-pass filter allowing for extremely high orders. - - Format + + Granular pitch shifter - - Internal + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. - - LADSPA + + Basic Slicer - - DSSI - - - - - LV2 - - - - - VST2 - - - - - VST3 - - - - - AU - - - - - Sound Kits - - - - - Type - Tipo - - - - Effects - Efectos - - - - Instruments - Instrumentos - - - - MIDI Plugins - - - - - Other/Misc - - - - - Architecture - - - - - Native - - - - - Bridged - - - - - Bridged (Wine) - - - - - Requirements - - - - - With Custom GUI - - - - - With CV Ports - - - - - Real-time safe only - - - - - Stereo only - - - - - With Inline Display - - - - - Favorites only - - - - - (Number of Plugins go here) - - - - - &Add Plugin - - - - - Cancel - Cancelar - - - - Refresh - - - - - Reset filters - - - - - - - - - - - - - - - - - - - - TextLabel - - - - - Format: - - - - - Architecture: - - - - - Type: - Tipo: - - - - MIDI Ins: - - - - - Audio Ins: - - - - - CV Outs: - - - - - MIDI Outs: - - - - - Parameter Ins: - - - - - Parameter Outs: - - - - - Audio Outs: - - - - - CV Ins: - - - - - UniqueID: - - - - - Has Inline Display: - - - - - Has Custom GUI: - - - - - Is Synth: - - - - - Is Bridged: - - - - - Information - - - - - Name - Nombre - - - - Label/URI - - - - - Maker - - - - - Binary/Filename - - - - - Focus Text Search - - - - - Ctrl+F + + Tap to the beat @@ -10820,93 +3458,98 @@ Este chip fue usado en las computadoras Commodore 64. - Send Bank/Program Changes + Send Notes - Send Control Changes + Send Bank/Program Changes - Send Channel Pressure + Send Control Changes - Send Note Aftertouch + Send Channel Pressure - Send Pitchbend + Send Note Aftertouch + Send Pitchbend + + + + Send All Sound/Notes Off - + Plugin Name - + Program: - + MIDI Program: - + Save State - + Load State - + Information - + Label/URI: - + Name: - + Type: Tipo: - + Maker: - + Copyright: - + Unique ID: @@ -10914,16 +3557,457 @@ Plugin Name PluginFactory - + Plugin not found. Complemento no encontrado - + LMMS plugin %1 does not have a plugin descriptor named %2! ¡El complemento LMMS %1 no tiene un identificador llamado %2! + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + PluginParameter @@ -10938,157 +4022,61 @@ Plugin Name + TextLabel + + + + ... - PluginRefreshW + PluginRefreshDialog - - Carla - Refresh + + Plugin Refresh - - Search for new... + + Search for: - - LADSPA + + All plugins, ignoring cache - - DSSI + + Updated plugins only - - LV2 + + Check previously invalid plugins - - VST2 - - - - - VST3 - - - - - AU - - - - - SF2/3 - - - - - SFZ - - - - - Native - - - - - POSIX 32bit - - - - - POSIX 64bit - - - - - Windows 32bit - - - - - Windows 64bit - - - - - Available tools: - - - - - python3-rdflib (LADSPA-RDF support) - - - - - carla-discovery-win64 - - - - - carla-discovery-native - - - - - carla-discovery-posix32 - - - - - carla-discovery-posix64 - - - - - carla-discovery-win32 - - - - - Options: - - - - - Carla will run small processing checks when scanning the plugins (to make sure they won't crash). -You can disable these checks to get a faster scanning time (at your own risk). - - - - - Run processing checks while scanning - - - - + Press 'Scan' to begin the search - + Scan - + >> Skip - + Close - Cerrar + @@ -11103,50 +4091,50 @@ You can disable these checks to get a faster scanning time (at your own risk). - + Enable - + On/Off Encendido/Apagado - + - + PluginName - + MIDI MIDI - + AUDIO IN - + AUDIO OUT - + GUI - + Edit - + Remove @@ -11161,2286 +4149,13561 @@ You can disable these checks to get a faster scanning time (at your own risk). - - ProjectNotes - - - Project Notes - Notas del Proyecto - - - - Enter project notes here - Ingrese las Notas del Proyecto Aquí - - - - Edit Actions - Edición - - - - &Undo - Deshacer(&U) - - - - %1+Z - %1+Z - - - - &Redo - &Rehacer - - - - %1+Y - %1+Y - - - - &Copy - &Copiar - - - - %1+C - %1+C - - - - Cu&t - Cor&tar - - - - %1+X - %1+X - - - - &Paste - &Pegar - - - - %1+V - %1+V - - - - Format Actions - Formato - - - - &Bold - Negrita (&B) - - - - %1+B - %1+B - - - - &Italic - Cursiva (&I) - - - - %1+I - %1+I - - - - &Underline - S&ubrayado - - - - %1+U - %1+U - - - - &Left - Izquierda(&L) - - - - %1+L - %1+L - - - - C&enter - C&entrar - - - - %1+E - %1+E - - - - &Right - De&recha - - - - %1+R - %1+R - - - - &Justify - &Justificar - - - - %1+J - %1+J - - - - &Color... - &Color... - - ProjectRenderer - + WAV (*.wav) WAV (*.wav) - + FLAC (*.flac) FLAC (*.flac) - + OGG (*.ogg) OGG (*.ogg) - + MP3 (*.mp3) MP3 (*.mp3) + + QGroupBox + + + + Settings for %1 + + + QObject - + Reload Plugin - + Show GUI Mostrar IGU - + Help Ayuda + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + QWidget - - - - + + Name: Nombre: - - URI: - - - - - - + Maker: Creador: - - - + Copyright: Derechos de autor: - - + Requires Real Time: Requiere Tiempo Real: - - - - - - + + + Yes Si - - - - - - + + + No No - - + Real Time Capable: Ejecutable en Tiempo Real: - - + In Place Broken: Conflicto de puertos: - - + Channels In: Canales entrantes: - - + Channels Out: Canales salientes: - + File: %1 Archivo: %1 - + File: Archivo: - RecentProjectsMenu + XYControllerW - - &Recently Opened Projects - Proyectos &Recientes + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + - RenameDialog + lmms::AmplifierControls - - Rename... - Renombrar... + + Volume + + + + + Panning + + + + + Left gain + + + + + Right gain + - ReverbSCControlDialog + lmms::AudioFileProcessor - - Input - Entrada + + Amplify + - - Input gain: - Ganancia de Entrada: + + Start of sample + - - Size - Tamaño + + End of sample + - - Size: - Tamaño: + + Loopback point + - - Color - Color + + Reverse sample + - - Color: - Color: + + Loop mode + - - Output - Salida + + Stutter + - - Output gain: - Ganancia de Salida: + + Interpolation mode + + + + + None + + + + + Linear + + + + + Sinc + + + + + Sample not found + - ReverbSCControls + lmms::AudioJack - + + JACK client restarted + + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + + + + + Client name + + + + + Channels + + + + + lmms::AudioOss + + + Device + + + + + Channels + + + + + lmms::AudioPortAudio::setupWidget + + + Backend + + + + + Device + + + + + lmms::AudioPulseAudio + + + Device + + + + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + + + + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + + Gain + + + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + Input gain - Ganancia de entrada + - - Size - Tamaño + + Input noise + - - Color - Color + + Output gain + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + + + + + Output gain + + + + + Attack time + + + + + Release time + + + + + Stereo mode + + + + + lmms::Effect + + + Effect enabled + + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + + + + + Denominator + + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + Input gain + + + + + Size + + + + + Color + + + + Output gain - Ganancia de salida + - SaControls + lmms::SaControls - + Pause - + Reference freeze - + Waterfall - + Averaging - - - Stereo - Estéreo - - - - Peak hold - - - Logarithmic frequency + Stereo - Logarithmic amplitude + Peak hold + + + + + Logarithmic frequency - Frequency range - - - - - Amplitude range - - - - - FFT block size + Logarithmic amplitude - FFT window type + Frequency range + + + + + Amplitude range + + + + + FFT block size - Peak envelope resolution - - - - - Spectrum display resolution - - - - - Peak decay multiplier + FFT window type - Averaging weight + Peak envelope resolution - Waterfall history size + Spectrum display resolution - Waterfall gamma correction + Peak decay multiplier - FFT window overlap + Averaging weight + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + FFT zero padding - - + + Full (auto) - - + + Audible - + Bass - Graves + - + Mids - + High - + Extended - + Loud - + Silent - + (High time res.) - + (High freq. res.) - + Rectangular (Off) - + Blackman-Harris (Default) - + Hamming - + Hanning - SaControlsDialog + lmms::SampleClip - - Pause - - - - - Pause data acquisition - - - - - Reference freeze - - - - - Freeze current input as a reference / disable falloff in peak-hold mode. - - - - - Waterfall - - - - - Display real-time spectrogram - - - - - Averaging - - - - - Enable exponential moving average - - - - - Stereo - Estéreo - - - - Display stereo channels separately - Mostrar canales estéreo por separado - - - - Peak hold - - - - - Display envelope of peak values - - - - - Logarithmic frequency - - - - - Switch between logarithmic and linear frequency scale - - - - - - Frequency range - - - - - Logarithmic amplitude - - - - - Switch between logarithmic and linear amplitude scale - - - - - - Amplitude range - - - - - Envelope res. - - - - - Increase envelope resolution for better details, decrease for better GUI performance. - - - - - - Draw at most - - - - - envelope points per pixel - - - - - Spectrum res. - - - - - Increase spectrum resolution for better details, decrease for better GUI performance. - - - - - spectrum points per pixel - - - - - Falloff factor - - - - - Decrease to make peaks fall faster. - - - - - Multiply buffered value by - - - - - Averaging weight - - - - - Decrease to make averaging slower and smoother. - - - - - New sample contributes - La nueva muestra aporta - - - - Waterfall height - - - - - Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. - - - - - Keep - - - - - lines - - - - - Waterfall gamma - - - - - Decrease to see very weak signals, increase to get better contrast. - - - - - Gamma value: - - - - - Window overlap - - - - - Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. - - - - - Each sample processed - Cada muestra procesada - - - - times - - - - - Zero padding - - - - - Increase to get smoother-looking spectrum. Warning: high CPU usage. - - - - - Processing buffer is - - - - - steps larger than input block - - - - - Advanced settings - - - - - Access advanced settings - - - - - - FFT block size - - - - - - FFT window type + + Sample not found - SampleBuffer + lmms::SampleTrack - - Fail to open file - No se pudo abrir el archivo - - - - Audio files are limited to %1 MB in size and %2 minutes of playing time - Los archivos de audio tienen un límite de tamaño de %1 MB y %2 minutos de duración - - - - Open audio file - Abrir archivo de audio - - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - Todos los archivos de Audio (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - - Wave-Files (*.wav) - Archivos Wave (*.wav) - - - - OGG-Files (*.ogg) - Archivos OGG (*.ogg) - - - - DrumSynth-Files (*.ds) - Archivos DrumSynth (*.ds) - - - - FLAC-Files (*.flac) - Archivos FLAC (*.flac) - - - - SPEEX-Files (*.spx) - Archivos SPEEX (*.spx) - - - - VOC-Files (*.voc) - Archivos VOC (*.voc) - - - - AIFF-Files (*.aif *.aiff) - Archivos AIFF (*.aif *.aiff) - - - - AU-Files (*.au) - Archivos AU (*.au) - - - - RAW-Files (*.raw) - Archivos RAW (*.raw) - - - - SampleClipView - - - Double-click to open sample - Haga doble clic para abrir la muestra. - - - - Delete (middle mousebutton) - Borrar (click del medio ) - - - - Delete selection (middle mousebutton) - - - - - Cut - Cortar - - - - Cut selection - - - - - Copy - Copiar - - - - Copy selection - - - - - Paste - Pegar - - - - Mute/unmute (<%1> + middle click) - Silenciar/Escuchar (<%1> + click del medio) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Reverse sample - Reproducir la muestra en reversa - - - - Set clip color - - - - - Use track color - - - - - SampleTrack - - + Volume - Volumen + - + Panning - Paneo + - + Mixer channel - Canal FX + - - + + Sample track - Pista de muestras - - - - SampleTrackView - - - Track volume - Volumen de la pista - - - - Channel volume: - Volumen del canal: - - - - VOL - VOL - - - - Panning - Paneo - - - - Panning: - Paneo: - - - - PAN - PAN - - - - Channel %1: %2 - FX %1: %2 - - - - SampleTrackWindow - - - GENERAL SETTINGS - CONFIGURACIÓN GENERAL - - - - Sample volume - Volumen de la muestra - - - - Volume: - Volumen: - - - - VOL - VOL - - - - Panning - Paneo - - - - Panning: - Paneo: - - - - PAN - PAN - - - - Mixer channel - Canal FX - - - - CHANNEL - FX - - - - SaveOptionsWidget - - - Discard MIDI connections - - - - - Save As Project Bundle (with resources) - SetupDialog + lmms::Scale - - Reset to default value + + empty - - - Use built-in NaN handler - - - - - Settings - Configuración - - - - - General - - - - - Graphical user interface (GUI) - - - - - Display volume as dBFS - Mostrar volumen en dBFS - - - - Enable tooltips - Habilitar Consejos - - - - Enable master oscilloscope by default - - - - - Enable all note labels in piano roll - - - - - Enable compact track buttons - - - - - Enable one instrument-track-window mode - - - - - Show sidebar on the right-hand side - - - - - Let sample previews continue when mouse is released - - - - - Mute automation tracks during solo - - - - - Show warning when deleting tracks - - - - - Projects - - - - - Compress project files by default - - - - - Create a backup file when saving a project - - - - - Reopen last project on startup - - - - - Language - - - - - - Performance - - - - - Autosave - - - - - Enable autosave - - - - - Allow autosave while playing - - - - - User interface (UI) effects vs. performance - - - - - Smooth scroll in song editor - - - - - Display playback cursor in AudioFileProcessor - - - - - Plugins - Complementos - - - - VST plugins embedding: - - - - - No embedding - No hay inserciones - - - - Embed using Qt API - Insertado usando la API Qt - - - - Embed using native Win32 API - Insertado usando la API Win32 - - - - Embed using XEmbed protocol - Insertado usando el protocolo XEmbed - - - - Keep plugin windows on top when not embedded - - - - - Sync VST plugins to host playback - Sincronizar complementos VST al anfitrión - - - - Keep effects running even without input - Mantener los efectos en proceso aún sin señal de entrada - - - - - Audio - Audio - - - - Audio interface - - - - - HQ mode for output audio device - - - - - Buffer size - - - - - - MIDI - MIDI - - - - MIDI interface - - - - - Automatically assign MIDI controller to selected track - - - - - LMMS working directory - Directorio de trabajo de LMMS - - - - VST plugins directory - - - - - LADSPA plugins directories - - - - - SF2 directory - Directorio SF2 - - - - Default SF2 - - - - - GIG directory - Directorio GIG - - - - Theme directory - - - - - Background artwork - Imágenes de fondo - - - - Some changes require restarting. - - - - - Autosave interval: %1 - - - - - Choose the LMMS working directory - - - - - Choose your VST plugins directory - - - - - Choose your LADSPA plugins directory - - - - - Choose your default SF2 - - - - - Choose your theme directory - - - - - Choose your background picture - - - - - - Paths - Lugares - - - - OK - De acuerdo - - - - Cancel - Cancelar - - - - Frames: %1 -Latency: %2 ms - Cuadros: %1 -Latencia: %2 ms - - - - Choose your GIG directory - Elige tu directorio GIG - - - - Choose your SF2 directory - Elige tu directorio SF2 - - - - minutes - minutos - - - - minute - minuto - - - - Disabled - Inhabilitado - - SidInstrument + lmms::Sf2Instrument - + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + Cutoff frequency - Frecuencia de corte + - + Resonance - Resonancia + + + + + Filter type + - Filter type - Tipo de filtro - - - Voice 3 off - Voz 3 apagada + - + Volume - Volumen + - + Chip model - Modelo del chip - - - - SidInstrumentView - - - Volume: - Volumen: - - - - Resonance: - Resonancia: - - - - - Cutoff frequency: - Frecuencia de corte: - - - - High-pass filter - - - - - Band-pass filter - - - - - Low-pass filter - - - - - Voice 3 off - - - - - MOS6581 SID - MOS6581 SID - - - - MOS8580 SID - MOS8580 SID - - - - - Attack: - Ataque: - - - - - Decay: - Caída: - - - - Sustain: - Sostenido: - - - - - Release: - Disipación: - - - - Pulse Width: - Amplitud del Pulso: - - - - Coarse: - Gruesa: - - - - Pulse wave - - - - - Triangle wave - Onda triangular - - - - Saw wave - Onda de sierra - - - - Noise - Ruido - - - - Sync - Sincro - - - - Ring modulation - - - - - Filtered - Filtrado - - - - Test - Prueba - - - - Pulse width: - SideBarWidget + lmms::SlicerT - - Close - Cerrar + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + - Song + lmms::Song - + Tempo - Tempo + - + Master volume - Volumen maestro + - + Master pitch - Transporte - - - - Aborting project load + Aborting project load + + + + Project file contains local paths to plugins, which could be used to run malicious code. - + Can't load project: Project file contains local paths to plugins. - + LMMS Error report - Reporte de errores LMMS + - + (repeated %1 times) - + The following errors occurred while loading: - SongEditor + lmms::StereoEnhancerControls - - Could not open file - No se puede abrir el archivo - - - - Could not open file %1. You probably have no permissions to read this file. - Please make sure to have at least read permissions to the file and try again. - No se puede abrir el archivo %1. Probablemente no tengas permisos para leer este archivo. -Asegúrate de tener al menos permisos de lectura sobre este archivo e inténtalo nuevamente. - - - - Operation denied + + Width - - - A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. - - - - - - - Error - Error - - - - Couldn't create bundle folder. - - - - - Couldn't create resources folder. - - - - - Failed to copy resources. - - - - - Could not write file - No se puede escribir el archivo - - - - Could not open %1 for writing. You probably are not permitted towrite to this file. Please make sure you have write-access to the file and try again. - - - - - This %1 was created with LMMS %2 - - - - - Error in file - Error en el archivo - - - - The file %1 seems to contain errors and therefore can't be loaded. - El archivo %1 aparentemente contiene errores y por lo tanto no puede cargarse. - - - - Version difference - Diferencia de versión - - - - template - plantilla - - - - project - proyecto - - - - Tempo - Tempo - - - - TEMPO - - - - - Tempo in BPM - - - - - High quality mode - Modo de alta calidad - - - - - - Master volume - Volumen maestro - - - - - - Master pitch - Transporte - - - - Value: %1% - Valor: %1% - - - - Value: %1 semitones - Valor: %1 semitonos - - SongEditorWindow + lmms::StereoMatrixControls - - Song-Editor - Editor de Canción + + Left to Left + - - Play song (Space) - Reproducir canción (Espacio) + + Left to Right + - - Record samples from Audio-device - Grabar muestras desde el Dispositivo de Audio + + Right to Left + - - Record samples from Audio-device while playing song or BB track - Grabar muestras desde el Dispositivo de Audio escuchando la Canción o el Ritmo/Bajo + + Right to Right + + + + + lmms::Track + + + Mute + - - Stop song (Space) - Detener canción (Espacio) + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + - - Track actions - Acciones de pista + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + - - Add beat/bassline - Agregar Ritmo/bajo + + Couldn't open file + - - Add sample-track - Agregar pista de muestras + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + - - Add automation-track - Agregar pista de Automatización + + Loading project... + - + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + Edit actions - Acciones de edición - - - - Draw mode - Modo de dibujo - - - - Knife mode (split sample clips) - - Edit mode (select and move) - Modo de edición (seleccionar y mover) - - - - Timeline controls - Controles de la línea de Tiempo - - - - Bar insert controls + + Draw mode (Shift+D) - - Insert bar + + Erase mode (Shift+E) - - Remove bar + + Draw outValues mode (Shift+C) - + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + Zoom controls - Controles de Acercamiento + - + Horizontal zooming - + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + + + + + Draw mode + + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + + + + + + Zoom + + + + Snap controls - - + + Clip snapping size - + Toggle proportional snap on/off - + Base snapping size - StepRecorderWidget + lmms::gui::StepRecorderWidget - + Hint - Pista + - + Move recording curser using <Left/Right> arrows - SubWindow + lmms::gui::StereoEnhancerControlDialog - + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + Close - Cerrar + - + Maximize - Maximizar + - + Restore - Restaurar + - TabWidget + lmms::gui::TapTempoView - - - Settings for %1 - Configuración para %1 + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + - TemplatesMenu + lmms::gui::TemplatesMenu - + New from template - Nuevo desde plantilla + - TempoSyncKnob + lmms::gui::TempoSyncBarModelEditor - - + + Tempo Sync - Sincronizar al Tempo + - + No Sync - Sin Sincro + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + No Sync + + + + Eight beats - Ocho tiempos + - + Whole note - Redonda + - + Half note - Blanca + - + Quarter note - Negra + - + 8th note - Corchea - - - - 16th note - Semicorchea + + 16th note + + + + 32nd note - Fusa + - + Custom... - Personalizado... + - + Custom - Personalizado - - - - Synced to Eight Beats - Sincronizado a ocho tiempos + - Synced to Whole Note - Sincronizado a Redondas + Synced to Eight Beats + - Synced to Half Note - Sincronizado a Blancas + Synced to Whole Note + - Synced to Quarter Note - Sincronizado a Negras + Synced to Half Note + - Synced to 8th Note - Sincronizado a Corcheas + Synced to Quarter Note + - Synced to 16th Note - Sincronizado a Semicorcheas + Synced to 8th Note + + Synced to 16th Note + + + + Synced to 32nd Note - Sincronizado a Fusas + - TimeDisplayWidget + lmms::gui::TimeDisplayWidget - + Time units - - - MIN - MIN - - SEC - SEG + MIN + - MSEC - MSEG + SEC + - - BAR - COMPAS + + MSEC + - BEAT - PULSO + BAR + + BEAT + + + + TICK - TICK + - TimeLineWidget + lmms::gui::TimeLineWidget - + Auto scrolling - + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + Loop points - + After stopping go back to beginning - + After stopping go back to position at which playing was started - Al detenerse volver a la posición en la que comenzó la reproducción + - + After stopping keep position - Al detenerse mantener la posición final + - + Hint - Pista + - + Press <%1> to disable magnetic loop points. - Presiona <%1> para desactivar los puntos de bucle magnéticos. - - - - Track - - - Mute - Silencio - - - - Solo - Solo - - - - TrackContainer - - - Couldn't import file - No se pudo importar el archivo - - - - Couldn't find a filter for importing file %1. -You should convert this file into a format supported by LMMS using another software. - No se pudo hallar un filtro para importar el archivo %1. -Debes convertir este archivo a un formato soportado por LMMS usando otra aplicación. - - - - Couldn't open file - No se puede abrir el archivo - - - - Couldn't open file %1 for reading. -Please make sure you have read-permission to the file and the directory containing the file and try again! - El archivo %1 no puede abrirse para lectura. -¡Asegúrate de tener permisos de lectura tanto del archivo como del directorio que lo contiene e inténtalo nuevamente! - - - - Loading project... - Cargando proyecto... - - - - - Cancel - Cancelar - - - - - Please wait... - Por favor, espera... - - - - Loading cancelled - Carga cancelada - - - - Project loading was cancelled. - Carga del proyecto cancelada. - - - - Loading Track %1 (%2/Total %3) - Cargando Pista %1 (%2/Total %3) - - - - Importing MIDI-file... - Importando archivo MIDI... - - - - Clip - - - Mute - Silencio - - - - ClipView - - - Current position - Posición actual - - - - Current length - Duración actual - - - - - %1:%2 (%3:%4 to %5:%6) - %1:%2 (%3:%4 a %5:%6) - - - - Press <%1> and drag to make a copy. - Presiona <%1> y arrastra para crear una copia. - - - - Press <%1> for free resizing. - Presiona <%1> para redimensionar libremente. - - - - Hint - Pista - - - - Delete (middle mousebutton) - Borrar (click del medio ) - - - - Delete selection (middle mousebutton) - - Cut - Cortar - - - - Cut selection + + Set loop begin here - - Merge Selection + + Set loop end here - - Copy - Copiar - - - - Copy selection + + Loop edit mode (hold shift) - + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + Paste - Pegar - - - - Mute/unmute (<%1> + middle click) - Silenciar/Escuchar (<%1> + click del medio) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Set clip color - - - - - Use track color - TrackContentWidget + lmms::gui::TrackOperationsWidget - - Paste - Pegar - - - - TrackOperationsWidget - - + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. @@ -13453,257 +17716,249 @@ Please make sure you have read-permission to the file and the directory containi Mute - Silencio + Solo - Solo + - + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? - + Confirm removal - + Don't ask again - + Clone this track - Clonar esta pista - - - - Remove this track - Eliminar esta pista - - - - Clear this track - Limpiar esta pista - - - - Channel %1: %2 - FX %1: %2 - - - - Assign to new mixer Channel - Asignar a un nuevo Canal FX - - - - Turn all recording on - Activar todas las grabaciones - - - - Turn all recording off - Apagar todas las grabacioens - - - - Change color - Cambiar color - - - - Reset color to default - Restaurar el color por defecto - - - - Set random color - - Clear clip colors + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors - TripleOscillatorView + lmms::gui::TripleOscillatorView - + Modulate phase of oscillator 1 by oscillator 2 - + Modulate amplitude of oscillator 1 by oscillator 2 - + Mix output of oscillators 1 & 2 - + Synchronize oscillator 1 with oscillator 2 - Sincronizar el oscilador 1 con el oscilador 2 - - - - Modulate frequency of oscillator 1 by oscillator 2 + Modulate frequency of oscillator 1 by oscillator 2 + + + + Modulate phase of oscillator 2 by oscillator 3 - + Modulate amplitude of oscillator 2 by oscillator 3 - + Mix output of oscillators 2 & 3 - + Synchronize oscillator 2 with oscillator 3 - Sincronizar el oscilador 2 con el oscilador 3 + - + Modulate frequency of oscillator 2 by oscillator 3 - + Osc %1 volume: - Osc %1 Volumen: + - + Osc %1 panning: - Osc %1 paneo: + - - Osc %1 coarse detuning: - Osc %1 desafinación gruesa: - - - - semitones - semitonos - - - - Osc %1 fine detuning left: - Osc %1 desafinación fina izquierda: - - - + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + cents - cents + - + Osc %1 fine detuning right: - Osc %1 desafinación fina derecha: + - + Osc %1 phase-offset: - Osc %1 desfase: + - - + + degrees - grados + - + Osc %1 stereo phase-detuning: - Osc %1 desafinación de fase estéreo: + - + Sine wave - Onda sinusoidal + - + Triangle wave - Onda triangular + - + Saw wave - Onda de sierra + - + Square wave - Onda cuadrada + - + Moog-like saw wave - + Exponential wave - Onda Exponencial + - + White noise - Ruido blanco + - + User-defined wave - - - VecControls - - Display persistence amount - - - - - Logarithmic scale - - - - - High quality + + Use alias-free wavetable oscillators. - VecControlsDialog + lmms::gui::VecControlsDialog - + HQ - + Double the resolution and simulate continuous analog-like trace. @@ -13718,2618 +17973,782 @@ Please make sure you have read-permission to the file and the directory containi - + Persist. - + Trace persistence: higher amount means the trace will stay bright for longer time. - + Trace persistence - VersionedSaveDialog - - - Increment version number - Incrementar el número de versión - + lmms::gui::VersionedSaveDialog - Decrement version number - Disminuír el número de versión + Increment version number + - + + Decrement version number + + + + Save Options - + already exists. Do you want to replace it? - ¡Ya existe! ¿Deseas reemplazarlo? + - VestigeInstrumentView + lmms::gui::VestigeInstrumentView - - + + Open VST plugin - + Control VST plugin from LMMS host - + Open VST plugin preset - + Previous (-) - Anterior (-) + - + Save preset - Guardar preconfiguración + - + Next (+) - Siguiente (+) + - + Show/hide GUI - Mostrar/Ocultar IGU + - + Turn off all notes - Apagar todas las notas + - + DLL-files (*.dll) - archivos DDL (*.dll) + - + EXE-files (*.exe) - archivos EXE (*.exe) + - + + SO-files (*.so) + + + + No VST plugin loaded - + Preset - Preconfiguración + - + by - por + - + - VST plugin control - - control de complemento VST + - VstEffectControlDialog + lmms::gui::VibedView - - Show/hide - Mostrar/Ocultar + + Enable waveform + - + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + + + + Control VST plugin from LMMS host - + Open VST plugin preset - + Previous (-) - Anterior (-) + - + Next (+) - Siguiente (+) + - + Save preset - Guardar preconfiguración + - - + + Effect by: - Efecto por: + - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + - VstPlugin + lmms::gui::WatsynView - - - The VST plugin %1 could not be loaded. - El complemento VST %1 no se ha podido cargar. + + + + + Volume + - - Open Preset - Abrir Preconfiguración - - - - - Vst Plugin Preset (*.fxp *.fxb) - Preconfiguración VST (*.fxp *.fxb) - - - - : default - : por defecto - - - - Save Preset - Guardar preconfiguración - - - - .fxp - .fxp - - - - .FXP - .FXP - - - - .FXB - .FXB - - - - .fxb - .fxb - - - - Loading plugin - Cargando complemento - - - - Please wait while loading VST plugin... - Por favor espera mientras se carga el complemento VST... - - - - WatsynInstrument - - - Volume A1 - A1 volumen - - - - Volume A2 - A2 volumen - - - - Volume B1 - B1 volumen - - - - Volume B2 - B2 volumen - - - - Panning A1 - A1 paneo - - - - Panning A2 - A2 paneo - - - - Panning B1 - B1 paneo - - - - Panning B2 - B2 paneo - - - - Freq. multiplier A1 - A1 multiplicador de frec. - - - - Freq. multiplier A2 - A2 multiplicador de frec. - - - - Freq. multiplier B1 - B1 multiplicador de frec. - - - - Freq. multiplier B2 - B2 multiplicador de frec. - - - - Left detune A1 - A1 desafin izq - - - - Left detune A2 - A2 desafin izq - - - - Left detune B1 - B1 desafin izq - - - - Left detune B2 - B2 desafin izq - - - - Right detune A1 - A1 desafin der - - - - Right detune A2 - A2 desafin der - - - - Right detune B1 - B1 desafin der - - - - Right detune B2 - B2 desafin der - - - - A-B Mix - Mezcla A-B - - - - A-B Mix envelope amount - Cantidad de envolvente de la Mezcla A-B - - - - A-B Mix envelope attack - Ataque de la envolvente de la mezcla A-B - - - - A-B Mix envelope hold - Mantenido de la envolvente de la mezcla A-B - - - - A-B Mix envelope decay - Caída de la envolvente de la mezcla A-B - - - - A1-B2 Crosstalk - Diafonía A1-B2 - - - - A2-A1 modulation - Modulación A2-A1 - - - - B2-B1 modulation - Modulación B2-B1 - - - - Selected graph - Gráfico seleccionado - - - - WatsynView - + + - - - Volume - Volumen + Panning + + + - - - Panning - Paneo + Freq. multiplier + + + - - - Freq. multiplier - Multiplicador de frec. - - - - - - Left detune - Desafinación izquierda + + + + + + + - - - - - - cents - cents + + + + + + + + Right detune + + + + + A-B Mix + - - - - Right detune - Desafinación derecha - - - - A-B Mix - Mezcla A-B - - - Mix envelope amount - Cantidad de envolvente de la Mezcla + - + Mix envelope attack - Ataque de la envolvente de la Mezcla + - + Mix envelope hold - Mantenido de la envolvente de la Mezcla + - + Mix envelope decay - Caída de la envolvente de la Mezcla + - + Crosstalk - Diafonía + - + Select oscillator A1 - Seleccionar oscilador A1 + - + Select oscillator A2 - Seleccionar oscilador A2 + - + Select oscillator B1 - Seleccionar oscilador B1 + - + Select oscillator B2 - Seleccionar oscilador B2 + - + Mix output of A2 to A1 - Mezclar la salida de A2 con A1 + - + Modulate amplitude of A1 by output of A2 - + Ring modulate A1 and A2 - + Modulate phase of A1 by output of A2 - + Mix output of B2 to B1 - Mezclar la salida de B2 con B1 + - + Modulate amplitude of B1 by output of B2 - + Ring modulate B1 and B2 - + Modulate phase of B1 by output of B2 - - - - + + + + Draw your own waveform here by dragging your mouse on this graph. - Dibuja tu propia onda arrastrando el puntero sobre el gráfico. + - + Load waveform - Cargar onda + - + Load a waveform from a sample file - Cargar una forma de onda desde un archivo de muestra + - + Phase left - Fase izquierda + - + Shift phase by -15 degrees - + Phase right - Fase derecha + - + Shift phase by +15 degrees + + + + Normalize + + - Normalize - Normalizar - - - - Invert - Invertir + - - + + Smooth - Suavizar + - - + + Sine wave - Onda Sinusoidal + - - - + + + Triangle wave - Onda triangular + - + Saw wave - Onda de sierra + - - + + Square wave - Onda Cuadrada - - - - Xpressive - - - Selected graph - Gráfico seleccionado - - - - A1 - A1 - - - - A2 - A2 - - - - A3 - A3 - - - - W1 smoothing - W1 Suavizadora - - - - W2 smoothing - W2 Suavizadora - - - - W3 smoothing - W3 Suavizadora - - - - Panning 1 - - - - - Panning 2 - - - - - Rel trans - XpressiveView + lmms::gui::WaveShaperControlDialog - - Draw your own waveform here by dragging your mouse on this graph. - Dibuja tu propia onda arrastrando el puntero sobre el gráfico. - - - - Select oscillator W1 - Seleccionar Oscilador W1 - - - - Select oscillator W2 - Seleccionar Oscilador W2 - - - - Select oscillator W3 - Seleccionar Oscilador W3 - - - - Select output O1 - - - - - Select output O2 - - - - - Open help window - Abrir Ventana De Ayuda - - - - - Sine wave - Onda sinusoidal - - - - - Moog-saw wave - - - - - - Exponential wave - Onda Exponencial - - - - - Saw wave - Onda de sierra - - - - - User-defined wave - - - - - - Triangle wave - Onda triangular - - - - - Square wave - Onda cuadrada - - - - - White noise - Ruido blanco - - - - WaveInterpolate - Oleada Interpolar - - - - ExpressionValid - Expresión Validada - - - - General purpose 1: - Propósito General 1: - - - - General purpose 2: - Propósito General 2: - - - - General purpose 3: - Propósito General 3: - - - - O1 panning: - Panorámica O1: - - - - O2 panning: - Panorámica O2: - - - - Release transition: - Liberar La Transición: - - - - Smoothness - Suavizar - - - - ZynAddSubFxInstrument - - - Portamento - Portamento - - - - Filter frequency - - - - - Filter resonance - - - - - Bandwidth - Ancho De Banda - - - - FM gain - - - - - Resonance center frequency - - - - - Resonance bandwidth - - - - - Forward MIDI control change events - - - - - ZynAddSubFxView - - - Portamento: - Portamento: - - - - PORT - PORT - - - - Filter frequency: - - - - - FREQ - FREC - - - - Filter resonance: - - - - - RES - RESO - - - - Bandwidth: - Ancho De Banda: - - - - BW - AdB - - - - FM gain: - - - - - FM GAIN - GAN FM - - - - Resonance center frequency: - Frecuencia Central de Resonancia: - - - - RES CF - FCdRES - - - - Resonance bandwidth: - Ancho de banda de Resonancia: - - - - RES BW - AdB RES - - - - Forward MIDI control changes - - - - - Show GUI - Mostrar IGU - - - - AudioFileProcessor - - - Amplify - Amplificar - - - - Start of sample - Inicio de la muestra - - - - End of sample - Fin de la muestra - - - - Loopback point - Punto de bucle - - - - Reverse sample - Reproducir la muestra en reversa - - - - Loop mode - Modo Bucle - - - - Stutter - Tartamudeo - - - - Interpolation mode - Modo de Interpolación - - - - None - Ninguno - - - - Linear - Lineal - - - - Sinc - Sinc - - - - Sample not found: %1 - Muestra no encontrada: %1 - - - - BitInvader - - - Sample length - Longitud de la muestra - - - - BitInvaderView - - - Sample length - Longitud de la muestra - - - - Draw your own waveform here by dragging your mouse on this graph. - Dibuja tu propia onda arrastrando el puntero sobre el gráfico. - - - - - Sine wave - Onda Sinusoidal - - - - - Triangle wave - Onda triangular - - - - - Saw wave - Onda de sierra - - - - - Square wave - Onda Cuadrada - - - - - White noise - Ruido blanco - - - - - User-defined wave - - - - - - Smooth waveform - Suavizar onda - - - - Interpolation - Interpolación - - - - Normalize - Normalizar - - - - DynProcControlDialog - - + INPUT - ENTRADA + - + Input gain: - Ganancia de Entrada: + - + OUTPUT - SALIDA - - - - Output gain: - Ganancia de Salida: - - - - ATTACK - ATAQUE - - - - Peak attack time: - Tiempo pico de ataque: - - - - RELEASE - DISIPACIÓN - - - - Peak release time: - Tiempo pico de disipación: - - - - - Reset wavegraph - - - - Smooth wavegraph - - - - - - Increase wavegraph amplitude by 1 dB - - - - - - Decrease wavegraph amplitude by 1 dB - - - - - Stereo mode: maximum - - - - - Process based on the maximum of both stereo channels - Procesar basado en el máximo de ambos canales estéreo - - - - Stereo mode: average - - - - - Process based on the average of both stereo channels - Procesar basado en el promedio de ambos canales estéreo - - - - Stereo mode: unlinked - - - - - Process each stereo channel independently - Procesar cada canal estéreo de manera independiente - - - - DynProcControls - - - Input gain - Ganancia de entrada - - - - Output gain - Ganancia de salida - - - - Attack time - Tiempo de ataque - - - - Release time - Tiempo de disipación - - - - Stereo mode - Modo Estéreo - - - - graphModel - - - Graph - Gráfico - - - - KickerInstrument - - - Start frequency - Frecuencia Inicial - - - - End frequency - Frecuencia Final - - - - Length - Duración - - - - Start distortion - - - - - End distortion - - - - - Gain - Ganancia - - - - Envelope slope - - - - - Noise - Ruido - - - - Click - Chasquido - - - - Frequency slope - - - - - Start from note - Empezar en la nota - - - - End to note - Terminar en la nota - - - - KickerInstrumentView - - - Start frequency: - Frecuencia Inicial: - - - - End frequency: - Frecuencia Final: - - - - Frequency slope: - - - - - Gain: - Ganancia: - - - - Envelope length: - - - - - Envelope slope: - - - - - Click: - Chasquido: - - - - Noise: - Ruido: - - - - Start distortion: - - - - - End distortion: - - - - - LadspaBrowserView - - - - Available Effects - Efectos Disponibles - - - - - Unavailable Effects - Efectos No Disponibles - - - - - Instruments - Instrumentos - - - - - Analysis Tools - Herramientas de Análisis - - - - - Don't know - Desconocido - - - - Type: - Tipo: - - - - LadspaDescription - - - Plugins - Complementos - - - - Description - Descripción - - - - LadspaPortDialog - - - Ports - Puertos - - - - Name - Nombre - - - - Rate - Tasa - - - - Direction - Dirección - - - - Type - Tipo - - - - Min < Default < Max - Min < Defecto < Max - - - - Logarithmic - Logarítmico - - - - SR Dependent - Depende de SR - - - - Audio - Audio - - - - Control - Control - - - - Input - Entrada - - - - Output - Salida - - - - Toggled - Alternado - - - - Integer - Entero - - - - Float - Decimal - - - - - Yes - Si - - - - Lb302Synth - - - VCF Cutoff Frequency - FCV frecuencia de corte - - - - VCF Resonance - FCV Resonancia - - - - VCF Envelope Mod - FCV Mod de Envolvente - - - - VCF Envelope Decay - FCV Caída de Envolvente - - - - Distortion - Distorsión - - - - Waveform - Forma de Onda - - - - Slide Decay - Duración del Portamento - - - - Slide - Portamento - - - - Accent - Acento - - - - Dead - Sordina - - - - 24dB/oct Filter - Filtro 24dB/oct - - - - Lb302SynthView - - - Cutoff Freq: - Frec.de Corte: - - - - Resonance: - Resonancia: - - - - Env Mod: - Mod Env: - - - - Decay: - Caída: - - - - 303-es-que, 24dB/octave, 3 pole filter - Filtro Tipolar de 24dB/octava tipo-303 - - - - Slide Decay: - Duración del Portamento: - - - - DIST: - DIST: - - - - Saw wave - Onda de sierra - - - - Click here for a saw-wave. - Haz click aquí para elegir una onda de sierra. - - - - Triangle wave - Onda triangular - - - - Click here for a triangle-wave. - Haz click aquí para seleccionar una onda triangular. - - - - Square wave - Onda Cuadrada - - - - Click here for a square-wave. - Haz click aquí para elegir una onda cuadrada. - - - - Rounded square wave - Onda Cuadrada-redondeada - - - - Click here for a square-wave with a rounded end. - Haz click aquí para elegir una onda cuadrada-redondeada. - - - - Moog wave - Onda Moog - - - - Click here for a moog-like wave. - Haz click aquí para elegir una onda tipo moog. - - - - Sine wave - Onda Sinusoidal - - - - Click for a sine-wave. - Haz click aquí para elegir una onda-sinusoidal. - - - - - White noise wave - Ruido blanco - - - - Click here for an exponential wave. - Haz click aquí para elegir una onda exponencial. - - - - Click here for white-noise. - Haz click aquí para elegir ruido blanco. - - - - Bandlimited saw wave - Onda de sierra de banda limitada - - - - Click here for bandlimited saw wave. - Haz click aquí para elegir una onda de sierra de banda limitada. - - - - Bandlimited square wave - Onda cuadrada de banda limitada - - - - Click here for bandlimited square wave. - Haz click aquí para elegir una onda cuadrada de banda limitada. - - - - Bandlimited triangle wave - Onda triangular de banda limitada - - - - Click here for bandlimited triangle wave. - Haz click aquí para elegir una onda triangular de banda limitada. - - - - Bandlimited moog saw wave - Onda de sierra Moog de banda limitada - - - - Click here for bandlimited moog saw wave. - Haz click aquí para elegir una onda de sierra tipo Moog de banda limitada. - - - - MalletsInstrument - - - Hardness - Dureza - - - - Position - Posición - - - - Vibrato gain - - - - - Vibrato frequency - - - - - Stick mix - - - - - Modulator - Modulador - - - - Crossfade - Fundido cruzado - - - - LFO speed - Velocidad del LFO - - - - LFO depth - - - - - ADSR - ADSR - - - - Pressure - Presión - - - - Motion - Movimiento - - - - Speed - Velocidad - - - - Bowed - Frotado - - - - Spread - Propagación - - - - Marimba - Marimba - - - - Vibraphone - Vibráfono - - - - Agogo - Agogo - - - - Wood 1 - - - - - Reso - Reso - - - - Wood 2 - - - - - Beats - Latidos - - - - Two fixed - - - - - Clump - Golpe seco - - - - Tubular bells - - - - - Uniform bar - - - - - Tuned bar - - - - - Glass - Vidrio - - - - Tibetan bowl - - - - - MalletsInstrumentView - - - Instrument - Instrumento - - - - Spread - Propagación - - - - Spread: - Propagación: - - - - Missing files - Archivos perdidos - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - Parece que tu instalación de Stk está incompleta. Por favor asegúrate que el paquete completo de Stk esté instalado. - - - - Hardness - Dureza - - - - Hardness: - Dureza: - - - - Position - Posición - - - - Position: - Posición: - - - - Vibrato gain - - - - - Vibrato gain: - - - - - Vibrato frequency - - - - - Vibrato frequency: - - - - - Stick mix - - - - - Stick mix: - - - - - Modulator - Modulador - - - - Modulator: - Modulador: - - - - Crossfade - Fundido cruzado - - - - Crossfade: - Fundido cruzado: - - - - LFO speed - Velocidad del LFO - - - - LFO speed: - velocidad del LFO: - - - - LFO depth - - - - - LFO depth: - - - - - ADSR - ADSR - - - - ADSR: - ADSR: - - - - Pressure - Presión - - - - Pressure: - Presión: - - - - Speed - Velocidad - - - - Speed: - Velocidad: - - - - ManageVSTEffectView - - - - VST parameter control - - control de parámetros VST - - - - VST sync - - - - - - Automated - Automatizado - - - - Close - Cerrar - - - - ManageVestigeInstrumentView - - - - - VST plugin control - - control de complementos VST - - - - VST Sync - Sinc VST - - - - - Automated - Automatizado - - - - Close - Cerrar - - - - OrganicInstrument - - - Distortion - Distorsión - - - - Volume - Volumen - - - - OrganicInstrumentView - - - Distortion: - Distorsión: - - - - Volume: - Volumen: - - - - Randomise - Aleatorizar - - - - - Osc %1 waveform: - Osc %1 forma de onda: - - - - Osc %1 volume: - Osc %1 Volumen: - - - - Osc %1 panning: - Osc %1 paneo: - - - - Osc %1 stereo detuning - Desafinación estéreo del Osc %1 - - - - cents - cents - - - - Osc %1 harmonic: - armónicos del Osc %1: - - - - PatchesDialog - - - Qsynth: Channel Preset - Qsynth: Preconfiguración del Canal - - - - Bank selector - Selector de banco - - - - Bank - Banco - - - - Program selector - Selector de programa - - - - Patch - Ajuste - - - - Name - Nombre - - - - OK - De acuerdo - - - - Cancel - Cancelar - - - - Sf2Instrument - - - Bank - Banco - - - - Patch - Ajuste - - - - Gain - Ganancia - - - - Reverb - Reverberancia - - - - Reverb room size - - - - - Reverb damping - - - - - Reverb width - - - - - Reverb level - - - - - Chorus - Coro - - - - Chorus voices - - - - - Chorus level - - - - - Chorus speed - - - - - Chorus depth - - - - - A soundfont %1 could not be loaded. - Una soundfont %1 no se pudo cargar. - - - - Sf2InstrumentView - - - - Open SoundFont file - Abrir archivo SoundFont - - - - Choose patch - - - - - Gain: - Ganancia: - - - - Apply reverb (if supported) - Aplicar reverberancia (si es posible) - - - - Room size: - - - - - Damping: - - - - - Width: - Amplitud: - - - - - Level: - - - - - Apply chorus (if supported) - Aplicar coro (si es posible) - - - - Voices: - - - - - Speed: - Velocidad: - - - - Depth: - Profundidad: - - - - SoundFont Files (*.sf2 *.sf3) - Archivos SoundFont (*.sf2 *.sf3) - - - - SfxrInstrument - - - Wave - - - - - StereoEnhancerControlDialog - - - WIDTH - - - - - Width: - Amplitud: - - - - StereoEnhancerControls - - - Width - Amplitud - - - - StereoMatrixControlDialog - - - Left to Left Vol: - Vol izq a izq: - - - - Left to Right Vol: - Vol izq a der: - - - - Right to Left Vol: - Vol der a izq: - - - - Right to Right Vol: - Vol der a der: - - - - StereoMatrixControls - - - Left to Left - izq a izq - - - - Left to Right - izq a der - - - - Right to Left - der a izq - - - - Right to Right - der a der - - - - VestigeInstrument - - - Loading plugin - Cargando complemento - - - - Please wait while loading the VST plugin... - - - - - Vibed - - - String %1 volume - Volumen Cuerda %1 - - - - String %1 stiffness - Rigidez Cuerda %1 - - - - Pick %1 position - Posición del plectro %1 - - - - Pickup %1 position - Posición de micrófono %1 - - - - String %1 panning - - - - - String %1 detune - - - - - String %1 fuzziness - - - - - String %1 length - - - - - Impulse %1 - Impulso %1 - - - - String %1 - - - - - VibedView - - - String volume: - - - - - String stiffness: - Rigidez de la cuerda: - - - - Pick position: - Posición del plectro: - - - - Pickup position: - Posición del micrófono: - - - - String panning: - - - - - String detune: - - - - - String fuzziness: - - - - - String length: - - - - - Impulse - - - - - Octave - Octava - - - - Impulse Editor - Editor de Impulso - - - - Enable waveform - Activar Onda - - - - Enable/disable string - - - - - String - Cuerda - - - - - Sine wave - Onda sinusoidal - - - - - Triangle wave - Onda triangular - - - - - Saw wave - Onda de sierra - - - - - Square wave - Onda cuadrada - - - - - White noise - Ruido blanco - - - - - User-defined wave - - - - - - Smooth waveform - Suavizar onda - - - - - Normalize waveform - - - - - VoiceObject - - - Voice %1 pulse width - Voz %1 amplitud de pulso - - - - Voice %1 attack - Voz %1 ataque - - - - Voice %1 decay - Voz %1 caída - - - - Voice %1 sustain - Voz %1 sostén - - - - Voice %1 release - Voz %1 disipación - - - - Voice %1 coarse detuning - Voz %1 desafinación gruesa - - - - Voice %1 wave shape - Voz %1 forma de onda - - - - Voice %1 sync - Voz %1 sinc - - - - Voice %1 ring modulate - Voz %1 modulación en anillo - - - - Voice %1 filtered - Voz %1 filtrada - - - - Voice %1 test - Voz %1 prueba - - - - WaveShaperControlDialog - - - INPUT - ENTRADA - - - - Input gain: - Ganancia de Entrada: - - - - OUTPUT - SALIDA - - - - Output gain: - Ganancia de Salida: - - + Output gain: + + + + + Reset wavegraph - - + + Smooth wavegraph - - + + Increase wavegraph amplitude by 1 dB - - + + Decrease wavegraph amplitude by 1 dB - + Clip input - Recortar entrada + - + Clip input signal to 0 dB - WaveShaperControls + lmms::gui::XpressiveView - - Input gain - ganancia de entrada + + Draw your own waveform here by dragging your mouse on this graph. + - - Output gain - ganancia de salida + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + - + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + + + + \ No newline at end of file diff --git a/data/locale/eu.ts b/data/locale/eu.ts index 7e815a261..f23c8682a 100644 --- a/data/locale/eu.ts +++ b/data/locale/eu.ts @@ -1,4 +1,4 @@ - + AboutDialog @@ -70,812 +70,45 @@ LMMS beste hizkuntza batera itzultzeko interesa baduzu edo lehendik dauden itzul - AmplifierControlDialog + AboutJuceDialog - - VOL - BOL - - - - Volume: - Bolumena: - - - - PAN - PAN - - - - Panning: - Panoramika: - - - - LEFT - EZKERRA - - - - Left gain: - Ezkerreko irabazia: - - - - RIGHT - ESKUINA - - - - Right gain: - Eskuineko irabazia: - - - - AmplifierControls - - - Volume - Bolumena - - - - Panning - Panoramika - - - - Left gain - Ezkerreko irabazia - - - - Right gain - Eskuineko irabazia - - - - AudioAlsaSetupWidget - - - DEVICE - GAILUA - - - - CHANNELS - KANALAK - - - - AudioFileProcessorView - - - Open sample - Ireki lagina - - - - Reverse sample - Alderantzikatu lagina - - - - Disable loop - Desgaitu begizta - - - - Enable loop - Gaitu begizta - - - - Enable ping-pong loop + + About JUCE - - Continue sample playback across notes + + <b>About JUCE</b> - - Amplify: - Anplifikatu: - - - - Start point: - Hasierako puntua: - - - - End point: - Amaierako puntua: - - - - Loopback point: - Atzera-begiztaren puntua: - - - - AudioFileProcessorWaveView - - - Sample length: - Lagin-luzera: - - - - AudioJack - - - JACK client restarted - JACK bezeroa berrabiarazi da - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - JACKek LMMS egotzi du arrazoiren batengatik. Hori dela eta, LMMSren JACK backend-a berrabiarazi egin da. Konexioak eskuz egin beharko dituzu berriro. - - - - JACK server down - JACK zerbitzaria erorita - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - JACK zerbitzaria itxi egin dela dirudi eta instantzia berria hasteak huts egin du. LMMSk ezin du jarraitu. Zure proiektua gorde eta JACK eta LMMS berrabiarazi beharko zenituzke. - - - - Client name - Bezeroaren izena - - - - Channels - Kanalak - - - - AudioOss - - - Device - Gailua - - - - Channels - Kanalak - - - - AudioPortAudio::setupWidget - - - Backend - Motorra - - - - Device - Gailua - - - - AudioPulseAudio - - - Device - Gailua - - - - Channels - Kanalak - - - - AudioSdl::setupWidget - - - Device - Gailua - - - - AudioSndio - - - Device - Gailua - - - - Channels - Kanalak - - - - AudioSoundIo::setupWidget - - - Backend - Motorra - - - - Device - Gailua - - - - AutomatableModel - - - &Reset (%1%2) - &Berrezarr (%1%2) - - - - &Copy value (%1%2) - &Kopiatu balioa (%1%2) - - - - &Paste value (%1%2) - I&tsatsi balioa (%1%2) - - - - &Paste value - &Itsatsi balioa - - - - Edit song-global automation + + This program uses JUCE version 3.x.x. - - Remove song-global automation + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. - - Remove all linked controls - Kendu estekatutako kontrol guztiak - - - - Connected to %1 - - - - - Connected to controller - Kontrolagailuarekin konektatua - - - - Edit connection... - Editatu konexioa... - - - - Remove connection - Kendu konexioa - - - - Connect to controller... - Konektatu kontrolatzailearekin... - - - - AutomationEditor - - - Edit Value - Editatu balioa - - - - New outValue - Irteerako balio berria - - - - New inValue - Sarrerako balio berria - - - - Please open an automation clip with the context menu of a control! - Ireki automatizazio-eredu bat kontrol baten laster-menuaren bidez! - - - - AutomationEditorWindow - - - Play/pause current clip (Space) - Erreproduzitu/pausatu uneko eredua (espazioa) - - - - Stop playing of current clip (Space) - Gelditu uneko ereduaren erreprodukzioa (espazioa) - - - - Edit actions - Editatu ekintzak - - - - Draw mode (Shift+D) - Marrazte modua (Shift+D) - - - - Erase mode (Shift+E) - Ezabatze modua (Shift+E) - - - - Draw outValues mode (Shift+C) - - - - - Flip vertically - Irauli bertikalean - - - - Flip horizontally - Irauli horizontalean - - - - Interpolation controls - Interpolazio-kontrolak - - - - Discrete progression - Progresio diskretua - - - - Linear progression - Progresio lineala - - - - Cubic Hermite progression - - - - - Tension value for spline - - - - - Tension: - Tentsioa: - - - - Zoom controls - Zoom-kontrolak - - - - Horizontal zooming - Zoom horizontala - - - - Vertical zooming - Zoom bertikala - - - - Quantization controls - Kuantifikazio-kontrolak - - - - Quantization - Kuantifikazioa - - - - - Automation Editor - no clip - Automatizazio-editorea - patroirik ez - - - - - Automation Editor - %1 - Automatizazio-editorea - %1 - - - - Model is already connected to this clip. - Eredua dagoeneko konektatuta dago patroi honekin - - - - AutomationClip - - - Drag a control while pressing <%1> - Arrastatu kontrol bat <%1> sakatzen ari zaren bitartean - - - - AutomationClipView - - - Open in Automation editor - Ireki automatizazio-editorean - - - - Clear - Garbitu - - - - Reset name - Berrezarri izena - - - - Change name - Aldatu izena - - - - Set/clear record - Ezarri/garbitu grabazioa - - - - Flip Vertically (Visible) - Irauli bertikalean (ikusgai) - - - - Flip Horizontally (Visible) - Irauli horizontalean (ikusgai) - - - - %1 Connections - %1 konexio - - - - Disconnect "%1" - Deskonektatu "%1" - - - - Model is already connected to this clip. - Eredua dagoeneko konektatuta dago patroi honekin - - - - AutomationTrack - - - Automation track - Automatizazio-pista - - - - PatternEditor - - - Beat+Bassline Editor - - - - - Play/pause current beat/bassline (Space) - - - - - Stop playback of current beat/bassline (Space) - - - - - Beat selector - Taupada-hautatzailea - - - - Track and step actions - - - - - Add beat/bassline - Gehitu taupada/baxu-lerroa - - - - Clone beat/bassline clip - - - - - Add sample-track - Gehitu lagin-pista - - - - Add automation-track - Gehitu automatizazio-pista - - - - Remove steps - Kendu urratsak - - - - Add steps - Gehitu urratsa - - - - Clone Steps - Klonatu urratsak - - - - PatternClipView - - - Open in Beat+Bassline-Editor - - - - - Reset name - Berrezarri izena - - - - Change name - Aldatu izena - - - - PatternTrack - - - Beat/Bassline %1 - - - - - Clone of %1 + + This program uses JUCE version - BassBoosterControlDialog + AudioDeviceSetupWidget - - FREQ + + [System Default] - - - Frequency: - Maiztasuna: - - - - GAIN - - - - - Gain: - Irabazia: - - - - RATIO - - - - - Ratio: - - - - - BassBoosterControls - - - Frequency - Maiztasuna - - - - Gain - Irabazia - - - - Ratio - - - - - BitcrushControlDialog - - - IN - - - - - OUT - - - - - - GAIN - - - - - Input gain: - Sarrerako irabazia: - - - - NOISE - - - - - Input noise: - - - - - Output gain: - Irteerako irabazia: - - - - CLIP - - - - - Output clip: - - - - - Rate enabled - - - - - Enable sample-rate crushing - - - - - Depth enabled - Sakonera gaituta - - - - Enable bit-depth crushing - - - - - FREQ - - - - - Sample rate: - - - - - STEREO - - - - - Stereo difference: - - - - - QUANT - - - - - Levels: - Mailak: - - - - BitcrushControls - - - Input gain - Sarrerako irabazia - - - - Input noise - Sarrerako zarata - - - - Output gain - Irteerako irabazia - - - - Output clip - Irteerako klipa - - - - Sample rate - - - - - Stereo difference - - - - - Levels - Maila - - - - Rate enabled - - - - - Depth enabled - Sakonera gaituta - CarlaAboutW @@ -892,132 +125,132 @@ LMMS beste hizkuntza batera itzultzeko interesa baduzu edo lehendik dauden itzul About text here - + Honi buruzko testua hemen Extended licensing here - + Lizentzia hedatua hemen - + Artwork Artelana - + Using KDE Oxygen icon set, designed by Oxygen Team. - + Osygen taldeak sortutako KDE Oxygen ikono multzoa erabiltzen. - + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. - + Calf Studio Gear, OpenAV eta OpenOctave proiektuetako zenbait botoi, atzeko plano eta beste artelan txiki batzuk ditu. - + VST is a trademark of Steinberg Media Technologies GmbH. - + VST marka Steinberg Media Technologies GmbH enpresaren marka erregistratua da. - + Special thanks to António Saraiva for a few extra icons and artwork! - + Mila esker António Saraivari ikono gehigarriak eta artelana eskaintzeagatik! - + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. - + LV2 logoa Thorsten Wilmsek diseinatu du, Peter Shorthosen kontzeptu batean oinarrituta. - + MIDI Keyboard designed by Thorsten Wilms. - - - - - Carla, Carla-Control and Patchbay icons designed by DoosC. - + MIDI teklatuaren diseinua: Thorsten Wilms. + Carla, Carla-Control and Patchbay icons designed by DoosC. + Carla, Carla-Control eta Patchbay ikonoen diseinua: DoosC. + + + Features Eginbideak - + AU/AudioUnit: - + AU/AudioUnitatea: - + LADSPA: LADSPA: - - - - - - - - + + + + + + + + TextLabel - + TestuEtiketa - + VST2: - + VST2: - + DSSI: - + DSSI: - + LV2: - + LV2: - + VST3: - + VST3: - + OSC - + OSC - + Host URLs: URL ostalariak: - + Valid commands: Baliozko komandoak: - + valid osc commands here baliozko osc komandoa hemen - + Example: Adibidea: - + License Lizentzia - + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -1582,50 +815,50 @@ POSSIBILITY OF SUCH DAMAGES. - + OSC Bridge Version OSC Bridge bertsioa - + Plugin Version Pluginaren bertsioa - + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> - - + + (Engine not running) (Motorra ez dago martxan) - + Everything! (Including LRDF) Dena! (LRDF barne) - + Everything! (Including CustomData/Chunks) - + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - - - + + + Using Juce host - + Juce ostalaria erabiltzen - + About 85% complete (missing vst bank/presets and some minor stuff) @@ -1658,561 +891,598 @@ POSSIBILITY OF SUCH DAMAGES. Kargatzen... - + + Save + + + + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + Buffer Size: Buffer-tamaina: - + Sample Rate: - + ? Xruns - + ? Xruns - + DSP Load: %p% - + DSP karga: %p% - + &File &Fitxategia - + &Engine &Motorra - + &Plugin &Plugina - + Macros (all plugins) Makroak (plugin guztiak) - + &Canvas &Oihala - + Zoom Zoom - + &Settings E&zarpenak - + &Help &Laguntza - - toolBar - tresnaBarra + + Tool Bar + - + Disk Diskoa - - + + Home Etxea - + Transport Garraioa - + Playback Controls - + Erreprodukzio-kontrolak - + Time Information - + Denbora-informazioa - + Frame: - + Fotograma: - + 000'000'000 - + 000'000'000 - + Time: - + Denbora: - + 00:00:00 - + 00:00:00 - + BBT: - + BBT: - + 000|00|0000 - + 000|00|0000 - + Settings Ezarpenak - + BPM - + BPM - + Use JACK Transport - + Erabili JACK garraioa - + Use Ableton Link - + Erabili Ableton esteka - + &New &Berria - + Ctrl+N Ctrl+N - + &Open... &Ireki... - - + + Open... Ireki... - + Ctrl+O Ctrl+O - + &Save &Gorde - + Ctrl+S Ctrl+S - + Save &As... Gorde &honela... - - + + Save As... Gorde honela... - + Ctrl+Shift+S Ctrl+Shift+S - + &Quit I&rten - + Ctrl+Q Ctrl+Q - + &Start &Hasi - + F5 F5 - + St&op &Gelditu - + F6 F6 - + &Add Plugin... Ge&hitu plugina... - + Ctrl+A Ctrl+A - + &Remove All &Kendu dena - + Enable Gaitu - + Disable Desgaitu - + 0% Wet (Bypass) - + 100% Wet - + %100 heze - + 0% Volume (Mute) - + %0 bolumena (mutu) - + 100% Volume - + %100 bolumena - + Center Balance - + &Play &Erreproduzitu - + Ctrl+Shift+P Ctrl+Shift+P - + &Stop &Gelditu - + Ctrl+Shift+X Ctrl+Shift+X - + &Backwards A&tzerantz - + Ctrl+Shift+B Ctrl+Shift+B - + &Forwards A&urrerantz - + Ctrl+Shift+F Ctrl+Shift+F - + &Arrange &Ordenatu - + Ctrl+G Ctrl+G - - + + &Refresh &Freskatu - + Ctrl+R Ctrl+R - + Save &Image... Gorde &irudia... - + Auto-Fit Automatikoki doitu - + Zoom In Handiagotu - + Ctrl++ Ctrl++ - + Zoom Out Txikiagotu - + Ctrl+- Ctrl+- - + Zoom 100% %100eko zooma - + Ctrl+1 Ctrl+1 - + Show &Toolbar Erakutsi &tresna-barra - + &Configure Carla &Konfiguratu Carla - + &About &Honi buruz - + About &JUCE &JUCE aplikazioari buruz - + About &Qt &Qt aplikazioari buruz - + Show Canvas &Meters - + Show Canvas &Keyboard - + Show Internal - + Erakutsi barnekoa - + Show External - + Erakutsi kanpokoa - + Show Time Panel - + Erakutsi denbora-panela - + Show &Side Panel + Erakutsi &alboko panela + + + + Ctrl+P - + &Connect... - + &Konektatu... - + Compact Slots - + Expand Slots - + Perform secret 1 - + Perform secret 2 - + Perform secret 3 - + Perform secret 4 - + Perform secret 5 - + Add &JACK Application... - + &Configure driver... - + &Konfiguratu kontrolagailua... - + Panic - + Open custom driver panel... + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + + CarlaHostWindow - + Export as... - + Esportatu honela... - - - - + + + + Error Errorea - + Failed to load project - + Proiektuaren kargak huts egin du - + Failed to save project - + Proiektua gordetzeak huts egin du - + Quit - + Irten - + Are you sure you want to quit Carla? - + Ziur zaude Carla aplikaziotik irten nahi duzula? - + Could not connect to Audio backend '%1', possible reasons: %2 - + Could not connect to Audio backend '%1' - + Warning - + Abisua - + There are still some plugins loaded, you need to remove them to stop the engine. Do you want to do this now? - - CarlaInstrumentView - - - Show GUI - Erakutsi erabiltzaile-interfazea - - CarlaSettingsW @@ -2223,42 +1493,42 @@ Do you want to do this now? main - + nagusia canvas - + oihala engine - + motorra osc - + osc file-paths - + fitxategi-bideak plugin-paths - + plugin-bideak wine - + wine experimental - + esperimentala @@ -2267,1570 +1537,651 @@ Do you want to do this now? - + Main - + Nagusia - + Canvas - + Oihala - + Engine - + Motorra File Paths - + Fitxategien bide-izenak Plugin Paths - + Pluginen bide-izenak Wine - + Wine - + Experimental - + Esperimentala - + <b>Main</b> - + <b>Nagusia</b> - + Paths Bideak - + Default project folder: - + Proiektuaren karpeta lehenetsia: - + Interface + Interfazea + + + + Use "Classic" as default rack skin - + Interface refresh interval: - - - - - - ms - + Interfazearen freskatze-tartea: + + ms + ms + + + Show console output in Logs tab (needs engine restart) - + Show a confirmation dialog before quitting - - - - Theme - - - - - Use Carla "PRO" theme (needs restart) - - + + Theme + Gaia + + + + Use Carla "PRO" theme (needs restart) + Erabili Carla "PRO" gaia (berrabiarazi behar da) + + + Color scheme: - + Kolore-eskema: - + Black - + Beltza - + System - + Sistema - + Enable experimental features - + Gaitu eginbide esperimentalak - + <b>Canvas</b> - + <b>Oihala</b> - + Bezier Lines - + Bezier lerroak - + Theme: - + Gaia: - + Size: Tamaina: - + 775x600 - + 775x600 - + 1550x1200 - - - - - 3100x2400 - - - - - 4650x3600 - - - - - 6200x4800 - + 1550x1200 - Options + 3100x2400 + 3100x2400 + + + + 4650x3600 + 4650x3600 + + + + 6200x4800 + 6200x4800 + + + + 12400x9600 - + + Options + Aukerak + + + Auto-hide groups with no ports - + Auto-select items on hover - + Basic eye-candy (group shadows) - + Render Hints - + Anti-Aliasing - + Full canvas repaints (slower, but prevents drawing issues) - + <b>Engine</b> - - + + Core - + Nukleoa - + Single Client - + Bezero bakarra - + Multiple Clients - + Bezero anitz - - + + Continuous Rack - - + + Patchbay - + Audio driver: - + Process mode: - - - - + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog - + Max Parameters: - + ... - + Reset Xrun counter after project load - + Plugin UIs - - + + How much time to wait for OSC GUIs to ping back the host - + UI Bridge Timeout: - + Use OSC-GUI bridges when possible, this way separating the UI from DSP code - + Use UI bridges instead of direct handling when possible - + Make plugin UIs always-on-top - + Make plugin UIs appear on top of Carla (needs restart) - + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS - - + + Restart the engine to load the new settings - + <b>OSC</b> - + Enable OSC - + Enable TCP port - + Gaitu TCP ataka - - + + Use specific port: - + Erabili ataka espezifikoa: - + Overridden by CARLA_OSC_TCP_PORT env var - - + + Use randomly assigned port - + Erabili ausaz esleitutako ataka - + Enable UDP port - + Gaitu UDP ataka - + Overridden by CARLA_OSC_UDP_PORT env var - + DSSI UIs require OSC UDP port enabled - + <b>File Paths</b> - + Audio Audioa - + MIDI MIDI - + Used for the "audiofile" plugin - + Used for the "midifile" plugin - - + + Add... - + Gehitu... - - + + Remove - + Kendu - - + + Change... - + Aldatu... - + <b>Plugin Paths</b> - + <b>Pluginen bide-izenak</b> - + LADSPA - + LADSPA - + DSSI - + DSSI - + LV2 - + LV2 - + VST2 - + VST2 - + VST3 - + VST3 - + SF2/3 - + SF2/3 - + SFZ + SFZ + + + + JSFX - + + CLAP + + + + Restart Carla to find new plugins - + Berrabiarazi Carla plugin berriak aurkitzeko - + <b>Wine</b> - + <b>Wine</b> - + Executable - + Exekutagarria - + Path to 'wine' binary: - + 'wine' bitarraren bide-izena: - + Prefix - + Aurrizkia - + Auto-detect Wine prefix based on plugin filename - + Detektatu automatikoki Wine aurrizkia pluginaren fitxategi-izenean oinarrituta - + Fallback: - + Note: WINEPREFIX env var is preferred over this fallback - + Realtime Priority - + Base priority: - + WineServer priority: - + These options are not available for Carla as plugin - + <b>Experimental</b> - + Experimental options! Likely to be unstable! - + Enable plugin bridges - + Enable Wine bridges - + Enable jack applications - + Export single plugins to LV2 - + + Use system/desktop-theme icons (needs restart) + + + + Load Carla backend in global namespace (NOT RECOMMENDED) - + Fancy eye-candy (fade-in/out groups, glow connections) - + Use OpenGL for rendering (needs restart) - + High Quality Anti-Aliasing (OpenGL only) - + Render Ardour-style "Inline Displays" - + Force mono plugins as stereo by running 2 instances at the same time. This mode is not available for VST plugins. - + Force mono plugins as stereo - - Prevent plugins from doing bad stuff (needs restart) + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. - - Whenever possible, run the plugins in bridge mode. + + Prevent unsafe calls from plugins (needs restart) - + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + Run plugins in bridge mode when possible - - - - + + + + Add Path - - CompressorControlDialog - - - Threshold: - - - - - Volume at which the compression begins to take place - - - - - Ratio: - - - - - How far the compressor must turn the volume down after crossing the threshold - - - - - Attack: - - - - - Speed at which the compressor starts to compress the audio - - - - - Release: - - - - - Speed at which the compressor ceases to compress the audio - - - - - Knee: - - - - - Smooth out the gain reduction curve around the threshold - - - - - Range: - - - - - Maximum gain reduction - - - - - Lookahead Length: - - - - - How long the compressor has to react to the sidechain signal ahead of time - - - - - Hold: - - - - - Delay between attack and release stages - - - - - RMS Size: - - - - - Size of the RMS buffer - - - - - Input Balance: - - - - - Bias the input audio to the left/right or mid/side - - - - - Output Balance: - - - - - Bias the output audio to the left/right or mid/side - - - - - Stereo Balance: - - - - - Bias the sidechain signal to the left/right or mid/side - - - - - Stereo Link Blend: - - - - - Blend between unlinked/maximum/average/minimum stereo linking modes - - - - - Tilt Gain: - - - - - Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. - - - - - Tilt Frequency: - - - - - Center frequency of sidechain tilt filter - - - - - Mix: - - - - - Balance between wet and dry signals - - - - - Auto Attack: - - - - - Automatically control attack value depending on crest factor - - - - - Auto Release: - - - - - Automatically control release value depending on crest factor - - - - - Output gain - Irteerako irabazia - - - - - Gain - Irabazia - - - - Output volume - - - - - Input gain - Sarrerako irabazia - - - - Input volume - - - - - Root Mean Square - - - - - Use RMS of the input - - - - - Peak - - - - - Use absolute value of the input - - - - - Left/Right - - - - - Compress left and right audio - - - - - Mid/Side - - - - - Compress mid and side audio - - - - - Compressor - - - - - Compress the audio - - - - - Limiter - - - - - Set Ratio to infinity (is not guaranteed to limit audio volume) - - - - - Unlinked - - - - - Compress each channel separately - - - - - Maximum - - - - - Compress based on the loudest channel - - - - - Average - - - - - Compress based on the averaged channel volume - - - - - Minimum - - - - - Compress based on the quietest channel - - - - - Blend - - - - - Blend between stereo linking modes - - - - - Auto Makeup Gain - - - - - Automatically change makeup gain depending on threshold, knee, and ratio settings - - - - - - Soft Clip - - - - - Play the delta signal - - - - - Use the compressor's output as the sidechain input - - - - - Lookahead Enabled - - - - - Enable Lookahead, which introduces 20 milliseconds of latency - - - - - CompressorControls - - - Threshold - - - - - Ratio - - - - - Attack - - - - - Release - - - - - Knee - - - - - Hold - - - - - Range - - - - - RMS Size - - - - - Mid/Side - - - - - Peak Mode - - - - - Lookahead Length - - - - - Input Balance - - - - - Output Balance - - - - - Limiter - - - - - Output Gain - - - - - Input Gain - - - - - Blend - - - - - Stereo Balance - - - - - Auto Makeup Gain - - - - - Audition - - - - - Feedback - - - - - Auto Attack - - - - - Auto Release - - - - - Lookahead - - - - - Tilt - - - - - Tilt Frequency - - - - - Stereo Link - - - - - Mix - - - - - Controller - - - Controller %1 - %1 kontrolatzailea - - - - ControllerConnectionDialog - - - Connection Settings - Konexio-ezarpenak - - - - MIDI CONTROLLER - - - - - Input channel - Sarrerako kanala - - - - CHANNEL - - - - - Input controller - Sarrerako kontrolatzailea - - - - CONTROLLER - - - - - - Auto Detect - - - - - MIDI-devices to receive MIDI-events from - - - - - USER CONTROLLER - - - - - MAPPING FUNCTION - - - - - OK - Ados - - - - Cancel - Utzi - - - - LMMS - LMMS - - - - Cycle Detected. - - - - - ControllerRackView - - - Controller Rack - - - - - Add - Gehitu - - - - Confirm Delete - Baieztatu ezabatzea - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Ezabatzea baieztatu? Kontrolagailu honi lotutako konexioak daude. Ez dago desegiteko modurik - - - - ControllerView - - - Controls - Kontrola - - - - Rename controller - Berrizendatu kontrolagailua - - - - Enter the new name for this controller - Sartu beste izen bat kontrolagailu honentzat - - - - LFO - LFO - - - - &Remove this controller - &Kendu kontrolagailu hau - - - - Re&name this controller - &Berrizendatu kontrolagailu hau - - - - CrossoverEQControlDialog - - - Band 1/2 crossover: - - - - - Band 2/3 crossover: - - - - - Band 3/4 crossover: - - - - - Band 1 gain - 1. bandaren irabazia - - - - Band 1 gain: - 1. bandaren irabazia: - - - - Band 2 gain - 2. bandaren irabazia - - - - Band 2 gain: - 2. bandaren irabazia: - - - - Band 3 gain - 3. bandaren irabazia - - - - Band 3 gain: - 3. bandaren irabazia: - - - - Band 4 gain - 4. bandaren irabazia - - - - Band 4 gain: - 4. bandaren irabazia: - - - - Band 1 mute - - - - - Mute band 1 - - - - - Band 2 mute - - - - - Mute band 2 - - - - - Band 3 mute - - - - - Mute band 3 - - - - - Band 4 mute - - - - - Mute band 4 - - - - - DelayControls - - - Delay samples - Atzeratu laginak - - - - Feedback - - - - - LFO frequency - - - - - LFO amount - - - - - Output gain - Irteerako irabazia - - - - DelayControlsDialog - - - DELAY - - - - - Delay time - - - - - FDBK - - - - - Feedback amount - - - - - RATE - - - - - LFO frequency - - - - - AMNT - - - - - LFO amount - - - - - Out gain - - - - - Gain - Irabazia - - Dialog - - - Add JACK Application - - - - - Note: Features not implemented yet are greyed out - - - - - Application - - - - - Name: - - - - - Application: - - - - - From template - - - - - Custom - - - - - Template: - - - - - Command: - - - - - Setup - - - - - Session Manager: - - - - - None - Bat ere ez - - - - Audio inputs: - - - - - MIDI inputs: - - - - - Audio outputs: - - - - - MIDI outputs: - - - - - Take control of main application window - - - - - Workarounds - - - - - Wait for external application start (Advanced, for Debug only) - - - - - Capture only the first X11 Window - - - - - Use previous client output buffer as input for the next client - - - - - Simulate 16 JACK MIDI outputs, with MIDI channel as port index - - - - - Error here - - Carla Control - Connect - + Carla kontrola - Konektatu Remote setup - + Urruneko konfigurazioa UDP Port: - + UDP ataka: Remote host: - + Urruneko ostalaria: TCP Port: - - - - - Reported host - - - - - Automatic - - - - - Custom: - - - - - In some networks (like USB connections), the remote system cannot reach the local network. You can specify here which hostname or IP to make the remote Carla connect to. -If you are unsure, leave it as 'Automatic'. - + TCP ataka: Set value - + Ezarri balioa @@ -3853,12 +2204,12 @@ If you are unsure, leave it as 'Automatic'. Device: - + Gailua: Buffer size: - + Buffer-tamaina: @@ -3868,7 +2219,7 @@ If you are unsure, leave it as 'Automatic'. Triple buffer - + Buffer hirukoitza @@ -3881,954 +2232,12 @@ If you are unsure, leave it as 'Automatic'. - - DualFilterControlDialog - - - - FREQ - - - - - - Cutoff frequency - - - - - - RESO - - - - - - Resonance - - - - - - GAIN - - - - - - Gain - Irabazia - - - - MIX - - - - - Mix - - - - - Filter 1 enabled - - - - - Filter 2 enabled - - - - - Enable/disable filter 1 - - - - - Enable/disable filter 2 - - - - - DualFilterControls - - - Filter 1 enabled - - - - - Filter 1 type - - - - - Cutoff frequency 1 - - - - - Q/Resonance 1 - - - - - Gain 1 - - - - - Mix - - - - - Filter 2 enabled - - - - - Filter 2 type - - - - - Cutoff frequency 2 - - - - - Q/Resonance 2 - - - - - Gain 2 - - - - - - Low-pass - - - - - - Hi-pass - - - - - - Band-pass csg - - - - - - Band-pass czpg - - - - - - Notch - - - - - - All-pass - - - - - - Moog - - - - - - 2x Low-pass - - - - - - RC Low-pass 12 dB/oct - - - - - - RC Band-pass 12 dB/oct - - - - - - RC High-pass 12 dB/oct - - - - - - RC Low-pass 24 dB/oct - - - - - - RC Band-pass 24 dB/oct - - - - - - RC High-pass 24 dB/oct - - - - - - Vocal Formant - - - - - - 2x Moog - - - - - - SV Low-pass - - - - - - SV Band-pass - - - - - - SV High-pass - - - - - - SV Notch - - - - - - Fast Formant - - - - - - Tripole - - - - - Editor - - - Transport controls - - - - - Play (Space) - - - - - Stop (Space) - - - - - Record - Grabatu - - - - Record while playing - Grabatu erreproduzitzean - - - - Toggle Step Recording - - - - - Effect - - - Effect enabled - - - - - Wet/Dry mix - - - - - Gate - - - - - Decay - - - - - EffectChain - - - Effects enabled - Efektuak gaituta - - - - EffectRackView - - - EFFECTS CHAIN - - - - - Add effect - Gehitu efektua - - - - EffectSelectDialog - - - Add effect - Gehitu efektua - - - - - Name - Izena - - - - Type - Mota - - - - Description - Deskribapena - - - - Author - Egilea - - - - EffectView - - - On/Off - - - - - W/D - - - - - Wet Level: - - - - - DECAY - - - - - Time: - - - - - GATE - - - - - Gate: - - - - - Controls - Kontrola - - - - Move &up - - - - - Move &down - - - - - &Remove this plugin - - - - - EnvelopeAndLfoParameters - - - Env pre-delay - - - - - Env attack - - - - - Env hold - - - - - Env decay - - - - - Env sustain - - - - - Env release - - - - - Env mod amount - - - - - LFO pre-delay - - - - - LFO attack - - - - - LFO frequency - - - - - LFO mod amount - - - - - LFO wave shape - - - - - LFO frequency x 100 - - - - - Modulate env amount - - - - - EnvelopeAndLfoView - - - - DEL - - - - - - Pre-delay: - - - - - - ATT - - - - - - Attack: - - - - - HOLD - - - - - Hold: - - - - - DEC - - - - - Decay: - - - - - SUST - - - - - Sustain: - - - - - REL - - - - - Release: - - - - - - AMT - - - - - - Modulation amount: - - - - - SPD - SPD - - - - Frequency: - Maiztasuna: - - - - FREQ x 100 - - - - - Multiply LFO frequency by 100 - - - - - MODULATE ENV AMOUNT - - - - - Control envelope amount by this LFO - - - - - ms/LFO: - - - - - Hint - - - - - Drag and drop a sample into this window. - - - - - EqControls - - - Input gain - Sarrerako irabazia - - - - Output gain - Irteerako irabazia - - - - Low-shelf gain - - - - - Peak 1 gain - - - - - Peak 2 gain - - - - - Peak 3 gain - - - - - Peak 4 gain - - - - - High-shelf gain - - - - - HP res - - - - - Low-shelf res - - - - - Peak 1 BW - - - - - Peak 2 BW - - - - - Peak 3 BW - - - - - Peak 4 BW - - - - - High-shelf res - - - - - LP res - - - - - HP freq - - - - - Low-shelf freq - - - - - Peak 1 freq - - - - - Peak 2 freq - - - - - Peak 3 freq - - - - - Peak 4 freq - - - - - High-shelf freq - - - - - LP freq - - - - - HP active - - - - - Low-shelf active - - - - - Peak 1 active - - - - - Peak 2 active - - - - - Peak 3 active - - - - - Peak 4 active - - - - - High-shelf active - - - - - LP active - - - - - LP 12 - - - - - LP 24 - - - - - LP 48 - - - - - HP 12 - - - - - HP 24 - - - - - HP 48 - - - - - Low-pass type - - - - - High-pass type - - - - - Analyse IN - - - - - Analyse OUT - - - - - EqControlsDialog - - - HP - - - - - Low-shelf - - - - - Peak 1 - - - - - Peak 2 - - - - - Peak 3 - - - - - Peak 4 - - - - - High-shelf - - - - - LP - - - - - Input gain - Sarrerako irabazia - - - - - - Gain - Irabazia - - - - Output gain - Irteerako irabazia - - - - Bandwidth: - Banda-zabalera: - - - - Octave - - - - - Resonance : - - - - - Frequency: - Maiztasuna: - - - - LP group - - - - - HP group - - - - - EqHandle - - - Reso: - - - - - BW: - - - - - - Freq: - - - ExportProjectDialog Export project - + Esportatu proiektua @@ -4853,12 +2262,12 @@ If you are unsure, leave it as 'Automatic'. File format settings - + Fitxategi-formatuen ezarpenak File format: - + Fitxategi-formatua: @@ -4893,7 +2302,7 @@ If you are unsure, leave it as 'Automatic'. Bit depth: - + Bit-sakonera: @@ -5006,2125 +2415,652 @@ If you are unsure, leave it as 'Automatic'. - - Oversampling: - - - - - 1x (None) - 1x (bat ere ez) - - - - 2x - 2x - - - - 4x - 4x - - - - 8x - 8x - - - + Start Hasiera - + Cancel Utzi - - - Could not open file - Ezin da fitxategia irek - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - - - - - Export project to %1 - - - - - ( Fastest - biggest ) - - - - - ( Slowest - smallest ) - - - - - Error - Errorea - - - - Error while determining file-encoder device. Please try to choose a different output format. - - - - - Rendering: %1% - - - - - Fader - - - Set value - - - - - Please enter a new value between %1 and %2: - Sartu %1 eta %2 arteko balio berri bat: - - - - FileBrowser - - - User content - - - - - Factory content - - - - - Browser - - - - - Search - Bilatu - - - - Refresh list - Freskatu zerrenda - - - - FileBrowserTreeWidget - - - Send to active instrument-track - - - - - Open containing folder - - - - - Song Editor - - - - - BB Editor - - - - - Send to new AudioFileProcessor instance - - - - - Send to new instrument track - - - - - (%2Enter) - - - - - Send to new sample track (Shift + Enter) - - - - - Loading sample - Lagina kargatzen - - - - Please wait, loading sample for preview... - Itxaron, lagina kargatzen ari da aurrebistarako... - - - - Error - Errorea - - - - %1 does not appear to be a valid %2 file - - - - - --- Factory files --- - - - - - FlangerControls - - - Delay samples - Atzeratu laginak - - - - LFO frequency - - - - - Seconds - - - - - Stereo phase - - - - - Regen - - - - - Noise - - - - - Invert - - - - - FlangerControlsDialog - - - DELAY - - - - - Delay time: - - - - - RATE - - - - - Period: - - - - - AMNT - - - - - Amount: - - - - - PHASE - - - - - Phase: - - - - - FDBK - - - - - Feedback amount: - - - - - NOISE - - - - - White noise amount: - - - - - Invert - - - - - FreeBoyInstrument - - - Sweep time - - - - - Sweep direction - - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle - - - - - Channel 1 volume - - - - - - - Volume sweep direction - - - - - - - Length of each step in sweep - - - - - Channel 2 volume - - - - - Channel 3 volume - - - - - Channel 4 volume - - - - - Shift Register width - - - - - Right output level - - - - - Left output level - - - - - Channel 1 to SO2 (Left) - - - - - Channel 2 to SO2 (Left) - - - - - Channel 3 to SO2 (Left) - - - - - Channel 4 to SO2 (Left) - - - - - Channel 1 to SO1 (Right) - - - - - Channel 2 to SO1 (Right) - - - - - Channel 3 to SO1 (Right) - - - - - Channel 4 to SO1 (Right) - - - - - Treble - - - - - Bass - - - - - FreeBoyInstrumentView - - - Sweep time: - - - - - Sweep time - - - - - Sweep rate shift amount: - - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle: - - - - - - Wave pattern duty cycle - - - - - Square channel 1 volume: - - - - - Square channel 1 volume - - - - - - - Length of each step in sweep: - - - - - - - Length of each step in sweep - - - - - Square channel 2 volume: - - - - - Square channel 2 volume - - - - - Wave pattern channel volume: - - - - - Wave pattern channel volume - - - - - Noise channel volume: - - - - - Noise channel volume - - - - - SO1 volume (Right): - - - - - SO1 volume (Right) - - - - - SO2 volume (Left): - - - - - SO2 volume (Left) - - - - - Treble: - - - - - Treble - - - - - Bass: - - - - - Bass - - - - - Sweep direction - - - - - - - - - Volume sweep direction - - - - - Shift register width - - - - - Channel 1 to SO1 (Right) - - - - - Channel 2 to SO1 (Right) - - - - - Channel 3 to SO1 (Right) - - - - - Channel 4 to SO1 (Right) - - - - - Channel 1 to SO2 (Left) - - - - - Channel 2 to SO2 (Left) - - - - - Channel 3 to SO2 (Left) - - - - - Channel 4 to SO2 (Left) - - - - - Wave pattern graph - - - - - MixerChannelView - - - Channel send amount - - - - - Move &left - - - - - Move &right - - - - - Rename &channel - - - - - R&emove channel - - - - - Remove &unused channels - - - - - Set channel color - - - - - Remove channel color - - - - - Pick random channel color - - - - - MixerChannelLcdSpinBox - - - Assign to: - - - - - New mixer Channel - - - - - Mixer - - - Master - - - - - - - Channel %1 - - - - - Volume - Bolumena - - - - Mute - - - - - Solo - - - - - MixerView - - - Mixer - - - - - Fader %1 - - - - - Mute - - - - - Mute this mixer channel - - - - - Solo - - - - - Solo mixer channel - - - - - MixerRoute - - - - Amount to send from channel %1 to channel %2 - - - - - GigInstrument - - - Bank - - - - - Patch - - - - - Gain - Irabazia - - - - GigInstrumentView - - - - Open GIG file - Ireki GIG fitxategia - - - - Choose patch - - - - - Gain: - Irabazia: - - - - GIG Files (*.gig) - GIG fitxategiak (*.gig) - - - - GuiApplication - - - Working directory - Laneko direktorioa - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - - - - - Preparing UI - Interfazea prestatzen - - - - Preparing song editor - Abesti-editorea prestatzen - - - - Preparing mixer - Nahasgailua prestatzen - - - - Preparing controller rack - - - - - Preparing project notes - - - - - Preparing beat/bassline editor - - - - - Preparing piano roll - - - - - Preparing automation editor - - - - - InstrumentFunctionArpeggio - - - Arpeggio - - - - - Arpeggio type - - - - - Arpeggio range - - - - - Note repeats - - - - - Cycle steps - - - - - Skip rate - - - - - Miss rate - - - - - Arpeggio time - - - - - Arpeggio gate - - - - - Arpeggio direction - - - - - Arpeggio mode - - - - - Up - - - - - Down - - - - - Up and down - - - - - Down and up - - - - - Random - Ausazkoa - - - - Free - - - - - Sort - - - - - Sync - - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - - - - - RANGE - - - - - Arpeggio range: - - - - - octave(s) - - - - - REP - - - - - Note repeats: - - - - - time(s) - - - - - CYCLE - - - - - Cycle notes: - - - - - note(s) - - - - - SKIP - - - - - Skip rate: - - - - - - - % - - - - - MISS - - - - - Miss rate: - - - - - TIME - - - - - Arpeggio time: - - - - - ms - - - - - GATE - - - - - Arpeggio gate: - - - - - Chord: - - - - - Direction: - - - - - Mode: - - InstrumentFunctionNoteStacking - + octave - - + + Major - + Majb5 - + minor - + minb5 - + sus2 - + sus4 - + aug - + augsus4 - + tri - + 6 - + 6sus4 - + 6add9 - + m6 - + m6add9 - + 7 - + 7sus4 - + 7#5 - + 7b5 - + 7#9 - + 7b9 - + 7#5#9 - + 7#5b9 - + 7b5b9 - + 7add11 - + 7add13 - + 7#11 - + Maj7 - + Maj7b5 - + Maj7#5 - + Maj7#11 - + Maj7add13 - + m7 - + m7b5 - + m7b9 - + m7add11 - + m7add13 - + m-Maj7 - + m-Maj7add11 - + m-Maj7add13 - + 9 - + 9sus4 - + add9 - + 9#5 - + 9b5 - + 9#11 - + 9b13 - + Maj9 - + Maj9sus4 - + Maj9#5 - + Maj9#11 - + m9 - + madd9 - + m9b5 - + m9-Maj7 - + 11 - + 11b9 - + Maj11 - + m11 - + m-Maj11 - + 13 - + 13#9 - + 13b9 - + 13b5b9 - + Maj13 - + m13 - + m-Maj13 - + Harmonic minor - + Melodic minor - + Whole tone - + Diminished - + Major pentatonic - + Minor pentatonic - + Jap in sen - + Major bebop - + Dominant bebop - + Blues - + Arabic - + Enigmatic - + Neopolitan - + Neopolitan minor - + Hungarian minor - + Dorian - + Phrygian - + Lydian - + Mixolydian - + Aeolian - + Locrian - + Minor - + Chromatic - + Half-Whole Diminished - + 5 - + Phrygian dominant - + Persian - - - Chords - - - - - Chord type - - - - - Chord range - - - - - InstrumentFunctionNoteStackingView - - - STACKING - - - - - Chord: - - - - - RANGE - - - - - Chord range: - - - - - octave(s) - - - - - InstrumentMidiIOView - - - ENABLE MIDI INPUT - - - - - ENABLE MIDI OUTPUT - - - - - - CHAN - This string must be be short, its width must be less than * width of LCD spin-box of two digits - - - - - - VELOC - This string must be be short, its width must be less than * width of LCD spin-box of three digits - - - - - PROG - This string must be be short, its width must be less than the * width of LCD spin-box of three digits - - - - - NOTE - This string must be be short, its width must be less than * width of LCD spin-box of three digits - - - - - MIDI devices to receive MIDI events from - - - - - MIDI devices to send MIDI events to - - - - - CUSTOM BASE VELOCITY - - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. - - - - - BASE VELOCITY - - - - - InstrumentTuningView - - - MASTER PITCH - - - - - Enables the use of master pitch - - InstrumentSoundShaping - + VOLUME - + Volume Bolumena - + CUTOFF - - + Cutoff frequency - + RESO - + Resonance - - - Envelopes/LFOs - - - - - Filter type - - - - - Q/Resonance - - - - - Low-pass - - - - - Hi-pass - - - - - Band-pass csg - - - - - Band-pass czpg - - - - - Notch - - - - - All-pass - - - - - Moog - - - - - 2x Low-pass - - - - - RC Low-pass 12 dB/oct - - - - - RC Band-pass 12 dB/oct - - - - - RC High-pass 12 dB/oct - - - - - RC Low-pass 24 dB/oct - - - - - RC Band-pass 24 dB/oct - - - - - RC High-pass 24 dB/oct - - - - - Vocal Formant - - - - - 2x Moog - - - - - SV Low-pass - - - - - SV Band-pass - - - - - SV High-pass - - - - - SV Notch - - - - - Fast Formant - - - - - Tripole - - - InstrumentSoundShapingView + JackAppDialog - - TARGET + + Add JACK Application - - FILTER + + Note: Features not implemented yet are greyed out - - FREQ + + Application - - Cutoff frequency: + + Name: - - Hz + + Application: - - Q/RESO + + From template - - Q/Resonance: + + Custom - - Envelopes, LFOs and filters are not supported by the current instrument. - - - - - InstrumentTrack - - - - unnamed_track + + Template: - - Base note + + Command: - - First note + + Setup - - Last note + + Session Manager: - - Volume - Bolumena - - - - Panning - Panoramika - - - - Pitch + + None - - Pitch range + + Audio inputs: - - Mixer channel + + MIDI inputs: - - Master pitch + + Audio outputs: - - Enable/Disable MIDI CC + + MIDI outputs: - - CC Controller %1 + + Take control of main application window - - - Default preset - - - - - InstrumentTrackView - - - Volume - Bolumena - - - - Volume: - Bolumena: - - - - VOL - VOL - - - - Panning - Panoramika - - - - Panning: - Panoramika: - - - - PAN - PAN - - - - MIDI - MIDI - - - - Input - Sarrera - - - - Output - Irteera - - - - Open/Close MIDI CC Rack + + Workarounds - - Channel %1: %2 - FX %1: %2 - - - - InstrumentTrackWindow - - - GENERAL SETTINGS + + Wait for external application start (Advanced, for Debug only) - - Volume - Bolumena - - - - Volume: - Bolumena: - - - - VOL - VOL - - - - Panning - Panoramika - - - - Panning: - Panoramika: - - - - PAN - PAN - - - - Pitch + + Capture only the first X11 Window - - Pitch: + + Use previous client output buffer as input for the next client - - cents + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index - - PITCH + + Error here - - Pitch range (semitones) - - - - - RANGE - - - - - Mixer channel - - - - - CHANNEL - - - - - Save current instrument track settings in a preset file - - - - - SAVE - - - - - Envelope, filter & LFO - - - - - Chord stacking & arpeggio - - - - - Effects - Efektuak - - - - MIDI - MIDI - - - - Miscellaneous - Bestelakoak - - - - Save preset - - - - - XML preset file (*.xpf) - - - - - Plugin - Plugina - - - - JackApplicationW - - + NSM applications cannot use abstract or absolute paths - + NSM applications cannot use CLI arguments - + You need to save the current Carla project before NSM can be used @@ -7132,945 +3068,11 @@ Please make sure you have write permission to the file and the directory contain JuceAboutW - - About JUCE - - - - - <b>About JUCE</b> - - - - - This program uses JUCE version 3.x.x. - - - - - JUCE (Jules' Utility Class Extensions) is an all-encompassing C++ class library for developing cross-platform software. - -It contains pretty much everything you're likely to need to create most applications, and is particularly well-suited for building highly-customised GUIs, and for handling graphics and sound. - -JUCE is licensed under the GNU Public Licence version 2.0. -One module (juce_core) is permissively licensed under the ISC. - -Copyright (C) 2017 ROLI Ltd. - - - - + This program uses JUCE version %1. - - Knob - - - Set linear - Ezarri lineala - - - - Set logarithmic - Ezarri logaritmikoa - - - - - Set value - - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - Sartu -96.0 dBFS eta 6.0 dBFS arteko balio berri bat: - - - - Please enter a new value between %1 and %2: - Sartu %1 eta %2 arteko balio berri bat: - - - - LadspaControl - - - Link channels - Estekatu kanalak - - - - LadspaControlDialog - - - Link Channels - Estekatu kanalak - - - - Channel - Kanala - - - - LadspaControlView - - - Link channels - Estekatu kanalak - - - - Value: - Balioa: - - - - LadspaEffect - - - Unknown LADSPA plugin %1 requested. - - - - - LcdFloatSpinBox - - - Set value - - - - - Please enter a new value between %1 and %2: - Sartu %1 eta %2 arteko balio berri bat: - - - - LcdSpinBox - - - Set value - - - - - Please enter a new value between %1 and %2: - Sartu %1 eta %2 arteko balio berri bat: - - - - LeftRightNav - - - - - Previous - Aurrekoa - - - - - - Next - Hurrengoa - - - - Previous (%1) - Aurrekoa (%1) - - - - Next (%1) - Hurrengoa (%1) - - - - LfoController - - - LFO Controller - LFO kontrolagailua - - - - Base value - Oinarri-balioa - - - - Oscillator speed - Osziladore-abiadura - - - - Oscillator amount - Osziladore-kantitatea - - - - Oscillator phase - Osziladore-fasea - - - - Oscillator waveform - Osziladorearen uhin-forma - - - - Frequency Multiplier - - - - - LfoControllerDialog - - - LFO - LFO - - - - BASE - - - - - Base: - - - - - FREQ - - - - - LFO frequency: - - - - - AMNT - - - - - Modulation amount: - - - - - PHS - - - - - Phase offset: - - - - - degrees - - - - - Sine wave - - - - - Triangle wave - - - - - Saw wave - - - - - Square wave - - - - - Moog saw wave - - - - - Exponential wave - - - - - White noise - - - - - User-defined shape. -Double click to pick a file. - - - - - Mutliply modulation frequency by 1 - - - - - Mutliply modulation frequency by 100 - - - - - Divide modulation frequency by 100 - - - - - Engine - - - Generating wavetables - - - - - Initializing data structures - - - - - Opening audio and midi devices - - - - - Launching mixer threads - - - - - MainWindow - - - Configuration file - Konfigurazio-fitxategia - - - - Error while parsing configuration file at line %1:%2: %3 - - - - - Could not open file - Ezin da fitxategia irek - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - - - - - Project recovery - Proiektuaren berreskurapena - - - - There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - - - - - - Recover - Berreskuratu - - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - - - - - - Discard - Baztertu - - - - Launch a default session and delete the restored files. This is not reversible. - Abiarazi saio lehenetsi bat eta ezabatu leheneratutako fitxategiak. Ekintza hori ezin da desegin - - - - Version %1 - %1 bertsioa - - - - Preparing plugin browser - Plugin-arakatzailea prestatzen - - - - Preparing file browsers - Fitxategi-arakatzaileak prestatzen - - - - My Projects - Nire proiektuak - - - - My Samples - - - - - My Presets - - - - - My Home - - - - - Root directory - Erro-direktorioa - - - - Volumes - Bolumenak - - - - My Computer - - - - - &File - &Fitxategia - - - - &New - &Berria - - - - &Open... - &Ireki... - - - - Loading background picture - - - - - &Save - &Gorde - - - - Save &As... - Gorde &honela... - - - - Save as New &Version - Gorde &bertsio berri gisa - - - - Save as default template - Gorde txantiloi lehenetsi gisa - - - - Import... - Importatu... - - - - E&xport... - E&sportatu... - - - - E&xport Tracks... - - - - - Export &MIDI... - Esportatu &MIDIa... - - - - &Quit - I&rten - - - - &Edit - &Editatu - - - - Undo - Desegin - - - - Redo - Berregin - - - - Settings - Ezarpenak - - - - &View - &Ikusi - - - - &Tools - &Tresnak - - - - &Help - &Laguntza - - - - Online Help - - - - - Help - Laguntza - - - - About - Honi buruz - - - - Create new project - Sortu proiektu berria - - - - Create new project from template - Sortu proiektu berria txantiloitik - - - - Open existing project - Ireki lehendik dagoen proiektua - - - - Recently opened projects - Azken aldian irekitako proiektuak - - - - Save current project - Gorde uneko proiektua - - - - Export current project - Esportatu uneko proiektua - - - - Metronome - - - - - - Song Editor - - - - - - Beat+Bassline Editor - - - - - - Piano Roll - - - - - - Automation Editor - - - - - - Mixer - - - - - Show/hide controller rack - - - - - Show/hide project notes - - - - - Untitled - - - - - Recover session. Please save your work! - - - - - LMMS %1 - - - - - Recovered project not saved - - - - - This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? - - - - - Project not saved - - - - - The current project was modified since last saving. Do you want to save it now? - - - - - Open Project - Ireki proiektua - - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - - Save Project - Gorde proiektua - - - - LMMS Project - LMMS proiektua - - - - LMMS Project Template - LMMS proiektu-txantiloia - - - - Save project template - Gorde proiektu-txantiloia - - - - Overwrite default template? - Gainidatzi txantiloi lehenetsia? - - - - This will overwrite your current default template. - Horrek zure uneko txantiloi lehenetsia gainidatziko du. - - - - Help not available - - - - - Currently there's no help available in LMMS. -Please visit http://lmms.sf.net/wiki for documentation on LMMS. - - - - - Controller Rack - - - - - Project Notes - - - - - Fullscreen - - - - - Volume as dBFS - - - - - Smooth scroll - Korritze leuna - - - - Enable note labels in piano roll - - - - - MIDI File (*.mid) - MIDI fitxategia (*.mid) - - - - - untitled - - - - - - Select file for project-export... - - - - - Select directory for writing exported tracks... - - - - - Save project - Gorde proiektua - - - - Project saved - Proiektua gorde da - - - - The project %1 is now saved. - %1 proiektua gorde da. - - - - Project NOT saved. - Proiektua EZ da gorde. - - - - The project %1 was not saved! - %1 proiektua ez da gorde! - - - - Import file - Inportatu fitxategia - - - - MIDI sequences - MIDI sekuentziak - - - - Hydrogen projects - - - - - All file types - Fitxategi mota guztiak - - - - MeterDialog - - - - Meter Numerator - - - - - Meter numerator - - - - - - Meter Denominator - - - - - Meter denominator - - - - - TIME SIG - - - - - MeterModel - - - Numerator - Zenbakitzailea - - - - Denominator - Izendatzailea - - - - MidiCCRackView - - - - MIDI CC Rack - %1 - - - - - MIDI CC Knobs: - - - - - CC %1 - - - - - MidiController - - - MIDI Controller - MIDI kontrolatzailea - - - - unnamed_midi_controller - - - - - MidiImport - - - - Setup incomplete - - - - - You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. - - - - - You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - - - - - MIDI Time Signature Numerator - - - - - MIDI Time Signature Denominator - - - - - Numerator - Zenbakitzailea - - - - Denominator - Izendatzailea - - - - Track - Pista - - - - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - JACK zerbitzaria erorita - - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - Badirudi JACK zerbitzaria itxi egin dela. - - MidiPatternW @@ -8276,2728 +3278,368 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. I&rten - - &Insert Mode + + Esc + &Insert Mode + + + + F - + &Velocity Mode - + D - + Select All - + A - - MidiPort - - - Input channel - Sarrerako kanala - - - - Output channel - Irteerako kanala - - - - Input controller - Sarrerako kontrolatzailea - - - - Output controller - Irteerako kontrolatzailea - - - - Fixed input velocity - Sarrerako abiadura finkoa - - - - Fixed output velocity - Irteerako abiadura finkoa - - - - Fixed output note - - - - - Output MIDI program - Irteerako MIDI programa - - - - Base velocity - - - - - Receive MIDI-events - Jaso MIDI-events - - - - Send MIDI-events - Bidali MIDI-events - - - - MidiSetupWidget - - - Device - Gailua - - - - MonstroInstrument - - - Osc 1 volume - - - - - Osc 1 panning - - - - - Osc 1 coarse detune - - - - - Osc 1 fine detune left - - - - - Osc 1 fine detune right - - - - - Osc 1 stereo phase offset - - - - - Osc 1 pulse width - - - - - Osc 1 sync send on rise - - - - - Osc 1 sync send on fall - - - - - Osc 2 volume - - - - - Osc 2 panning - - - - - Osc 2 coarse detune - - - - - Osc 2 fine detune left - - - - - Osc 2 fine detune right - - - - - Osc 2 stereo phase offset - - - - - Osc 2 waveform - - - - - Osc 2 sync hard - - - - - Osc 2 sync reverse - - - - - Osc 3 volume - - - - - Osc 3 panning - - - - - Osc 3 coarse detune - - - - - Osc 3 Stereo phase offset - - - - - Osc 3 sub-oscillator mix - - - - - Osc 3 waveform 1 - - - - - Osc 3 waveform 2 - - - - - Osc 3 sync hard - - - - - Osc 3 Sync reverse - - - - - LFO 1 waveform - - - - - LFO 1 attack - - - - - LFO 1 rate - - - - - LFO 1 phase - - - - - LFO 2 waveform - - - - - LFO 2 attack - - - - - LFO 2 rate - - - - - LFO 2 phase - - - - - Env 1 pre-delay - - - - - Env 1 attack - - - - - Env 1 hold - - - - - Env 1 decay - - - - - Env 1 sustain - - - - - Env 1 release - - - - - Env 1 slope - - - - - Env 2 pre-delay - - - - - Env 2 attack - - - - - Env 2 hold - - - - - Env 2 decay - - - - - Env 2 sustain - - - - - Env 2 release - - - - - Env 2 slope - - - - - Osc 2+3 modulation - - - - - Selected view - Hautatutako bista - - - - Osc 1 - Vol env 1 - - - - - Osc 1 - Vol env 2 - - - - - Osc 1 - Vol LFO 1 - - - - - Osc 1 - Vol LFO 2 - - - - - Osc 2 - Vol env 1 - - - - - Osc 2 - Vol env 2 - - - - - Osc 2 - Vol LFO 1 - - - - - Osc 2 - Vol LFO 2 - - - - - Osc 3 - Vol env 1 - - - - - Osc 3 - Vol env 2 - - - - - Osc 3 - Vol LFO 1 - - - - - Osc 3 - Vol LFO 2 - - - - - Osc 1 - Phs env 1 - - - - - Osc 1 - Phs env 2 - - - - - Osc 1 - Phs LFO 1 - - - - - Osc 1 - Phs LFO 2 - - - - - Osc 2 - Phs env 1 - - - - - Osc 2 - Phs env 2 - - - - - Osc 2 - Phs LFO 1 - - - - - Osc 2 - Phs LFO 2 - - - - - Osc 3 - Phs env 1 - - - - - Osc 3 - Phs env 2 - - - - - Osc 3 - Phs LFO 1 - - - - - Osc 3 - Phs LFO 2 - - - - - Osc 1 - Pit env 1 - - - - - Osc 1 - Pit env 2 - - - - - Osc 1 - Pit LFO 1 - - - - - Osc 1 - Pit LFO 2 - - - - - Osc 2 - Pit env 1 - - - - - Osc 2 - Pit env 2 - - - - - Osc 2 - Pit LFO 1 - - - - - Osc 2 - Pit LFO 2 - - - - - Osc 3 - Pit env 1 - - - - - Osc 3 - Pit env 2 - - - - - Osc 3 - Pit LFO 1 - - - - - Osc 3 - Pit LFO 2 - - - - - Osc 1 - PW env 1 - - - - - Osc 1 - PW env 2 - - - - - Osc 1 - PW LFO 1 - - - - - Osc 1 - PW LFO 2 - - - - - Osc 3 - Sub env 1 - - - - - Osc 3 - Sub env 2 - - - - - Osc 3 - Sub LFO 1 - - - - - Osc 3 - Sub LFO 2 - - - - - - Sine wave - - - - - Bandlimited Triangle wave - - - - - Bandlimited Saw wave - - - - - Bandlimited Ramp wave - - - - - Bandlimited Square wave - - - - - Bandlimited Moog saw wave - - - - - - Soft square wave - - - - - Absolute sine wave - - - - - - Exponential wave - - - - - White noise - - - - - Digital Triangle wave - - - - - Digital Saw wave - - - - - Digital Ramp wave - - - - - Digital Square wave - - - - - Digital Moog saw wave - - - - - Triangle wave - - - - - Saw wave - - - - - Ramp wave - - - - - Square wave - - - - - Moog saw wave - - - - - Abs. sine wave - - - - - Random - Ausazkoa - - - - Random smooth - Ausazko leuntzea - - - - MonstroView - - - Operators view - - - - - Matrix view - - - - - - - Volume - Bolumena - - - - - - Panning - Panoramika - - - - - - Coarse detune - - - - - - - semitones - - - - - - Fine tune left - - - - - - - - cents - - - - - - Fine tune right - - - - - - - Stereo phase offset - - - - - - - - - deg - - - - - Pulse width - - - - - Send sync on pulse rise - - - - - Send sync on pulse fall - - - - - Hard sync oscillator 2 - - - - - Reverse sync oscillator 2 - - - - - Sub-osc mix - - - - - Hard sync oscillator 3 - - - - - Reverse sync oscillator 3 - - - - - - - - Attack - - - - - - Rate - - - - - - Phase - - - - - - Pre-delay - - - - - - Hold - - - - - - Decay - - - - - - Sustain - - - - - - Release - - - - - - Slope - - - - - Mix osc 2 with osc 3 - - - - - Modulate amplitude of osc 3 by osc 2 - - - - - Modulate frequency of osc 3 by osc 2 - - - - - Modulate phase of osc 3 by osc 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Modulation amount - - - - - MultitapEchoControlDialog - - - Length - - - - - Step length: - - - - - Dry - - - - - Dry gain: - - - - - Stages - - - - - Low-pass stages: - - - - - Swap inputs - - - - - Swap left and right input channels for reflections - - - - - NesInstrument - - - Channel 1 coarse detune - - - - - Channel 1 volume - - - - - Channel 1 envelope length - - - - - Channel 1 duty cycle - - - - - Channel 1 sweep amount - - - - - Channel 1 sweep rate - - - - - Channel 2 Coarse detune - - - - - Channel 2 Volume - - - - - Channel 2 envelope length - - - - - Channel 2 duty cycle - - - - - Channel 2 sweep amount - - - - - Channel 2 sweep rate - - - - - Channel 3 coarse detune - - - - - Channel 3 volume - - - - - Channel 4 volume - - - - - Channel 4 envelope length - - - - - Channel 4 noise frequency - - - - - Channel 4 noise frequency sweep - - - - - Master volume - - - - - Vibrato - - - - - NesInstrumentView - - - - - - Volume - Bolumena - - - - - - Coarse detune - - - - - - - Envelope length - - - - - Enable channel 1 - - - - - Enable envelope 1 - - - - - Enable envelope 1 loop - - - - - Enable sweep 1 - - - - - - Sweep amount - - - - - - Sweep rate - - - - - - 12.5% Duty cycle - - - - - - 25% Duty cycle - - - - - - 50% Duty cycle - - - - - - 75% Duty cycle - - - - - Enable channel 2 - - - - - Enable envelope 2 - - - - - Enable envelope 2 loop - - - - - Enable sweep 2 - - - - - Enable channel 3 - - - - - Noise Frequency - - - - - Frequency sweep - - - - - Enable channel 4 - - - - - Enable envelope 4 - - - - - Enable envelope 4 loop - - - - - Quantize noise frequency when using note frequency - - - - - Use note frequency for noise - - - - - Noise mode - - - - - Master volume - - - - - Vibrato - - - - - OpulenzInstrument - - - Patch - - - - - Op 1 attack - - - - - Op 1 decay - - - - - Op 1 sustain - - - - - Op 1 release - - - - - Op 1 level - - - - - Op 1 level scaling - - - - - Op 1 frequency multiplier - - - - - Op 1 feedback - - - - - Op 1 key scaling rate - - - - - Op 1 percussive envelope - - - - - Op 1 tremolo - - - - - Op 1 vibrato - - - - - Op 1 waveform - - - - - Op 2 attack - - - - - Op 2 decay - - - - - Op 2 sustain - - - - - Op 2 release - - - - - Op 2 level - - - - - Op 2 level scaling - - - - - Op 2 frequency multiplier - - - - - Op 2 key scaling rate - - - - - Op 2 percussive envelope - - - - - Op 2 tremolo - - - - - Op 2 vibrato - - - - - Op 2 waveform - - - - - FM - - - - - Vibrato depth - - - - - Tremolo depth - - - - - OpulenzInstrumentView - - - - Attack - - - - - - Decay - - - - - - Release - - - - - - Frequency multiplier - - - - - OscillatorObject - - - Osc %1 waveform - - - - - Osc %1 harmonic - - - - - - Osc %1 volume - - - - - - Osc %1 panning - - - - - - Osc %1 fine detuning left - - - - - Osc %1 coarse detuning - - - - - Osc %1 fine detuning right - - - - - Osc %1 phase-offset - - - - - Osc %1 stereo phase-detuning - - - - - Osc %1 wave shape - - - - - Modulation type %1 - - - - - Oscilloscope - - - Oscilloscope - - - - - Click to enable - - - PatchesDialog + Qsynth: Channel Preset + Bank selector + Bank + Program selector + Patch + Name Izena + OK Ados + Cancel Utzi - - PatmanView - - - Open patch - - - - - Loop - Begizta - - - - Loop mode - Begizta modua - - - - Tune - - - - - Tune mode - - - - - No file selected - Ez da fitxategirik hautatu - - - - Open patch file - - - - - Patch-Files (*.pat) - - - - - MidiClipView - - - Open in piano-roll - - - - - Set as ghost in piano-roll - - - - - Clear all notes - - - - - Reset name - Berrezarri izena - - - - Change name - Aldatu izena - - - - Add steps - Gehitu urratsa - - - - Remove steps - Kendu urratsak - - - - Clone Steps - Klonatu urratsak - - - - PeakController - - - Peak Controller - - - - - Peak Controller Bug - - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - - - - - PeakControllerDialog - - - PEAK - - - - - LFO Controller - LFO kontrolagailua - - - - PeakControllerEffectControlDialog - - - BASE - - - - - Base: - - - - - AMNT - - - - - Modulation amount: - - - - - MULT - - - - - Amount multiplicator: - - - - - ATCK - - - - - Attack: - - - - - DCAY - - - - - Release: - - - - - TRSH - - - - - Treshold: - - - - - Mute output - - - - - Absolute value - - - - - PeakControllerEffectControls - - - Base value - Oinarri-balioa - - - - Modulation amount - - - - - Attack - - - - - Release - - - - - Treshold - Atalasea - - - - Mute output - - - - - Absolute value - - - - - Amount multiplicator - - - - - PianoRoll - - - Note Velocity - - - - - Note Panning - - - - - Mark/unmark current semitone - - - - - Mark/unmark all corresponding octave semitones - - - - - Mark current scale - - - - - Mark current chord - - - - - Unmark all - - - - - Select all notes on this key - - - - - Note lock - - - - - Last note - - - - - No key - - - - - No scale - - - - - No chord - - - - - Nudge - - - - - Snap - - - - - Velocity: %1% - - - - - Panning: %1% left - - - - - Panning: %1% right - - - - - Panning: center - - - - - Glue notes failed - - - - - Please select notes to glue first. - - - - - Please open a clip by double-clicking on it! - - - - - - Please enter a new value between %1 and %2: - Sartu %1 eta %2 arteko balio berri bat: - - - - PianoRollWindow - - - Play/pause current clip (Space) - Erreproduzitu/pausatu uneko eredua (espazioa) - - - - Record notes from MIDI-device/channel-piano - - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - - - - - Record notes from MIDI-device/channel-piano, one step at the time - - - - - Stop playing of current clip (Space) - Gelditu uneko ereduaren erreprodukzioa (espazioa) - - - - Edit actions - Editatu ekintzak - - - - Draw mode (Shift+D) - Marrazte modua (Shift+D) - - - - Erase mode (Shift+E) - Ezabatze modua (Shift+E) - - - - Select mode (Shift+S) - - - - - Pitch Bend mode (Shift+T) - - - - - Quantize - - - - - Quantize positions - - - - - Quantize lengths - - - - - File actions - - - - - Import clip - - - - - - Export clip - - - - - Copy paste controls - - - - - Cut (%1+X) - - - - - Copy (%1+C) - - - - - Paste (%1+V) - - - - - Timeline controls - Denbora-lerroaren kontrolak - - - - Glue - - - - - Knife - - - - - Fill - - - - - Cut overlaps - - - - - Min length as last - - - - - Max length as last - - - - - Zoom and note controls - - - - - Horizontal zooming - Zoom horizontala - - - - Vertical zooming - Zoom bertikala - - - - Quantization - Kuantifikazioa - - - - Note length - - - - - Key - - - - - Scale - - - - - Chord - - - - - Snap mode - - - - - Clear ghost notes - - - - - - Piano-Roll - %1 - - - - - - Piano-Roll - no clip - - - - - - XML clip file (*.xpt *.xptz) - - - - - Export clip success - - - - - Clip saved to %1 - - - - - Import clip. - - - - - You are about to import a clip, this will overwrite your current clip. Do you want to continue? - - - - - Open clip - - - - - Import clip success - - - - - Imported clip %1! - - - - - PianoView - - - Base note - - - - - First note - - - - - Last note - - - - - Plugin - - - Plugin not found - - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - - - - - Error while loading plugin - - - - - Failed to load plugin "%1"! - - - PluginBrowser - - Instrument Plugins - - - - - Instrument browser - - - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - - - - + no description - + A native amplifier plugin - + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track - + Boost your bass the fast and simple way - + Customizable wavetable synthesizer - + An oversampling bitcrusher - + Carla Patchbay Instrument - + Carla Rack Instrument - + A dynamic range compressor. - + A 4-band Crossover Equalizer - + A native delay plugin - + A Dual filter plugin - + plugin for processing dynamics in a flexible way - + A native eq plugin - + A native flanger plugin - + Emulation of GameBoy (TM) APU - + Player for GIG files - + Filter for importing Hydrogen files into LMMS - + Versatile drum synthesizer - + List installed LADSPA plugins - + plugin for using arbitrary LADSPA-effects inside LMMS. - + Incomplete monophonic imitation TB-303 - + plugin for using arbitrary LV2-effects inside LMMS. - + plugin for using arbitrary LV2 instruments inside LMMS. - + Filter for exporting MIDI-files from LMMS - + Filter for importing MIDI-files into LMMS - + Monstrous 3-oscillator synth with modulation matrix - + A multitap echo delay plugin - + A NES-like synthesizer - + 2-operator FM Synth - + Additive Synthesizer for organ-like sounds - + GUS-compatible patch instrument - + Plugin for controlling knobs with sound peaks - + Reverb algorithm by Sean Costello - + Player for SoundFont files - + LMMS port of sfxr - + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. - + A graphical spectrum analyzer. - + Plugin for enhancing stereo separation of a stereo input file - + Plugin for freely manipulating stereo output - + Tuneful things to bang on - + Three powerful oscillators you can modulate in several ways - + A stereo field visualizer. - + VST-host for using VST(i)-plugins within LMMS - + Vibrating string modeler - + plugin for using arbitrary VST effects inside LMMS. - + 4-oscillator modulatable wavetable synth - + plugin for waveshaping - + Mathematical expression parser - + Embedded ZynAddSubFX - - - PluginDatabaseW - - Carla - Add New + + An all-pass filter allowing for extremely high orders. - - Format + + Granular pitch shifter - - Internal + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. - - LADSPA + + Basic Slicer - - DSSI - - - - - LV2 - - - - - VST2 - - - - - VST3 - - - - - AU - - - - - Sound Kits - - - - - Type - Mota - - - - Effects - Efektuak - - - - Instruments - - - - - MIDI Plugins - - - - - Other/Misc - - - - - Architecture - - - - - Native - - - - - Bridged - - - - - Bridged (Wine) - - - - - Requirements - - - - - With Custom GUI - - - - - With CV Ports - - - - - Real-time safe only - - - - - Stereo only - - - - - With Inline Display - - - - - Favorites only - - - - - (Number of Plugins go here) - - - - - &Add Plugin - - - - - Cancel - Utzi - - - - Refresh - - - - - Reset filters - - - - - - - - - - - - - - - - - - - - TextLabel - - - - - Format: - - - - - Architecture: - - - - - Type: - Mota: - - - - MIDI Ins: - - - - - Audio Ins: - - - - - CV Outs: - - - - - MIDI Outs: - - - - - Parameter Ins: - - - - - Parameter Outs: - - - - - Audio Outs: - - - - - CV Ins: - - - - - UniqueID: - - - - - Has Inline Display: - - - - - Has Custom GUI: - - - - - Is Synth: - - - - - Is Bridged: - - - - - Information - - - - - Name - Izena - - - - Label/URI - - - - - Maker - - - - - Binary/Filename - - - - - Focus Text Search - - - - - Ctrl+F + + Tap to the beat @@ -11096,93 +3738,98 @@ This chip was used in the Commodore 64 computer. - Send Bank/Program Changes + Send Notes - Send Control Changes + Send Bank/Program Changes - Send Channel Pressure + Send Control Changes - Send Note Aftertouch + Send Channel Pressure - Send Pitchbend + Send Note Aftertouch + Send Pitchbend + + + + Send All Sound/Notes Off - + Plugin Name - + Program: - + MIDI Program: - + Save State - + Load State - + Information - + Label/URI: - + Name: - + Type: Mota: - + Maker: - + Copyright: - + Unique ID: @@ -11190,16 +3837,457 @@ Plugin Name PluginFactory - + Plugin not found. - + LMMS plugin %1 does not have a plugin descriptor named %2! + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + PluginParameter @@ -11214,157 +4302,61 @@ Plugin Name + TextLabel + + + + ... - PluginRefreshW + PluginRefreshDialog - - Carla - Refresh + + Plugin Refresh - - Search for new... + + Search for: - - LADSPA + + All plugins, ignoring cache - - DSSI + + Updated plugins only - - LV2 + + Check previously invalid plugins - - VST2 - - - - - VST3 - - - - - AU - - - - - SF2/3 - - - - - SFZ - - - - - Native - - - - - POSIX 32bit - - - - - POSIX 64bit - - - - - Windows 32bit - - - - - Windows 64bit - - - - - Available tools: - - - - - python3-rdflib (LADSPA-RDF support) - - - - - carla-discovery-win64 - - - - - carla-discovery-native - - - - - carla-discovery-posix32 - - - - - carla-discovery-posix64 - - - - - carla-discovery-win32 - - - - - Options: - - - - - Carla will run small processing checks when scanning the plugins (to make sure they won't crash). -You can disable these checks to get a faster scanning time (at your own risk). - - - - - Run processing checks while scanning - - - - + Press 'Scan' to begin the search - + Scan - + >> Skip - + Close - Itxi + @@ -11379,50 +4371,50 @@ You can disable these checks to get a faster scanning time (at your own risk). - + Enable Gaitu - + On/Off - + - + PluginName - + MIDI MIDI - + AUDIO IN - + AUDIO OUT - + GUI - + Edit - + Remove @@ -11437,2289 +4429,13568 @@ You can disable these checks to get a faster scanning time (at your own risk). - - ProjectNotes - - - Project Notes - - - - - Enter project notes here - - - - - Edit Actions - Edizio-ekintzak - - - - &Undo - &Desegin - - - - %1+Z - %1+Z - - - - &Redo - Be&rregin - - - - %1+Y - %1+Y - - - - &Copy - &Kopiatu - - - - %1+C - %1+C - - - - Cu&t - Mo&ztu - - - - %1+X - %1+X - - - - &Paste - &Itsatsi - - - - %1+V - %1+V - - - - Format Actions - Formatu-ekintzak - - - - &Bold - - - - - %1+B - - - - - &Italic - - - - - %1+I - - - - - &Underline - - - - - %1+U - - - - - &Left - - - - - %1+L - - - - - C&enter - - - - - %1+E - - - - - &Right - - - - - %1+R - - - - - &Justify - - - - - %1+J - - - - - &Color... - &Kolorea... - - ProjectRenderer - + WAV (*.wav) WAV (*.wav) - + FLAC (*.flac) FLAC (*.flac) - + OGG (*.ogg) OGG (*.ogg) - + MP3 (*.mp3) MP3 (*.mp3) - QObject + QGroupBox - - Reload Plugin - - - - - Show GUI - Erakutsi erabiltzaile-interfazea - - - - Help - Laguntza - - - - QWidget - - - - - - Name: - Izena: - - - - URI: - - - - - - - Maker: - Egilea: - - - - - - Copyright: - Copyright: - - - - - Requires Real Time: - - - - - - - - - - Yes - Bai - - - - - - - - - No - Ez - - - - - Real Time Capable: - - - - - - In Place Broken: - - - - - - Channels In: - - - - - - Channels Out: - - - - - File: %1 - Fitxategia: %1 - - - - File: - Fitxategia: - - - - RecentProjectsMenu - - - &Recently Opened Projects - &Azken aldian irekitako proiektuak - - - - RenameDialog - - - Rename... - Aldatu izena... - - - - ReverbSCControlDialog - - - Input - Sarrera - - - - Input gain: - Sarrerako irabazia: - - - - Size - Tamaina - - - - Size: - Tamaina: - - - - Color - Kolorea - - - - Color: - Kolorea: - - - - Output - Irteera - - - - Output gain: - Irteerako irabazia: - - - - ReverbSCControls - - - Input gain - Sarrerako irabazia - - - - Size - Tamaina - - - - Color - Kolorea - - - - Output gain - Irteerako irabazia - - - - SaControls - - - Pause - - - - - Reference freeze - - - - - Waterfall - - - - - Averaging - - - - - Stereo - - - - - Peak hold - - - - - Logarithmic frequency - - - - - Logarithmic amplitude - - - - - Frequency range - - - - - Amplitude range - - - - - FFT block size - - - - - FFT window type - - - - - Peak envelope resolution - - - - - Spectrum display resolution - - - - - Peak decay multiplier - - - - - Averaging weight - - - - - Waterfall history size - - - - - Waterfall gamma correction - - - - - FFT window overlap - - - - - FFT zero padding - - - - - - Full (auto) - - - - - - - Audible - - - - - Bass - - - - - Mids - - - - - High - - - - - Extended - - - - - Loud - - - - - Silent - - - - - (High time res.) - - - - - (High freq. res.) - - - - - Rectangular (Off) - - - - - - Blackman-Harris (Default) - - - - - Hamming - - - - - Hanning - - - - - SaControlsDialog - - - Pause - - - - - Pause data acquisition - - - - - Reference freeze - - - - - Freeze current input as a reference / disable falloff in peak-hold mode. - - - - - Waterfall - - - - - Display real-time spectrogram - - - - - Averaging - - - - - Enable exponential moving average - - - - - Stereo - - - - - Display stereo channels separately - - - - - Peak hold - - - - - Display envelope of peak values - - - - - Logarithmic frequency - - - - - Switch between logarithmic and linear frequency scale - - - - - - Frequency range - - - - - Logarithmic amplitude - - - - - Switch between logarithmic and linear amplitude scale - - - - - - Amplitude range - - - - - Envelope res. - - - - - Increase envelope resolution for better details, decrease for better GUI performance. - - - - - - Draw at most - - - - - envelope points per pixel - - - - - Spectrum res. - - - - - Increase spectrum resolution for better details, decrease for better GUI performance. - - - - - spectrum points per pixel - - - - - Falloff factor - - - - - Decrease to make peaks fall faster. - - - - - Multiply buffered value by - - - - - Averaging weight - - - - - Decrease to make averaging slower and smoother. - - - - - New sample contributes - - - - - Waterfall height - - - - - Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. - - - - - Keep - - - - - lines - - - - - Waterfall gamma - - - - - Decrease to see very weak signals, increase to get better contrast. - - - - - Gamma value: - - - - - Window overlap - - - - - Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. - - - - - Each sample processed - - - - - times - - - - - Zero padding - - - - - Increase to get smoother-looking spectrum. Warning: high CPU usage. - - - - - Processing buffer is - - - - - steps larger than input block - - - - - Advanced settings - - - - - Access advanced settings - - - - - - FFT block size - - - - - - FFT window type - - - - - SampleBuffer - - - Fail to open file - Ezin izan da fitxategia ireki - - - - Audio files are limited to %1 MB in size and %2 minutes of playing time - - - - - Open audio file - Ireki audio-fitxategia - - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - Audio-fitxategi guztiak (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - - Wave-Files (*.wav) - Wave fitxategiak (*.wav) - - - - OGG-Files (*.ogg) - OGG fitxategiak (*.ogg) - - - - DrumSynth-Files (*.ds) - DrumSynth fitxategia (*.ds) - - - - FLAC-Files (*.flac) - FLAC fitxategiak (*.flac) - - - - SPEEX-Files (*.spx) - SPEEX fitxategiak (*.spx) - - - - VOC-Files (*.voc) - VOC fitxategiak (*.voc) - - - - AIFF-Files (*.aif *.aiff) - AIFF fitxategiak (*.aif *.aiff) - - - - AU-Files (*.au) - AU fitxategiak (*.au) - - - - RAW-Files (*.raw) - RAW fitxategiak (*.raw) - - - - SampleClipView - - - Double-click to open sample - - - - - Delete (middle mousebutton) - Ezabatu (saguaren erdiko botoia) - - - - Delete selection (middle mousebutton) - - - - - Cut - Moztu - - - - Cut selection - - - - - Copy - Kopiatu - - - - Copy selection - - - - - Paste - Itsatsi - - - - Mute/unmute (<%1> + middle click) - - - - - Mute/unmute selection (<%1> + middle click) - - - - - Reverse sample - Alderantzikatu lagina - - - - Set clip color - - - - - Use track color - - - - - SampleTrack - - - Volume - Bolumena - - - - Panning - Panoramika - - - - Mixer channel - - - - - - Sample track - - - - - SampleTrackView - - - Track volume - - - - - Channel volume: - - - - - VOL - VOL - - - - Panning - Panoramika - - - - Panning: - Panoramika: - - - - PAN - PAN - - - - Channel %1: %2 - FX %1: %2 - - - - SampleTrackWindow - - - GENERAL SETTINGS - - - - - Sample volume - - - - - Volume: - Bolumena: - - - - VOL - BOL - - - - Panning - Panoramika - - - - Panning: - Panoramika: - - - - PAN - PAN - - - - Mixer channel - - - - - CHANNEL - - - - - SaveOptionsWidget - - - Discard MIDI connections - - - - - Save As Project Bundle (with resources) - - - - - SetupDialog - - - Reset to default value - - - - - Use built-in NaN handler - - - - - Settings - Ezarpenak - - - - - General - Orokorra - - - - Graphical user interface (GUI) - Erabiltzaile-interfaze grafikoa (GUI) - - - - Display volume as dBFS - - - - - Enable tooltips - - - - - Enable master oscilloscope by default - - - - - Enable all note labels in piano roll - - - - - Enable compact track buttons - - - - - Enable one instrument-track-window mode - - - - - Show sidebar on the right-hand side - - - - - Let sample previews continue when mouse is released - - - - - Mute automation tracks during solo - - - - - Show warning when deleting tracks - - - - - Projects - Proiektuak - - - - Compress project files by default - - - - - Create a backup file when saving a project - - - - - Reopen last project on startup - - - - - Language - Hizkuntza - - - - - Performance - Errendimendua - - - - Autosave - Gordetze automatikoa - - - - Enable autosave - Gaitu gordetze automatikoa - - - - Allow autosave while playing - Onartu gordetze automatikoa erreproduzitzean - - - - User interface (UI) effects vs. performance - - - - - Smooth scroll in song editor - - - - - Display playback cursor in AudioFileProcessor - - - - - Plugins - Pluginak - - - - VST plugins embedding: - - - - - No embedding - - - - - Embed using Qt API - - - - - Embed using native Win32 API - - - - - Embed using XEmbed protocol - - - - - Keep plugin windows on top when not embedded - - - - - Sync VST plugins to host playback - - - - - Keep effects running even without input - - - - - - Audio - Audioa - - - - Audio interface - Audio-interfazea - - - - HQ mode for output audio device - - - - - Buffer size - Buffer-tamaina - - - - - MIDI - MIDI - - - - MIDI interface - MIDI interfazea - - - - Automatically assign MIDI controller to selected track - - - - - LMMS working directory - - - - - VST plugins directory - - - - - LADSPA plugins directories - - - - - SF2 directory - SF2 direktorioa - - - - Default SF2 - - - - - GIG directory - GIG direktorioa - - - - Theme directory - - - - - Background artwork - - - - - Some changes require restarting. - Zenbait aldaketak berrabiaraztea behar dute. - - - - Autosave interval: %1 - Gordetze automatikoaren tartea: %1 - - - - Choose the LMMS working directory - Aukeratu LMMSren laneko direktorioa - - - - Choose your VST plugins directory - Aukeratu VST pluginen direktorioa - - - - Choose your LADSPA plugins directory - Aukeratu LADSPA pluginen direktorioa - - - - Choose your default SF2 - Aukeratu SF2 lehenetsia - - - - Choose your theme directory - Aukeratu azalen direktorioa - - - - Choose your background picture - Aukeratu atzeko planoaren irudia - - - - - Paths - Bideak - - - - OK - Ados - - - - Cancel - Utzi - - - - Frames: %1 -Latency: %2 ms - - - - - Choose your GIG directory - Hautatu zure GIG direktorioa - - - - Choose your SF2 directory - Hautatu zure SF2 direktorioa - - - - minutes - minutu - - - - minute - minutu - - - - Disabled - Desgaituta - - - - SidInstrument - - - Cutoff frequency - - - - - Resonance - - - - - Filter type - - - - - Voice 3 off - - - - - Volume - Bolumena - - - - Chip model - - - - - SidInstrumentView - - - Volume: - Bolumena: - - - - Resonance: - - - - - - Cutoff frequency: - - - - - High-pass filter - - - - - Band-pass filter - - - - - Low-pass filter - - - - - Voice 3 off - - - - - MOS6581 SID - - - - - MOS8580 SID - - - - - - Attack: - - - - - - Decay: - - - - - Sustain: - - - - - - Release: - - - - - Pulse Width: - - - - - Coarse: - - - - - Pulse wave - - - - - Triangle wave - - - - - Saw wave - - - - - Noise - - - - - Sync - - - - - Ring modulation - - - - - Filtered - - - - - Test - - - - - Pulse width: - - - - - SideBarWidget - - - Close - Itxi - - - - Song - - - Tempo - - - - - Master volume - - - - - Master pitch - - - - - Aborting project load - - - - - Project file contains local paths to plugins, which could be used to run malicious code. - - - - - Can't load project: Project file contains local paths to plugins. - - - - - LMMS Error report - LMMS errore-txostena - - - - (repeated %1 times) - - - - - The following errors occurred while loading: - - - - - SongEditor - - - Could not open file - Ezin da fitxategia irek - - - - Could not open file %1. You probably have no permissions to read this file. - Please make sure to have at least read permissions to the file and try again. - - - - - Operation denied - - - - - A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. - - - - - - - Error - Errorea - - - - Couldn't create bundle folder. - - - - - Couldn't create resources folder. - - - - - Failed to copy resources. - - - - - Could not write file - Ezin da fitxategia idatzi - - - - Could not open %1 for writing. You probably are not permitted towrite to this file. Please make sure you have write-access to the file and try again. - - - - - This %1 was created with LMMS %2 - - - - - Error in file - - - - - The file %1 seems to contain errors and therefore can't be loaded. - - - - - Version difference - - - - - template - - - - - project - - - - - Tempo - - - - - TEMPO - - - - - Tempo in BPM - - - - - High quality mode - - - - - - - Master volume - - - - - - - Master pitch - - - - - Value: %1% - - - - - Value: %1 semitones - - - - - SongEditorWindow - - - Song-Editor - - - - - Play song (Space) - - - - - Record samples from Audio-device - - - - - Record samples from Audio-device while playing song or BB track - - - - - Stop song (Space) - - - - - Track actions - - - - - Add beat/bassline - Gehitu taupada/baxu-lerroa - - - - Add sample-track - Gehitu lagin-pista - - - - Add automation-track - Gehitu automatizazio-pista - - - - Edit actions - Editatu ekintzak - - - - Draw mode - - - - - Knife mode (split sample clips) - - - - - Edit mode (select and move) - - - - - Timeline controls - Denbora-lerroaren kontrolak - - - - Bar insert controls - - - - - Insert bar - - - - - Remove bar - - - - - Zoom controls - Zoom-kontrolak - - - - Horizontal zooming - Zoom horizontala - - - - Snap controls - - - - - - Clip snapping size - - - - - Toggle proportional snap on/off - - - - - Base snapping size - - - - - StepRecorderWidget - - - Hint - - - - - Move recording curser using <Left/Right> arrows - - - - - SubWindow - - - Close - Itxi - - - - Maximize - Maximizatu - - - - Restore - Leheneratu - - - - TabWidget - - - + + Settings for %1 - TemplatesMenu + QObject - - New from template - Berria txantiloitik - - - - TempoSyncKnob - - - - Tempo Sync + + Reload Plugin - - No Sync + + Show GUI + Erakutsi erabiltzaile-interfazea + + + + Help + Laguntza + + + + LADSPA plugins - - Eight beats + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. - - Whole note - Nota osoa - - - - Half note - Nota erdia - - - - Quarter note - Nota laurdena - - - - 8th note - 8. nota - - - - 16th note - 16. nota - - - - 32nd note - 32. nota - - - - Custom... - Pertsonalizatua... - - - - Custom - Pertsonalizatua - - - - Synced to Eight Beats + + URI: - - Synced to Whole Note + + Project: - - Synced to Half Note + + Maker: - - Synced to Quarter Note + + Homepage: - - Synced to 8th Note + + License: - - Synced to 16th Note + + File: %1 - - Synced to 32nd Note + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) - TimeDisplayWidget + QWidget - - Time units + + + Name: + Izena: + + + + Maker: + Egilea: + + + + Copyright: + Copyright: + + + + Requires Real Time: - - MIN + + + + Yes + Bai + + + + + + No + Ez + + + + Real Time Capable: - - SEC + + In Place Broken: - - MSEC + + Channels In: - - BAR + + Channels Out: - - BEAT + + File: %1 + Fitxategia: %1 + + + + File: + Fitxategia: + + + + XYControllerW + + + XY Controller - - TICK + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) - TimeLineWidget + lmms::AmplifierControls - - Auto scrolling + + Volume - - Loop points + + Panning - - After stopping go back to beginning + + Left gain - - After stopping go back to position at which playing was started - - - - - After stopping keep position - - - - - Hint - - - - - Press <%1> to disable magnetic loop points. + + Right gain - Track + lmms::AudioFileProcessor - + + Amplify + + + + + Start of sample + + + + + End of sample + + + + + Loopback point + + + + + Reverse sample + + + + + Loop mode + + + + + Stutter + + + + + Interpolation mode + + + + + None + + + + + Linear + + + + + Sinc + + + + + Sample not found + + + + + lmms::AudioJack + + + JACK client restarted + + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + + + + + Client name + + + + + Channels + + + + + lmms::AudioOss + + + Device + + + + + Channels + + + + + lmms::AudioPortAudio::setupWidget + + + Backend + + + + + Device + + + + + lmms::AudioPulseAudio + + + Device + + + + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + + + + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + + Gain + + + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + + Input gain + + + + + Input noise + + + + + Output gain + + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + Sarrerako irabazia + + + + Output gain + Irteerako irabazia + + + + Attack time + + + + + Release time + + + + + Stereo mode + Estereo modua + + + + lmms::Effect + + + Effect enabled + Efektua gaituta + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + Iragazki mota + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + Pasaera baxua + + + + Hi-pass + Pasaera altua + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + Bolumena + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + hutsik + + + + lmms::KickerInstrument + + + Start frequency + Hasierako maiztasuna + + + + End frequency + Amaierako maiztasuna + + + + Length + Luzera + + + + Start distortion + Hasierako distortsioa + + + + End distortion + Amaierako distortsioa + + + + Gain + Irabazia + + + + Envelope slope + + + + + Noise + Zarata + + + + Click + Klika + + + + Frequency slope + Maiztasun-malda + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + Sakonera + + + + Time + Denbora + + + + Input Volume + Sarrerako bolumena + + + + Output Volume + Irteerako bolumena + + + + Upward Depth + Goranzko sakonera + + + + Downward Depth + Beheranzko sakonera + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + Gaitu banda altua + + + + Enable Mid Band + Gaitu tarteko banda + + + + Enable Low Band + Gaitu banda baxua + + + + High Input Volume + Sarrera-bolumen altua + + + + Mid Input Volume + Tarteko sarrera-bolumena + + + + Low Input Volume + Sarrera-bolumen baxua + + + + High Output Volume + Irteera-bolumen altua + + + + Mid Output Volume + Tarteko irteera-bolumena + + + + Low Output Volume + Irteera-bolumen baxua + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + Barrutia + + + + Balance + Balantzea + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + Estekatu kanalak + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + VCF erresonantzia + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + Distortsioa + + + + Waveform + Uhin-forma + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + Ez da lagina aurkitu + + + + lmms::MalletsInstrument + + + Hardness + Gogortasuna + + + + Position + Posizioa + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + Presioa + + + + Motion + + + + + Speed + Abiadura + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + Barra uniformea + + + + Tuned bar + + + + + Glass + Beira + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + Zenbakitzailea + + + + Denominator + Izendatzailea + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + Hautatutako eskala + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + MIDI kontrolatzailea + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + Zenbakitzailea + + + + Denominator + Izendatzailea + + + + + Tempo + + + + + Track + Pista + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + Sarrerako kanala + + + + Output channel + Irteerako kanala + + + + Input controller + Sarrerako kontrolatzailea + + + + Output controller + Irteerako kontrolatzailea + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + Irteerako MIDI programa + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + Maisua + + + + + + Channel %1 + %1 kanala + + + + Volume + Bolumena + + + Mute - + Solo - TrackContainer + lmms::MixerRoute - - Couldn't import file - Ezin da fitxategia inportatu + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + - + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain + + + + + Size + + + + + Color + + + + + Output gain + + + + + lmms::SaControls + + + Pause + + + + + Reference freeze + + + + + Waterfall + + + + + Averaging + + + + + Stereo + + + + + Peak hold + + + + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type + + + + + Peak envelope resolution + + + + + Spectrum display resolution + + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + + + + + + + Audible + + + + + Bass + + + + + Mids + + + + + High + + + + + Extended + + + + + Loud + + + + + Silent + + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + + Hanning + + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + + + + + Panning + + + + + Mixer channel + + + + + + Sample track + + + + + lmms::Scale + + + empty + + + + + lmms::Sf2Instrument + + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + + Cutoff frequency + + + + + Resonance + + + + + Filter type + + + + + Voice 3 off + + + + + Volume + + + + + Chip model + + + + + lmms::SlicerT + + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + + + + + lmms::Song + + + Tempo + + + + + Master volume + + + + + Master pitch + + + + + Aborting project load + + + + + Project file contains local paths to plugins, which could be used to run malicious code. + + + + + Can't load project: Project file contains local paths to plugins. + + + + + LMMS Error report + + + + + (repeated %1 times) + + + + + The following errors occurred while loading: + + + + + lmms::StereoEnhancerControls + + + Width + + + + + lmms::StereoMatrixControls + + + Left to Left + + + + + Left to Right + + + + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software. - + Couldn't open file - Ezin da fitxategia ireki + - + Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! - + Loading project... - Proiektua kargatzen... + - - + + Cancel - Utzi + - - + + Please wait... - Itxaron... + - + Loading cancelled - + Project loading was cancelled. - + Loading Track %1 (%2/Total %3) - + Importing MIDI-file... - MIDI fitxategia inportatzen... - - - - Clip - - - Mute - ClipView + lmms::TripleOscillator - + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + Eskala logaritmikoa + + + + High quality + Kalitate altua + + + + lmms::VestigeInstrument + + + Loading plugin + Plugina kargatzen + + + + Please wait while loading the VST plugin... + Itxaron VST plugina kargatu arte... + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + Gorde aurrezarpena + + + + .fxp + .fxp + + + + .FXP + .FXP + + + + .FXB + .FXB + + + + .fxb + .fxb + + + + Loading plugin + Plugina kargatzen + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + Sarrerako irabazia + + + + Output gain + Irteerako irabazia + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + A1 + + + + A2 + A2 + + + + A3 + A3 + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + Banda-zabalera + + + + FM gain + FM irabazia + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + VOL + + + + Volume: + Bolumena: + + + + PAN + PAN + + + + Panning: + + + + + LEFT + LEFT + + + + Left gain: + + + + + RIGHT + RIGHT + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + Gailua + + + + Channels + Kanalak + + + + lmms::gui::AudioFileProcessorView + + + Open sample + Ireki lagina + + + + Reverse sample + Alderantzikatu lagina + + + + Disable loop + Desgaitu begizta + + + + Enable loop + Gaitu begizta + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + Garbitu + + + + Reset name + Berrezarri izena + + + + Change name + Aldatu izena + + + + Set/clear record + Ezarri/garbitu grabazioa + + + + Flip Vertically (Visible) + Irauli bertikalean (ikusgai) + + + + Flip Horizontally (Visible) + Irauli horizontalean (ikusgai) + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + Editatu balioa + + + + New outValue + Irteerako balio berria + + + + New inValue + Sarrerako balio berria + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + Editatu ekintzak + + + + Draw mode (Shift+D) + Marrazte modua (Shift+D) + + + + Erase mode (Shift+E) + Ezabatze modua (Shift+E) + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + Irauli bertikalean + + + + Flip horizontally + Irauli horizontalean + + + + Interpolation controls + Interpolazio-kontrolak + + + + Discrete progression + Progresio diskretua + + + + Linear progression + Progresio lineala + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + Current position - Uneko posizioa + - + Current length - Uneko luzera + - - + + %1:%2 (%3:%4 to %5:%6) - + Press <%1> and drag to make a copy. - + Press <%1> for free resizing. - + Hint - + Delete (middle mousebutton) - Ezabatu (saguaren erdiko botoia) + - + Delete selection (middle mousebutton) - + Cut - Moztu + - + Cut selection - + Merge Selection - + Copy - Kopiatu + - + Copy selection - + Paste - Itsatsi + - + Mute/unmute (<%1> + middle click) - + Mute/unmute selection (<%1> + middle click) - - Set clip color + + Clip color - - Use track color + + Change + + + + + Reset + + + + + Pick random - TrackContentWidget + lmms::gui::CompressorControlDialog - + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + Gehitu efektua + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + Izena + + + + Type + Mota + + + + All + + + + + Search + + + + + Description + Deskribapena + + + + Author + Egilea + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + Ezarri balioa + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + Arakatzailea + + + + Search + Bilatu + + + + Refresh list + Freskatu zerrenda + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + Abestien editorea + + + + Pattern Editor + Ereduen editorea + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + Lagina kargatzen + + + + Please wait, loading sample for preview... + + + + + Error + Errorea + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + Bolumena + + + + Volume: + Bolumena: + + + + VOL + BOL + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + MIDI + + + + Input + Sarrera + + + + Output + Irteera + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + %1: %2 + + + + lmms::gui::InstrumentTrackWindow + + + Volume + Bolumena + + + + Volume: + Bolumena: + + + + VOL + BOL + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + GORDE + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + Efektuak + + + + MIDI + MIDI + + + + Tuning and transposition + + + + + Save preset + Gorde aurrezarpena + + + + XML preset file (*.xpf) + XML aurrezarpen-fitxategia (*.xpf) + + + + Plugin + Plugina + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + Hasierako maiztasuna: + + + + End frequency: + Amaierako maiztasuna: + + + + Frequency slope: + Maiztasun-malda: + + + + Gain: + Irabazia: + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + Klika: + + + + Noise: + Zarata: + + + + Start distortion: + Hasierako distortsioa: + + + + End distortion: + Amaierako distortsioa: + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + Erabilgarri dauden efektuak + + + + + Unavailable Effects + Erabilgarri ez dauden efektuak + + + + + Instruments + Instrumentuak + + + + + Analysis Tools + Analisi-tresnak + + + + + Don't know + Ezezaguna + + + + Type: + Mota: + + + + lmms::gui::LadspaControlDialog + + + Link Channels + Estekatu kanalak + + + + Channel + Kanala + + + + lmms::gui::LadspaControlView + + + Link channels + Estekatu kanalak + + + + Value: + Balioa: + + + + lmms::gui::LadspaDescription + + + Plugins + Pluginak + + + + Description + Deskribapena + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + Atakak + + + + Name + Izena + + + + Rate + Tasa + + + + Direction + Norabidea + + + + Type + Mota + + + + Min < Default < Max + Min > Lehenetsia > Max + + + + Logarithmic + Logaritmikoa + + + + SR Dependent + + + + + Audio + Audioa + + + + Control + Kontrola + + + + Input + Sarrera + + + + Output + Irteera + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + Bai + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + Erresonantzia: + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + Ezarri balioa + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + Ezarri balioa + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + Aurrekoa + + + + + + Next + Hurrengoa + + + + Previous (%1) + Aurrekoa (%1) + + + + Next (%1) + Hurrengoa (%1) + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + OINARRIA + + + + Base: + Oinarria: + + + + FREQ + MAIZT + + + + LFO frequency: + LFO maiztasuna: + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + gradu + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + Zarata zuria + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + Konfigurazio-fitxategia + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + Ezin da fitxategia ireki + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + Baztertu + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + %1 bertsioa + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + Nire proiektuak + + + + My Samples + Nire laginak + + + + My Presets + Nire aurrezarpenak + + + + My Home + Nire karpeta nagusia + + + + Root Directory + + + + + Volumes + Bolumenak + + + + My Computer + Nire ordenagailua + + + + Loading background picture + + + + + &File + &Fitxategia + + + + &New + &Berria + + + + &Open... + &Ireki... + + + + &Save + &Gorde + + + + Save &As... + Gorde &honela... + + + + Save as New &Version + Gorde &bertsio berri gisa + + + + Save as default template + Gorde txantiloi lehenetsi gisa + + + + Import... + Importatu... + + + + E&xport... + E&sportatu... + + + + E&xport Tracks... + Esportatu &pistak... + + + + Export &MIDI... + Esportatu &MIDIa... + + + + &Quit + I&rten + + + + &Edit + &Editatu + + + + Undo + Desegin + + + + Redo + Berregin + + + + Scales and keymaps + + + + + Settings + Ezarpenak + + + + &View + &Ikusi + + + + &Tools + &Tresnak + + + + &Help + &Laguntza + + + + Online Help + Lineako laguntza + + + + Help + Laguntza + + + + About + Honi buruz + + + + Create new project + Sortu proiektu berria + + + + Create new project from template + Sortu proiektu berria txantiloitik + + + + Open existing project + Ireki lehendik dagoen proiektua + + + + Recently opened projects + Azken aldian irekitako proiektuak + + + + Save current project + Gorde uneko proiektua + + + + Export current project + Esportatu uneko proiektua + + + + Metronome + Metronomoa + + + + + Song Editor + Abesti-editorea + + + + + Pattern Editor + Eredu-editorea + + + + + Piano Roll + + + + + + Automation Editor + Automatizazio-editorea + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + LMMS %1 + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + Ireki proiektua + + + + LMMS (*.mmp *.mmpz) + LMMS (*.mmp *.mmpz) + + + + Save Project + Gorde proiektua + + + + LMMS Project + LMMS proiektua + + + + LMMS Project Template + LMMS proiektu-txantiloia + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + + + + + Draw mode + + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + + + + + + Zoom + + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + + + + + lmms::gui::StepRecorderWidget + + + Hint + + + + + Move recording curser using <Left/Right> arrows + + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + + Close + + + + + Maximize + + + + + Restore + + + + + lmms::gui::TapTempoView + + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + + + + + lmms::gui::TemplatesMenu + + + New from template + + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + + + + + MIN + + + + + SEC + + + + + MSEC + + + + + BAR + + + + + BEAT + + + + + TICK + + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + + + + + After stopping go back to beginning + + + + + After stopping go back to position at which playing was started + + + + + After stopping keep position + + + + + Hint + + + + + Press <%1> to disable magnetic loop points. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + Paste - Itsatsi + - TrackOperationsWidget + lmms::gui::TrackOperationsWidget - + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. Actions - Ekintzak + @@ -13734,248 +18005,240 @@ Please make sure you have read-permission to the file and the directory containi - + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? - + Confirm removal - + Don't ask again - + Clone this track - Klonatu pista hau + - + Remove this track - Kendu pista hau + + + + + Clear this track + - Clear this track - Garbitu pista hau - - - Channel %1: %2 - FX %1: %2 - - - - Assign to new mixer Channel - - Turn all recording on - Aktibatu grabazio guztiak + + Assign to new Mixer Channel + - + + Turn all recording on + + + + Turn all recording off - Desaktibatu grabazio guztiak + + + + + Track color + - Change color - Aldatu kolorea - - - - Reset color to default - Berrezarri kolorea lehenetsira - - - - Set random color + Change - - Clear clip colors + + Reset + + + + + Pick random + + + + + Reset clip colors - TripleOscillatorView + lmms::gui::TripleOscillatorView - + Modulate phase of oscillator 1 by oscillator 2 - + Modulate amplitude of oscillator 1 by oscillator 2 - + Mix output of oscillators 1 & 2 - + Synchronize oscillator 1 with oscillator 2 - + Modulate frequency of oscillator 1 by oscillator 2 - + Modulate phase of oscillator 2 by oscillator 3 - + Modulate amplitude of oscillator 2 by oscillator 3 - + Mix output of oscillators 2 & 3 - + Synchronize oscillator 2 with oscillator 3 - + Modulate frequency of oscillator 2 by oscillator 3 - + Osc %1 volume: - + Osc %1 panning: - + Osc %1 coarse detuning: - + semitones - + Osc %1 fine detuning left: - - + + cents - + Osc %1 fine detuning right: - + Osc %1 phase-offset: - - + + degrees - gradu + - + Osc %1 stereo phase-detuning: - + Sine wave - + Triangle wave - + Saw wave - + Square wave - + Moog-like saw wave - + Exponential wave - + White noise - + User-defined wave - - - VecControls - - Display persistence amount - - - - - Logarithmic scale - - - - - High quality + + Use alias-free wavetable oscillators. - VecControlsDialog + lmms::gui::VecControlsDialog - + HQ - + Double the resolution and simulate continuous analog-like trace. @@ -13990,2618 +18253,782 @@ Please make sure you have read-permission to the file and the directory containi - + Persist. - + Trace persistence: higher amount means the trace will stay bright for longer time. - + Trace persistence - VersionedSaveDialog + lmms::gui::VersionedSaveDialog - + Increment version number - + Decrement version number - + Save Options - + already exists. Do you want to replace it? - VestigeInstrumentView + lmms::gui::VestigeInstrumentView - - + + Open VST plugin - + Control VST plugin from LMMS host - + Open VST plugin preset - + Previous (-) - + Save preset - + Next (+) - + Show/hide GUI - + Turn off all notes - + DLL-files (*.dll) - + EXE-files (*.exe) - + + SO-files (*.so) + + + + No VST plugin loaded - + Preset - + by - + - VST plugin control - VstEffectControlDialog + lmms::gui::VibedView - + + Enable waveform + + + + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + Show/hide - + Control VST plugin from LMMS host - + Open VST plugin preset - + Previous (-) - + Next (+) - + Save preset - - + + Effect by: - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - VstPlugin + lmms::gui::WatsynView - - - The VST plugin %1 could not be loaded. + + + + + Volume - - Open Preset - - - - - - Vst Plugin Preset (*.fxp *.fxb) - - - - - : default - - - - - Save Preset - - - - - .fxp - - - - - .FXP - - - - - .FXB - - - - - .fxb - - - - - Loading plugin - - - - - Please wait while loading VST plugin... - - - - - WatsynInstrument - - - Volume A1 - - - - - Volume A2 - - - - - Volume B1 - - - - - Volume B2 - - - - - Panning A1 - - - - - Panning A2 - - - - - Panning B1 - - - - - Panning B2 - - - - - Freq. multiplier A1 - - - - - Freq. multiplier A2 - - - - - Freq. multiplier B1 - - - - - Freq. multiplier B2 - - - - - Left detune A1 - - - - - Left detune A2 - - - - - Left detune B1 - - - - - Left detune B2 - - - - - Right detune A1 - - - - - Right detune A2 - - - - - Right detune B1 - - - - - Right detune B2 - - - - - A-B Mix - - - - - A-B Mix envelope amount - - - - - A-B Mix envelope attack - - - - - A-B Mix envelope hold - - - - - A-B Mix envelope decay - - - - - A1-B2 Crosstalk - - - - - A2-A1 modulation - - - - - B2-B1 modulation - - - - - Selected graph - - - - - WatsynView - + + - - - Volume - Bolumena + Panning + + + - - - Panning - Panoramika - - - - - - Freq. multiplier - - - - + + + + Left detune + + + + + + - - - - - - cents - - - - + + + + Right detune - + A-B Mix - + Mix envelope amount - + Mix envelope attack - + Mix envelope hold - + Mix envelope decay - + Crosstalk - + Select oscillator A1 - + Select oscillator A2 - + Select oscillator B1 - + Select oscillator B2 - + Mix output of A2 to A1 - + Modulate amplitude of A1 by output of A2 - + Ring modulate A1 and A2 - + Modulate phase of A1 by output of A2 - + Mix output of B2 to B1 - + Modulate amplitude of B1 by output of B2 - + Ring modulate B1 and B2 - + Modulate phase of B1 by output of B2 - - - - + + + + Draw your own waveform here by dragging your mouse on this graph. - + Load waveform - + Load a waveform from a sample file - + Phase left - + Shift phase by -15 degrees - + Phase right - + Shift phase by +15 degrees + + + + Normalize + + - Normalize - - - - - Invert - - + + Smooth - - + + Sine wave - - - + + + Triangle wave - + Saw wave - - + + Square wave - Xpressive + lmms::gui::WaveShaperControlDialog - - Selected graph - - - - - A1 - A1 - - - - A2 - A2 - - - - A3 - A3 - - - - W1 smoothing - - - - - W2 smoothing - - - - - W3 smoothing - - - - - Panning 1 - - - - - Panning 2 - - - - - Rel trans - - - - - XpressiveView - - - Draw your own waveform here by dragging your mouse on this graph. - - - - - Select oscillator W1 - - - - - Select oscillator W2 - - - - - Select oscillator W3 - - - - - Select output O1 - - - - - Select output O2 - - - - - Open help window - - - - - - Sine wave - - - - - - Moog-saw wave - - - - - - Exponential wave - - - - - - Saw wave - - - - - - User-defined wave - - - - - - Triangle wave - - - - - - Square wave - - - - - - White noise - - - - - WaveInterpolate - - - - - ExpressionValid - - - - - General purpose 1: - - - - - General purpose 2: - - - - - General purpose 3: - - - - - O1 panning: - - - - - O2 panning: - - - - - Release transition: - - - - - Smoothness - - - - - ZynAddSubFxInstrument - - - Portamento - - - - - Filter frequency - - - - - Filter resonance - - - - - Bandwidth - - - - - FM gain - - - - - Resonance center frequency - - - - - Resonance bandwidth - - - - - Forward MIDI control change events - - - - - ZynAddSubFxView - - - Portamento: - - - - - PORT - - - - - Filter frequency: - - - - - FREQ - - - - - Filter resonance: - - - - - RES - - - - - Bandwidth: - - - - - BW - - - - - FM gain: - - - - - FM GAIN - - - - - Resonance center frequency: - - - - - RES CF - - - - - Resonance bandwidth: - - - - - RES BW - - - - - Forward MIDI control changes - - - - - Show GUI - Erakutsi erabiltzaile-interfazea - - - - AudioFileProcessor - - - Amplify - - - - - Start of sample - - - - - End of sample - - - - - Loopback point - - - - - Reverse sample - Alderantzikatu lagina - - - - Loop mode - Begizta modua - - - - Stutter - - - - - Interpolation mode - Interpolazio modua - - - - None - Bat ere ez - - - - Linear - Lineala - - - - Sinc - - - - - Sample not found: %1 - - - - - BitInvader - - - Sample length - - - - - BitInvaderView - - - Sample length - - - - - Draw your own waveform here by dragging your mouse on this graph. - - - - - - Sine wave - - - - - - Triangle wave - - - - - - Saw wave - - - - - - Square wave - - - - - - White noise - - - - - - User-defined wave - - - - - - Smooth waveform - - - - - Interpolation - - - - - Normalize - - - - - DynProcControlDialog - - + INPUT - + Input gain: - Sarrerako irabazia: + - + OUTPUT - - - Output gain: - Irteerako irabazia: - - - - ATTACK - - - - - Peak attack time: - - - - - RELEASE - - - - - Peak release time: - - - - - - Reset wavegraph - - - - - - Smooth wavegraph - - - - - - Increase wavegraph amplitude by 1 dB - - - - - - Decrease wavegraph amplitude by 1 dB - - - - - Stereo mode: maximum - - - - - Process based on the maximum of both stereo channels - - - - - Stereo mode: average - - - - - Process based on the average of both stereo channels - - - - - Stereo mode: unlinked - - - - - Process each stereo channel independently - - - - - DynProcControls - - - Input gain - Sarrerako irabazia - - - - Output gain - Irteerako irabazia - - - - Attack time - - - - - Release time - - - - - Stereo mode - - - - - graphModel - - - Graph - - - - - KickerInstrument - - - Start frequency - - - - - End frequency - - - - - Length - - - - - Start distortion - - - - - End distortion - - - - - Gain - Irabazia - - - - Envelope slope - - - - - Noise - - - - - Click - - - - - Frequency slope - - - - - Start from note - - - - - End to note - - - - - KickerInstrumentView - - - Start frequency: - - - - - End frequency: - - - - - Frequency slope: - - - - - Gain: - Irabazia: - - - - Envelope length: - - - - - Envelope slope: - - - - - Click: - - - - - Noise: - - - - - Start distortion: - - - - - End distortion: - - - - - LadspaBrowserView - - - - Available Effects - - - - - - Unavailable Effects - - - - - - Instruments - - - - - - Analysis Tools - Analisi-tresnak - - - - - Don't know - Ezezaguna - - - - Type: - Mota: - - - - LadspaDescription - - - Plugins - Pluginak - - - - Description - Deskribapena - - - - LadspaPortDialog - - - Ports - - - - - Name - Izena - - - - Rate - - - - - Direction - - - - - Type - Mota - - - - Min < Default < Max - - - - - Logarithmic - Logaritmikoa - - - - SR Dependent - - - - - Audio - Audioa - - - - Control - - - - - Input - Sarrera - - - - Output - Irteera - - - - Toggled - - - - - Integer - - - - - Float - - - - - - Yes - Bai - - - - Lb302Synth - - - VCF Cutoff Frequency - - - - - VCF Resonance - - - - - VCF Envelope Mod - - - - - VCF Envelope Decay - - - - - Distortion - - - - - Waveform - - - - - Slide Decay - - - - - Slide - - - - - Accent - - - - - Dead - - - - - 24dB/oct Filter - - - - - Lb302SynthView - - - Cutoff Freq: - - - - - Resonance: - - - - - Env Mod: - - - - - Decay: - - - - - 303-es-que, 24dB/octave, 3 pole filter - - - - - Slide Decay: - - - - - DIST: - - - - - Saw wave - - - - - Click here for a saw-wave. - - - - - Triangle wave - - - - - Click here for a triangle-wave. - - - - - Square wave - - - - - Click here for a square-wave. - - - - - Rounded square wave - - - - - Click here for a square-wave with a rounded end. - - - - - Moog wave - - - - - Click here for a moog-like wave. - - - - - Sine wave - - - - - Click for a sine-wave. - - - - - - White noise wave - - - - - Click here for an exponential wave. - - - - - Click here for white-noise. - - - - - Bandlimited saw wave - - - - - Click here for bandlimited saw wave. - - - - - Bandlimited square wave - - - - - Click here for bandlimited square wave. - - - - - Bandlimited triangle wave - - - - - Click here for bandlimited triangle wave. - - - - - Bandlimited moog saw wave - - - - - Click here for bandlimited moog saw wave. - - - - - MalletsInstrument - - - Hardness - - - - - Position - - - - - Vibrato gain - - - - - Vibrato frequency - - - - - Stick mix - - - - - Modulator - - - - - Crossfade - - - - - LFO speed - - - - - LFO depth - - - - - ADSR - - - - - Pressure - - - - - Motion - - - - - Speed - - - - - Bowed - - - - - Spread - - - - - Marimba - - - - - Vibraphone - - - - - Agogo - - - - - Wood 1 - - - - - Reso - - - - - Wood 2 - - - - - Beats - - - - - Two fixed - - - - - Clump - - - - - Tubular bells - - - - - Uniform bar - - - - - Tuned bar - - - - - Glass - - - - - Tibetan bowl - - - - - MalletsInstrumentView - - - Instrument - - - - - Spread - - - - - Spread: - - - - - Missing files - - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - - - - - Hardness - - - - - Hardness: - - - - - Position - - - - - Position: - - - - - Vibrato gain - - - - - Vibrato gain: - - - - - Vibrato frequency - - - - - Vibrato frequency: - - - - - Stick mix - - - - - Stick mix: - - - - - Modulator - - - - - Modulator: - - - - - Crossfade - - - - - Crossfade: - - - - - LFO speed - - - - - LFO speed: - LFO abiadura: - - - - LFO depth - - - - - LFO depth: - - - - - ADSR - - - - - ADSR: - - - - - Pressure - - - - - Pressure: - - - - - Speed - - - - - Speed: - - - - - ManageVSTEffectView - - - - VST parameter control - - - - - VST sync - - - - - - Automated - - - - - Close - - - - - ManageVestigeInstrumentView - - - - - VST plugin control - - - - - VST Sync - - - - - - Automated - - - - - Close - - - - - OrganicInstrument - - - Distortion - - - - - Volume - Bolumena - - - - OrganicInstrumentView - - - Distortion: - - - - - Volume: - Bolumena: - - - - Randomise - - - - - - Osc %1 waveform: - - - - - Osc %1 volume: - - - - - Osc %1 panning: - - - - - Osc %1 stereo detuning - - - - - cents - - - - - Osc %1 harmonic: - - - - - PatchesDialog - - - Qsynth: Channel Preset - - - - - Bank selector - - - - - Bank - - - - - Program selector - - - - - Patch - - - - - Name - Izena - - - - OK - Ados - - - - Cancel - Utzi - - - - Sf2Instrument - - - Bank - - - - - Patch - - - - - Gain - Irabazia - - - - Reverb - - - - - Reverb room size - - - - - Reverb damping - - - - - Reverb width - - - - - Reverb level - - - - - Chorus - - - - - Chorus voices - - - - - Chorus level - - - - - Chorus speed - - - - - Chorus depth - - - - - A soundfont %1 could not be loaded. - - - - - Sf2InstrumentView - - - - Open SoundFont file - - - - - Choose patch - - - - - Gain: - Irabazia: - - - - Apply reverb (if supported) - - - - - Room size: - - - - - Damping: - - - - - Width: - Zabalera: - - - - - Level: - - - - - Apply chorus (if supported) - - - - - Voices: - - - - - Speed: - - - - - Depth: - Sakonera: - - - - SoundFont Files (*.sf2 *.sf3) - - - - - SfxrInstrument - - - Wave - - - - - StereoEnhancerControlDialog - - - WIDTH - - - - - Width: - Zabalera: - - - - StereoEnhancerControls - - - Width - Zabalera - - - - StereoMatrixControlDialog - - - Left to Left Vol: - - - - - Left to Right Vol: - - - - - Right to Left Vol: - - - - - Right to Right Vol: - - - - - StereoMatrixControls - - - Left to Left - - - - - Left to Right - - - - - Right to Left - - - - - Right to Right - - - - - VestigeInstrument - - - Loading plugin - - - - - Please wait while loading the VST plugin... - - - - - Vibed - - - String %1 volume - - - - - String %1 stiffness - - - - - Pick %1 position - - - - - Pickup %1 position - - - - - String %1 panning - - - - - String %1 detune - - - - - String %1 fuzziness - - - - - String %1 length - - - - - Impulse %1 - - - - - String %1 - - - - - VibedView - - - String volume: - - - - - String stiffness: - - - - - Pick position: - - - - - Pickup position: - - - - - String panning: - - - - - String detune: - - - - - String fuzziness: - - - - - String length: - - - - - Impulse - - - - - Octave - - - - - Impulse Editor - - - - - Enable waveform - - - - - Enable/disable string - - - - - String - - - - - - Sine wave - - - - - - Triangle wave - - - - - - Saw wave - - - - - - Square wave - - - - - - White noise - - - - - - User-defined wave - - - - - - Smooth waveform - - - - - - Normalize waveform - - - - - VoiceObject - - - Voice %1 pulse width - - - - - Voice %1 attack - - - - - Voice %1 decay - - - - - Voice %1 sustain - - - - - Voice %1 release - - - - - Voice %1 coarse detuning - - - - - Voice %1 wave shape - - - - - Voice %1 sync - - - - - Voice %1 ring modulate - - - - - Voice %1 filtered - - - - - Voice %1 test - - - - - WaveShaperControlDialog - - - INPUT - - - - - Input gain: - Sarrerako irabazia: - - - - OUTPUT - - - - - Output gain: - Irteerako irabazia: - - + Output gain: + + + + + Reset wavegraph - - + + Smooth wavegraph - - + + Increase wavegraph amplitude by 1 dB - - + + Decrease wavegraph amplitude by 1 dB - + Clip input - + Clip input signal to 0 dB - WaveShaperControls + lmms::gui::XpressiveView - - Input gain - Sarrerako irabazia + + Draw your own waveform here by dragging your mouse on this graph. + - - Output gain - Irteerako irabazia + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + - + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + Erakutsi erabiltzaile-interfazea + + + \ No newline at end of file diff --git a/data/locale/fr.ts b/data/locale/fr.ts index 0386fb4c6..8169224f8 100644 --- a/data/locale/fr.ts +++ b/data/locale/fr.ts @@ -1,4 +1,4 @@ - + AboutDialog @@ -70,811 +70,44 @@ Si vous souhaitez traduire LMMS dans une autre langue ou améliorer les traducti - AmplifierControlDialog + AboutJuceDialog - - VOL - VOL + + About JUCE + - - Volume: - Volume : + + <b>About JUCE</b> + - - PAN - PAN + + This program uses JUCE version 3.x.x. + - - Panning: - Panoramisation : + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + - - LEFT - GAUCHE - - - - Left gain: - Gain de gauche : - - - - RIGHT - DROITE - - - - Right gain: - Gain de droite : + + This program uses JUCE version + - AmplifierControls + AudioDeviceSetupWidget - - Volume - Volume - - - - Panning - Panoramisation - - - - Left gain - Gain de gauche - - - - Right gain - Gain de droite - - - - AudioAlsaSetupWidget - - - DEVICE - PÉRIPHÉRIQUE - - - - CHANNELS - CANAUX - - - - AudioFileProcessorView - - - Open sample - Ouvrir un échantillon - - - - Reverse sample - Inverser l'échantillon - - - - Disable loop - Désactiver la boucle - - - - Enable loop - Activer la boucle - - - - Enable ping-pong loop - Activer la boucle ping-pong - - - - Continue sample playback across notes - Continuer de jouer l'échantillon à traver les notes - - - - Amplify: - Amplifier : - - - - Start point: - Point de départ : - - - - End point: - Point d'arrivée : - - - - Loopback point: - Point de bouclage : - - - - AudioFileProcessorWaveView - - - Sample length: - Longueur de l'échantillon : - - - - AudioJack - - - JACK client restarted - Le client JACK a redémarré - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS a été jeté dehors par JACK pour une raison quelconque. Par conséquent le serveur de JACK a été redémarré. Vous devrez refaire les connexions manuellement. - - - - JACK server down - Le serveur JACK est arrêté - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - Le serveur JACK semble avoir été arrêté et le démarrage d'une nouvelle instance a échoué. Par conséquent, LMMS ne peut pas continuer. Vous devriez enregistrer votre projet puis redémarrer JACK et LMMS. - - - - Client name - Nom du client - - - - Channels - Canaux - - - - AudioOss - - - Device - Périphérique - - - - Channels - Canaux - - - - AudioPortAudio::setupWidget - - - Backend - Backend - - - - Device - Périphérique - - - - AudioPulseAudio - - - Device - Périphérique - - - - Channels - Canaux - - - - AudioSdl::setupWidget - - - Device - Périphérique - - - - AudioSndio - - - Device - Périphérique - - - - Channels - Canaux - - - - AudioSoundIo::setupWidget - - - Backend - Backend - - - - Device - Périphérique - - - - AutomatableModel - - - &Reset (%1%2) - &Réinitialiser (%1%2) - - - - &Copy value (%1%2) - &Copier la valeur (%1%2) - - - - &Paste value (%1%2) - &Coller la valeur (%1%2) - - - - &Paste value - &Coller la valeur - - - - Edit song-global automation - Éditer l'automation globale du morceau - - - - Remove song-global automation - Supprimer l'automation globale du morceau - - - - Remove all linked controls - Supprimer tous les contrôles liés - - - - Connected to %1 - Connecté à %1 - - - - Connected to controller - Connecté au contrôleur - - - - Edit connection... - Éditer la connexion... - - - - Remove connection - Supprimer la connexion - - - - Connect to controller... - Connecter le contrôleur... - - - - AutomationEditor - - - Edit Value - Éditer la valeur - - - - New outValue - Nouvelle valeur de sortie - - - - New inValue - Nouvelle valeur d'entrée - - - - Please open an automation clip with the context menu of a control! - Veuillez ouvrir un motif d'automation avec le menu contextuel d'un contrôle ! - - - - AutomationEditorWindow - - - Play/pause current clip (Space) - Jouer/mettre en pause le motif (barre d'espace) - - - - Stop playing of current clip (Space) - Arrêter de jouer le motif actuel (barre d'espace) - - - - Edit actions - Actions d'édition - - - - Draw mode (Shift+D) - Mode dessin (Shift+D) - - - - Erase mode (Shift+E) - Mode effacement (Shift+E) - - - - Draw outValues mode (Shift+C) - Mode dessin de valeurs de sortie (Maj + C) - - - - Flip vertically - Tourner verticalement - - - - Flip horizontally - Tourner horizontalement - - - - Interpolation controls - Contrôles d'interpolation - - - - Discrete progression - Progression discrète - - - - Linear progression - Progression linéaire - - - - Cubic Hermite progression - Progression cubique de Hermite - - - - Tension value for spline - Valeur de tension pour la spline - - - - Tension: - Tension : - - - - Zoom controls - Contrôles du zoom - - - - Horizontal zooming - Zoom horizontal - - - - Vertical zooming - Zoom vertical - - - - Quantization controls - Contrôles de quantification - - - - Quantization - Quantification - - - - - Automation Editor - no clip - Éditeur d'automation - pas de motif - - - - - Automation Editor - %1 - Éditeur d'automation - %1 - - - - Model is already connected to this clip. - Ce modèle est déjà connecté à ce motif. - - - - AutomationClip - - - Drag a control while pressing <%1> - Déplacer un contrôle en appuyant sur <%1> - - - - AutomationClipView - - - Open in Automation editor - Ouvrir dans l'éditeur d'automation - - - - Clear - Effacer - - - - Reset name - Réinitialiser le nom - - - - Change name - Modifier le nom - - - - Set/clear record - Armer/désarmer l'enregistrement - - - - Flip Vertically (Visible) - Tourner verticalement (visible) - - - - Flip Horizontally (Visible) - Tourner horizontalement (visible) - - - - %1 Connections - %1 connexions - - - - Disconnect "%1" - Déconnecter "%1" - - - - Model is already connected to this clip. - Ce modèle est déjà connecté à ce motif. - - - - AutomationTrack - - - Automation track - Piste d'automation - - - - PatternEditor - - - Beat+Bassline Editor - Éditeur de rythme et de ligne de basse - - - - Play/pause current beat/bassline (Space) - Jouer/mettre en pause le rythme ou la ligne de basse (barre d'espace) - - - - Stop playback of current beat/bassline (Space) - Arrêter de jouer le rythme ou la ligne de basse (barre d'espace) - - - - Beat selector - Sélecteur de rythme - - - - Track and step actions - Actions des pas et de piste - - - - Add beat/bassline - Ajouter un rythme ou une ligne de basse - - - - Clone beat/bassline clip - Cloner le rythme/la ligne de basse - - - - Add sample-track - Ajouter une piste d'échantillon - - - - Add automation-track - Ajouter une piste d'automation - - - - Remove steps - Supprimer des pas - - - - Add steps - Ajouter des pas - - - - Clone Steps - Cloner des pas - - - - PatternClipView - - - Open in Beat+Bassline-Editor - Ouvrir dans l'éditeur de rythmes et de ligne de basse - - - - Reset name - Réinitialiser le nom - - - - Change name - Modifier le nom - - - - PatternTrack - - - Beat/Bassline %1 - Rythme ou ligne de basse %1 - - - - Clone of %1 - Clone de %1 - - - - BassBoosterControlDialog - - - FREQ - FRÉQ - - - - Frequency: - Fréquence : - - - - GAIN - GAIN - - - - Gain: - Gain : - - - - RATIO - RATIO - - - - Ratio: - Ratio : - - - - BassBoosterControls - - - Frequency - Fréquence - - - - Gain - Gain - - - - Ratio - Ratio - - - - BitcrushControlDialog - - - IN - ENTRÉE - - - - OUT - SORTIE - - - - - GAIN - GAIN - - - - Input gain: - Gain en entrée : - - - - NOISE - BRUIT - - - - Input noise: - Bruit d'entrée : - - - - Output gain: - Gain en sortie : - - - - CLIP - CLIP - - - - Output clip: - Clip de sortie : - - - - Rate enabled - Taux activé - - - - Enable sample-rate crushing - Activer le compactage du taux d'échantillonnage - - - - Depth enabled - Profondeur activée - - - - Enable bit-depth crushing - Activer la compression en profondeur des bits - - - - FREQ - FRÉQ - - - - Sample rate: - Taux d'échantillonnage : - - - - STEREO - STÉRÉO - - - - Stereo difference: - Différence stéréo : - - - - QUANT - quant - - - - Levels: - Niveaux : - - - - BitcrushControls - - - Input gain - Gain en entrée - - - - Input noise - Bruit d'entrée - - - - Output gain - Gain en sortie - - - - Output clip - Clip de sortie - - - - Sample rate - Taux d'échantillonnage - - - - Stereo difference - Différence stéréo - - - - Levels - Niveaux - - - - Rate enabled - Taux activé - - - - Depth enabled - Profondeur activée + + [System Default] + @@ -900,124 +133,124 @@ Si vous souhaitez traduire LMMS dans une autre langue ou améliorer les traducti Licence étendue ici - + Artwork Illustration - + Using KDE Oxygen icon set, designed by Oxygen Team. Utilisation du jeu d'icônes KDE Oxygen, conçu par l'équipe Oxygen. - + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. Contient quelques boutons, arrière-plans et autres petites illustrations des projets Calf Studio Gear, OpenAV et OpenOctave. - + VST is a trademark of Steinberg Media Technologies GmbH. VST est une marque déposée de Steinberg Media Technologies GmbH. - + Special thanks to António Saraiva for a few extra icons and artwork! Un grand merci à António Saraiva pour quelques icônes et illustrations supplémentaires ! - + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. Le logo LV2 a été conçu par Thorsten Wilms, sur la base d'un concept de Peter Shorthose. - + MIDI Keyboard designed by Thorsten Wilms. Clavier MIDI conçu par Thorsten Wilms. - + Carla, Carla-Control and Patchbay icons designed by DoosC. Icônes Carla, Carla-Control et Patchbay conçues par DoosC. - + Features Caractéristiques - + AU/AudioUnit: Unité audio : - + LADSPA: LADSPA : - - - - - - - - + + + + + + + + TextLabel TextLabel - + VST2: VST2 : - + DSSI: DSSI : - + LV2: LV2 : - + VST3: VST3 : - + OSC OSC - + Host URLs: URL d'hôte : - + Valid commands: Commandes valides : - + valid osc commands here commandes osc valides ici - + Example: Exemple : - + License Licence - + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -1582,50 +815,50 @@ POSSIBILITY OF SUCH DAMAGES. - + OSC Bridge Version Version passerelle de l'oscillateur - + Plugin Version Version du plugin - + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> <br>Version %1<br>Carla est un plugin audio complet host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> - - + + (Engine not running) (Le moteur ne fonctionne pas) - + Everything! (Including LRDF) Tout ! (Y compris LRDF) - + Everything! (Including CustomData/Chunks) Tout ! (Y compris CustomData/Chunks) - + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - - - + + + Using Juce host Utilisation de l'hôte Juce - + About 85% complete (missing vst bank/presets and some minor stuff) Environ 85% complété (banque de VST et de préréglages manquante et quelques éléments mineurs) @@ -1658,563 +891,600 @@ POSSIBILITY OF SUCH DAMAGES. Chargement... - + + Save + + + + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + Buffer Size: Taille du tampon : - + Sample Rate: Taux d'échantillonnage : - + ? Xruns ? Xruns - + DSP Load: %p% Chargement du DSP : %p% - + &File &Fichier - + &Engine &Moteur - + &Plugin &Plugin - + Macros (all plugins) Macros (tous les plugins) - + &Canvas &Canvas - + Zoom Zoom - + &Settings &Paramètres - + &Help &Aide - - toolBar - Barre d'outils + + Tool Bar + - + Disk Disque - - + + Home Accueil - + Transport Transport - + Playback Controls Contrôles de lecture - + Time Information Information sur la durée - + Frame: Structure : - + 000'000'000 000'000'000 - + Time: Durée : - + 00:00:00 00:00:00 - + BBT: - + 000|00|0000 000|00|0000 - + Settings Configuration - + BPM BPM - + Use JACK Transport Utiliser le transport JACK - + Use Ableton Link Utiliser un lien Ableton - + &New &Nouveau - + Ctrl+N Ctrl + N - + &Open... &Ouvrir... - - + + Open... Ouvrir... - + Ctrl+O Ctrl + O - + &Save &Enregistrer - + Ctrl+S Ctrl + S - + Save &As... Enregistrer &sous... - - + + Save As... Enregistrer sous... - + Ctrl+Shift+S Ctrl + Maj + S - + &Quit &Quitter - + Ctrl+Q Ctrl + Q - + &Start &Démarrer - + F5 F5 - + St&op Arr&êter - + F6 F6 - + &Add Plugin... &Ajouter un plugin... - + Ctrl+A Ctrl + A - + &Remove All &Tout effacer - + Enable Activer - + Disable Désactiver - + 0% Wet (Bypass) Niveau 0% (Contourner) - + 100% Wet Niveau 100% - + 0% Volume (Mute) Volume à 0% (Muet) - + 100% Volume Volume à 100% - + Center Balance Équilibre central - + &Play &Jouer - + Ctrl+Shift+P Ctrl + Maj + P - + &Stop &Arrêter - + Ctrl+Shift+X Ctrl + Maj + X - + &Backwards &Retour - + Ctrl+Shift+B Ctrl + Maj + B - + &Forwards &En avant - + Ctrl+Shift+F Ctrl + Maj + F - + &Arrange &Arranger - + Ctrl+G Ctrl + G - - + + &Refresh &Actualiser - + Ctrl+R Ctrl + R - + Save &Image... Enregistrer &l'image... - + Auto-Fit Ajustement automatique - + Zoom In Zoom avant - + Ctrl++ Ctrl + + - + Zoom Out Zoom arrière - + Ctrl+- Ctrl + - - + Zoom 100% Zoom 100% - + Ctrl+1 Ctrl + 1 - + Show &Toolbar Afficher la &barre d'outils - + &Configure Carla &Configurer Carla - + &About &À propos - + About &JUCE À propos de &JUCE - + About &Qt À propos de &Qt - + Show Canvas &Meters - + Show Canvas &Keyboard - + Show Internal Afficher l'intérieur - + Show External Afficher l'extérieur - + Show Time Panel Afficher le panneau horaire - + Show &Side Panel Afficher le &panneau latéral - + + Ctrl+P + + + + &Connect... &Connecter... - + Compact Slots Compacter les emplacements - + Expand Slots Élargir les emplacements - + Perform secret 1 Effectuer le secret 1 - + Perform secret 2 Effectuer le secret 2 - + Perform secret 3 Effectuer le secret 3 - + Perform secret 4 Effectuer le secret 4 - + Perform secret 5 Effectuer le secret 5 - + Add &JACK Application... Ajouter l'application &JACK... - + &Configure driver... &Configurer le pilote... - + Panic - + Open custom driver panel... Ouvrir le panneau personnalisé du pilote... + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + + CarlaHostWindow - + Export as... Exporter sous... - - - - + + + + Error Erreur - + Failed to load project Échec du chargement du projet - + Failed to save project Échec de l'enregistrement du projet - + Quit Quitter - + Are you sure you want to quit Carla? Êtes-vous sûr de vouloir quitter Carla ? - + Could not connect to Audio backend '%1', possible reasons: %2 Impossible de se connecter au backend audio "%1", raisons possibles : %2 - + Could not connect to Audio backend '%1' Impossible de se connecter au backend audio "%1" - + Warning Avertissement - + There are still some plugins loaded, you need to remove them to stop the engine. Do you want to do this now? Il y a encore quelques plugins chargés, vous devez les supprimer pour arrêter le moteur. Voulez-vous le faire maintenant ? - - CarlaInstrumentView - - - Show GUI - Montrer l'interface graphique - - CarlaSettingsW @@ -2269,19 +1539,19 @@ Voulez-vous le faire maintenant ? - + Main Principal - + Canvas - + Engine Moteur @@ -2302,1533 +1572,614 @@ Voulez-vous le faire maintenant ? - + Experimental Expérimental - + <b>Main</b> <b>Principal</b> - + Paths Chemins d'accès - + Default project folder: Dossier de projet par défaut : - + Interface Interface - + + Use "Classic" as default rack skin + + + + Interface refresh interval: Intervalle de rafraîchissement de l'interface : - - + + ms ms - + Show console output in Logs tab (needs engine restart) Afficher la sortie de la console dans l'onglet Journaux (nécessite le redémarrage du moteur) - + Show a confirmation dialog before quitting Afficher un dialogue de confirmation avant de quitter - - + + Theme Thème - + Use Carla "PRO" theme (needs restart) Utiliser le thème "PRO" de Carla (nécessite un redémarrage) - + Color scheme: Schéma de couleurs : - + Black Noir - + System Système - + Enable experimental features Activer les fonctions expérimentales - + <b>Canvas</b> - + Bezier Lines Lignes de Bézier - + Theme: Thème : - + Size: Taille : - + 775x600 775x600 - + 1550x1200 1550x1200 - + 3100x2400 3100x2400 - + 4650x3600 4650x3600 - + 6200x4800 6200x4800 - + + 12400x9600 + + + + Options Options - + Auto-hide groups with no ports Masquer automatiquement les groupes sans ports - + Auto-select items on hover Sélection automatique des éléments au passage de la souris - + Basic eye-candy (group shadows) - + Render Hints Indications de rendu - + Anti-Aliasing Anticrénelage - + Full canvas repaints (slower, but prevents drawing issues) - + <b>Engine</b> <b>Moteur</b> - - + + Core Noyau - + Single Client Client unique - + Multiple Clients Clients multiples - - + + Continuous Rack Rack permanent - - + + Patchbay Patchbay - + Audio driver: Pilote audio : - + Process mode: Mode de traitement : - - - - + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog Nombre maximum de paramètres à autoriser dans la boîte de dialogue intégrée "Éditer" - + Max Parameters: Paramètres maximum : - + ... ... - + Reset Xrun counter after project load Réinitialiser le compteur Xrun après le chargement du projet - + Plugin UIs Interface utilisateur des plugins - - + + How much time to wait for OSC GUIs to ping back the host Temps d'attente pour que les interfaces graphiques de l'oscillateur renvoient l'hôte - + UI Bridge Timeout: Délai d'attente du pont de I'interface utilisateur : - + Use OSC-GUI bridges when possible, this way separating the UI from DSP code Utilisez les ponts OSC-GUI lorsque cela est possible, de manière à séparer l'interface utilisateur du code DSP - + Use UI bridges instead of direct handling when possible Utiliser les ponts de l'interface utilisateur au lieu de la gestion directe lorsque cela est possible - + Make plugin UIs always-on-top Afficher les interfaces utilisateur des plugins au premier plan - + Make plugin UIs appear on top of Carla (needs restart) Afficher les interfaces utilisateur des plugins au-dessus de Carla (redémarrage nécessaire) - + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS NOTE : les ponts des interfaces utilisateur des plugins ne peuvent pas être gérées par Carla sous MacOS - - + + Restart the engine to load the new settings Redémarrez le moteur pour charger les nouveaux paramètres - + <b>OSC</b> <b>OSC</b> - + Enable OSC Activer l'oscillateur - + Enable TCP port Activer le port TCP - - + + Use specific port: Utiliser un port spécifique : - + Overridden by CARLA_OSC_TCP_PORT env var Remplacé par la variable d'environnement CARLA_OSC_TCP_PORT - - + + Use randomly assigned port Utiliser un port attribué de manière aléatoire - + Enable UDP port Activer le port UDP - + Overridden by CARLA_OSC_UDP_PORT env var Remplacé par la variable d'environnement CARLA_OSC_UDP_PORT - + DSSI UIs require OSC UDP port enabled Les interfaces utilisateur de DSSI nécessitent que le port UDP de l’oscillateur soit activé - + <b>File Paths</b> <b>Chemins d'accès des fichiers</b> - + Audio Audio - + MIDI MIDI - + Used for the "audiofile" plugin Utilisé pour le plugin "audiofile" - + Used for the "midifile" plugin Utilisé pour le plugin "midifile" - - + + Add... Ajouter... - - + + Remove Supprimer - - + + Change... Modifier... - + <b>Plugin Paths</b> <b>Chemin d'accès des plugins</b> - + LADSPA LADSPA - + DSSI DSSI - + LV2 LV2 - + VST2 VST2 - + VST3 VST3 - + SF2/3 SF2/3 - + SFZ SFZ - + + JSFX + + + + + CLAP + + + + Restart Carla to find new plugins Redémarrez Carla pour trouver de nouveaux plugins - + <b>Wine</b> <b>Wine</b> - + Executable Exécutable - + Path to 'wine' binary: Chemin d'accès de "Wine" binaire : - + Prefix Préfixe - + Auto-detect Wine prefix based on plugin filename Détection automatique du préfixe Wine basé sur le nom de fichier d'un plugin - + Fallback: Option de secours : - + Note: WINEPREFIX env var is preferred over this fallback Note : La variable d'environnement WINEPREFIX est préférable à cette option de secours - + Realtime Priority Priorité en temps réel - + Base priority: Priorité de base : - + WineServer priority: Priorité du serveur Wine : - + These options are not available for Carla as plugin Ces options ne sont pas disponibles sous forme de plugin pour Carla - + <b>Experimental</b> <b>Expérimental</b> - + Experimental options! Likely to be unstable! Ces options sont expérimentales et sont probablement instables. - + Enable plugin bridges Activer les ponts des plugins - + Enable Wine bridges Activer les ponts de Wine - + Enable jack applications Activer les applications jack - + Export single plugins to LV2 Exporter les plugins simples vers LV2 - + + Use system/desktop-theme icons (needs restart) + + + + Load Carla backend in global namespace (NOT RECOMMENDED) Charger l'arrière-plan de Carla dans l'espace de noms global (NON RECOMMANDÉ) - + Fancy eye-candy (fade-in/out groups, glow connections) - + Use OpenGL for rendering (needs restart) Utiliser OpenGL pour le rendu (nécessite un redémarrage) - + High Quality Anti-Aliasing (OpenGL only) Anticrénelage de haute qualité (OpenGL uniquement) - + Render Ardour-style "Inline Displays" - + Force mono plugins as stereo by running 2 instances at the same time. This mode is not available for VST plugins. Forcer les plugins mono à fonctionner en stéréo en exécutant simultanément 2 instances. Ce mode n'est pas disponible pour les plugins VST. - + Force mono plugins as stereo Forcer les plugins mono à fonctionner en stéréo - - Prevent plugins from doing bad stuff (needs restart) - Empêcher les dysfonctionnements des plugins (nécessite un redémarrage) + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + - - Whenever possible, run the plugins in bridge mode. - Exécutez les plugins en mode bridge si cela est possible. + + Prevent unsafe calls from plugins (needs restart) + - + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + Run plugins in bridge mode when possible Exécutez les plugins en mode bridge si cela est possible. - - - - + + + + Add Path Ajouter un chemin d'accès - - CompressorControlDialog - - - Threshold: - Seuil : - - - - Volume at which the compression begins to take place - Volume à partir duquel la compression commence à se produire - - - - Ratio: - Ratio : - - - - How far the compressor must turn the volume down after crossing the threshold - De combien le compresseur doit réduire le volume après avoir franchi le seuil - - - - Attack: - Attaque : - - - - Speed at which the compressor starts to compress the audio - Vitesse à laquelle le compresseur commence à compresser l'audio - - - - Release: - Relâchement : - - - - Speed at which the compressor ceases to compress the audio - Vitesse à laquelle le compresseur cesse de compresser l'audio - - - - Knee: - - - - - Smooth out the gain reduction curve around the threshold - Lisser la courbe de réduction du gain autour du seuil - - - - Range: - Gamme : - - - - Maximum gain reduction - Réduction maximale du gain - - - - Lookahead Length: - Durée de l'anticipation : - - - - How long the compressor has to react to the sidechain signal ahead of time - Combien de temps le compresseur doit-il réagir au signal du sidechain à l'avance - - - - Hold: - Maintien : - - - - Delay between attack and release stages - Délai entre les phases d'attaque et de relâchement - - - - RMS Size: - Taille de la moyenne quadratique : - - - - Size of the RMS buffer - Taille du tampon de la moyenne quadratique - - - - Input Balance: - Balance d'entrée : - - - - Bias the input audio to the left/right or mid/side - Polarise l'entrée audio vers la gauche/la droite ou le milieu/le côté - - - - Output Balance: - Balance de sortie : - - - - Bias the output audio to the left/right or mid/side - Polarise la sortie audio vers la gauche/la droite ou le milieu/le côté - - - - Stereo Balance: - Balance stéréo : - - - - Bias the sidechain signal to the left/right or mid/side - Polarise le signal du sidechain vers la gauche/la droite ou le milieu/le côté - - - - Stereo Link Blend: - - - - - Blend between unlinked/maximum/average/minimum stereo linking modes - - - - - Tilt Gain: - - - - - Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. - - - - - Tilt Frequency: - - - - - Center frequency of sidechain tilt filter - - - - - Mix: - - - - - Balance between wet and dry signals - - - - - Auto Attack: - - - - - Automatically control attack value depending on crest factor - - - - - Auto Release: - - - - - Automatically control release value depending on crest factor - - - - - Output gain - Gain en sortie - - - - - Gain - Gain - - - - Output volume - - - - - Input gain - Gain en entrée - - - - Input volume - - - - - Root Mean Square - - - - - Use RMS of the input - - - - - Peak - - - - - Use absolute value of the input - - - - - Left/Right - - - - - Compress left and right audio - - - - - Mid/Side - - - - - Compress mid and side audio - - - - - Compressor - - - - - Compress the audio - - - - - Limiter - - - - - Set Ratio to infinity (is not guaranteed to limit audio volume) - - - - - Unlinked - - - - - Compress each channel separately - - - - - Maximum - - - - - Compress based on the loudest channel - - - - - Average - - - - - Compress based on the averaged channel volume - - - - - Minimum - - - - - Compress based on the quietest channel - - - - - Blend - - - - - Blend between stereo linking modes - - - - - Auto Makeup Gain - - - - - Automatically change makeup gain depending on threshold, knee, and ratio settings - - - - - - Soft Clip - - - - - Play the delta signal - - - - - Use the compressor's output as the sidechain input - - - - - Lookahead Enabled - - - - - Enable Lookahead, which introduces 20 milliseconds of latency - - - - - CompressorControls - - - Threshold - - - - - Ratio - Ratio - - - - Attack - Attaque - - - - Release - Relâchement - - - - Knee - - - - - Hold - Maintien - - - - Range - - - - - RMS Size - - - - - Mid/Side - - - - - Peak Mode - - - - - Lookahead Length - - - - - Input Balance - - - - - Output Balance - - - - - Limiter - - - - - Output Gain - Gain en sortie - - - - Input Gain - Gain en entrée - - - - Blend - - - - - Stereo Balance - - - - - Auto Makeup Gain - - - - - Audition - - - - - Feedback - Réinjection - - - - Auto Attack - - - - - Auto Release - - - - - Lookahead - - - - - Tilt - - - - - Tilt Frequency - - - - - Stereo Link - - - - - Mix - Mix - - - - Controller - - - Controller %1 - Contrôleur %1 - - - - ControllerConnectionDialog - - - Connection Settings - Configuration de la connexion - - - - MIDI CONTROLLER - CONTRÔLEUR MIDI - - - - Input channel - Canal d'entrée - - - - CHANNEL - CANAL - - - - Input controller - Contrôleur d'entrée - - - - CONTROLLER - CONTRÔLEUR - - - - - Auto Detect - Auto-détection - - - - MIDI-devices to receive MIDI-events from - Périphériques MIDI desquels recevoir des événements MIDI - - - - USER CONTROLLER - CONTRÔLEUR UTILISATEUR - - - - MAPPING FUNCTION - FONCTION DE MAPPAGE - - - - OK - OK - - - - Cancel - Annuler - - - - LMMS - LMMS - - - - Cycle Detected. - Un cycle a été détecté. - - - - ControllerRackView - - - Controller Rack - Rack de contrôleurs - - - - Add - Ajouter - - - - Confirm Delete - Confirmer la suppression - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Confirmer la suppression ? Il existe des connection(s) associée(s) avec ce contrôleur. Il n'est pas possible d'annuler cette action. - - - - ControllerView - - - Controls - Contrôles - - - - Rename controller - Renommer un contrôleur - - - - Enter the new name for this controller - Entrez un nouveau nom pour ce contrôleur - - - - LFO - LFO - - - - &Remove this controller - Supp&rimer ce contrôleur - - - - Re&name this controller - Re&nommer ce contrôleur - - - - CrossoverEQControlDialog - - - Band 1/2 crossover: - Fréquence de croisement des bandes 1/2 : - - - - Band 2/3 crossover: - Fréquence de croisement des bandes 2/3 : - - - - Band 3/4 crossover: - Fréquence de croisement des bandes 3/4 : - - - - Band 1 gain - Gain de la bande 1 - - - - Band 1 gain: - Gain de la bande 1 : - - - - Band 2 gain - Gain de la bande 2 - - - - Band 2 gain: - Gain de la bande 2 : - - - - Band 3 gain - Gain de la bande 3 - - - - Band 3 gain: - Gain de la bande 3 : - - - - Band 4 gain - Gain de la bande 4 - - - - Band 4 gain: - Gain de la bande 4 : - - - - Band 1 mute - Bande 1 en sourdine - - - - Mute band 1 - Mettre la bande 1 en sourdine - - - - Band 2 mute - Mettre la bande 2 en sourdine - - - - Mute band 2 - - - - - Band 3 mute - - - - - Mute band 3 - - - - - Band 4 mute - - - - - Mute band 4 - - - - - DelayControls - - - Delay samples - - - - - Feedback - Réinjection - - - - LFO frequency - - - - - LFO amount - Niveau LFO - - - - Output gain - Gain en sortie - - - - DelayControlsDialog - - - DELAY - DE RETARD - - - - Delay time - - - - - FDBK - FDBK - - - - Feedback amount - - - - - RATE - TAUX - - - - LFO frequency - - - - - AMNT - AMNT - - - - LFO amount - Niveau LFO - - - - Out gain - Gain en sortie - - - - Gain - Gain - - Dialog - - - Add JACK Application - - - - - Note: Features not implemented yet are greyed out - - - - - Application - Application - - - - Name: - - - - - Application: - - - - - From template - - - - - Custom - - - - - Template: - - - - - Command: - - - - - Setup - - - - - Session Manager: - - - - - None - Aucun - - - - Audio inputs: - Entrées audio : - - - - MIDI inputs: - Entrées MIDI : - - - - Audio outputs: - - - - - MIDI outputs: - - - - - Take control of main application window - - - - - Workarounds - - - - - Wait for external application start (Advanced, for Debug only) - - - - - Capture only the first X11 Window - - - - - Use previous client output buffer as input for the next client - Utiliser le tampon de sortie du client précédent comme entrée pour le client suivant - - - - Simulate 16 JACK MIDI outputs, with MIDI channel as port index - - - - - Error here - - Carla Control - Connect - + Contrôle Carla - Connexion Remote setup - + Configuration à distance UDP Port: - + Port UDP: Remote host: - + Hôte distant: TCP Port: - - - - - Reported host - - - - - Automatic - - - - - Custom: - - - - - In some networks (like USB connections), the remote system cannot reach the local network. You can specify here which hostname or IP to make the remote Carla connect to. -If you are unsure, leave it as 'Automatic'. - + Port TCP: @@ -3851,17 +2202,17 @@ If you are unsure, leave it as 'Automatic'. Driver Settings - + Paramètres du driver Device: - + Périphérique: Buffer size: - + Taille du tampon: @@ -3876,7 +2227,7 @@ If you are unsure, leave it as 'Automatic'. Show Driver Control Panel - + Afficher le panneau de contrôle du driver @@ -3884,948 +2235,6 @@ If you are unsure, leave it as 'Automatic'. Redémarrez le moteur pour charger les nouveaux paramètres - - DualFilterControlDialog - - - - FREQ - FRÉQ - - - - - Cutoff frequency - Fréquence de coupure - - - - - RESO - RÉSON - - - - - Resonance - Résonance - - - - - GAIN - GAIN - - - - - Gain - Gain - - - - MIX - MIX - - - - Mix - Mix - - - - Filter 1 enabled - Filtre 1 activé - - - - Filter 2 enabled - Filtre 2 activé - - - - Enable/disable filter 1 - - - - - Enable/disable filter 2 - - - - - DualFilterControls - - - Filter 1 enabled - Filtre 1 activé - - - - Filter 1 type - Type du filtre 1 - - - - Cutoff frequency 1 - - - - - Q/Resonance 1 - Q/Résonance 1 - - - - Gain 1 - Gain 1 - - - - Mix - Mix - - - - Filter 2 enabled - Filtre 2 activé - - - - Filter 2 type - Type du filtre 2 - - - - Cutoff frequency 2 - - - - - Q/Resonance 2 - Q/Résonance 2 - - - - Gain 2 - Gain 2 - - - - - Low-pass - Passe-bas - - - - - Hi-pass - Passe-haut - - - - - Band-pass csg - Passe-bande "csg" - - - - - Band-pass czpg - Passe-bande "czpg" - - - - - Notch - Coupe-bande - - - - - All-pass - Passe-tout - - - - - Moog - Moog - - - - - 2x Low-pass - Passe-bas x2 - - - - - RC Low-pass 12 dB/oct - RC Passe-bas 12 dB - - - - - RC Band-pass 12 dB/oct - RC Passe-bande 12 dB - - - - - RC High-pass 12 dB/oct - RC Passe-haut 12 dB - - - - - RC Low-pass 24 dB/oct - RC Passe-bas 24 dB - - - - - RC Band-pass 24 dB/oct - RC Passe-bande 24 dB - - - - - RC High-pass 24 dB/oct - RC Passe-haut 24 dB - - - - - Vocal Formant - Formant vocal - - - - - 2x Moog - 2x Moog - - - - - SV Low-pass - SV Passe-bas - - - - - SV Band-pass - SV Passe-bande - - - - - SV High-pass - SV Passe-bas - - - - - SV Notch - SV coupe-bande - - - - - Fast Formant - Formant rapide - - - - - Tripole - Tripôle - - - - Editor - - - Transport controls - Contrôle du transport - - - - Play (Space) - Jouer (barre d'espace) - - - - Stop (Space) - Arrêter (barre d'espace) - - - - Record - Enregistrer - - - - Record while playing - Enregistrer en jouant - - - - Toggle Step Recording - - - - - Effect - - - Effect enabled - Effet activé - - - - Wet/Dry mix - Mélange originel/traité - - - - Gate - Seuil - - - - Decay - Affaiblissement (decay) - - - - EffectChain - - - Effects enabled - Effets activés - - - - EffectRackView - - - EFFECTS CHAIN - CHAÎNE D'EFFETS - - - - Add effect - Ajouter un effet - - - - EffectSelectDialog - - - Add effect - Ajouter un effet - - - - - Name - Nom - - - - Type - Type - - - - Description - Description - - - - Author - Auteur - - - - EffectView - - - On/Off - On/Off - - - - W/D - W/D - - - - Wet Level: - Niveau avec effet : - - - - DECAY - DECAY - - - - Time: - Durée : - - - - GATE - GATE - - - - Gate: - Gate : - - - - Controls - Contrôles - - - - Move &up - Déplacer vers le &haut - - - - Move &down - Déplacer vers le &bas - - - - &Remove this plugin - &Supprimer cet effet - - - - EnvelopeAndLfoParameters - - - Env pre-delay - - - - - Env attack - - - - - Env hold - - - - - Env decay - Affaiblissement de l'enveloppe - - - - Env sustain - - - - - Env release - - - - - Env mod amount - - - - - LFO pre-delay - - - - - LFO attack - - - - - LFO frequency - - - - - LFO mod amount - - - - - LFO wave shape - - - - - LFO frequency x 100 - - - - - Modulate env amount - - - - - EnvelopeAndLfoView - - - - DEL - DEL - - - - - Pre-delay: - - - - - - ATT - ATT - - - - - Attack: - Attaque : - - - - HOLD - HOLD - - - - Hold: - Maintien : - - - - DEC - DEC - - - - Decay: - Affaiblissement (decay) : - - - - SUST - SUST - - - - Sustain: - Soutien : - - - - REL - REL - - - - Release: - Relâchement : - - - - - AMT - AMT - - - - - Modulation amount: - Niveau de modulation : - - - - SPD - SPD - - - - Frequency: - Fréquence : - - - - FREQ x 100 - FRÉQ x 100 - - - - Multiply LFO frequency by 100 - - - - - MODULATE ENV AMOUNT - - - - - Control envelope amount by this LFO - - - - - ms/LFO: - ms/LFO : - - - - Hint - Astuce - - - - Drag and drop a sample into this window. - - - - - EqControls - - - Input gain - Gain en entrée - - - - Output gain - Gain en sortie - - - - Low-shelf gain - - - - - Peak 1 gain - Gain de crête 1 - - - - Peak 2 gain - Gain de crête 2 - - - - Peak 3 gain - Gain de crête 3 - - - - Peak 4 gain - Gain de crête 4 - - - - High-shelf gain - - - - - HP res - PH rés - - - - Low-shelf res - - - - - Peak 1 BW - Bande-passante du pic 1 - - - - Peak 2 BW - Bande-passante du pic 2 - - - - Peak 3 BW - Bande-passante du pic 3 - - - - Peak 4 BW - Bande-passante du pic 4 - - - - High-shelf res - - - - - LP res - Rés. du passe-base - - - - HP freq - Fréquence du passe-haut - - - - Low-shelf freq - - - - - Peak 1 freq - Fréquence de crête 1 - - - - Peak 2 freq - Fréquence de crête 2 - - - - Peak 3 freq - Fréquence de crête 3 - - - - Peak 4 freq - Fréquence de crête 4 - - - - High-shelf freq - - - - - LP freq - Fréq. passe-base - - - - HP active - Passe-haut actif - - - - Low-shelf active - - - - - Peak 1 active - Crête 1 active - - - - Peak 2 active - Crête 2 active - - - - Peak 3 active - Crête 3 active - - - - Peak 4 active - Crête 4 active - - - - High-shelf active - - - - - LP active - Passe-bas actif - - - - LP 12 - Passe-bas 12 - - - - LP 24 - Passe-bas 24 - - - - LP 48 - Passe-bas 48 - - - - HP 12 - Passe-haut 12 - - - - HP 24 - Passe-haut 24 - - - - HP 48 - Passe-haut 48 - - - - Low-pass type - - - - - High-pass type - - - - - Analyse IN - Analyse d'entrée - - - - Analyse OUT - Analyse de sortie - - - - EqControlsDialog - - - HP - PH - - - - Low-shelf - - - - - Peak 1 - Crête 1 - - - - Peak 2 - Crête 2 - - - - Peak 3 - Crête 3 - - - - Peak 4 - Crête 4 - - - - High-shelf - - - - - LP - Passe-bas - - - - Input gain - Gain en entrée - - - - - - Gain - Gain - - - - Output gain - Gain en sortie - - - - Bandwidth: - Largeur de bande : - - - - Octave - Octave - - - - Resonance : - Résonance : - - - - Frequency: - Fréquence : - - - - LP group - - - - - HP group - - - - - EqHandle - - - Reso: - Réso : - - - - BW: - Bande-passante : - - - - - Freq: - Fréquence : - - ExportProjectDialog @@ -4846,7 +2255,7 @@ If you are unsure, leave it as 'Automatic'. Render Looped Section: - + Faire le rendu de la section bouclée: @@ -4856,7 +2265,7 @@ If you are unsure, leave it as 'Automatic'. File format settings - + Configuration du format de fichier @@ -4866,7 +2275,7 @@ If you are unsure, leave it as 'Automatic'. Sampling rate: - + Taux d'échantillonnage : @@ -4896,22 +2305,22 @@ If you are unsure, leave it as 'Automatic'. Bit depth: - + Profondeur de bit: 16 Bit integer - + Entier 16 bits 24 Bit integer - + Entier 24 bits 32 Bit float - + Flottants 32 bits @@ -5009,3152 +2418,734 @@ If you are unsure, leave it as 'Automatic'. - - Oversampling: - - - - - 1x (None) - 1x (Aucun) - - - - 2x - 2x - - - - 4x - 4x - - - - 8x - 8x - - - + Start Démarrer - + Cancel Annuler - - - Could not open file - Le fichier n'a pas pu être ouvert - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Impossible d'ouvrir le fichier %1 en écriture. -Veuillez vous assurez que vous avez les droits d'écriture sur le fichier et le dossier contenant le fichier, et essayez à nouveau ! - - - - Export project to %1 - Exporter le projet vers %1 - - - - ( Fastest - biggest ) - - - - - ( Slowest - smallest ) - - - - - Error - Erreur - - - - Error while determining file-encoder device. Please try to choose a different output format. - Erreur pendant la détection du périphérique d'encodage du fichier. Veuillez essayer de choisir un format de sortie différent. - - - - Rendering: %1% - Encodage : %1% - - - - Fader - - - Set value - Mode valeur - - - - Please enter a new value between %1 and %2: - Veuillez entrer une valeur entre %1 et %2 : - - - - FileBrowser - - - User content - - - - - Factory content - - - - - Browser - Explorateur - - - - Search - Chercher - - - - Refresh list - Rafraîchir la liste - - - - FileBrowserTreeWidget - - - Send to active instrument-track - Envoyer vers la piste d'instrument actif - - - - Open containing folder - - - - - Song Editor - Éditeur de morceau - - - - BB Editor - - - - - Send to new AudioFileProcessor instance - - - - - Send to new instrument track - - - - - (%2Enter) - - - - - Send to new sample track (Shift + Enter) - - - - - Loading sample - Chargement de l'échantillon - - - - Please wait, loading sample for preview... - Veuillez patienter, chargement de l'échantillon pour un aperçu... - - - - Error - Erreur - - - - %1 does not appear to be a valid %2 file - - - - - --- Factory files --- - --- Fichiers usine --- - - - - FlangerControls - - - Delay samples - - - - - LFO frequency - - - - - Seconds - Secondes - - - - Stereo phase - - - - - Regen - Régén - - - - Noise - Bruit - - - - Invert - Inverser - - - - FlangerControlsDialog - - - DELAY - DE RETARD - - - - Delay time: - - - - - RATE - TAUX - - - - Period: - Période : - - - - AMNT - AMNT - - - - Amount: - Montant : - - - - PHASE - - - - - Phase: - - - - - FDBK - FDBK - - - - Feedback amount: - - - - - NOISE - BRUIT - - - - White noise amount: - - - - - Invert - Inverser - - - - FreeBoyInstrument - - - Sweep time - Temps de balayage - - - - Sweep direction - Sens de balayage - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle - - - - - Channel 1 volume - Volume du canal 1 - - - - - - Volume sweep direction - Sens du volume du balayage - - - - - - Length of each step in sweep - Longueur de chaque pas du balayage - - - - Channel 2 volume - Volume du canal 2 - - - - Channel 3 volume - Volume du canal 3 - - - - Channel 4 volume - Volume du canal 4 - - - - Shift Register width - Largeur du registre de décalage - - - - Right output level - - - - - Left output level - - - - - Channel 1 to SO2 (Left) - Canal 1 vers SO2 (gauche) - - - - Channel 2 to SO2 (Left) - Canal 2 vers SO2 (gauche) - - - - Channel 3 to SO2 (Left) - Canal 3 vers SO2 (gauche) - - - - Channel 4 to SO2 (Left) - Canal 4 vers SO2 (gauche) - - - - Channel 1 to SO1 (Right) - Canal 1 vers SO2 (droite) - - - - Channel 2 to SO1 (Right) - Canal 2 vers SO2 (droite) - - - - Channel 3 to SO1 (Right) - Canal 3 vers SO2 (droite) - - - - Channel 4 to SO1 (Right) - Canal 4 vers SO2 (droite) - - - - Treble - Aigus - - - - Bass - Graves - - - - FreeBoyInstrumentView - - - Sweep time: - - - - - Sweep time - Temps de balayage - - - - Sweep rate shift amount: - - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle: - - - - - - Wave pattern duty cycle - - - - - Square channel 1 volume: - - - - - Square channel 1 volume - - - - - - - Length of each step in sweep: - Longueur de chaque pas du balayage : - - - - - - Length of each step in sweep - Longueur de chaque pas du balayage - - - - Square channel 2 volume: - Volume du canal carré 2 : - - - - Square channel 2 volume - - - - - Wave pattern channel volume: - - - - - Wave pattern channel volume - - - - - Noise channel volume: - - - - - Noise channel volume - - - - - SO1 volume (Right): - - - - - SO1 volume (Right) - - - - - SO2 volume (Left): - - - - - SO2 volume (Left) - - - - - Treble: - Aigus : - - - - Treble - Aigus - - - - Bass: - Graves : - - - - Bass - Graves - - - - Sweep direction - Sens de balayage - - - - - - - - Volume sweep direction - Sens du volume du balayage - - - - Shift register width - - - - - Channel 1 to SO1 (Right) - Canal 1 vers SO2 (droite) - - - - Channel 2 to SO1 (Right) - Canal 2 vers SO2 (droite) - - - - Channel 3 to SO1 (Right) - Canal 3 vers SO2 (droite) - - - - Channel 4 to SO1 (Right) - Canal 4 vers SO2 (droite) - - - - Channel 1 to SO2 (Left) - Canal 1 vers SO2 (gauche) - - - - Channel 2 to SO2 (Left) - Canal 2 vers SO2 (gauche) - - - - Channel 3 to SO2 (Left) - Canal 3 vers SO2 (gauche) - - - - Channel 4 to SO2 (Left) - Canal 4 vers SO2 (gauche) - - - - Wave pattern graph - - - - - MixerChannelView - - - Channel send amount - Quantité de signal envoyé du canal - - - - Move &left - Déplacer à &gauche - - - - Move &right - Déplacer à &droite - - - - Rename &channel - &Renommer le canal - - - - R&emove channel - &Supprimer le canal - - - - Remove &unused channels - Supprimer les canaux &inutilisés - - - - Set channel color - - - - - Remove channel color - - - - - Pick random channel color - - - - - MixerChannelLcdSpinBox - - - Assign to: - Assigner à : - - - - New mixer Channel - Nouveau canal d'effet - - - - Mixer - - - Master - Général - - - - - - Channel %1 - Effet %1 - - - - Volume - Volume - - - - Mute - Mettre en sourdine - - - - Solo - Solo - - - - MixerView - - - Mixer - Mélangeur d'effets - - - - Fader %1 - Chariot d'effet %1 - - - - Mute - Mettre en sourdine - - - - Mute this mixer channel - Mettre ce canal d'effet en sourdine - - - - Solo - Solo - - - - Solo mixer channel - Mettre ce canal d'effet en solo - - - - MixerRoute - - - - Amount to send from channel %1 to channel %2 - Quantité à envoyer du canal %1 au canal %2 - - - - GigInstrument - - - Bank - Banque - - - - Patch - Son - - - - Gain - Gain - - - - GigInstrumentView - - - - Open GIG file - Ouvrir un fichier GIG - - - - Choose patch - - - - - Gain: - Gain : - - - - GIG Files (*.gig) - Fichiers GIG (*.gig) - - - - GuiApplication - - - Working directory - Répertoire de travail - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - Le répertoire de travail %1 n'existe pas. Le créer maintenant ? Vous pouvez modifier le répertoire plus tard avec Éditer -> Configurations. - - - - Preparing UI - Préparation de l'interface utilisateur - - - - Preparing song editor - Préparation de l'éditeur de morceau - - - - Preparing mixer - Préparation du mélangeur - - - - Preparing controller rack - Préparation du rack de contrôleurs - - - - Preparing project notes - Préparation des notes de projet - - - - Preparing beat/bassline editor - Préparation de l'éditeur de rythme et de ligne de basse - - - - Preparing piano roll - Préparation du piano virtuel - - - - Preparing automation editor - Préparation de l'éditeur d'automation - - - - InstrumentFunctionArpeggio - - - Arpeggio - Arpège - - - - Arpeggio type - Type d'arpège - - - - Arpeggio range - Plage d'arpège - - - - Note repeats - - - - - Cycle steps - Pas de cycle - - - - Skip rate - Taux de saut - - - - Miss rate - Taux de manqué - - - - Arpeggio time - Temps d'arpège - - - - Arpeggio gate - Durée d'arpège - - - - Arpeggio direction - Direction de l'arpège - - - - Arpeggio mode - Mode d'arpège - - - - Up - Ascendant - - - - Down - Descendant - - - - Up and down - Ascendant et descendant - - - - Down and up - Descendant et ascendant - - - - Random - Aléatoire - - - - Free - Libre - - - - Sort - Tri - - - - Sync - Sync - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - ARPÈGE - - - - RANGE - PLAGE - - - - Arpeggio range: - Plage d'arpège : - - - - octave(s) - octave(s) - - - - REP - - - - - Note repeats: - - - - - time(s) - - - - - CYCLE - CYCLE - - - - Cycle notes: - Notes de cycle : - - - - note(s) - note(s) - - - - SKIP - SAUT - - - - Skip rate: - Taux de saut : - - - - - - % - % - - - - MISS - MANQUÉ - - - - Miss rate: - Taux de manqué : - - - - TIME - TEMPS - - - - Arpeggio time: - Temps d'arpège : - - - - ms - ms - - - - GATE - DUREE - - - - Arpeggio gate: - Durée d'arpège : - - - - Chord: - Accord : - - - - Direction: - Direction : - - - - Mode: - Mode : - InstrumentFunctionNoteStacking - + octave octave - - + + Major Majeur - + Majb5 Si majeur 5 - + minor mineur - + minb5 Si mineur 5 - + sus2 sus2 - + sus4 sus4 - + aug aug - + augsus4 augsus4 - + tri tri - + 6 6 - + 6sus4 6sus4 - + 6add9 6add9 - + m6 m6 - + m6add9 m6add9 - + 7 7 - + 7sus4 7sus4 - + 7#5 7#5 - + 7b5 7b5 - + 7#9 7#9 - + 7b9 7b9 - + 7#5#9 7#5#9 - + 7#5b9 7#5b9 - + 7b5b9 7b5b9 - + 7add11 7add11 - + 7add13 7add13 - + 7#11 7#11 - + Maj7 Maj7 - + Maj7b5 Maj7b5 - + Maj7#5 Maj7#5 - + Maj7#11 Maj7#11 - + Maj7add13 Maj7add13 - + m7 m7 - + m7b5 m7b5 - + m7b9 m7b9 - + m7add11 m7add11 - + m7add13 m7add13 - + m-Maj7 m-Maj7 - + m-Maj7add11 m-Maj7add11 - + m-Maj7add13 m-Maj7add13 - + 9 9 - + 9sus4 9sus4 - + add9 add9 - + 9#5 9#5 - + 9b5 9b5 - + 9#11 9#11 - + 9b13 9b13 - + Maj9 Maj9 - + Maj9sus4 Maj9sus4 - + Maj9#5 Maj9#5 - + Maj9#11 Maj9#11 - + m9 m9 - + madd9 madd9 - + m9b5 m9b5 - + m9-Maj7 m9-Maj7 - + 11 11 - + 11b9 11b9 - + Maj11 Maj11 - + m11 m11 - + m-Maj11 m-Maj11 - + 13 13 - + 13#9 13#9 - + 13b9 13b9 - + 13b5b9 13b5b9 - + Maj13 Maj13 - + m13 m13 - + m-Maj13 m-Maj13 - + Harmonic minor Mineure harmonique - + Melodic minor Mineure mélodique - + Whole tone Note complète - + Diminished Diminuée - + Major pentatonic Pentatonique majeure - + Minor pentatonic Pentatonique mineure - + Jap in sen Japonaise "in sen" - + Major bebop Bebop majeure - + Dominant bebop Bebop dominante - + Blues Blues - + Arabic Arabe - + Enigmatic Énigmatique - + Neopolitan Napolitaine - + Neopolitan minor Napolitaine mineure - + Hungarian minor Hongroise mineure - + Dorian Dorienne - + Phrygian Phrygien - + Lydian Lydienne - + Mixolydian Mixolydienne - + Aeolian Éolienne - + Locrian Locrienne - + Minor Mineur - + Chromatic Chromatique - + Half-Whole Diminished Demi-globalement diminué - + 5 5 - + Phrygian dominant Phrygien dominant - + Persian Persien - - - Chords - Accords - - - - Chord type - Type d'accord - - - - Chord range - Gamme d'accord - - - - InstrumentFunctionNoteStackingView - - - STACKING - EMPILEMENT - - - - Chord: - Accord : - - - - RANGE - GAMME - - - - Chord range: - Gamme d'accord : - - - - octave(s) - octave(s) - - - - InstrumentMidiIOView - - - ENABLE MIDI INPUT - ACTIVER L'ENTRÉE MIDI - - - - ENABLE MIDI OUTPUT - ACTIVER LA SORTIE MIDI - - - - - CHAN - This string must be be short, its width must be less than * width of LCD spin-box of two digits - - - - - - VELOC - This string must be be short, its width must be less than * width of LCD spin-box of three digits - - - - - PROG - This string must be be short, its width must be less than the * width of LCD spin-box of three digits - - - - - NOTE - This string must be be short, its width must be less than * width of LCD spin-box of three digits - NOTE - - - - MIDI devices to receive MIDI events from - Périphériques MIDI desquels recevoir des événements MIDI - - - - MIDI devices to send MIDI events to - Périphériques MIDI auxquels envoyer des événements MIDI - - - - CUSTOM BASE VELOCITY - VÉLOCITÉ DE BASE PERSONNALISÉE - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. - Spécifie la normalisation de base de la vélocité des instruments MIDI pour un volume de note de 100%. - - - - BASE VELOCITY - VÉLOCITÉ DE BASE - - - - InstrumentTuningView - - - MASTER PITCH - TONALITÉ GÉNÉRALE - - - - Enables the use of master pitch - Activer l'utilisation de la tonalité générale - InstrumentSoundShaping - + VOLUME VOLUME - + Volume Volume - + CUTOFF COUPURE - - + Cutoff frequency Fréquence de coupure - + RESO RÉSON - + Resonance Résonance - - - Envelopes/LFOs - Enveloppes/LFOs - - - - Filter type - Type de filtre - - - - Q/Resonance - Q/Résonance - - - - Low-pass - Passe-bas - - - - Hi-pass - Passe-haut - - - - Band-pass csg - Passe-bande CSG - - - - Band-pass czpg - Passe-bande CZPG - - - - Notch - Coupe-bande - - - - All-pass - Passe-tout - - - - Moog - Moog - - - - 2x Low-pass - 2x Passe-bas - - - - RC Low-pass 12 dB/oct - RC Passe-bas 12 dB - - - - RC Band-pass 12 dB/oct - RC Passe-bande 12 dB - - - - RC High-pass 12 dB/oct - RC Passe-haut 12 dB - - - - RC Low-pass 24 dB/oct - RC Passe-bas 24 dB - - - - RC Band-pass 24 dB/oct - RC Passe-bande 24 dB - - - - RC High-pass 24 dB/oct - RC Passe-haut 24 dB - - - - Vocal Formant - Formant vocal - - - - 2x Moog - 2x Moog - - - - SV Low-pass - SV Passe-bas - - - - SV Band-pass - SV Passe-bande - - - - SV High-pass - SV Passe-haut - - - - SV Notch - SV coupe-bande - - - - Fast Formant - Formant rapide - - - - Tripole - Tripôle - - InstrumentSoundShapingView + JackAppDialog - - TARGET - CIBLE - - - - FILTER - FILTRE - - - - FREQ - FRÉQ - - - - Cutoff frequency: - Fréquence de coupure : - - - - Hz - Hz - - - - Q/RESO - Q/RÉSO - - - - Q/Resonance: - Q/Résonance - - - - Envelopes, LFOs and filters are not supported by the current instrument. - Les enveloppes, les LFO et les filtres ne sont pas supportés par l'instrument actuel. - - - - InstrumentTrack - - - - unnamed_track - piste_sans_nom - - - - Base note - Note de base - - - - First note + + Add JACK Application - - Last note - Dernière note - - - - Volume - Volume - - - - Panning - Panoramisation - - - - Pitch - Tonalité - - - - Pitch range - Plage de hauteur - - - - Mixer channel - Canal d'effet - - - - Master pitch - Tonalité générale - - - - Enable/Disable MIDI CC + + Note: Features not implemented yet are greyed out - - CC Controller %1 + + Application - - - Default preset - Pré-réglage par défaut - - - - InstrumentTrackView - - - Volume - Volume - - - - Volume: - Volume : - - - - VOL - VOL - - - - Panning - Panoramisation - - - - Panning: - Panoramisation : - - - - PAN - PAN - - - - MIDI - MIDI - - - - Input - Entrée - - - - Output - Sortie - - - - Open/Close MIDI CC Rack + + Name: - - Channel %1: %2 - Effet %1 : %2 - - - - InstrumentTrackWindow - - - GENERAL SETTINGS - CONFIGURATION GÉNÉRALE + + Application: + - - Volume - Volume + + From template + - - Volume: - Volume : + + Custom + - - VOL - VOL + + Template: + - - Panning - Panoramisation + + Command: + - - Panning: - Panoramisation : + + Setup + - - PAN - PAN + + Session Manager: + - - Pitch - Tonalité + + None + - - Pitch: - Tonalité : + + Audio inputs: + - - cents - centièmes + + MIDI inputs: + - - PITCH - PITCH + + Audio outputs: + - - Pitch range (semitones) - Plage de hauteur (demi-tons) + + MIDI outputs: + - - RANGE - PLAGE + + Take control of main application window + - - Mixer channel - Canal d'effet + + Workarounds + - - CHANNEL - EFFET + + Wait for external application start (Advanced, for Debug only) + - - Save current instrument track settings in a preset file - Sauvegarder les paramètres de la piste de l'instrument actuel dans un fichier de pré-réglage + + Capture only the first X11 Window + - - SAVE - SAUV + + Use previous client output buffer as input for the next client + - - Envelope, filter & LFO - Enveloppe, filtre, et LFO + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + - - Chord stacking & arpeggio - Empilement d'accords et arpège + + Error here + - - Effects - Effets - - - - MIDI - MIDI - - - - Miscellaneous - Divers - - - - Save preset - Enregistrer le pré-réglage - - - - XML preset file (*.xpf) - Fichier XML de pré-réglage (*.xpf) - - - - Plugin - Greffon - - - - JackApplicationW - - + NSM applications cannot use abstract or absolute paths - Les applications NSM ne peuvent pas utiliser des chemins abstraits ou absolus + - + NSM applications cannot use CLI arguments - Les applications NSM ne peuvent pas utiliser d'arguments CLI + - + You need to save the current Carla project before NSM can be used - Vous devez sauvegarder le projet Carla actuel avant de pouvoir utiliser NSM + JuceAboutW - - About JUCE - À propos de JUCE - - - - <b>About JUCE</b> - <b>À propos de JUCE</b> - - - - This program uses JUCE version 3.x.x. - Ce programme utilise la version 3.x.x de JUCE - - - - JUCE (Jules' Utility Class Extensions) is an all-encompassing C++ class library for developing cross-platform software. - -It contains pretty much everything you're likely to need to create most applications, and is particularly well-suited for building highly-customised GUIs, and for handling graphics and sound. - -JUCE is licensed under the GNU Public Licence version 2.0. -One module (juce_core) is permissively licensed under the ISC. - -Copyright (C) 2017 ROLI Ltd. - JUCE (Jules' Utility Class Extensions) est une bibliothèque de classe C++ complète pour le développement de logiciels multiplateformes. - -Cette librairie contient à peu près tout ce dont vous aurez probablement besoin pour créer la plupart des applications, et elle est particulièrement adaptée à la création d'interfaces graphiques hautement personnalisées et à la gestion des graphiques et du son. - -JUCE est sous licence GNU Public Licence version 2.0. -Un module (juce_core) est sous licence ISC. - -Copyright (C) 2017 ROLI Ltd. - - - + This program uses JUCE version %1. Ce programme utilise la version %1 de JUCE. - - Knob - - - Set linear - Mode linéaire - - - - Set logarithmic - Mode logarithmique - - - - - Set value - Mode valeur - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - Veuillez entrer une valeur entre -96,0 dBV et 6,0 dBFS: - - - - Please enter a new value between %1 and %2: - Veuillez entrer une valeur entre %1 et %2 : - - - - LadspaControl - - - Link channels - Relier les canaux - - - - LadspaControlDialog - - - Link Channels - Lier les canaux - - - - Channel - Canal - - - - LadspaControlView - - - Link channels - Lier les canaux - - - - Value: - Valeur : - - - - LadspaEffect - - - Unknown LADSPA plugin %1 requested. - Le greffon LADSPA %1 demandé est inconnu. - - - - LcdFloatSpinBox - - - Set value - Mode valeur - - - - Please enter a new value between %1 and %2: - Veuillez entrer une valeur entre %1 et %2 : - - - - LcdSpinBox - - - Set value - Mode valeur - - - - Please enter a new value between %1 and %2: - Veuillez entrer une valeur entre %1 et %2 : - - - - LeftRightNav - - - - - Previous - Précédent - - - - - - Next - Suivant - - - - Previous (%1) - Précédent (%1) - - - - Next (%1) - Suivant (%1) - - - - LfoController - - - LFO Controller - Contrôleur du LFO - - - - Base value - Valeur de base - - - - Oscillator speed - Vitesse de l'oscillateur - - - - Oscillator amount - Niveau de l'oscillateur - - - - Oscillator phase - Phase de l'oscillateur - - - - Oscillator waveform - Forme d'onde de l'oscillateur - - - - Frequency Multiplier - Multiplicateur de fréquence - - - - LfoControllerDialog - - - LFO - LFO - - - - BASE - BASE - - - - Base: - Base : - - - - FREQ - FRÉQ - - - - LFO frequency: - Fréquence du LFO : - - - - AMNT - AMNT - - - - Modulation amount: - Niveau de modulation : - - - - PHS - PHS - - - - Phase offset: - Décalage de phase : - - - - degrees - degrés - - - - Sine wave - Onde sinusoïdale - - - - Triangle wave - Onde triangulaire - - - - Saw wave - Onde en dents-de-scie - - - - Square wave - Onde carrée - - - - Moog saw wave - Onde en dents-de-scie Moog - - - - Exponential wave - Onde exponentielle - - - - White noise - Bruit blanc - - - - User-defined shape. -Double click to pick a file. - Forme définie par l'utilisateur. -Double-cliquez pour choisir un fichier. - - - - Mutliply modulation frequency by 1 - Multiplier la fréquence de modulation par 1 - - - - Mutliply modulation frequency by 100 - Multiplier la fréquence de modulation par 100 - - - - Divide modulation frequency by 100 - Diviser la fréquence de modulation par 100 - - - - Engine - - - Generating wavetables - Génération des tables d'ondes - - - - Initializing data structures - Initialisation des structures de données - - - - Opening audio and midi devices - Ouverture des périphériques audio et MIDI - - - - Launching mixer threads - Lancement du mélangeur de threads - - - - MainWindow - - - Configuration file - Fichier de configuration - - - - Error while parsing configuration file at line %1:%2: %3 - Erreur pendant l'analyse du fichier de configuration à la ligne %1:%2:%3 - - - - Could not open file - Le fichier n'a pas pu être ouvert - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Impossible d'ouvrir le fichier %1 en écriture. -Veuillez vous assurez que vous avez les droits d'écriture sur le fichier et le dossier contenant le fichier, et essayez à nouveau ! - - - - Project recovery - Récupération de projet - - - - There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - Il y a un fichier de récupération présent. Il semble que la dernière session du logiciel ne s'est pas fermée proprement ou bien qu'une autre instance de LMMS est déjà ouverte. Voulez-vous récupérer le projet de cette dernière session ? - - - - - Recover - Récupérer - - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - Récupérer le fichier. Veuillez ne pas lancer de multiple instances de LMMS lorsque vous faites cela. - - - - - Discard - Abandonner - - - - Launch a default session and delete the restored files. This is not reversible. - Lancer une session par défaut et effacer les fichiers de récupération. Ceci n'est pas réversible. - - - - Version %1 - Version %1 - - - - Preparing plugin browser - Préparation du navigateur de greffons - - - - Preparing file browsers - Préparation du navigateur de fichiers - - - - My Projects - Mes projets - - - - My Samples - Mes échantillons - - - - My Presets - Mes pré-réglages - - - - My Home - Mon répertoire - - - - Root directory - Répertoire racine - - - - Volumes - Volumes - - - - My Computer - Mon ordinateur - - - - &File - &Fichier - - - - &New - &Nouveau - - - - &Open... - &Ouvrir... - - - - Loading background picture - Chargement de l'image de fond - - - - &Save - &Enregistrer - - - - Save &As... - Enregistrer &sous... - - - - Save as New &Version - Enregistrer en tant que nouvelle &version - - - - Save as default template - Sauvegarder en tant que modèle par défaut - - - - Import... - Importer... - - - - E&xport... - E&xporter... - - - - E&xport Tracks... - E&xporter les pistes... - - - - Export &MIDI... - Exporter en &MIDI... - - - - &Quit - &Quitter - - - - &Edit - &Éditer - - - - Undo - Défaire - - - - Redo - Refaire - - - - Settings - Configuration - - - - &View - &Afficher - - - - &Tools - Ou&tils - - - - &Help - &Aide - - - - Online Help - Aide en ligne - - - - Help - Aide - - - - About - À propos - - - - Create new project - Créer un nouveau projet - - - - Create new project from template - Créer un nouveau projet à partir d'un modèle - - - - Open existing project - Ouvrir un projet existant - - - - Recently opened projects - Projets ouverts récemment - - - - Save current project - Enregistrer le projet - - - - Export current project - Exporter le projet - - - - Metronome - Métronome - - - - - Song Editor - Éditeur de morceau - - - - - Beat+Bassline Editor - Éditeur de rythme et de ligne de basse - - - - - Piano Roll - Piano virtuel - - - - - Automation Editor - Éditeur d'automation - - - - - Mixer - Mélangeur d'effets - - - - Show/hide controller rack - Afficher/cacher le rack de contrôleurs - - - - Show/hide project notes - Afficher/cacher les notes de projet - - - - Untitled - Sans titre - - - - Recover session. Please save your work! - Récupération de session. Veuillez sauvegarder votre travail ! - - - - LMMS %1 - LMMS %1 - - - - Recovered project not saved - Le projet récupéré n'a pas été sauvegardé - - - - This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? - Ce projet a été récupéré de la session précédente. Il n'est pas encore sauvegardé et sera perdu si vous ne le sauvegardez pas. Voulez-vous le sauvegarder maintenant ? - - - - Project not saved - Projet non sauvegardé - - - - The current project was modified since last saving. Do you want to save it now? - Ce projet a été modifié depuis son dernier enregistrement. Souhaitez-vous l'enregistrer maintenant ? - - - - Open Project - Ouvrir le projet - - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - - Save Project - Enregistrer le projet - - - - LMMS Project - Projet LMMS - - - - LMMS Project Template - Modèle de projet LMMS - - - - Save project template - Sauvegarder le modèle de projet - - - - Overwrite default template? - Écrire par dessus le modèle par défaut ? - - - - This will overwrite your current default template. - Ceci ré-écrira votre modèle par défaut actuel. - - - - Help not available - L'aide n'est pas disponible - - - - Currently there's no help available in LMMS. -Please visit http://lmms.sf.net/wiki for documentation on LMMS. - Il n'y a pour l'instant pas de d'aide dans LMMS. -Veuillez visiter http://lmms.sf.net/wiki pour la documentation de LMMS. - - - - Controller Rack - Rack de contrôleurs - - - - Project Notes - Montrer/cacher les notes du projet - - - - Fullscreen - - - - - Volume as dBFS - Volume en dBFS - - - - Smooth scroll - Déplacement fluide - - - - Enable note labels in piano roll - Activer les étiquettes de note dans le piano virtuel - - - - MIDI File (*.mid) - Fichier MIDI (*.mid) - - - - - untitled - sans titre - - - - - Select file for project-export... - Sélectionnez un fichier vers lequel exporter le projet... - - - - Select directory for writing exported tracks... - Sélectionnez le répertoire pour écrire les pistes exportées... - - - - Save project - Sauvegarder le projet - - - - Project saved - Projet sauvegardé - - - - The project %1 is now saved. - Le projet %1 est maintenant sauvegardé. - - - - Project NOT saved. - Projet NON sauvegardé. - - - - The project %1 was not saved! - Le projet %1 n'a pas été sauvegardé! - - - - Import file - Importer un fichier - - - - MIDI sequences - Séquences MIDI - - - - Hydrogen projects - Projets Hydrogen - - - - All file types - Tous les types de fichier - - - - MeterDialog - - - - Meter Numerator - Numérateur de la mesure - - - - Meter numerator - Numérateur de la mesure - - - - - Meter Denominator - Dénominateur de la mesure - - - - Meter denominator - Dénominateur de la mesure - - - - TIME SIG - SIGN RYTHM - - - - MeterModel - - - Numerator - Numérateur - - - - Denominator - Dénominateur - - - - MidiCCRackView - - - - MIDI CC Rack - %1 - - - - - MIDI CC Knobs: - - - - - CC %1 - - - - - MidiController - - - MIDI Controller - Contrôleur MIDI - - - - unnamed_midi_controller - contrôleur_midi_sans_nom - - - - MidiImport - - - - Setup incomplete - Paramétrage incomplet - - - - You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. - - - - - You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - Vous n'avez pas compilé LMMS avec la prise en charge du lecteur SoundFont2, qui est utilisé pour ajouter un son par défaut aux fichiers MIDI importés. Par conséquent aucun son ne sera joué après l'importation de ce fichier MIDI. - - - - MIDI Time Signature Numerator - - - - - MIDI Time Signature Denominator - - - - - Numerator - Numérateur - - - - Denominator - Dénominateur - - - - Track - Piste - - - - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - Le serveur JACK est arrêté - - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - Le serveur JACK semble avoir été coupé - - MidiPatternW MIDI Pattern - + Modèle MIDI Time Signature: - + Signature rythmique: 1/4 - + 1/4 2/4 - + 2/4 3/4 - + 3/4 4/4 - + 4/4 5/4 - + 5/4 6/4 - + 6/4 Measures: - + Mesures : 1 - + 1 2 - + 2 3 - + 3 4 - + 4 @@ -8174,7 +3165,7 @@ Veuillez visiter http://lmms.sf.net/wiki pour la documentation de LMMS. 8 - + 8 @@ -8184,7 +3175,7 @@ Veuillez visiter http://lmms.sf.net/wiki pour la documentation de LMMS. 10 - + 10 @@ -8194,7 +3185,7 @@ Veuillez visiter http://lmms.sf.net/wiki pour la documentation de LMMS. 12 - + 12 @@ -8204,75 +3195,75 @@ Veuillez visiter http://lmms.sf.net/wiki pour la documentation de LMMS. 14 - + 14 15 - + 15 16 - + 16 Default Length: - + Longueur par défaut: 1/16 - + 1/16 1/15 - + 1/15 1/12 - + 1/12 1/9 - + 1/9 1/8 - + 1/8 1/6 - + 1/6 1/3 - + 1/3 1/2 - + 1/2 Quantize: - + Quantifier @@ -8290,2730 +3281,369 @@ Veuillez visiter http://lmms.sf.net/wiki pour la documentation de LMMS.&Quitter - - &Insert Mode + + Esc + &Insert Mode + + + + F - + &Velocity Mode - + D D - + Select All - + Tout sélectionner - + A A - - MidiPort - - - Input channel - Canal d'entrée - - - - Output channel - Canal de sortie - - - - Input controller - Contrôleur d'entrée - - - - Output controller - Contrôleur de sortie - - - - Fixed input velocity - Vélocité d'entrée fixe - - - - Fixed output velocity - Vélocité de sortie fixe - - - - Fixed output note - Note de sortie fixe - - - - Output MIDI program - Programme MIDI de sortie - - - - Base velocity - Vélocité de base - - - - Receive MIDI-events - Recevoir des événements MIDI - - - - Send MIDI-events - Envoyer des événements MIDI - - - - MidiSetupWidget - - - Device - Périphérique - - - - MonstroInstrument - - - Osc 1 volume - - - - - Osc 1 panning - Panoramique du 1er oscillateur - - - - Osc 1 coarse detune - - - - - Osc 1 fine detune left - - - - - Osc 1 fine detune right - - - - - Osc 1 stereo phase offset - - - - - Osc 1 pulse width - - - - - Osc 1 sync send on rise - - - - - Osc 1 sync send on fall - - - - - Osc 2 volume - - - - - Osc 2 panning - Panoramique du 2e oscillateur - - - - Osc 2 coarse detune - - - - - Osc 2 fine detune left - - - - - Osc 2 fine detune right - - - - - Osc 2 stereo phase offset - - - - - Osc 2 waveform - - - - - Osc 2 sync hard - - - - - Osc 2 sync reverse - - - - - Osc 3 volume - - - - - Osc 3 panning - Panoramique du 3e oscillateur - - - - Osc 3 coarse detune - - - - - Osc 3 Stereo phase offset - Décalage de phase stéréo de l'oscillateur 3 - - - - Osc 3 sub-oscillator mix - - - - - Osc 3 waveform 1 - - - - - Osc 3 waveform 2 - - - - - Osc 3 sync hard - - - - - Osc 3 Sync reverse - - - - - LFO 1 waveform - - - - - LFO 1 attack - - - - - LFO 1 rate - - - - - LFO 1 phase - - - - - LFO 2 waveform - - - - - LFO 2 attack - - - - - LFO 2 rate - - - - - LFO 2 phase - - - - - Env 1 pre-delay - - - - - Env 1 attack - - - - - Env 1 hold - - - - - Env 1 decay - - - - - Env 1 sustain - - - - - Env 1 release - - - - - Env 1 slope - - - - - Env 2 pre-delay - - - - - Env 2 attack - - - - - Env 2 hold - - - - - Env 2 decay - - - - - Env 2 sustain - - - - - Env 2 release - Relâchement de l'enveloppe 2 - - - - Env 2 slope - - - - - Osc 2+3 modulation - - - - - Selected view - Affichage sélectionné - - - - Osc 1 - Vol env 1 - - - - - Osc 1 - Vol env 2 - - - - - Osc 1 - Vol LFO 1 - - - - - Osc 1 - Vol LFO 2 - - - - - Osc 2 - Vol env 1 - - - - - Osc 2 - Vol env 2 - - - - - Osc 2 - Vol LFO 1 - - - - - Osc 2 - Vol LFO 2 - - - - - Osc 3 - Vol env 1 - - - - - Osc 3 - Vol env 2 - - - - - Osc 3 - Vol LFO 1 - - - - - Osc 3 - Vol LFO 2 - - - - - Osc 1 - Phs env 1 - - - - - Osc 1 - Phs env 2 - - - - - Osc 1 - Phs LFO 1 - - - - - Osc 1 - Phs LFO 2 - - - - - Osc 2 - Phs env 1 - - - - - Osc 2 - Phs env 2 - - - - - Osc 2 - Phs LFO 1 - - - - - Osc 2 - Phs LFO 2 - - - - - Osc 3 - Phs env 1 - - - - - Osc 3 - Phs env 2 - - - - - Osc 3 - Phs LFO 1 - - - - - Osc 3 - Phs LFO 2 - - - - - Osc 1 - Pit env 1 - - - - - Osc 1 - Pit env 2 - - - - - Osc 1 - Pit LFO 1 - - - - - Osc 1 - Pit LFO 2 - - - - - Osc 2 - Pit env 1 - - - - - Osc 2 - Pit env 2 - - - - - Osc 2 - Pit LFO 1 - - - - - Osc 2 - Pit LFO 2 - - - - - Osc 3 - Pit env 1 - - - - - Osc 3 - Pit env 2 - - - - - Osc 3 - Pit LFO 1 - - - - - Osc 3 - Pit LFO 2 - - - - - Osc 1 - PW env 1 - - - - - Osc 1 - PW env 2 - - - - - Osc 1 - PW LFO 1 - - - - - Osc 1 - PW LFO 2 - - - - - Osc 3 - Sub env 1 - - - - - Osc 3 - Sub env 2 - - - - - Osc 3 - Sub LFO 1 - - - - - Osc 3 - Sub LFO 2 - - - - - - Sine wave - Onde sinusoïdale - - - - Bandlimited Triangle wave - Onde triangulaire à bande limitée - - - - Bandlimited Saw wave - Onde en dents-de-scie à bande limitée - - - - Bandlimited Ramp wave - Onde en rampe à bande limitée - - - - Bandlimited Square wave - Onde carrée à bande limitée - - - - Bandlimited Moog saw wave - Onde en dents-de-scie Moog à bande limitée - - - - - Soft square wave - Onde carrée douce - - - - Absolute sine wave - Onde sinusoïdale absolue - - - - - Exponential wave - Onde exponentielle - - - - White noise - Bruit blanc - - - - Digital Triangle wave - Onde triangulaire digitale - - - - Digital Saw wave - Onde en dents-de-scie digitale - - - - Digital Ramp wave - Onde en rampe digitale - - - - Digital Square wave - Onde carrée digitale - - - - Digital Moog saw wave - Onde en dents-de-scie Moog digitale - - - - Triangle wave - Onde triangulaire - - - - Saw wave - Onde en dents-de-scie - - - - Ramp wave - Onde en rampe - - - - Square wave - Onde carrée - - - - Moog saw wave - Onde en dents-de-scie Moog - - - - Abs. sine wave - Onde sinusoïdale absolue - - - - Random - Aléatoire - - - - Random smooth - Aléatoire adoucie - - - - MonstroView - - - Operators view - Vue des opérateurs - - - - Matrix view - Vue de la matrice - - - - - - Volume - Volume - - - - - - Panning - Panoramisation - - - - - - Coarse detune - Désaccordage grossier - - - - - - semitones - demi-tons - - - - - Fine tune left - - - - - - - - cents - centièmes - - - - - Fine tune right - - - - - - - Stereo phase offset - Décalage stéréo de phase - - - - - - - - deg - degrés - - - - Pulse width - Largeur de pulsation - - - - Send sync on pulse rise - Envoi de la synchro à la montée - - - - Send sync on pulse fall - Envoi de la synchro à la descente - - - - Hard sync oscillator 2 - Synchro fixe oscillateur 2 - - - - Reverse sync oscillator 2 - Synchro inverse oscillateur 2 - - - - Sub-osc mix - Mélange du sous-oscillateur - - - - Hard sync oscillator 3 - Synchro fixe oscillateur 3 - - - - Reverse sync oscillator 3 - Synchro inverse oscillateur 3 - - - - - - - Attack - Attaque - - - - - Rate - Vitesse - - - - - Phase - Phase - - - - - Pre-delay - Pré-délai - - - - - Hold - Maintien - - - - - Decay - Descente - - - - - Sustain - Soutien - - - - - Release - Relâchement - - - - - Slope - Pente - - - - Mix osc 2 with osc 3 - - - - - Modulate amplitude of osc 3 by osc 2 - - - - - Modulate frequency of osc 3 by osc 2 - - - - - Modulate phase of osc 3 by osc 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Modulation amount - Niveau de modulation - - - - MultitapEchoControlDialog - - - Length - Longueur - - - - Step length: - Longueur de pas : - - - - Dry - Sec - - - - Dry gain: - - - - - Stages - Niveaux - - - - Low-pass stages: - - - - - Swap inputs - Permutation des entrées - - - - Swap left and right input channels for reflections - - - - - NesInstrument - - - Channel 1 coarse detune - - - - - Channel 1 volume - Volume du canal 1 - - - - Channel 1 envelope length - - - - - Channel 1 duty cycle - - - - - Channel 1 sweep amount - - - - - Channel 1 sweep rate - - - - - Channel 2 Coarse detune - Dé-réglage grossier du canal 2 - - - - Channel 2 Volume - Volume du canal 2 - - - - Channel 2 envelope length - - - - - Channel 2 duty cycle - - - - - Channel 2 sweep amount - Quantité de balayage du canal 2 - - - - Channel 2 sweep rate - - - - - Channel 3 coarse detune - - - - - Channel 3 volume - Volume du canal 3 - - - - Channel 4 volume - Volume du canal 4 - - - - Channel 4 envelope length - - - - - Channel 4 noise frequency - - - - - Channel 4 noise frequency sweep - - - - - Master volume - Volume général - - - - Vibrato - Vibrato - - - - NesInstrumentView - - - - - - Volume - Volume - - - - - - Coarse detune - Désaccordage grossier - - - - - - Envelope length - Longueur de l'enveloppe - - - - Enable channel 1 - Activer le canal 1 - - - - Enable envelope 1 - Activer l'enveloppe 1 - - - - Enable envelope 1 loop - Activer la boucle d'enveloppe 1 - - - - Enable sweep 1 - Activer le balayage 1 - - - - - Sweep amount - Temps de balayage - - - - - Sweep rate - Vitesse de balayage - - - - - 12.5% Duty cycle - 12.5% du cycle - - - - - 25% Duty cycle - 25% du cycle - - - - - 50% Duty cycle - 50% du cycle - - - - - 75% Duty cycle - 75% du cycle - - - - Enable channel 2 - Activer le canal 2 - - - - Enable envelope 2 - Activer l'enveloppe 2 - - - - Enable envelope 2 loop - Activer la boucle d'enveloppe 2 - - - - Enable sweep 2 - Activer le balayage 2 - - - - Enable channel 3 - Activer le canal 3 - - - - Noise Frequency - Fréquence du bruit - - - - Frequency sweep - Fréquence de balayage - - - - Enable channel 4 - Activer le canal 4 - - - - Enable envelope 4 - Activer l'enveloppe 4 - - - - Enable envelope 4 loop - Activer la boucle d'enveloppe 4 - - - - Quantize noise frequency when using note frequency - Quantifier la fréquence du bruit lorsque la fréquence de la note est utilisée - - - - Use note frequency for noise - Utiliser la fréquence de note pour le bruit - - - - Noise mode - Mode de bruit - - - - Master volume - Volume général - - - - Vibrato - Vibrato - - - - OpulenzInstrument - - - Patch - Patch - - - - Op 1 attack - - - - - Op 1 decay - - - - - Op 1 sustain - - - - - Op 1 release - - - - - Op 1 level - - - - - Op 1 level scaling - - - - - Op 1 frequency multiplier - - - - - Op 1 feedback - - - - - Op 1 key scaling rate - - - - - Op 1 percussive envelope - Enveloppe percussive Op 1 - - - - Op 1 tremolo - - - - - Op 1 vibrato - - - - - Op 1 waveform - - - - - Op 2 attack - - - - - Op 2 decay - - - - - Op 2 sustain - - - - - Op 2 release - - - - - Op 2 level - - - - - Op 2 level scaling - - - - - Op 2 frequency multiplier - - - - - Op 2 key scaling rate - - - - - Op 2 percussive envelope - - - - - Op 2 tremolo - - - - - Op 2 vibrato - - - - - Op 2 waveform - - - - - FM - FM - - - - Vibrato depth - - - - - Tremolo depth - Profondeur du trémolo - - - - OpulenzInstrumentView - - - - Attack - Attaque - - - - - Decay - Affaiblissement (decay) - - - - - Release - Relâchement - - - - - Frequency multiplier - Multiplicateur de fréquence - - - - OscillatorObject - - - Osc %1 waveform - Forme d'onde de l'oscillateur %1 - - - - Osc %1 harmonic - Harmonique de l'oscillateur %1 - - - - - Osc %1 volume - Volume de l'oscillateur %1 - - - - - Osc %1 panning - Panoramisation de l'oscillateur %1 - - - - - Osc %1 fine detuning left - Désaccordage fin (gauche) de l'oscillateur %1 - - - - Osc %1 coarse detuning - Désaccordage grossier de l'oscillateur %1 - - - - Osc %1 fine detuning right - Désaccordage fin (droite) de l'oscillateur %1 - - - - Osc %1 phase-offset - Décalage de phase de l'oscillateur %1 - - - - Osc %1 stereo phase-detuning - Désaccordage stéréo de la phase de l'oscillateur %1 - - - - Osc %1 wave shape - Forme d'onde de l'oscillateur %1 - - - - Modulation type %1 - Modulation de type %1 - - - - Oscilloscope - - - Oscilloscope - - - - - Click to enable - Cliquez pour activer - - PatchesDialog + Qsynth: Channel Preset Qsynth : pré-réglage de canal + Bank selector Sélecteur de banque + Bank Banque + Program selector Sélecteur de programme + Patch Instrument + Name Nom + OK OK + Cancel Annuler - - PatmanView - - - Open patch - - - - - Loop - Boucler - - - - Loop mode - Mode de jeu en boucle - - - - Tune - Accorder - - - - Tune mode - Mode accordage - - - - No file selected - Aucun fichier sélectionné - - - - Open patch file - Ouvrir un fichier de son - - - - Patch-Files (*.pat) - Fichiers de son (*.pat) - - - - MidiClipView - - - Open in piano-roll - Ouvrir dans le piano virtuel - - - - Set as ghost in piano-roll - - - - - Clear all notes - Effacer toutes les notes - - - - Reset name - Réinitialiser le nom - - - - Change name - Modifier le nom - - - - Add steps - Ajouter des pas - - - - Remove steps - Supprimer des pas - - - - Clone Steps - Cloner les pas - - - - PeakController - - - Peak Controller - Contrôleur de crêtes - - - - Peak Controller Bug - Bug du contrôleur de crêtes - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - A cause d'un bug dans les anciennes versions de LMMS, les contrôleurs de crêtes peuvent ne pas s'être connectés correctement. Verifiez que les contrôleurs de crêtes sont connectés correctement et re-sauvegardez ce fichier. Désolé pour la gène occasionnée. - - - - PeakControllerDialog - - - PEAK - CRÊTE - - - - LFO Controller - Contrôleur du LFO - - - - PeakControllerEffectControlDialog - - - BASE - BASE - - - - Base: - Base : - - - - AMNT - AMNT - - - - Modulation amount: - Niveau de modulation : - - - - MULT - MULT - - - - Amount multiplicator: - - - - - ATCK - ATCK - - - - Attack: - Attaque : - - - - DCAY - DCAY - - - - Release: - Relâchement : - - - - TRSH - TRSH - - - - Treshold: - Seuil : - - - - Mute output - Mettre la sortie en sourdine - - - - Absolute value - - - - - PeakControllerEffectControls - - - Base value - Valeur de base - - - - Modulation amount - Niveau de modulation - - - - Attack - Attaque - - - - Release - Relâchement - - - - Treshold - Seuil - - - - Mute output - Mettre la sortie en sourdine - - - - Absolute value - - - - - Amount multiplicator - - - - - PianoRoll - - - Note Velocity - Vélocité de la note - - - - Note Panning - Panoramisation de la note - - - - Mark/unmark current semitone - Marquer/démarquer le demi-ton actuel - - - - Mark/unmark all corresponding octave semitones - Marquer/démarquer tous les demi-tons d'octave correspondant - - - - Mark current scale - Marquer la gamme actuelle - - - - Mark current chord - Marquer l'accord actuel - - - - Unmark all - Démarquer tout - - - - Select all notes on this key - Sélectionner toutes les notes de cet clef - - - - Note lock - Verrouiller la note - - - - Last note - Dernière note - - - - No key - - - - - No scale - Pas de gamme - - - - No chord - Pas d'accord - - - - Nudge - - - - - Snap - - - - - Velocity: %1% - Vélocité : %1% - - - - Panning: %1% left - Panoramisation : %1% gauche - - - - Panning: %1% right - Panoramisation : %1% droite - - - - Panning: center - Panoramisation : centre - - - - Glue notes failed - - - - - Please select notes to glue first. - - - - - Please open a clip by double-clicking on it! - Veuillez ouvrir un motif en double-cliquant dessus ! - - - - - Please enter a new value between %1 and %2: - Veuillez entrer une valeur entre %1 et %2 : - - - - PianoRollWindow - - - Play/pause current clip (Space) - Jouer/mettre en pause le motif (barre d'espace) - - - - Record notes from MIDI-device/channel-piano - Enregistrez des notes à partir d'un périphérique MIDI ou d'un canal du piano - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - Enregistrez des notes à partir d'un périphérique MIDI ou d'un canal du piano pendant l'écoute d'un morceau ou bien d'une piste de rythme ou de ligne de basse - - - - Record notes from MIDI-device/channel-piano, one step at the time - - - - - Stop playing of current clip (Space) - Arrêter de jouer le motif (barre d'espace) - - - - Edit actions - Actions d'édition - - - - Draw mode (Shift+D) - Mode dessin (Shift+D) - - - - Erase mode (Shift+E) - Mode effacement (Shift+E) - - - - Select mode (Shift+S) - Mode sélection (Shift+S) - - - - Pitch Bend mode (Shift+T) - Mode Pitch Bend (Maj + T) - - - - Quantize - Quantifier - - - - Quantize positions - - - - - Quantize lengths - - - - - File actions - - - - - Import clip - - - - - - Export clip - - - - - Copy paste controls - Contrôles de copier/coller - - - - Cut (%1+X) - - - - - Copy (%1+C) - - - - - Paste (%1+V) - - - - - Timeline controls - Contrôles de la ligne de temps - - - - Glue - - - - - Knife - - - - - Fill - - - - - Cut overlaps - - - - - Min length as last - - - - - Max length as last - - - - - Zoom and note controls - Contrôles de zoom et de notes - - - - Horizontal zooming - Zoom horizontal - - - - Vertical zooming - Zoom vertical - - - - Quantization - Quantification - - - - Note length - - - - - Key - - - - - Scale - - - - - Chord - - - - - Snap mode - - - - - Clear ghost notes - - - - - - Piano-Roll - %1 - Piano virtuel - %1 - - - - - Piano-Roll - no clip - Piano virtuel - pas de motif - - - - - XML clip file (*.xpt *.xptz) - - - - - Export clip success - - - - - Clip saved to %1 - - - - - Import clip. - - - - - You are about to import a clip, this will overwrite your current clip. Do you want to continue? - - - - - Open clip - - - - - Import clip success - - - - - Imported clip %1! - - - - - PianoView - - - Base note - Note de base - - - - First note - - - - - Last note - Dernière note - - - - Plugin - - - Plugin not found - Le greffon n'a pas été trouvé - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - Le greffon "%1" n'a pas été trouvé ou n'a pas pu être chargé ! -Raison : "%2" - - - - Error while loading plugin - Une erreur est survenue pendant le chargement du greffon - - - - Failed to load plugin "%1"! - Le chargement du greffon "%1" a échoué ! - - PluginBrowser - - Instrument Plugins - Greffons d'instrument - - - - Instrument browser - Navigateur d'instruments - - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - Glissez un instrument dans l'éditeur de morceau, dans l'éditeur de rythme et de ligne de basse, ou dans une piste d'instrument existante. - - - + no description pas de description - + A native amplifier plugin Un greffon d'amplification natif - + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track Échantillonneur simple avec divers paramètres pour utiliser des échantillons (par exemple : percussions) dans une piste d'instrument - + Boost your bass the fast and simple way Renforcer vos basses de la manière la plus simple et la plus rapide - + Customizable wavetable synthesizer Synthétiseur de table d'ondes personnalisable - + An oversampling bitcrusher Un bitcrusher sur-échantillonneur - + Carla Patchbay Instrument Baie d'instruments Carla - + Carla Rack Instrument Rack d'instruments Carla - + A dynamic range compressor. - + Un compresseur de plage dynamique. - + A 4-band Crossover Equalizer Un égaliseur crossover à 4 bandes - + A native delay plugin Greffon délai natif - + A Dual filter plugin Un greffon de filtre double - + plugin for processing dynamics in a flexible way Greffon pour transformer la dynamique sonore de façon flexible - + A native eq plugin Un greffon égaliseur natif - + A native flanger plugin Un greffon flanger natif - + Emulation of GameBoy (TM) APU Émulateur de l'APU de la GameBoy (TM) - + Player for GIG files Lecteur de fichiers GIG - + Filter for importing Hydrogen files into LMMS Filtre pour importer des fichiers Hydrogen dans LMMS - + Versatile drum synthesizer Synthétiseur de batterie polyvalent - + List installed LADSPA plugins Liste des greffons LADSPA installés - + plugin for using arbitrary LADSPA-effects inside LMMS. Greffon pour l'utilisation de tout effet LADSPA dans LMMS. - + Incomplete monophonic imitation TB-303 - Imitation incomplète de TB-303 monophonique + Une imitation monophonique incomplète de la TB-303 - + plugin for using arbitrary LV2-effects inside LMMS. - + Greffon pour l'utilisation de tout effet LV2 dans LMMS. - + plugin for using arbitrary LV2 instruments inside LMMS. - + Greffon pour l'utilisation de tout instrument LV2 dans LMMS. - + Filter for exporting MIDI-files from LMMS Filtre pour l'exportation de fichiers MIDI depuis LMMS - + Filter for importing MIDI-files into LMMS Filtre pour importer des fichiers MIDI dans LMMS - + Monstrous 3-oscillator synth with modulation matrix Synthétiseur à 3 oscillateurs monstrueux avec matrice de modulation - + A multitap echo delay plugin Un greffon d'écho et délai multitap - + A NES-like synthesizer Un synthétiseur genre 'NES' - + 2-operator FM Synth Synthé FM à 2 opérateurs - + Additive Synthesizer for organ-like sounds Synthétiseur additif pour sons d'orgue - + GUS-compatible patch instrument Sons d'instruments compatibles avec la carte Gravis UltraSound (GUS) - + Plugin for controlling knobs with sound peaks Greffon pour des boutons de contrôles avec des crêtes de son - + Reverb algorithm by Sean Costello Algorithme de réverbération par Sean Costello - + Player for SoundFont files Lecteur de fichiers SoundFont - + LMMS port of sfxr Port LMMS de sfxr - + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Émulateur des SID MOS6581 et MOS8580. Cette puce était utilisée dans l'ordinateur Commodore 64. - + A graphical spectrum analyzer. - + Un analyseur de spectre graphique - + Plugin for enhancing stereo separation of a stereo input file Greffon pour l'amélioration de la séparation stéréo d'un fichier stéréo en entrée - + Plugin for freely manipulating stereo output Greffon pour la manipulation de la sortie stéréo - + Tuneful things to bang on Instruments à percussion mélodiques - + Three powerful oscillators you can modulate in several ways Trois oscillateurs puissants que vous pouvez moduler de différentes manières - + A stereo field visualizer. - + Un visualiseur de champ stéréo. - + VST-host for using VST(i)-plugins within LMMS Hôte VST pour l'utilisation de greffons VST(i) dans LMMS - + Vibrating string modeler Modeleur de corde vibrante - + plugin for using arbitrary VST effects inside LMMS. Greffon pour l'utilisation de tout effet VST dans LMMS. - + 4-oscillator modulatable wavetable synth Synthétiseur de table d'ondes modulables à 4 oscillateurs - + plugin for waveshaping Greffon pour du modelage d'onde - + Mathematical expression parser Analyseur d'expression mathématique - + Embedded ZynAddSubFX ZynAddSubFX intégré - - - PluginDatabaseW - - Carla - Add New + + An all-pass filter allowing for extremely high orders. - - Format + + Granular pitch shifter - - Internal + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. - - LADSPA - LADSPA - - - - DSSI - DSSI - - - - LV2 - LV2 - - - - VST2 - VST2 - - - - VST3 - VST3 - - - - AU + + Basic Slicer - - Sound Kits - - - - - Type - Type - - - - Effects - Effets - - - - Instruments - Instruments - - - - MIDI Plugins - - - - - Other/Misc - - - - - Architecture - - - - - Native - - - - - Bridged - - - - - Bridged (Wine) - - - - - Requirements - - - - - With Custom GUI - - - - - With CV Ports - - - - - Real-time safe only - - - - - Stereo only - - - - - With Inline Display - - - - - Favorites only - - - - - (Number of Plugins go here) - - - - - &Add Plugin - - - - - Cancel - Annuler - - - - Refresh - - - - - Reset filters - - - - - - - - - - - - - - - - - - - - TextLabel - TextLabel - - - - Format: - - - - - Architecture: - - - - - Type: - Type : - - - - MIDI Ins: - - - - - Audio Ins: - - - - - CV Outs: - - - - - MIDI Outs: - - - - - Parameter Ins: - - - - - Parameter Outs: - - - - - Audio Outs: - - - - - CV Ins: - - - - - UniqueID: - - - - - Has Inline Display: - - - - - Has Custom GUI: - - - - - Is Synth: - - - - - Is Bridged: - - - - - Information - - - - - Name - Nom - - - - Label/URI - - - - - Maker - - - - - Binary/Filename - - - - - Focus Text Search - - - - - Ctrl+F + + Tap to the beat @@ -11022,12 +3652,12 @@ Cette puce était utilisée dans l'ordinateur Commodore 64. Plugin Editor - + Éditeur de plugin Edit - + Éditer @@ -11047,28 +3677,28 @@ Cette puce était utilisée dans l'ordinateur Commodore 64. Output dry/wet (100%) - + Sortie dry/wet(100%) Output volume (100%) - + Volume de sorte (100%) Balance Left (0%) - + Balance gauche (0%) Balance Right (0%) - + Balance droite (0%) Use Balance - + Utiliser la balance @@ -11088,12 +3718,12 @@ Cette puce était utilisée dans l'ordinateur Commodore 64. Audio: - + Audio: Fixed-Size Buffer - + Tampon à taille fixe @@ -11103,7 +3733,7 @@ Cette puce était utilisée dans l'ordinateur Commodore 64. MIDI: - + MIDI: @@ -11112,93 +3742,100 @@ Cette puce était utilisée dans l'ordinateur Commodore 64. - Send Bank/Program Changes + Send Notes - Send Control Changes + Send Bank/Program Changes - Send Channel Pressure + Send Control Changes - Send Note Aftertouch + Send Channel Pressure - Send Pitchbend + Send Note Aftertouch + Send Pitchbend + + + + Send All Sound/Notes Off - + Plugin Name - + +Nom du plugin + - + Program: - + Programme: - + MIDI Program: - + Programme MIDI: - + Save State - + Enregistrer l'état - + Load State - + Charger l'état - + Information - + Information - + Label/URI: - + Étiquette/URI: - + Name: - + Nom : - + Type: Type : - + Maker: - + Créateur: - + Copyright: - + Copyright : - + Unique ID: @@ -11206,16 +3843,457 @@ Plugin Name PluginFactory - + Plugin not found. Greffon introuvable. - + LMMS plugin %1 does not have a plugin descriptor named %2! Le greffon LMMS %1 n'a pas de descripteur de greffon nommé %2 ! + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + PluginParameter @@ -11226,161 +4304,65 @@ Plugin Name Parameter Name - + Nom du paramètre + TextLabel + + + + ... ... - PluginRefreshW + PluginRefreshDialog - - Carla - Refresh + + Plugin Refresh - - Search for new... + + Search for: - - LADSPA - LADSPA - - - - DSSI - DSSI - - - - LV2 - LV2 - - - - VST2 - VST2 - - - - VST3 - VST3 - - - - AU + + All plugins, ignoring cache - - SF2/3 - SF2/3 - - - - SFZ - SFZ - - - - Native + + Updated plugins only - - POSIX 32bit + + Check previously invalid plugins - - POSIX 64bit - - - - - Windows 32bit - - - - - Windows 64bit - - - - - Available tools: - - - - - python3-rdflib (LADSPA-RDF support) - - - - - carla-discovery-win64 - - - - - carla-discovery-native - - - - - carla-discovery-posix32 - - - - - carla-discovery-posix64 - - - - - carla-discovery-win32 - - - - - Options: - - - - - Carla will run small processing checks when scanning the plugins (to make sure they won't crash). -You can disable these checks to get a faster scanning time (at your own risk). - - - - - Run processing checks while scanning - - - - + Press 'Scan' to begin the search - + Scan - + >> Skip - + Close - Fermer + @@ -11395,2344 +4377,13619 @@ You can disable these checks to get a faster scanning time (at your own risk). - + Enable Activer - + On/Off On/Off - + - + PluginName - + MIDI MIDI - + AUDIO IN - + ENTRÉE AUDIO - + AUDIO OUT - + SORTIE AUDIO - + GUI - + GUI - + Edit - + Éditer - + Remove Supprimer Plugin Name - + Nom du plugin Preset: - - - - - ProjectNotes - - - Project Notes - Montrer/cacher les notes du projet - - - - Enter project notes here - Inscrire les notes de projet ici - - - - Edit Actions - Édition - - - - &Undo - &Défaire - - - - %1+Z - %1+Z - - - - &Redo - &Refaire - - - - %1+Y - %1+Y - - - - &Copy - &Copier - - - - %1+C - %1+C - - - - Cu&t - Cou&per - - - - %1+X - %1+X - - - - &Paste - Co&ller - - - - %1+V - %1+V - - - - Format Actions - Format - - - - &Bold - Gr&as - - - - %1+B - %1+B - - - - &Italic - &Italique - - - - %1+I - %1+I - - - - &Underline - &Souligné - - - - %1+U - %1+U - - - - &Left - &Gauche - - - - %1+L - %1+L - - - - C&enter - C&entrer - - - - %1+E - %1+E - - - - &Right - D&roite - - - - %1+R - %1+R - - - - &Justify - &Justifier - - - - %1+J - %1+J - - - - &Color... - C&ouleurs... + Préréglage: ProjectRenderer - + WAV (*.wav) - + WAV (*.wav) - + FLAC (*.flac) - + FLAC (*.flac) - + OGG (*.ogg) - + OGG (*.ogg) - + MP3 (*.mp3) + MP3 (*.mp3) + + + + QGroupBox + + + + Settings for %1 QObject - + Reload Plugin - + Recharger le plugin - + Show GUI Montrer l'interface graphique - + Help Aide + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + QWidget - - - - + + Name: Nom : - - URI: - - - - - - + Maker: Fabricant : - - - + Copyright: Copyright : - - + Requires Real Time: Nécessite le temps réel : - - - - - - + + + Yes Oui - - - - - - + + + No Non - - + Real Time Capable: Support temps réel : - - + In Place Broken: Inutilisable : - - + Channels In: Canaux d'entrée : - - + Channels Out: Canaux de sortie : - + File: %1 Fichier : %1 - + File: Fichier : - RecentProjectsMenu + XYControllerW - - &Recently Opened Projects - Projets ouverts &Récemment + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + - RenameDialog + lmms::AmplifierControls - - Rename... - Renommer... + + Volume + Volume + + + + Panning + Panoramisation + + + + Left gain + Gain de gauche + + + + Right gain + Gain de droite - ReverbSCControlDialog + lmms::AudioFileProcessor - - Input - Entrée + + Amplify + Amplifier - - Input gain: - Gain en entrée : + + Start of sample + Début de l'échantillon - - Size - Taille + + End of sample + Fin de l'échantillon - - Size: - Taille : + + Loopback point + Point de bouclage - - Color - Couleur + + Reverse sample + Inverser l'échantillon - - Color: - Couleur : + + Loop mode + Mode de bouclage - - Output - Sortie + + Stutter + - - Output gain: - Gain en sortie : + + Interpolation mode + Mode d'interpolation + + + + None + Aucun + + + + Linear + Linéaire + + + + Sinc + Sync + + + + Sample not found + - ReverbSCControls + lmms::AudioJack - + + JACK client restarted + Le client JACK a redémarré + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + Le serveur JACK est arrêté + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + Le serveur JACK semble avoir été arrêté et le démarrage d'une nouvelle instance a échoué. Par conséquent, LMMS ne peut pas continuer. Vous devriez enregistrer votre projet puis redémarrer JACK et LMMS. + + + + Client name + Nom du client + + + + Channels + Canaux + + + + lmms::AudioOss + + + Device + Périphérique + + + + Channels + Canaux + + + + lmms::AudioPortAudio::setupWidget + + + Backend + + + + + Device + Périphérique + + + + lmms::AudioPulseAudio + + + Device + Périphérique + + + + Channels + Canaux + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + Périphérique + + + + Channels + Canaux + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + Périphérique + + + + lmms::AutomatableModel + + + &Reset (%1%2) + &Réinitialiser (%1%2) + + + + &Copy value (%1%2) + &Copier la valeur (%1%2) + + + + &Paste value (%1%2) + &Coller la valeur (%1%2) + + + + &Paste value + &Coller la valeur + + + + Edit song-global automation + Éditer l'automation globale du morceau + + + + Remove song-global automation + Supprimer l'automation globale du morceau + + + + Remove all linked controls + Supprimer tous les contrôles liés + + + + Connected to %1 + Connecté à %1 + + + + Connected to controller + Connecté au contrôleur + + + + Edit connection... + Éditer la connexion... + + + + Remove connection + Supprimer la connexion + + + + Connect to controller... + Connecter le contrôleur... + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + Déplacer un contrôle en appuyant sur <%1> + + + + lmms::AutomationTrack + + + Automation track + Piste d'automation + + + + lmms::BassBoosterControls + + + Frequency + Fréquence + + + + Gain + Gain + + + + Ratio + Ratio + + + + lmms::BitInvader + + + Sample length + Longueur de l'échantillon + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + Input gain Gain en entrée - - Size - Taille + + Input noise + Bruit en entrée : - - Color - Couleur + + Output gain + Gain en sortie - + + Output clip + Clip de sortie + + + + Sample rate + Taux d'échantillonnage + + + + Stereo difference + Différence stéréo + + + + Levels + Niveaux + + + + Rate enabled + Taux activé + + + + Depth enabled + Profondeur activée + + + + lmms::Clip + + + Mute + Mettre en sourdine + + + + lmms::CompressorControls + + + Threshold + Seuil : + + + + Ratio + Ratio + + + + Attack + Attaque + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + Taille RMS + + + + Mid/Side + + + + + Peak Mode + Mode crête + + + + Lookahead Length + + + + + Input Balance + Balance d'entrée + + + + Output Balance + Balance de sortie + + + + Limiter + Limiteur + + + + Output Gain + Gain en sortie + + + + Input Gain + Gain en entrée + + + + Blend + Mélange + + + + Stereo Balance + Balance stéréo : + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + Lien stéréo + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + Fréquence du LFO : + + + + LFO amount + Niveau du LFO + + + Output gain Gain en sortie - SaControls + lmms::DispersionControls - - Pause - + + Amount + Niveau - - Reference freeze - + + Frequency + Fréquence - - Waterfall - - - - - Averaging - - - - - Stereo - Stéréo - - - - Peak hold - - - - - Logarithmic frequency - - - - - Logarithmic amplitude - - - - - Frequency range - - - - - Amplitude range - - - - - FFT block size - Taille du bloc FFT - - - - FFT window type - - - - - Peak envelope resolution - - - - - Spectrum display resolution - - - - - Peak decay multiplier - - - - - Averaging weight - - - - - Waterfall history size - - - - - Waterfall gamma correction - - - - - FFT window overlap - - - - - FFT zero padding - - - - - - Full (auto) - - - - - - - Audible - - - - - Bass - Graves - - - - Mids - - - - - High - - - - - Extended - - - - - Loud - Fort - - - - Silent - - - - - (High time res.) - - - - - (High freq. res.) - - - - - Rectangular (Off) - - - - - - Blackman-Harris (Default) - - - - - Hamming - - - - - Hanning - - - - - SaControlsDialog - - - Pause - - - - - Pause data acquisition - - - - - Reference freeze - - - - - Freeze current input as a reference / disable falloff in peak-hold mode. - - - - - Waterfall - - - - - Display real-time spectrogram - - - - - Averaging - - - - - Enable exponential moving average - - - - - Stereo - Stéréo - - - - Display stereo channels separately - - - - - Peak hold - - - - - Display envelope of peak values - - - - - Logarithmic frequency - - - - - Switch between logarithmic and linear frequency scale - - - - - - Frequency range - - - - - Logarithmic amplitude - - - - - Switch between logarithmic and linear amplitude scale - - - - - - Amplitude range - - - - - Envelope res. - - - - - Increase envelope resolution for better details, decrease for better GUI performance. - - - - - - Draw at most - - - - - envelope points per pixel - points d'enveloppe par pixel - - - - Spectrum res. - - - - - Increase spectrum resolution for better details, decrease for better GUI performance. - - - - - spectrum points per pixel - - - - - Falloff factor - - - - - Decrease to make peaks fall faster. - - - - - Multiply buffered value by - - - - - Averaging weight - - - - - Decrease to make averaging slower and smoother. - - - - - New sample contributes - - - - - Waterfall height - - - - - Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. - - - - - Keep - - - - - lines - - - - - Waterfall gamma - - - - - Decrease to see very weak signals, increase to get better contrast. - - - - - Gamma value: - - - - - Window overlap - - - - - Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. - - - - - Each sample processed - - - - - times - - - - - Zero padding - - - - - Increase to get smoother-looking spectrum. Warning: high CPU usage. - - - - - Processing buffer is - - - - - steps larger than input block - - - - - Advanced settings - - - - - Access advanced settings - - - - - - FFT block size - Taille du bloc FFT - - - - - FFT window type - - - - - SampleBuffer - - - Fail to open file - Échec à l'ouverture du fichier - - - - Audio files are limited to %1 MB in size and %2 minutes of playing time - Les fichiers audio sont limités à une taille de %1 MB et %2 minutes de temps de lecture - - - - Open audio file - Ouvrir un fichier audio - - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - Tous les fichiers audio.(*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - - Wave-Files (*.wav) - Fichiers WAVE (*.wav) - - - - OGG-Files (*.ogg) - Fichiers OGG (*.ogg) - - - - DrumSynth-Files (*.ds) - Fichiers DrumSynth (*.ds) - - - - FLAC-Files (*.flac) - Fichiers FLAC (*.flac) - - - - SPEEX-Files (*.spx) - Fichiers SPEEX (*.spx) - - - - VOC-Files (*.voc) - Fichiers VOC (*.voc) - - - - AIFF-Files (*.aif *.aiff) - Fichiers AIFF (*.aif *.aiff) - - - - AU-Files (*.au) - Fichiers AU (*.au) - - - - RAW-Files (*.raw) - Fichiers RAW (*.raw) - - - - SampleClipView - - - Double-click to open sample - - - - - Delete (middle mousebutton) - Supprimer (bouton du milieu de la souris) - - - - Delete selection (middle mousebutton) - - - - - Cut - Couper - - - - Cut selection - - - - - Copy - Copier - - - - Copy selection - - - - - Paste - Coller - - - - Mute/unmute (<%1> + middle click) - Sourdine (ou non) (<%1> + clic-milieu) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Reverse sample - Inverser l'échantillon - - - - Set clip color - - - - - Use track color - - - - - SampleTrack - - - Volume - Volume - - - - Panning - Panoramisation - - - - Mixer channel - Canal d'effet - - - - - Sample track - Piste d'échantillon - - - - SampleTrackView - - - Track volume - Volume de la piste - - - - Channel volume: - Volume du canal : - - - - VOL - VOL - - - - Panning - Panoramisation - - - - Panning: - Panoramisation : - - - - PAN - PAN - - - - Channel %1: %2 - Effet %1 : %2 - - - - SampleTrackWindow - - - GENERAL SETTINGS - CONFIGURATION GÉNÉRALE - - - - Sample volume - - - - - Volume: - Volume : - - - - VOL - VOL - - - - Panning - Panoramisation - - - - Panning: - Panoramisation : - - - - PAN - PAN - - - - Mixer channel - Canal d'effet - - - - CHANNEL - EFFET - - - - SaveOptionsWidget - - - Discard MIDI connections - - - - - Save As Project Bundle (with resources) - - - - - SetupDialog - - - Reset to default value - - - - - Use built-in NaN handler - Utiliser le gestionnaire NaN intégré - - - - Settings - Configuration - - - - - General - - - - - Graphical user interface (GUI) - - - - - Display volume as dBFS - Afficher le volume en dBFS - - - - Enable tooltips - Activer les info-bulles - - - - Enable master oscilloscope by default - - - - - Enable all note labels in piano roll - - - - - Enable compact track buttons - - - - - Enable one instrument-track-window mode - - - - - Show sidebar on the right-hand side - - - - - Let sample previews continue when mouse is released - - - - - Mute automation tracks during solo - - - - - Show warning when deleting tracks - - - - - Projects - - - - - Compress project files by default - - - - - Create a backup file when saving a project - - - - - Reopen last project on startup - - - - - Language - - - - - - Performance - - - - - Autosave - - - - - Enable autosave - Activer la sauvegarde automatique - - - - Allow autosave while playing - - - - - User interface (UI) effects vs. performance - - - - - Smooth scroll in song editor - - - - - Display playback cursor in AudioFileProcessor - - - - - Plugins - Greffons - - - - VST plugins embedding: - - - - - No embedding - Aucune intégration - - - - Embed using Qt API - Intégrer en utilisant l'API Qt - - - - Embed using native Win32 API - Intégrer en utilisant l'API Win32 native - - - - Embed using XEmbed protocol - Intégrer en utilisant le protocole XEmbed - - - - Keep plugin windows on top when not embedded - Maintenir les fenêtres des plugins au premier plan lorsqu'elles ne sont pas intégrées - - - - Sync VST plugins to host playback - Synchroniser les greffons VST à la lecture de l'hôte - - - - Keep effects running even without input - Laisser les effets opérer même sans entrée - - - - - Audio - Audio - - - - Audio interface - - - - - HQ mode for output audio device - - - - - Buffer size - - - - - - MIDI - MIDI - - - - MIDI interface - - - - - Automatically assign MIDI controller to selected track - - - - - LMMS working directory - Répertoire de travail de LMMS - - - - VST plugins directory - - - - - LADSPA plugins directories - - - - - SF2 directory - Répertoire des SF2 - - - - Default SF2 - - - - - GIG directory - Répertoire des GIG - - - - Theme directory - - - - - Background artwork - Thème graphique d'arrière-plan - - - - Some changes require restarting. - - - - - Autosave interval: %1 - - - - - Choose the LMMS working directory - - - - - Choose your VST plugins directory - - - - - Choose your LADSPA plugins directory - - - - - Choose your default SF2 - - - - - Choose your theme directory - - - - - Choose your background picture - - - - - - Paths - Chemins d'accès - - - - OK - OK - - - - Cancel - Annuler - - - - Frames: %1 -Latency: %2 ms - Trames : %1 -Latence : %2 ms - - - - Choose your GIG directory - Choisissez le répertoire des fichiers GIG - - - - Choose your SF2 directory - Choisissez le répertoire des fichiers SF2 - - - - minutes - minutes - - - - minute - minute - - - - Disabled - Désactivé - - - - SidInstrument - - - Cutoff frequency - Fréquence de coupure - - - + Resonance Résonance - - Filter type - Type de filtre + + Feedback + - - Voice 3 off - Voix 3 coupée - - - - Volume - Volume - - - - Chip model - Modèle de circuit + + DC Offset Removal + Suppression de la composante continue - SidInstrumentView + lmms::DualFilterControls - - Volume: - Volume : + + Filter 1 enabled + Filtre 1 activé - - Resonance: - Résonance : + + Filter 1 type + Type du filtre 1 - - - Cutoff frequency: - Fréquence de coupure : + + Cutoff frequency 1 + Fréquence de coupure 1 - - High-pass filter + + Q/Resonance 1 + Q/Résonance 1 + + + + Gain 1 + Gain 1 + + + + Mix + Mix + + + + Filter 2 enabled + Filtre 2 activé + + + + Filter 2 type + Type du filtre 2 + + + + Cutoff frequency 2 + Fréquence de coupure 2 + + + + Q/Resonance 2 + Q/Résonance 2 + + + + Gain 2 + Gain 2 + + + + + Low-pass + Passe-bas + + + + + Hi-pass + Passe-haut + + + + + Band-pass csg + Passe-bande CSG + + + + + Band-pass czpg + Passe-bande CZPG + + + + + Notch + Coupe-bande + + + + + All-pass + Passe-tout + + + + + Moog + Moog + + + + + 2x Low-pass + 2x Passe-bas + + + + + RC Low-pass 12 dB/oct + RC Passe-bas 12 dB/octave + + + + + RC Band-pass 12 dB/oct + RC Passe-bande 12 dB/octave + + + + + RC High-pass 12 dB/oct + RC Passe-haut 12 dB/octave + + + + + RC Low-pass 24 dB/oct + RC Passe-bas 24 dB/octave + + + + + RC Band-pass 24 dB/oct + RC Passe-bande 24 dB/octave + + + + + RC High-pass 24 dB/oct + RC Passe-haut 24 dB/octave + + + + + Vocal Formant - - Band-pass filter + + + 2x Moog + 2x Moog + + + + + SV Low-pass + SV Passe-bas + + + + + SV Band-pass + SV Passe-bande + + + + + SV High-pass + SV Passe-haut + + + + + SV Notch + SV coupe-bande + + + + + Fast Formant - - Low-pass filter + + + Tripole + Tripôle + + + + lmms::DynProcControls + + + Input gain + Gain en entrée + + + + Output gain + Gain en sortie + + + + Attack time + Temps d'attaque + + + + Release time - - Voice 3 off + + Stereo mode + Mode stéréo + + + + lmms::Effect + + + Effect enabled + Effet activé + + + + Wet/Dry mix + Mélange originel/traité + + + + Gate + Seuil + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + Effets activés + + + + lmms::Engine + + + Generating wavetables + Génération des tables d'ondes + + + + Initializing data structures + Initialisation des structures de données + + + + Opening audio and midi devices + Ouverture des périphériques audio et MIDI + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + Pré-délai de l'enveloppe + + + + Env attack + Attaque de l'enveloppe + + + + Env hold + Maintien de enveloppe + + + + Env decay - - MOS6581 SID - SID MOS6581 - - - - MOS8580 SID - SID MOS8580 - - - - - Attack: - Attaque : - - - - - Decay: - Affaiblissement (decay) : - - - - Sustain: - Soutien : - - - - - Release: - Relâchement : - - - - Pulse Width: - Largeur de pulsation : - - - - Coarse: - Grossier : - - - - Pulse wave + + Env sustain - - Triangle wave - Onde triangulaire + + Env release + - - Saw wave - Onde en dents-de-scie + + Env mod amount + Niveau de modulation de enveloppe - + + LFO pre-delay + Pré-délai du LFO + + + + LFO attack + Attaque du LFO + + + + LFO frequency + Fréquence du LFO + + + + LFO mod amount + Niveau de modulation du LFO + + + + LFO wave shape + Forme d'onde du LFO + + + + LFO frequency x 100 + Fréquence du LFO x 100 + + + + Modulate env amount + Moduler le niveau de l'enveloppe + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + Gain en entrée + + + + Output gain + Gain en sortie + + + + Low-shelf gain + Gain du low-shelf + + + + Peak 1 gain + Gain de crête 1 + + + + Peak 2 gain + Gain de crête 2 + + + + Peak 3 gain + Gain de crête 3 + + + + Peak 4 gain + Gain de crête 4 + + + + High-shelf gain + Gain du high-shelf + + + + HP res + Résolution du passe-haut + + + + Low-shelf res + Résolution du low-shelf + + + + Peak 1 BW + Bande-passante du pic 1 + + + + Peak 2 BW + Bande-passante du pic 2 + + + + Peak 3 BW + Bande-passante du pic 3 + + + + Peak 4 BW + Bande-passante du pic 4 + + + + High-shelf res + Résolution du high-shelf + + + + LP res + Résolution du passe-bas + + + + HP freq + Fréquence du passe-haut + + + + Low-shelf freq + Fréquence du low-shelf + + + + Peak 1 freq + Fréquence de crête 1 + + + + Peak 2 freq + Fréquence de crête 2 + + + + Peak 3 freq + Fréquence de crête 3 + + + + Peak 4 freq + Fréquence de crête 4 + + + + High-shelf freq + Fréquence du high-shelf + + + + LP freq + Fréquence du passe-bas + + + + HP active + Passe-haut actif + + + + Low-shelf active + Low-shelf actif + + + + Peak 1 active + Crête 1 active + + + + Peak 2 active + Crête 2 active + + + + Peak 3 active + Crête 3 active + + + + Peak 4 active + Crête 4 active + + + + High-shelf active + High-shelf actif + + + + LP active + Passe-bas actif + + + + LP 12 + Passe-bas 12 + + + + LP 24 + Passe-bas 24 + + + + LP 48 + Passe-bas 48 + + + + HP 12 + Passe-haut 12 + + + + HP 24 + Passe-haut 24 + + + + HP 48 + Passe-haut 48 + + + + Low-pass type + type de passe-bas + + + + High-pass type + type de passe-haut + + + + Analyse IN + Analyse de l'entrée + + + + Analyse OUT + Analyse de la sortie + + + + lmms::FlangerControls + + + Delay samples + Délai d'échantillonnage + + + + LFO frequency + Fréquence du LFO + + + + Amount + + + + + Stereo phase + Phase stéréo + + + + Feedback + + + + Noise Bruit - + + Invert + Inverser + + + + lmms::FreeBoyInstrument + + + Sweep time + Temps de balayage + + + + Sweep direction + Sens de balayage + + + + Sweep rate shift amount + Niveau de décalage du taux de balayage + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + Volume du canal 1 + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + Volume du canal 2 + + + + Channel 3 volume + Volume du canal 3 + + + + Channel 4 volume + Volume du canal 4 + + + + Shift Register width + Largeur du registre de décalage + + + + Right output level + Niveau de sortie droite + + + + Left output level + Niveau de sortie gauche + + + + Channel 1 to SO2 (Left) + Canal 1 vers SO2 (gauche) + + + + Channel 2 to SO2 (Left) + Canal 2 vers SO2 (gauche) + + + + Channel 3 to SO2 (Left) + Canal 3 vers SO2 (gauche) + + + + Channel 4 to SO2 (Left) + Canal 4 vers SO2 (gauche) + + + + Channel 1 to SO1 (Right) + Canal 1 vers SO1 (droite) + + + + Channel 2 to SO1 (Right) + Canal 2 vers SO1 (droite) + + + + Channel 3 to SO1 (Right) + Canal 3 vers SO1 (droite) + + + + Channel 4 to SO1 (Right) + Canal 4 vers SO1 (droite) + + + + Treble + Aigus + + + + Bass + Graves + + + + lmms::GigInstrument + + + Bank + Banque + + + + Patch + + + + + Gain + Gain + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + Arpège + + + + Arpeggio type + Type d'arpège + + + + Arpeggio range + Plage d'arpège + + + + Note repeats + Répétition de note + + + + Cycle steps + + + + + Skip rate + Taux de saut + + + + Miss rate + Taux de manqué + + + + Arpeggio time + Temps d'arpège + + + + Arpeggio gate + Durée d'arpège + + + + Arpeggio direction + Direction de l'arpège + + + + Arpeggio mode + Mode d'arpège + + + + Up + Ascendant + + + + Down + Descendant + + + + Up and down + Ascendant et descendant + + + + Down and up + Descendant et ascendant + + + + Random + Aléatoire + + + + Free + Libre + + + + Sort + Tri + + + Sync Sync + + + lmms::InstrumentFunctionNoteStacking - - Ring modulation - + + Chords + Accords - - Filtered - Filtré + + Chord type + Type d'accord - - Test - Test - - - - Pulse width: - + + Chord range + Gamme d'accord - SideBarWidget + lmms::InstrumentSoundShaping - - Close - Fermer + + Envelopes/LFOs + Enveloppes/LFOs + + + + Filter type + Type de filtre + + + + Cutoff frequency + Fréquence de coupure + + + + Q/Resonance + Q/Résonance + + + + Low-pass + Passe-bas + + + + Hi-pass + Passe-haut + + + + Band-pass csg + Passe-bande CSG + + + + Band-pass czpg + Passe-bande czpg + + + + Notch + Coupe-bande + + + + All-pass + Passe-tout + + + + Moog + Moog + + + + 2x Low-pass + 2x Passe-bas + + + + RC Low-pass 12 dB/oct + RC Passe-bas 12 dB/octave + + + + RC Band-pass 12 dB/oct + RC Passe-bande 12 dB/octave + + + + RC High-pass 12 dB/oct + RC Passe-haut 12 dB/octave + + + + RC Low-pass 24 dB/oct + RC Passe-bas 24 dB/octave + + + + RC Band-pass 24 dB/oct + RC Passe-bande 24 dB/octave + + + + RC High-pass 24 dB/oct + RC Passe-haut 24 dB/octave + + + + Vocal Formant + + + + + 2x Moog + 2x Moog + + + + SV Low-pass + SV Passe-bas + + + + SV Band-pass + SV Passe-bande + + + + SV High-pass + SV Passe-haut + + + + SV Notch + SV coupe-bande + + + + Fast Formant + + + + + Tripole + Tripôle - Song + lmms::InstrumentTrack - - Tempo - Tempo + + + unnamed_track + - - Master volume - Volume général + + Base note + Note de base - + + First note + Première note + + + + Last note + Dernière note + + + + Volume + Volume + + + + Panning + Panoramisation + + + + Pitch + Tonalité + + + + Pitch range + Plage de tonalité + + + + Mixer channel + Canal du mixeur + + + Master pitch Tonalité générale - - Aborting project load + + Enable/Disable MIDI CC + Activer/désactiver MIDI CC + + + + CC Controller %1 - - Project file contains local paths to plugins, which could be used to run malicious code. - + + + Default preset + Pré-réglage par défaut + + + lmms::Keymap - - Can't load project: Project file contains local paths to plugins. - - - - - LMMS Error report - Rapport d'erreur LMMS - - - - (repeated %1 times) - - - - - The following errors occurred while loading: + + empty - SongEditor + lmms::KickerInstrument - - Could not open file - Le fichier n'a pas pu être ouvert + + Start frequency + Fréquence de début - - Could not open file %1. You probably have no permissions to read this file. - Please make sure to have at least read permissions to the file and try again. - Le fichier %1 n'a pas pu être ouvert. Vous n'avez probablement pas les droits pour lire ce fichier. -Veuillez vérifier que vous avez au moins les droits en lecture pour ce fichier et réessayez. + + End frequency + Fréquence de fin - - Operation denied + + Length + Longueur + + + + Start distortion + Début de la distorsion + + + + End distortion + Fin de la distorsion + + + + Gain + Gain + + + + Envelope slope + Pente de l'enveloppe + + + + Noise + Bruit + + + + Click + Clic + + + + Frequency slope + Pente de fréquence + + + + Start from note + Commencer à la note + + + + End to note + Finir à la note + + + + lmms::LOMMControls + + + Depth - - A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + Time - - - - Error - Erreur - - - - Couldn't create bundle folder. + + Input Volume - - Couldn't create resources folder. + + Output Volume - - Failed to copy resources. + + Upward Depth - - Could not write file - Le fichier n'a pas pu être écrit - - - - Could not open %1 for writing. You probably are not permitted towrite to this file. Please make sure you have write-access to the file and try again. + + Downward Depth - - This %1 was created with LMMS %2 + + High/Mid Split - - Error in file - Erreur dans le fichier + + Mid/Low Split + - - The file %1 seems to contain errors and therefore can't be loaded. - Le fichier %1 semble contenir des erreurs et ne peut donc pas être chargé. + + Enable High/Mid Split + - - Version difference - Différence de version + + Enable Mid/Low Split + - - template - modèle + + Enable High Band + - - project - projet + + Enable Mid Band + - + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + Lier les canaux + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + Le greffon LADSPA %1 demandé est inconnu. + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + Fréquence de coupure du VCF + + + + VCF Resonance + Résonance du VCF + + + + VCF Envelope Mod + Modulation de l'enveloppe du VCF + + + + VCF Envelope Decay + Decay de l'enveloppe du VCF + + + + Distortion + Distorsion + + + + Waveform + Forme d'onde + + + + Slide Decay + + + + + Slide + + + + + Accent + Accent + + + + Dead + + + + + 24dB/oct Filter + Filtre 24 dB/octave + + + + lmms::LfoController + + + LFO Controller + Contrôleur du LFO + + + + Base value + Valeur de base + + + + Oscillator speed + Vitesse de l'oscillateur + + + + Oscillator amount + Niveau de l'oscillateur + + + + Oscillator phase + Phase de l'oscillateur + + + + Oscillator waveform + Forme d'onde de l'oscillateur + + + + Frequency Multiplier + Multiplicateur de fréquence + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + Dureté + + + + Position + Position + + + + Vibrato gain + Gain du vibrato + + + + Vibrato frequency + Fréquence du vibrato + + + + Stick mix + + + + + Modulator + Modulateur + + + + Crossfade + + + + + LFO speed + Vitesse du LFO + + + + LFO depth + Profondeur du LFO + + + + ADSR + ADSR + + + + Pressure + Pression + + + + Motion + Mouvement + + + + Speed + Vitesse + + + + Bowed + + + + + Instrument + + + + + Spread + Diffusion + + + + Randomness + + + + + Marimba + Marimba + + + + Vibraphone + Vibraphone + + + + Agogo + Agogo + + + + Wood 1 + Bois 1 + + + + Reso + Résonance + + + + Wood 2 + Bois 2 + + + + Beats + Temps + + + + Two fixed + + + + + Clump + + + + + Tubular bells + Cloches tubulaires + + + + Uniform bar + Mesure uniforme + + + + Tuned bar + Mesure accordée + + + + Glass + Verre + + + + Tibetan bowl + Bol tibétain + + + + lmms::MeterModel + + + Numerator + Numérateur + + + + Denominator + Dénominateur + + + + lmms::Microtuner + + + Microtuner + Micro-tuner + + + + Microtuner on / off + Micro-tuner marche/arrêt + + + + Selected scale + Gamme sélectionné + + + + Selected keyboard mapping + Configuration du clavier sélectionné + + + + lmms::MidiController + + + MIDI Controller + Contrôleur MIDI + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + Paramétrage incomplet + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + Vous n'avez pas choisi de SoundFont par défaut dans la boîte de dialogue de configuration (Éditer -> Configuration). Par conséquent aucun son ne sera joué lorsque vous aurez importé ce fichier MIDI. Vous devriez télécharger une Soundfont General MIDI, la référencer dans la configuration et réessayer. + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + Vous n'avez pas compilé LMMS avec la prise en charge du lecteur SoundFont2, qui est utilisé pour ajouter un son par défaut aux fichiers MIDI importés. Par conséquent aucun son ne sera joué après l'importation de ce fichier MIDI. + + + + MIDI Time Signature Numerator + Numérateur de la signature rythmique MIDI + + + + MIDI Time Signature Denominator + Dénominateur de la signature rythmique MIDI + + + + Numerator + Numérateur + + + + Denominator + Dénominateur + + + + Tempo Tempo - - TEMPO - - - - - Tempo in BPM - - - - - High quality mode - Mode haute qualité - - - - - - Master volume - Volume général - - - - - - Master pitch - Tonalité générale - - - - Value: %1% - Valeur : %1% - - - - Value: %1 semitones - Valeur : %1 demi-tons + + Track + Piste - SongEditorWindow + lmms::MidiJack - - Song-Editor - Éditeur de morceau + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + Le serveur JACK est arrêté - - Play song (Space) - Jouer le morceau (barre d'espace) - - - - Record samples from Audio-device - Enregistrer des échantillons à partir d'un périphérique audio - - - - Record samples from Audio-device while playing song or BB track - Enregistrer des échantillons à partir d'un périphérique audio pendant l'écoute d'un morceau ou bien d'un rythme ou d'une ligne de basse - - - - Stop song (Space) - Arrêter de jouer le morceau (barre d'espace) - - - - Track actions - Actions de la piste - - - - Add beat/bassline - Ajouter un rythme ou une ligne de basse - - - - Add sample-track - Ajouter une piste d'échantillon - - - - Add automation-track - Ajouter une piste d'automation - - - - Edit actions - Actions d'édition - - - - Draw mode - Mode dessin - - - - Knife mode (split sample clips) - - - - - Edit mode (select and move) - Mode édition (sélectionner et déplacer) - - - - Timeline controls - Contrôles de la ligne de temps - - - - Bar insert controls - - - - - Insert bar - - - - - Remove bar - - - - - Zoom controls - Contrôle du zoom - - - - Horizontal zooming - Zoom horizontal - - - - Snap controls - - - - - - Clip snapping size - - - - - Toggle proportional snap on/off - - - - - Base snapping size - + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + Le serveur JACK semble avoir été coupé - StepRecorderWidget + lmms::MidiPort - - Hint - Astuce + + Input channel + Canal d'entrée - - Move recording curser using <Left/Right> arrows - + + Output channel + Canal de sortie + + + + Input controller + Contrôleur d'entrée + + + + Output controller + Contrôleur de sortie + + + + Fixed input velocity + Vélocité d'entrée fixe + + + + Fixed output velocity + Vélocité de sortie fixe + + + + Fixed output note + Note de sortie fixe + + + + Output MIDI program + Programme MIDI de sortie + + + + Base velocity + Vélocité de base + + + + Receive MIDI-events + Recevoir des événements MIDI + + + + Send MIDI-events + Envoyer des événements MIDI - SubWindow + lmms::Mixer - - Close - Fermer + + Master + Général - - Maximize - Maximiser + + + + Channel %1 + Canal %1 - - Restore - Restorer - - - - TabWidget - - - - Settings for %1 - Réglages pour %1 - - - - TemplatesMenu - - - New from template - Nouveau à partir d'un modèle - - - - TempoSyncKnob - - - - Tempo Sync - Synchronisation du tempo + + Volume + Volume - - No Sync - Pas de synchronisation - - - - Eight beats - Huit temps - - - - Whole note - Note entière - - - - Half note - Demi-note - - - - Quarter note - Quart de note - - - - 8th note - 8 ième de note - - - - 16th note - 16 ième de note - - - - 32nd note - 32 ième de note - - - - Custom... - Personnalisé... - - - - Custom - Personnalisé - - - - Synced to Eight Beats - Synchronisé sur huit temps - - - - Synced to Whole Note - Synchronisé sur note entière - - - - Synced to Half Note - Synchronisé sur demi-note - - - - Synced to Quarter Note - Synchronisé sur quart de note - - - - Synced to 8th Note - Synchronisé sur 8 ième de note - - - - Synced to 16th Note - Synchronisé sur 16 ième de note - - - - Synced to 32nd Note - Synchronisé sur 32 ième de note - - - - TimeDisplayWidget - - - Time units - - - - - MIN - MIN - - - - SEC - DEC - - - - MSEC - MSEC - - - - BAR - BAR - - - - BEAT - BATT - - - - TICK - TICK - - - - TimeLineWidget - - - Auto scrolling - - - - - Loop points - - - - - After stopping go back to beginning - - - - - After stopping go back to position at which playing was started - Revenir à la position de départ après l'arrêt - - - - After stopping keep position - Ne rien faire après l'arrêt - - - - Hint - Astuce - - - - Press <%1> to disable magnetic loop points. - Appuyez sur <%1> pour désactiver les marqueur magnétiques de jeu en boucle. - - - - Track - - + Mute Mettre en sourdine - + Solo Solo - TrackContainer + lmms::MixerRoute - - Couldn't import file - Le fichier n'a pas pu être importé + + + Amount to send from channel %1 to channel %2 + Quantité à envoyer du canal %1 au canal %2 + + + + lmms::MonstroInstrument + + + Osc 1 volume + Volume de l'oscillateur 1 - + + Osc 1 panning + Panoramisation de l'oscillateur 1 + + + + Osc 1 coarse detune + Désaccordage grossier de l'oscillateur 1 + + + + Osc 1 fine detune left + Désaccordage fin de gauche de l'oscillateur 1 + + + + Osc 1 fine detune right + Désaccordage fin de droite de l'oscillateur 1 + + + + Osc 1 stereo phase offset + Décalage de phase stéréo de l'oscillateur 1 + + + + Osc 1 pulse width + Largeur de la pulsation de l'oscillateur 1 + + + + Osc 1 sync send on rise + Synchronisation envoyée lors de la montée de l'oscillateur 1 + + + + Osc 1 sync send on fall + Synchronisation envoyée lors de la descente de l'oscillateur 1 + + + + Osc 2 volume + Volume de l'oscillateur 2 + + + + Osc 2 panning + Panoramisation de l'oscillateur 2 + + + + Osc 2 coarse detune + Désaccordage grossier de l'oscillateur 2 + + + + Osc 2 fine detune left + Désaccordage fin de gauche de l'oscillateur 2 + + + + Osc 2 fine detune right + Désaccordage fin de droite de l'oscillateur 2 + + + + Osc 2 stereo phase offset + Décalage de phase stéréo de l'oscillateur 2 + + + + Osc 2 waveform + Forme d'onde de l'oscillateur 2 + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + Volume de l'oscillateur 3 + + + + Osc 3 panning + Panoramisation de l'oscillateur 3 + + + + Osc 3 coarse detune + Désaccordage grossier de l'oscillateur 3 + + + + Osc 3 Stereo phase offset + Décalage de phase stéréo de l'oscillateur 3 + + + + Osc 3 sub-oscillator mix + Mélange du sous-oscillateur de l'oscillateur 3 + + + + Osc 3 waveform 1 + Forme d'onde 1 de l'oscillateur 3 + + + + Osc 3 waveform 2 + Forme d'onde 2 de l'oscillateur 3 + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + Forme d'onde du LFO 1 + + + + LFO 1 attack + Attaque du LFO 1 + + + + LFO 1 rate + Taux du LFO 1 + + + + LFO 1 phase + Phase du LFO 1 + + + + LFO 2 waveform + Forme d'onde du LFO 2 + + + + LFO 2 attack + Attaque du LFO 2 + + + + LFO 2 rate + Taux du LFO 2 + + + + LFO 2 phase + Phase du LFO2 + + + + Env 1 pre-delay + Pré-délai de l'enveloppe 1 + + + + Env 1 attack + Attaque de l'enveloppe 1 + + + + Env 1 hold + Maintien de enveloppe 1 + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + Pente de l'enveloppe 1 + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + Onde triangulaire à bande limitée + + + + Bandlimited Saw wave + Onde en dents-de-scie à bande limitée + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + Onde carrée à bande limitée + + + + Bandlimited Moog saw wave + Onde en dents-de-scie Moog à bande limitée + + + + + Soft square wave + + + + + Absolute sine wave + Onde sinusoïdale absolue + + + + + Exponential wave + + + + + White noise + Bruit blanc + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + Onde en dents-de-scie + + + + Ramp wave + + + + + Square wave + Onde carrée + + + + Moog saw wave + + + + + Abs. sine wave + Onde sinusoïdale absolue + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain + + + + + Size + + + + + Color + + + + + Output gain + + + + + lmms::SaControls + + + Pause + + + + + Reference freeze + + + + + Waterfall + + + + + Averaging + + + + + Stereo + + + + + Peak hold + + + + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type + + + + + Peak envelope resolution + + + + + Spectrum display resolution + + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + + + + + + + Audible + + + + + Bass + + + + + Mids + + + + + High + + + + + Extended + + + + + Loud + + + + + Silent + + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + + Hanning + + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + + + + + Panning + + + + + Mixer channel + + + + + + Sample track + + + + + lmms::Scale + + + empty + + + + + lmms::Sf2Instrument + + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + + Cutoff frequency + + + + + Resonance + + + + + Filter type + + + + + Voice 3 off + + + + + Volume + + + + + Chip model + + + + + lmms::SlicerT + + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + + + + + lmms::Song + + + Tempo + + + + + Master volume + + + + + Master pitch + + + + + Aborting project load + + + + + Project file contains local paths to plugins, which could be used to run malicious code. + + + + + Can't load project: Project file contains local paths to plugins. + + + + + LMMS Error report + + + + + (repeated %1 times) + + + + + The following errors occurred while loading: + + + + + lmms::StereoEnhancerControls + + + Width + + + + + lmms::StereoMatrixControls + + + Left to Left + + + + + Left to Right + + + + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software. - Aucun filtre n'a pu être trouvé pour importer le fichier %1. -Vous devriez convertir ce fichier dans un format pris en charge par LMMS en utilisant un autre logiciel. + - + Couldn't open file - Le fichier n'a pas pu être ouvert + - + Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! - Le fichier %1 n'a pas pu être ouvert en lecture. -Veuillez vérifier que vous avez les droits en lecture pour ce fichier et le répertoire qui contient ce fichier et réessayez ! + - + Loading project... - Chargement du projet... + - - + + Cancel - Annuler + - - + + Please wait... - Veuillez patienter... + - + Loading cancelled - Chargement annulé + - + Project loading was cancelled. - Le chargement du projet a été annulé. + - + Loading Track %1 (%2/Total %3) - Chargement de la piste %1 (%2/Total %3) + - + Importing MIDI-file... - Importation du fichier MIDI... + - Clip + lmms::TripleOscillator - - Mute - Mettre en sourdine + + Sample not found + - ClipView + lmms::VecControls - + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + Current position - Position actuelle + - + Current length - Longueur actuelle + - - + + %1:%2 (%3:%4 to %5:%6) - %1:%2 (%3:%4 vers %5:%6) + - + Press <%1> and drag to make a copy. - Appuyez sur <%1> et glissez pour faire une copie. + - + Press <%1> for free resizing. - Appuyez sur <%1> pour un redimensionnement libre. + - + Hint - Astuce + - + Delete (middle mousebutton) - Supprimer (bouton du milieu de la souris) + - + Delete selection (middle mousebutton) - + Cut - Couper + - + Cut selection - + Merge Selection - + Copy - Copier + - + Copy selection - + Paste - Coller + - + Mute/unmute (<%1> + middle click) - Sourdine (ou non) (<%1> + clic-milieu) + - + Mute/unmute selection (<%1> + middle click) - - Set clip color + + Clip color - - Use track color + + Change + + + + + Reset + + + + + Pick random - TrackContentWidget + lmms::gui::CompressorControlDialog - + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + + + + + Draw mode + + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + + + + + + Zoom + + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + + + + + lmms::gui::StepRecorderWidget + + + Hint + + + + + Move recording curser using <Left/Right> arrows + + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + + Close + + + + + Maximize + + + + + Restore + + + + + lmms::gui::TapTempoView + + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + + + + + lmms::gui::TemplatesMenu + + + New from template + + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + + + + + MIN + + + + + SEC + + + + + MSEC + + + + + BAR + + + + + BEAT + + + + + TICK + + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + + + + + After stopping go back to beginning + + + + + After stopping go back to position at which playing was started + + + + + After stopping keep position + + + + + Hint + + + + + Press <%1> to disable magnetic loop points. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + Paste - Coller + - TrackOperationsWidget + lmms::gui::TrackOperationsWidget - + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. @@ -13745,257 +18002,249 @@ Veuillez vérifier que vous avez les droits en lecture pour ce fichier et le ré Mute - Mode sourdine + Solo - Mode solo + - + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? - + Confirm removal - + Don't ask again - + Clone this track - Cloner cette piste - - - - Remove this track - Supprimer cette piste - - - - Clear this track - Vider cette piste - - - - Channel %1: %2 - Effet %1 : %2 - - - - Assign to new mixer Channel - Assigner à un nouveau canal d'effet - - - - Turn all recording on - Armer tous les enregistrements - - - - Turn all recording off - Désarmer tous les enregistrements - - - - Change color - Modifier la couleur - - - - Reset color to default - Réinitialiser la couleur par défaut - - - - Set random color - - Clear clip colors + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors - TripleOscillatorView + lmms::gui::TripleOscillatorView - + Modulate phase of oscillator 1 by oscillator 2 - Moduler la phase de l'oscillateur 1 par l'oscillateur 2 + - + Modulate amplitude of oscillator 1 by oscillator 2 - + Mix output of oscillators 1 & 2 - + Synchronize oscillator 1 with oscillator 2 - Synchroniser l'oscillateur 1 avec l'oscillateur 2 - - - - Modulate frequency of oscillator 1 by oscillator 2 + Modulate frequency of oscillator 1 by oscillator 2 + + + + Modulate phase of oscillator 2 by oscillator 3 - + Modulate amplitude of oscillator 2 by oscillator 3 - + Mix output of oscillators 2 & 3 - + Synchronize oscillator 2 with oscillator 3 - Synchroniser l'oscillateur 2 avec l'oscillateur 3 + - + Modulate frequency of oscillator 2 by oscillator 3 - + Osc %1 volume: - Volume de l'oscillateur %1 : + - + Osc %1 panning: - Panoramisation de l'oscillateur %1 : + - - Osc %1 coarse detuning: - Désaccordage grossier de l'oscillateur %1 : - - - - semitones - demi-tons - - - - Osc %1 fine detuning left: - Désaccordage fin (gauche) de l'oscillateur %1 : - - - + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + cents - centièmes + - + Osc %1 fine detuning right: - Désaccordage fin (droite) de l'oscillateur %1 : + - + Osc %1 phase-offset: - Décalage de phase de l'oscillateur %1 : + - - + + degrees - degrés + - + Osc %1 stereo phase-detuning: - Désaccordage stéréo de la phase de l'oscillateur %1 : + - + Sine wave - Onde sinusoïdale + - + Triangle wave - Onde triangulaire + - + Saw wave - Onde en dents-de-scie + - + Square wave - Onde carrée + - + Moog-like saw wave - + Exponential wave - Onde exponentielle + - + White noise - Bruit blanc + - + User-defined wave - - - VecControls - - Display persistence amount - - - - - Logarithmic scale - - - - - High quality + + Use alias-free wavetable oscillators. - VecControlsDialog + lmms::gui::VecControlsDialog - + HQ - + Double the resolution and simulate continuous analog-like trace. @@ -14010,2618 +18259,782 @@ Veuillez vérifier que vous avez les droits en lecture pour ce fichier et le ré - + Persist. - + Trace persistence: higher amount means the trace will stay bright for longer time. - + Trace persistence - VersionedSaveDialog - - - Increment version number - Incrémenter le numéro de version - + lmms::gui::VersionedSaveDialog - Decrement version number - Décrémenter le numéro de version + Increment version number + - + + Decrement version number + + + + Save Options - + already exists. Do you want to replace it? - existe déjà. Souhaitez-vous le remplacer ? + - VestigeInstrumentView + lmms::gui::VestigeInstrumentView - - + + Open VST plugin - Ouvrir un plugin VST + - + Control VST plugin from LMMS host - + Open VST plugin preset - + Previous (-) - Précédent (-) + - + Save preset - Enregistrer le pré-réglage + - + Next (+) - Suivant (+) + - + Show/hide GUI - Montrer l'interface graphique + - + Turn off all notes - Stopper toutes les notes + - + DLL-files (*.dll) - Fichiers DLL (*.dll) + - + EXE-files (*.exe) - Fichiers EXE (*.exe) + - + + SO-files (*.so) + + + + No VST plugin loaded - + Preset - Pré-réglage + - + by - par + - + - VST plugin control - - contrôle de greffon VST + - VstEffectControlDialog + lmms::gui::VibedView - - Show/hide - Montrer/cacher + + Enable waveform + - + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + + + + Control VST plugin from LMMS host - + Open VST plugin preset - + Previous (-) - Précédent (-) + - + Next (+) - Suivant (+) + - + Save preset - Enregistrer le pré-réglage + - - + + Effect by: - Effet par : + - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + - VstPlugin + lmms::gui::WatsynView - - - The VST plugin %1 could not be loaded. - Le greffon "%1" n'a pas pu être chargé. + + + + + Volume + - - Open Preset - Ouvrir le pré-réglage - - - - - Vst Plugin Preset (*.fxp *.fxb) - Pré-réglage de greffon VST (*.fxp *.fxb) - - - - : default - : défaut - - - - Save Preset - Enregistrer le pré-réglage - - - - .fxp - .fxp - - - - .FXP - .FXP - - - - .FXB - .FXB - - - - .fxb - .fxb - - - - Loading plugin - Chargement du greffon - - - - Please wait while loading VST plugin... - Veuillez patienter pendant le chargement du greffon VST... - - - - WatsynInstrument - - - Volume A1 - Volume A1 - - - - Volume A2 - Volume A2 - - - - Volume B1 - Volume B1 - - - - Volume B2 - Volume B2 - - - - Panning A1 - Panoramisation A1 - - - - Panning A2 - Panoramisation A2 - - - - Panning B1 - Panoramisation B1 - - - - Panning B2 - Panoramisation B2 - - - - Freq. multiplier A1 - Multiplicateur de fréquence A1 - - - - Freq. multiplier A2 - Multiplicateur de fréquence A2 - - - - Freq. multiplier B1 - Multiplicateur de fréquence B1 - - - - Freq. multiplier B2 - Multiplicateur de fréquence B2 - - - - Left detune A1 - Dé-réglage gauche A1 - - - - Left detune A2 - Dé-réglage gauche A2 - - - - Left detune B1 - Dé-réglage gauche B1 - - - - Left detune B2 - Dé-réglage gauche B2 - - - - Right detune A1 - Dé-réglage droit A1 - - - - Right detune A2 - Dé-réglage droit A2 - - - - Right detune B1 - Dé-réglage droit B1 - - - - Right detune B2 - Dé-réglage droit B2 - - - - A-B Mix - Mélange A-B - - - - A-B Mix envelope amount - Niveau de mélange d'enveloppe A-B - - - - A-B Mix envelope attack - Niveau de mélange d'attaque d'enveloppe A-B - - - - A-B Mix envelope hold - Niveau de mélange du maintien d'enveloppe A-B - - - - A-B Mix envelope decay - Niveau de mélange de l'affaiblissement (decay) d'enveloppe A-B - - - - A1-B2 Crosstalk - Diaphonie A1-B2 - - - - A2-A1 modulation - Modulation A2-A1 - - - - B2-B1 modulation - Modulation B2-B1 - - - - Selected graph - Graphique sélectionné - - - - WatsynView - + + - - - Volume - Volume + Panning + + + - - - Panning - Panoramisation + Freq. multiplier + + + - - - Freq. multiplier - Multiplicateur de fréquence - - - - - - Left detune - Déréglage gauche + + + + + + + - - - - - - cents - centièmes + + + + + + + + Right detune + + + + + A-B Mix + - - - - Right detune - Déréglage droite - - - - A-B Mix - Mélange A-B - - - Mix envelope amount - Niveau de mélange d'enveloppe + - + Mix envelope attack - Mélanger l'attaque d'enveloppe + - + Mix envelope hold - Mélanger le maintien d'enveloppe + - + Mix envelope decay - Mélanger la descente d'enveloppe + - + Crosstalk - Diaphonie + - + Select oscillator A1 - Sélectionner l'oscillateur A1 + - + Select oscillator A2 - Sélectionner l'oscillateur A2 + - + Select oscillator B1 - Sélectionner l'oscillateur B1 + - + Select oscillator B2 - Sélectionner l'oscillateur B2 + - + Mix output of A2 to A1 - Mélanger la sortie de A2 dans A1 + - + Modulate amplitude of A1 by output of A2 - + Ring modulate A1 and A2 - + Modulate phase of A1 by output of A2 - + Mix output of B2 to B1 - Mélanger la sortie de B2 dans B1 + - + Modulate amplitude of B1 by output of B2 - + Ring modulate B1 and B2 - + Modulate phase of B1 by output of B2 - - - - + + + + Draw your own waveform here by dragging your mouse on this graph. - Dessinez ici votre propre forme d'onde en faisant glisser votre souris sur ce graphique. + - + Load waveform - Charger la forme d'onde + - + Load a waveform from a sample file - + Phase left - Phase gauche + - + Shift phase by -15 degrees - + Phase right - Phase droite + - + Shift phase by +15 degrees + + + + Normalize + + - Normalize - Normaliser - - - - Invert - Inverser + - - + + Smooth - Adoucir + - - + + Sine wave - Onde sinusoïdale + - - - + + + Triangle wave - Onde triangulaire + - + Saw wave - Onde en dents-de-scie + - - + + Square wave - Onde carrée - - - - Xpressive - - - Selected graph - Graphique sélectionné - - - - A1 - A1 - - - - A2 - A2 - - - - A3 - A3 - - - - W1 smoothing - Adoucissement W1 - - - - W2 smoothing - Adoucissement W2 - - - - W3 smoothing - Adoucissement W3 - - - - Panning 1 - Panoramique 1 - - - - Panning 2 - Panoramique 2 - - - - Rel trans - XpressiveView + lmms::gui::WaveShaperControlDialog - - Draw your own waveform here by dragging your mouse on this graph. - Dessinez ici votre propre forme d'onde en faisant glisser votre souris sur ce graphique. - - - - Select oscillator W1 - Sélectionner l'oscillateur W1 - - - - Select oscillator W2 - Sélectionner l'oscillateur W2 - - - - Select oscillator W3 - Sélectionner l'oscillateur W3 - - - - Select output O1 - - - - - Select output O2 - - - - - Open help window - Ouvrir la fenêtre d'aide - - - - - Sine wave - Onde sinusoïdale - - - - - Moog-saw wave - - - - - - Exponential wave - Onde exponentielle - - - - - Saw wave - Onde en dents-de-scie - - - - - User-defined wave - - - - - - Triangle wave - Onde triangulaire - - - - - Square wave - Onde carrée - - - - - White noise - Bruit blanc - - - - WaveInterpolate - WaveInterpolate - - - - ExpressionValid - ExpressionValid - - - - General purpose 1: - Universel 1 : - - - - General purpose 2: - Universel 2 : - - - - General purpose 3: - Universel 3 : - - - - O1 panning: - Panoramisation 01 : - - - - O2 panning: - Panoramisation 02 : - - - - Release transition: - Transition de relâche : - - - - Smoothness - Adoucissement - - - - ZynAddSubFxInstrument - - - Portamento - Portamento - - - - Filter frequency - - - - - Filter resonance - - - - - Bandwidth - Largeur de bande - - - - FM gain - - - - - Resonance center frequency - - - - - Resonance bandwidth - - - - - Forward MIDI control change events - - - - - ZynAddSubFxView - - - Portamento: - Portamento : - - - - PORT - PORT - - - - Filter frequency: - - - - - FREQ - FRÉQ - - - - Filter resonance: - - - - - RES - RES - - - - Bandwidth: - Bande passante : - - - - BW - LB - - - - FM gain: - - - - - FM GAIN - GAIN FM - - - - Resonance center frequency: - Fréquence centrale de la résonance : - - - - RES CF - RES CF - - - - Resonance bandwidth: - Largeur de bande de la résonance : - - - - RES BW - RES BW - - - - Forward MIDI control changes - - - - - Show GUI - Montrer l'interface graphique - - - - AudioFileProcessor - - - Amplify - Amplifier - - - - Start of sample - Début de l'échantillon - - - - End of sample - Fin de l'échantillon - - - - Loopback point - Point de bouclage - - - - Reverse sample - Inverser l'échantillon - - - - Loop mode - Mode de jeu en boucle - - - - Stutter - Bégaiement - - - - Interpolation mode - Mode interpolation - - - - None - Aucun - - - - Linear - Linéaire - - - - Sinc - Sync - - - - Sample not found: %1 - Échantillon %1 non trouvé - - - - BitInvader - - - Sample length - - - - - BitInvaderView - - - Sample length - - - - - Draw your own waveform here by dragging your mouse on this graph. - Dessinez ici votre propre forme d'onde en faisant glisser votre souris sur ce graphique. - - - - - Sine wave - Onde sinusoïdale - - - - - Triangle wave - Onde triangulaire - - - - - Saw wave - Onde en dents-de-scie - - - - - Square wave - Onde carrée - - - - - White noise - Bruit blanc - - - - - User-defined wave - - - - - - Smooth waveform - Forme d'onde adoucie - - - - Interpolation - Interpolation - - - - Normalize - Normaliser - - - - DynProcControlDialog - - + INPUT - ENTRÉE + - + Input gain: - Gain en entrée : + - + OUTPUT - SORTIE - - - - Output gain: - Gain en sortie : - - - - ATTACK - ATTAQUE - - - - Peak attack time: - Temps d'attaque du pic : - - - - RELEASE - RELÂCHEMENT - - - - Peak release time: - Temps de relâchement : - - - - - Reset wavegraph - - - - Smooth wavegraph - - - - - - Increase wavegraph amplitude by 1 dB - - - - - - Decrease wavegraph amplitude by 1 dB - - - - - Stereo mode: maximum - - - - - Process based on the maximum of both stereo channels - Traitement basé sur le maximum des deux canaux stéréo - - - - Stereo mode: average - - - - - Process based on the average of both stereo channels - Traitement basé sur la moyenne des deux canaux stéréo - - - - Stereo mode: unlinked - - - - - Process each stereo channel independently - Traiter chaque canal stéréo indépendamment - - - - DynProcControls - - - Input gain - Gain en entrée - - - - Output gain - Gain en sortie - - - - Attack time - Temps d'attaque - - - - Release time - Temps de relâchement - - - - Stereo mode - Mode stéréo - - - - graphModel - - - Graph - Graphique - - - - KickerInstrument - - - Start frequency - Fréquence de début - - - - End frequency - Fréquence de fin - - - - Length - Longueur - - - - Start distortion - - - - - End distortion - - - - - Gain - Gain - - - - Envelope slope - - - - - Noise - Bruit - - - - Click - Clic - - - - Frequency slope - - - - - Start from note - Commencer à la note - - - - End to note - Finir à la note - - - - KickerInstrumentView - - - Start frequency: - Fréquence de début : - - - - End frequency: - Fréquence de fin : - - - - Frequency slope: - - - - - Gain: - Gain : - - - - Envelope length: - - - - - Envelope slope: - - - - - Click: - Clic : - - - - Noise: - Bruit : - - - - Start distortion: - - - - - End distortion: - - - - - LadspaBrowserView - - - - Available Effects - Effets disponibles - - - - - Unavailable Effects - Effets indisponibles - - - - - Instruments - Instruments - - - - - Analysis Tools - Outils d'analyse - - - - - Don't know - Divers - - - - Type: - Type : - - - - LadspaDescription - - - Plugins - Greffons - - - - Description - Description - - - - LadspaPortDialog - - - Ports - Ports - - - - Name - Nom - - - - Rate - Vitesse - - - - Direction - Sens - - - - Type - Type - - - - Min < Default < Max - Min < par défaut < Max - - - - Logarithmic - Logarithmique - - - - SR Dependent - Dépendant du taux d'échantillonnage - - - - Audio - Audio - - - - Control - Contrôle - - - - Input - Entrée - - - - Output - Sortie - - - - Toggled - Permuté - - - - Integer - Entier - - - - Float - Flottant - - - - - Yes - Oui - - - - Lb302Synth - - - VCF Cutoff Frequency - Fréquence de coupure du VCF - - - - VCF Resonance - Résonance du VCF - - - - VCF Envelope Mod - Modulation de l'enveloppe du VCF - - - - VCF Envelope Decay - Affaiblissement (decay) de l'enveloppe du VCF - - - - Distortion - Distorsion - - - - Waveform - Forme d'onde - - - - Slide Decay - Affaiblissement (decay) glissant - - - - Slide - Liaison - - - - Accent - Accent - - - - Dead - Éteint - - - - 24dB/oct Filter - Filtre 24 dB/oct - - - - Lb302SynthView - - - Cutoff Freq: - Fréquence de coupure : - - - - Resonance: - Résonance : - - - - Env Mod: - Modulation de l'enveloppe : - - - - Decay: - Affaiblissement : - - - - 303-es-que, 24dB/octave, 3 pole filter - 303-esque, 24 dB/octave, filtre à 3 pôles - - - - Slide Decay: - Affaiblissement glissant : - - - - DIST: - DIST : - - - - Saw wave - Onde en dents-de-scie - - - - Click here for a saw-wave. - Cliquez ici pour une onde en dents-de-scie. - - - - Triangle wave - Onde triangulaire - - - - Click here for a triangle-wave. - Cliquez ici pour une onde triangulaire. - - - - Square wave - Onde carrée - - - - Click here for a square-wave. - Cliquez ici pour une onde carrée. - - - - Rounded square wave - Onde carrée arrondie - - - - Click here for a square-wave with a rounded end. - Cliquez ici pour une onde carrée avec une fin arrondie. - - - - Moog wave - Onde Moog - - - - Click here for a moog-like wave. - Cliquez ici pour une onde de type Moog. - - - - Sine wave - Onde sinusoïdale - - - - Click for a sine-wave. - Cliquez ici pour une onde sinusoïdale. - - - - - White noise wave - Bruit blanc - - - - Click here for an exponential wave. - Cliquez ici pour une onde exponentielle. - - - - Click here for white-noise. - Cliquez ici pour un bruit blanc. - - - - Bandlimited saw wave - Onde en dents-de-scie à bande limitée - - - - Click here for bandlimited saw wave. - Cliquez ici pour une onde en dents-de-scie à bande limitée. - - - - Bandlimited square wave - Onde carrée à bande limitée - - - - Click here for bandlimited square wave. - Cliquez ici pour une onde carrée à bande limitée. - - - - Bandlimited triangle wave - Onde triangulaire à bande limitée - - - - Click here for bandlimited triangle wave. - Cliquez ici pour une onde triangulaire à bande limitée. - - - - Bandlimited moog saw wave - Onde en dents-de-scie Moog à bande limitée - - - - Click here for bandlimited moog saw wave. - Cliquez ici pour une onde en dents-de-scie de type Moog à bande limitée. - - - - MalletsInstrument - - - Hardness - Dureté - - - - Position - Position - - - - Vibrato gain - - - - - Vibrato frequency - - - - - Stick mix - - - - - Modulator - Modulateur - - - - Crossfade - Fondu enchainé - - - - LFO speed - Vitesse du LFO - - - - LFO depth - - - - - ADSR - ADSR - - - - Pressure - Pression - - - - Motion - Mouvement - - - - Speed - Vitesse - - - - Bowed - Courbé - - - - Spread - Diffusion - - - - Marimba - Marimba - - - - Vibraphone - Vibraphone - - - - Agogo - Agogo - - - - Wood 1 - - - - - Reso - Réso - - - - Wood 2 - - - - - Beats - Battements - - - - Two fixed - - - - - Clump - Bruit lourd - - - - Tubular bells - - - - - Uniform bar - - - - - Tuned bar - - - - - Glass - Verre - - - - Tibetan bowl - - - - - MalletsInstrumentView - - - Instrument - Instrument - - - - Spread - Diffusion - - - - Spread: - Diffusion : - - - - Missing files - Fichiers manquants - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - Votre installation de STK semble incomplète. Veuillez vous assurer que le paquet STK complet est installé ! - - - - Hardness - Dureté - - - - Hardness: - Dureté : - - - - Position - Position - - - - Position: - Position : - - - - Vibrato gain - - - - - Vibrato gain: - - - - - Vibrato frequency - - - - - Vibrato frequency: - - - - - Stick mix - - - - - Stick mix: - - - - - Modulator - Modulateur - - - - Modulator: - Modulateur : - - - - Crossfade - Fondu enchainé - - - - Crossfade: - Fondu enchainé : - - - - LFO speed - Vitesse du LFO - - - - LFO speed: - Vitesse du LFO : - - - - LFO depth - - - - - LFO depth: - - - - - ADSR - ADSR - - - - ADSR: - ADSR : - - - - Pressure - Pression - - - - Pressure: - Pression : - - - - Speed - Vitesse - - - - Speed: - Vitesse : - - - - ManageVSTEffectView - - - - VST parameter control - - Paramètre de contrôle VST - - - - VST sync - - - - - - Automated - Automatique - - - - Close - Fermer - - - - ManageVestigeInstrumentView - - - - - VST plugin control - - contrôle de greffon VST - - - - VST Sync - VST Sync - - - - - Automated - Automatique - - - - Close - Fermer - - - - OrganicInstrument - - - Distortion - Distorsion - - - - Volume - Volume - - - - OrganicInstrumentView - - - Distortion: - Distorsion : - - - - Volume: - Volume : - - - - Randomise - Randomiser - - - - - Osc %1 waveform: - Form d'onde de l'oscillateur %1 : - - - - Osc %1 volume: - Volume de l'oscillateur %1 : - - - - Osc %1 panning: - Panoramisation de l'oscillateur %1 : - - - - Osc %1 stereo detuning - Dé-réglage stéréo de l'oscillateur %1 - - - - cents - centièmes - - - - Osc %1 harmonic: - Harmonique de l'oscillateur %1 : - - - - PatchesDialog - - - Qsynth: Channel Preset - Qsynth : pré-réglage de canal - - - - Bank selector - Sélecteur de banque - - - - Bank - Banque - - - - Program selector - Sélecteur de programme - - - - Patch - Patch - - - - Name - Nom - - - - OK - OK - - - - Cancel - Annuler - - - - Sf2Instrument - - - Bank - Banque - - - - Patch - Son - - - - Gain - Gain - - - - Reverb - Réverbération - - - - Reverb room size - - - - - Reverb damping - - - - - Reverb width - - - - - Reverb level - - - - - Chorus - Chorus - - - - Chorus voices - - - - - Chorus level - - - - - Chorus speed - - - - - Chorus depth - - - - - A soundfont %1 could not be loaded. - La banque de sons %1 n'a pu être chargée. - - - - Sf2InstrumentView - - - - Open SoundFont file - Ouvrir un fichier SoundFont - - - - Choose patch - - - - - Gain: - Gain : - - - - Apply reverb (if supported) - Appliquer la réverbération (si prise en charge) - - - - Room size: - - - - - Damping: - - - - - Width: - Ampleur : - - - - - Level: - - - - - Apply chorus (if supported) - Appliquer le chorus (si pris en charge) - - - - Voices: - - - - - Speed: - Vitesse : - - - - Depth: - Profondeur : - - - - SoundFont Files (*.sf2 *.sf3) - - - - - SfxrInstrument - - - Wave - - - - - StereoEnhancerControlDialog - - - WIDTH - - - - - Width: - Ampleur : - - - - StereoEnhancerControls - - - Width - Ampleur - - - - StereoMatrixControlDialog - - - Left to Left Vol: - Volume de gauche à gauche : - - - - Left to Right Vol: - Volume de gauche à droite : - - - - Right to Left Vol: - Volume de droite à gauche : - - - - Right to Right Vol: - Volume de droite à droite : - - - - StereoMatrixControls - - - Left to Left - Gauche à gauche - - - - Left to Right - Gauche à droite - - - - Right to Left - Droite à gauche - - - - Right to Right - Droite à droite - - - - VestigeInstrument - - - Loading plugin - Chargement du greffon - - - - Please wait while loading the VST plugin... - - - - - Vibed - - - String %1 volume - Volume de la corde %1 - - - - String %1 stiffness - Rigidité de la corde %1 - - - - Pick %1 position - Position du micro %1 - - - - Pickup %1 position - Position du micro %1 - - - - String %1 panning - Panoramique de la corde %1 - - - - String %1 detune - Désaccordage de la corde %1 - - - - String %1 fuzziness - Flou de la corde %1 - - - - String %1 length - Longueur de la corde %1 - - - - Impulse %1 - Pulsation %1 - - - - String %1 - Corde %1 - - - - VibedView - - - String volume: - Volume de la corde : - - - - String stiffness: - Rigidité de la corde : - - - - Pick position: - Point de contact : - - - - Pickup position: - Point d'écoute : - - - - String panning: - Panoramique de la corde : - - - - String detune: - Désaccordage de la corde : - - - - String fuzziness: - Flou de la corde : - - - - String length: - Longueur de la corde : - - - - Impulse - - - - - Octave - Octave - - - - Impulse Editor - Éditeur d'impulsion - - - - Enable waveform - Activer la forme d'onde - - - - Enable/disable string - Activer/désactiver la corde - - - - String - Corde - - - - - Sine wave - Onde sinusoïdale - - - - - Triangle wave - Onde triangulaire - - - - - Saw wave - Onde en dents-de-scie - - - - - Square wave - Onde carrée - - - - - White noise - Bruit blanc - - - - - User-defined wave - - - - - - Smooth waveform - Forme d'onde adoucie - - - - - Normalize waveform - Normaliser la forme d'onde - - - - VoiceObject - - - Voice %1 pulse width - Largeur de pulsation de la voix %1 - - - - Voice %1 attack - Attaque de la voix %1 - - - - Voice %1 decay - Affaiblissement de la voix %1 - - - - Voice %1 sustain - Soutien de la voix %1 - - - - Voice %1 release - Relâchement de la voix %1 - - - - Voice %1 coarse detuning - Désaccordage grossier de la voix %1 - - - - Voice %1 wave shape - Forme d'onde de la voix %1 - - - - Voice %1 sync - Synchronisation de la voix %1 - - - - Voice %1 ring modulate - Modulation en anneaux de la voix %1 - - - - Voice %1 filtered - Voix %1 filtrée - - - - Voice %1 test - Test de la voix %1 - - - - WaveShaperControlDialog - - - INPUT - ENTRÉE - - - - Input gain: - Gain en entrée : - - - - OUTPUT - SORTIE - - - - Output gain: - Gain en sortie : - - + Output gain: + + + + + Reset wavegraph - - + + Smooth wavegraph - - + + Increase wavegraph amplitude by 1 dB - - + + Decrease wavegraph amplitude by 1 dB - + Clip input - Couper le signal d'entrée + - + Clip input signal to 0 dB - WaveShaperControls + lmms::gui::XpressiveView - - Input gain - Gain en entrée + + Draw your own waveform here by dragging your mouse on this graph. + - - Output gain - Gain en sortie + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + - + + lmms::gui::ZynAddSubFxView + + + Portamento: + Portamento : + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + Bande passante : + + + + BW + + + + + FM gain: + Gain FM : + + + + FM GAIN + GAIN FM + + + + Resonance center frequency: + Fréquence centrale de la résonance : + + + + RES CF + + + + + Resonance bandwidth: + Largeur de bande de la résonance : + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + Montrer l'interface graphique + + + \ No newline at end of file diff --git a/data/locale/he.ts b/data/locale/he.ts index 2699b7e1a..2789aa3d7 100644 --- a/data/locale/he.ts +++ b/data/locale/he.ts @@ -1,10 +1,10 @@ - + AboutDialog About LMMS - אודות LMMS + על אודות LMMS @@ -19,18 +19,17 @@ About - אודות + על אודות LMMS - easy music production for everyone. - LMMS - יצירת מוסיקה פשוטה עבור כולם + LMMS - הפקת מוזיקה פשוטה לכולם. Copyright © %1. - כל הזכויות שמורות © %1. - + כל הזכויות שמורות © %1 @@ -45,12 +44,12 @@ Involved - להשתתף + שותפים Contributors ordered by number of commits: - מפתחים מסודרים לפי מספר התרומות: + התורמים מסודרים לפי מספר התרומות: @@ -61,819 +60,53 @@ Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! - + אין תרגום לשפה הנוכחית (או שהתוכנה בשפה האנגלית). +אם יש לך עניין בתרגום LMMS לשפה אחרת או בשיפור התרגומים הקיימים, נשמח לקבל ממך עזרה! כל מה שצריך לעשות הוא פשוט לפנות למתחזק! License - רשיון + רישיון - AmplifierControlDialog + AboutJuceDialog - - VOL - ווליום - - - - Volume: - ווליום: - - - - PAN + + About JUCE - - Panning: + + <b>About JUCE</b> - - LEFT - שמאל - - - - Left gain: + + This program uses JUCE version 3.x.x. - - RIGHT - ימין + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + - - Right gain: + + This program uses JUCE version - AmplifierControls + AudioDeviceSetupWidget - - Volume - ווליום - - - - Panning - - - - - Left gain - - - - - Right gain - - - - - AudioAlsaSetupWidget - - - DEVICE - התקן - - - - CHANNELS - ערוצים - - - - AudioFileProcessorView - - - Open sample - - - - - Reverse sample - - - - - Disable loop - השבת לופ - - - - Enable loop - אפשר לופ - - - - Enable ping-pong loop - - - - - Continue sample playback across notes - - - - - Amplify: - - - - - Start point: - - - - - End point: - - - - - Loopback point: - - - - - AudioFileProcessorWaveView - - - Sample length: - - - - - AudioJack - - - JACK client restarted - - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - - - - - JACK server down - - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - - - - - Client name - - - - - Channels - - - - - AudioOss - - - Device - - - - - Channels - - - - - AudioPortAudio::setupWidget - - - Backend - - - - - Device - - - - - AudioPulseAudio - - - Device - - - - - Channels - - - - - AudioSdl::setupWidget - - - Device - - - - - AudioSndio - - - Device - - - - - Channels - - - - - AudioSoundIo::setupWidget - - - Backend - - - - - Device - - - - - AutomatableModel - - - &Reset (%1%2) - &איפוס (%1%2) - - - - &Copy value (%1%2) - &העתק ערך (%1%2) - - - - &Paste value (%1%2) - &הדבק ערך (%1%2) - - - - &Paste value - &הדבק ערך - - - - Edit song-global automation - ערוך אוטומציה גלובאלית - - - - Remove song-global automation - מחק אוטומציה גלובלית - - - - Remove all linked controls - - - - - Connected to %1 - - - - - Connected to controller - - - - - Edit connection... - - - - - Remove connection - - - - - Connect to controller... - - - - - AutomationEditor - - - Edit Value - - - - - New outValue - - - - - New inValue - - - - - Please open an automation clip with the context menu of a control! - - - - - AutomationEditorWindow - - - Play/pause current clip (Space) - - - - - Stop playing of current clip (Space) - - - - - Edit actions - - - - - Draw mode (Shift+D) - - - - - Erase mode (Shift+E) - - - - - Draw outValues mode (Shift+C) - - - - - Flip vertically - - - - - Flip horizontally - - - - - Interpolation controls - - - - - Discrete progression - - - - - Linear progression - - - - - Cubic Hermite progression - - - - - Tension value for spline - - - - - Tension: - - - - - Zoom controls - - - - - Horizontal zooming - - - - - Vertical zooming - - - - - Quantization controls - - - - - Quantization - - - - - - Automation Editor - no clip - - - - - - Automation Editor - %1 - - - - - Model is already connected to this clip. - - - - - AutomationClip - - - Drag a control while pressing <%1> - - - - - AutomationClipView - - - Open in Automation editor - - - - - Clear - נקה - - - - Reset name - - - - - Change name - - - - - Set/clear record - - - - - Flip Vertically (Visible) - - - - - Flip Horizontally (Visible) - - - - - %1 Connections - - - - - Disconnect "%1" - - - - - Model is already connected to this clip. - - - - - AutomationTrack - - - Automation track - - - - - PatternEditor - - - Beat+Bassline Editor - - - - - Play/pause current beat/bassline (Space) - - - - - Stop playback of current beat/bassline (Space) - - - - - Beat selector - - - - - Track and step actions - - - - - Add beat/bassline - - - - - Clone beat/bassline clip - - - - - Add sample-track - - - - - Add automation-track - - - - - Remove steps - - - - - Add steps - - - - - Clone Steps - - - - - PatternClipView - - - Open in Beat+Bassline-Editor - - - - - Reset name - - - - - Change name - - - - - PatternTrack - - - Beat/Bassline %1 - - - - - Clone of %1 - - - - - BassBoosterControlDialog - - - FREQ - - - - - Frequency: - - - - - GAIN - - - - - Gain: - - - - - RATIO - - - - - Ratio: - - - - - BassBoosterControls - - - Frequency - - - - - Gain - - - - - Ratio - - - - - BitcrushControlDialog - - - IN - - - - - OUT - - - - - - GAIN - - - - - Input gain: - - - - - NOISE - - - - - Input noise: - - - - - Output gain: - - - - - CLIP - - - - - Output clip: - - - - - Rate enabled - - - - - Enable sample-rate crushing - - - - - Depth enabled - - - - - Enable bit-depth crushing - - - - - FREQ - - - - - Sample rate: - - - - - STEREO - - - - - Stereo difference: - - - - - QUANT - - - - - Levels: - - - - - BitcrushControls - - - Input gain - - - - - Input noise - - - - - Output gain - - - - - Output clip - - - - - Sample rate - קצב דגימה - - - - Stereo difference - - - - - Levels - - - - - Rate enabled - - - - - Depth enabled + + [System Default] @@ -882,142 +115,142 @@ If you're interested in translating LMMS in another language or want to imp About Carla - + על אודות Carla About - אודות + על אודות About text here - + על אודות "טקסט כאן" Extended licensing here - + פרטי רישיון מורחבים כאן - + Artwork - + עבודות אומנות - + Using KDE Oxygen icon set, designed by Oxygen Team. - + נעשה שימוש בערכת הסמלים Oxygen של KDE, שעוצבה על ידי צוות Oxygen. - + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. - + VST is a trademark of Steinberg Media Technologies GmbH. - + Special thanks to António Saraiva for a few extra icons and artwork! - + תודותינו המיוחדות נתונות לאנטוניו סראיבה (António Saraiva) על מעט סמלים נוספים ועבודות אומנות שהכין! - + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. - + MIDI Keyboard designed by Thorsten Wilms. - + Carla, Carla-Control and Patchbay icons designed by DoosC. - + Features - + תכונות - + AU/AudioUnit: - + LADSPA: - + LADSPA: - - - - - - - - + + + + + + + + TextLabel - + VST2: - + VST2: - + DSSI: - + LV2: - + VST3: - + OSC - + Host URLs: - + כתובות מארחים: - + Valid commands: - + valid osc commands here - + Example: - + דוגמה: - + License - רשיון + רישיון - + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -1302,50 +535,50 @@ POSSIBILITY OF SUCH DAMAGES. - + OSC Bridge Version - + Plugin Version - + גרסת התוסף - + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> - - + + (Engine not running) - + Everything! (Including LRDF) - + Everything! (Including CustomData/Chunks) - + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - - - + + + Using Juce host - + About 85% complete (missing vst bank/presets and some minor stuff) @@ -1375,562 +608,600 @@ POSSIBILITY OF SUCH DAMAGES. Loading... + מתבצעת טעינה... + + + + Save - + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + Buffer Size: - + Sample Rate: - + ? Xruns - + DSP Load: %p% - + &File - + &Engine - + &Plugin - + Macros (all plugins) - + &Canvas - + Zoom - + &Settings - + &Help + ע&זרה + + + + Tool Bar - - toolBar - - - - + Disk - + כונן - - + + Home - + בית - + Transport - + Playback Controls - + Time Information - + Frame: - + 000'000'000 - + 000'000'000 - + Time: - + 00:00:00 - + 00:00:00 - + BBT: - + 000|00|0000 - + 000|00|0000 - + Settings - + הגדרות - + BPM - + Use JACK Transport - + Use Ableton Link - + &New - + Ctrl+N - + Ctrl+N - + &Open... - + &פתיחה... - - + + Open... - + פתיחה... - + Ctrl+O - + Ctrl+O - + &Save - + &שמירה - + Ctrl+S - + Ctrl+S - + Save &As... - + ש&מירה בשם... - - + + Save As... - + שמירה בשם... - + Ctrl+Shift+S - + &Quit - + י&ציאה - + Ctrl+Q - + Ctrl+Q - + &Start - + F5 - + F5 - + St&op - + F6 - + F6 - + &Add Plugin... - + Ctrl+A - + Ctrl+A - + &Remove All - + לה&סיר הכול - + Enable - + הפעלה - + Disable - + השבתה - + 0% Wet (Bypass) - + 100% Wet - + 0% Volume (Mute) - + 100% Volume - + Center Balance - + &Play - + ני&גון - + Ctrl+Shift+P - + &Stop - + Ctrl+Shift+X - + Ctrl+Shift+X - + &Backwards - + Ctrl+Shift+B - + &Forwards - + Ctrl+Shift+F - + &Arrange - + Ctrl+G - - + + &Refresh - + Ctrl+R - + Ctrl+R - + Save &Image... - + Auto-Fit - + Zoom In - + התקרבות - + Ctrl++ - + Ctrl++ - + Zoom Out - + התרחקות - + Ctrl+- - + Ctrl+- - + Zoom 100% - + תקריב של 100% - + Ctrl+1 - + Ctrl+1 - + Show &Toolbar - + &Configure Carla - + &About - + על &אודות - + About &JUCE - + על או&דות JUCE - + About &Qt - + על אודו&ת Qt - + Show Canvas &Meters - + Show Canvas &Keyboard - + Show Internal - + Show External - + Show Time Panel - + Show &Side Panel - + + Ctrl+P + + + + &Connect... - + Compact Slots - + Expand Slots - + Perform secret 1 - + Perform secret 2 - + Perform secret 3 - + Perform secret 4 - + Perform secret 5 - + Add &JACK Application... - + &Configure driver... - + Panic - + Open custom driver panel... + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + + CarlaHostWindow - + Export as... - + ייצוא בשם... - - - - + + + + Error - + שגיאה - + Failed to load project - + טעינת המיזם נכשלה - + Failed to save project - + שמירת המיזם נכשלה - + Quit - + יציאה - + Are you sure you want to quit Carla? - + לצאת מ־Carla? - + Could not connect to Audio backend '%1', possible reasons: %2 - + Could not connect to Audio backend '%1' - + Warning - + אזהרה - + There are still some plugins loaded, you need to remove them to stop the engine. Do you want to do this now? - - - - - CarlaInstrumentView - - - Show GUI - + חלק מהתוספים עדיין פועלים, יש להסירם כדי לכבות את המנוע. +לעשות זאת כעת? @@ -1938,7 +1209,7 @@ Do you want to do this now? Settings - + הגדרות @@ -1983,35 +1254,35 @@ Do you want to do this now? Widget - + יישומון - + Main - + Canvas - + Engine - + מנוע File Paths - + נתיבי קובץ Plugin Paths - + נתיבי תוסף @@ -2020,912 +1291,3556 @@ Do you want to do this now? - + Experimental - + <b>Main</b> - + Paths - + נתיבים - + Default project folder: - + Interface + ממשק + + + + Use "Classic" as default rack skin - + Interface refresh interval: - - + + ms - + מ״ש - + Show console output in Logs tab (needs engine restart) - + Show a confirmation dialog before quitting - - + + Theme - + ערכת נושא - + Use Carla "PRO" theme (needs restart) - + Color scheme: - + ערכת צבעים: - + Black - + צבע שחור - + System - + מערכת - + Enable experimental features - + <b>Canvas</b> - + Bezier Lines - + Theme: - + ערכת נושא: - + Size: - + גודל: - + 775x600 - + 775x600 - + 1550x1200 - - - - - 3100x2400 - - - - - 4650x3600 - - - - - 6200x4800 - + 1550x1200 - Options + 3100x2400 + 3100x2400 + + + + 4650x3600 + 4650x3600 + + + + 6200x4800 + 6200x4800 + + + + 12400x9600 - + + Options + אפשרויות + + + Auto-hide groups with no ports - + Auto-select items on hover - + Basic eye-candy (group shadows) - + Render Hints - + Anti-Aliasing - + החלקת עקומות - + Full canvas repaints (slower, but prevents drawing issues) - + <b>Engine</b> - + <b>מנוע</b> - - + + Core - + Single Client - + לקוח יחיד - + Multiple Clients - + לקוחות מרובים - - + + Continuous Rack - - + + Patchbay - + Audio driver: - + Process mode: - - - - + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog - + Max Parameters: - + ... - + ... - + Reset Xrun counter after project load - + Plugin UIs - - + + How much time to wait for OSC GUIs to ping back the host - + UI Bridge Timeout: - + Use OSC-GUI bridges when possible, this way separating the UI from DSP code - + Use UI bridges instead of direct handling when possible - + Make plugin UIs always-on-top - + Make plugin UIs appear on top of Carla (needs restart) - + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS - - + + Restart the engine to load the new settings - + <b>OSC</b> - + Enable OSC - + Enable TCP port - - + + Use specific port: - + Overridden by CARLA_OSC_TCP_PORT env var - - + + Use randomly assigned port - + Enable UDP port - + Overridden by CARLA_OSC_UDP_PORT env var - + DSSI UIs require OSC UDP port enabled - + <b>File Paths</b> - + Audio - + שמע - + MIDI - + Used for the "audiofile" plugin - + Used for the "midifile" plugin - - + + Add... - + הוספה... - - + + Remove - + הסרה - - + + Change... - + שינוי... - + <b>Plugin Paths</b> - + LADSPA - + DSSI - + LV2 - + VST2 - + VST3 - + SF2/3 - + SFZ - + + JSFX + + + + + CLAP + + + + Restart Carla to find new plugins - + <b>Wine</b> - + Executable - + Path to 'wine' binary: - + Prefix - + Auto-detect Wine prefix based on plugin filename - + Fallback: - + נסיגה: - + Note: WINEPREFIX env var is preferred over this fallback - + Realtime Priority - + Base priority: - + WineServer priority: - + These options are not available for Carla as plugin - + <b>Experimental</b> - + Experimental options! Likely to be unstable! - + Enable plugin bridges - + Enable Wine bridges - + Enable jack applications - + Export single plugins to LV2 - + + Use system/desktop-theme icons (needs restart) + + + + Load Carla backend in global namespace (NOT RECOMMENDED) - + Fancy eye-candy (fade-in/out groups, glow connections) - + Use OpenGL for rendering (needs restart) - + High Quality Anti-Aliasing (OpenGL only) - + Render Ardour-style "Inline Displays" - + Force mono plugins as stereo by running 2 instances at the same time. This mode is not available for VST plugins. - + Force mono plugins as stereo - - Prevent plugins from doing bad stuff (needs restart) + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. - - Whenever possible, run the plugins in bridge mode. + + Prevent unsafe calls from plugins (needs restart) - + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + Run plugins in bridge mode when possible - - - - + + + + Add Path + הוספת נתיב + + + + Dialog + + + Carla Control - Connect + + + + + Remote setup + + + + + UDP Port: + + + + + Remote host: + + + + + TCP Port: + + + + + Set value + + + + + TextLabel + + + + + Scale Points - CompressorControlDialog + DriverSettingsW - - Threshold: + + Driver Settings - - Volume at which the compression begins to take place + + Device: - - Ratio: + + Buffer size: - - How far the compressor must turn the volume down after crossing the threshold + + Sample rate: - - Attack: + + Triple buffer - - Speed at which the compressor starts to compress the audio + + Show Driver Control Panel - - Release: + + Restart the engine to load the new settings + יש להפעיל את המנוע מחדש לטעינת ההגדרות החדשות + + + + ExportProjectDialog + + + Export project - - Speed at which the compressor ceases to compress the audio + + Export as loop (remove extra bar) - - Knee: + + Export between loop markers - - Smooth out the gain reduction curve around the threshold + + Render Looped Section: - - Range: + + time(s) - - Maximum gain reduction + + File format settings + הגדרות פורמט קובץ + + + + File format: + פורמט קובץ: + + + + Sampling rate: + קצב דגימה: + + + + 44100 Hz + 44100 Hz + + + + 48000 Hz + 48000 Hz + + + + 88200 Hz + 88200 Hz + + + + 96000 Hz + 96000 Hz + + + + 192000 Hz + 192000 Hz + + + + Bit depth: - - Lookahead Length: + + 16 Bit integer - - How long the compressor has to react to the sidechain signal ahead of time + + 24 Bit integer - - Hold: + + 32 Bit float - - Delay between attack and release stages + + Stereo mode: + מצב סטריאו: + + + + Mono + מונו + + + + Stereo + סטריאו + + + + Joint stereo - - RMS Size: + + Compression level: + רמת כיווץ: + + + + Bitrate: - - Size of the RMS buffer + + 64 KBit/s - - Input Balance: + + 128 KBit/s - - Bias the input audio to the left/right or mid/side + + 160 KBit/s - - Output Balance: + + 192 KBit/s - - Bias the output audio to the left/right or mid/side + + 256 KBit/s - - Stereo Balance: + + 320 KBit/s - - Bias the sidechain signal to the left/right or mid/side + + Use variable bitrate - - Stereo Link Blend: + + Quality settings + הגדרות איכות + + + + Interpolation: - - Blend between unlinked/maximum/average/minimum stereo linking modes + + Zero order hold - - Tilt Gain: + + Sinc worst (fastest) - - Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + Sinc medium (recommended) - - Tilt Frequency: + + Sinc best (slowest) - - Center frequency of sidechain tilt filter + + Start + התחלה + + + + Cancel + ביטול + + + + InstrumentFunctionNoteStacking + + + octave - - Mix: + + + Major - - Balance between wet and dry signals + + Majb5 - - Auto Attack: + + minor - - Automatically control attack value depending on crest factor + + minb5 - - Auto Release: + + sus2 - - Automatically control release value depending on crest factor + + sus4 - - Output gain + + aug - - + + augsus4 + + + + + tri + + + + + 6 + + + + + 6sus4 + + + + + 6add9 + + + + + m6 + + + + + m6add9 + + + + + 7 + + + + + 7sus4 + + + + + 7#5 + 7#5 + + + + 7b5 + + + + + 7#9 + 7#9 + + + + 7b9 + + + + + 7#5#9 + 7#5#9 + + + + 7#5b9 + 7#5b9 + + + + 7b5b9 + + + + + 7add11 + + + + + 7add13 + + + + + 7#11 + 7#11 + + + + Maj7 + + + + + Maj7b5 + + + + + Maj7#5 + Maj7#5 + + + + Maj7#11 + Maj7#11 + + + + Maj7add13 + + + + + m7 + m7 + + + + m7b5 + m7b5 + + + + m7b9 + m7b9 + + + + m7add11 + m7add11 + + + + m7add13 + m7add13 + + + + m-Maj7 + m-Maj7 + + + + m-Maj7add11 + m-Maj7add11 + + + + m-Maj7add13 + m-Maj7add13 + + + + 9 + 9 + + + + 9sus4 + 9sus4 + + + + add9 + add9 + + + + 9#5 + 9#5 + + + + 9b5 + 9b5 + + + + 9#11 + 9#11 + + + + 9b13 + 9b13 + + + + Maj9 + Maj9 + + + + Maj9sus4 + Maj9sus4 + + + + Maj9#5 + Maj9#5 + + + + Maj9#11 + Maj9#11 + + + + m9 + m9 + + + + madd9 + madd9 + + + + m9b5 + m9b5 + + + + m9-Maj7 + m9-Maj7 + + + + 11 + 11 + + + + 11b9 + 11b9 + + + + Maj11 + Maj11 + + + + m11 + m11 + + + + m-Maj11 + m-Maj11 + + + + 13 + 13 + + + + 13#9 + 13#9 + + + + 13b9 + 13b9 + + + + 13b5b9 + 13b5b9 + + + + Maj13 + + + + + m13 + m13 + + + + m-Maj13 + m-Maj13 + + + + Harmonic minor + + + + + Melodic minor + + + + + Whole tone + + + + + Diminished + + + + + Major pentatonic + + + + + Minor pentatonic + + + + + Jap in sen + + + + + Major bebop + + + + + Dominant bebop + + + + + Blues + + + + + Arabic + + + + + Enigmatic + + + + + Neopolitan + + + + + Neopolitan minor + + + + + Hungarian minor + + + + + Dorian + + + + + Phrygian + + + + + Lydian + + + + + Mixolydian + + + + + Aeolian + + + + + Locrian + + + + + Minor + + + + + Chromatic + + + + + Half-Whole Diminished + + + + + 5 + 5 + + + + Phrygian dominant + + + + + Persian + + + + + InstrumentSoundShaping + + + VOLUME + + + + + Volume + עוצמת שמע + + + + CUTOFF + + + + + Cutoff frequency + + + + + RESO + + + + + Resonance + + + + + JackAppDialog + + + Add JACK Application + + + + + Note: Features not implemented yet are greyed out + + + + + Application + + + + + Name: + + + + + Application: + + + + + From template + + + + + Custom + + + + + Template: + + + + + Command: + + + + + Setup + + + + + Session Manager: + + + + + None + + + + + Audio inputs: + + + + + MIDI inputs: + + + + + Audio outputs: + + + + + MIDI outputs: + + + + + Take control of main application window + + + + + Workarounds + + + + + Wait for external application start (Advanced, for Debug only) + + + + + Capture only the first X11 Window + + + + + Use previous client output buffer as input for the next client + + + + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + + + + + Error here + + + + + NSM applications cannot use abstract or absolute paths + + + + + NSM applications cannot use CLI arguments + + + + + You need to save the current Carla project before NSM can be used + + + + + JuceAboutW + + + This program uses JUCE version %1. + + + + + MidiPatternW + + + MIDI Pattern + + + + + Time Signature: + + + + + + + 1/4 + 1/4 + + + + 2/4 + 2/4 + + + + 3/4 + 3/4 + + + + 4/4 + 4/4 + + + + 5/4 + 5/4 + + + + 6/4 + 6/4 + + + + Measures: + + + + + + + 1 + 1 + + + + 2 + 2 + + + + 3 + 3 + + + + 4 + 4 + + + + 5 + 5 + + + + 6 + 6 + + + + 7 + 7 + + + + 8 + 8 + + + + 9 + 9 + + + + 10 + 10 + + + + 11 + 11 + + + + 12 + 12 + + + + 13 + 13 + + + + 14 + 14 + + + + 15 + 15 + + + + 16 + 16 + + + + Default Length: + אורך ברירת מחדל: + + + + + 1/16 + 1/16 + + + + + 1/15 + 1/15 + + + + + 1/12 + 1/12 + + + + + 1/9 + 1/9 + + + + + 1/8 + 1/8 + + + + + 1/6 + 1/6 + + + + + 1/3 + 1/3 + + + + + 1/2 + 1/2 + + + + Quantize: + + + + + &File + &קובץ + + + + &Edit + ע&ריכה + + + + &Quit + י&ציאה + + + + Esc + + + + + &Insert Mode + + + + + F + + + + + &Velocity Mode + + + + + D + + + + + Select All + לבחור הכול + + + + A + + + + + PatchesDialog + + + + Qsynth: Channel Preset + + + + + + Bank selector + + + + + + Bank + + + + + + Program selector + + + + + + Patch + + + + + + Name + + + + + + OK + אישור + + + + + Cancel + ביטול + + + + PluginBrowser + + + no description + + + + + A native amplifier plugin + + + + + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track + + + + + Boost your bass the fast and simple way + + + + + Customizable wavetable synthesizer + + + + + An oversampling bitcrusher + + + + + Carla Patchbay Instrument + + + + + Carla Rack Instrument + + + + + A dynamic range compressor. + + + + + A 4-band Crossover Equalizer + + + + + A native delay plugin + + + + + A Dual filter plugin + + + + + plugin for processing dynamics in a flexible way + + + + + A native eq plugin + + + + + A native flanger plugin + + + + + Emulation of GameBoy (TM) APU + + + + + Player for GIG files + + + + + Filter for importing Hydrogen files into LMMS + + + + + Versatile drum synthesizer + + + + + List installed LADSPA plugins + + + + + plugin for using arbitrary LADSPA-effects inside LMMS. + + + + + Incomplete monophonic imitation TB-303 + + + + + plugin for using arbitrary LV2-effects inside LMMS. + + + + + plugin for using arbitrary LV2 instruments inside LMMS. + + + + + Filter for exporting MIDI-files from LMMS + + + + + Filter for importing MIDI-files into LMMS + + + + + Monstrous 3-oscillator synth with modulation matrix + + + + + A multitap echo delay plugin + + + + + A NES-like synthesizer + + + + + 2-operator FM Synth + + + + + Additive Synthesizer for organ-like sounds + + + + + GUS-compatible patch instrument + + + + + Plugin for controlling knobs with sound peaks + + + + + Reverb algorithm by Sean Costello + + + + + Player for SoundFont files + + + + + LMMS port of sfxr + + + + + Emulation of the MOS6581 and MOS8580 SID. +This chip was used in the Commodore 64 computer. + + + + + A graphical spectrum analyzer. + + + + + Plugin for enhancing stereo separation of a stereo input file + + + + + Plugin for freely manipulating stereo output + + + + + Tuneful things to bang on + + + + + Three powerful oscillators you can modulate in several ways + + + + + A stereo field visualizer. + + + + + VST-host for using VST(i)-plugins within LMMS + + + + + Vibrating string modeler + + + + + plugin for using arbitrary VST effects inside LMMS. + + + + + 4-oscillator modulatable wavetable synth + + + + + plugin for waveshaping + + + + + Mathematical expression parser + + + + + Embedded ZynAddSubFX + + + + + An all-pass filter allowing for extremely high orders. + + + + + Granular pitch shifter + + + + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. + + + + + Basic Slicer + + + + + Tap to the beat + + + + + PluginEdit + + + Plugin Editor + עורך התוספים + + + + Edit + + + + + Control + + + + + MIDI Control Channel: + + + + + N + + + + + Output dry/wet (100%) + + + + + Output volume (100%) + + + + + Balance Left (0%) + + + + + + Balance Right (0%) + + + + + Use Balance + + + + + Use Panning + + + + + Settings + + + + + Use Chunks + + + + + Audio: + + + + + Fixed-Size Buffer + + + + + Force Stereo (needs reload) + + + + + MIDI: + + + + + Map Program Changes + + + + + Send Notes + + + + + Send Bank/Program Changes + + + + + Send Control Changes + + + + + Send Channel Pressure + + + + + Send Note Aftertouch + + + + + Send Pitchbend + + + + + Send All Sound/Notes Off + + + + + +Plugin Name + + + + + + Program: + + + + + MIDI Program: + + + + + Save State + שמירת מצב + + + + Load State + + + + + Information + + + + + Label/URI: + + + + + Name: + + + + + Type: + + + + + Maker: + + + + + Copyright: + + + + + Unique ID: + + + + + PluginFactory + + + Plugin not found. + + + + + LMMS plugin %1 does not have a plugin descriptor named %2! + + + + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + + + PluginParameter + + + Form + + + + + Parameter Name + + + + + TextLabel + + + + + ... + + + + + PluginRefreshDialog + + + Plugin Refresh + + + + + Search for: + + + + + All plugins, ignoring cache + + + + + Updated plugins only + + + + + Check previously invalid plugins + + + + + Press 'Scan' to begin the search + + + + + Scan + + + + + >> Skip + + + + + Close + + + + + PluginWidget + + + + + + + Frame + + + + + Enable + + + + + On/Off + + + + + + + + PluginName + + + + + MIDI + + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + ממשק משתמש + + + + Edit + + + + + Remove + + + + + Plugin Name + + + + + Preset: + מערך: + + + + ProjectRenderer + + + WAV (*.wav) + + + + + FLAC (*.flac) + + + + + OGG (*.ogg) + + + + + MP3 (*.mp3) + + + + + QGroupBox + + + + Settings for %1 + + + + + QObject + + + Reload Plugin + + + + + Show GUI + הצגת ממשק המשתמש + + + + Help + + + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + + + + QWidget + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + כן + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + File: %1 + + + + + File: + + + + + XYControllerW + + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + + + + + lmms::AmplifierControls + + + Volume + + + + + Panning + + + + + Left gain + + + + + Right gain + + + + + lmms::AudioFileProcessor + + + Amplify + + + + + Start of sample + + + + + End of sample + + + + + Loopback point + + + + + Reverse sample + + + + + Loop mode + + + + + Stutter + + + + + Interpolation mode + + + + + None + + + + + Linear + + + + + Sinc + + + + + Sample not found + + + + + lmms::AudioJack + + + JACK client restarted + + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + + + + + Client name + + + + + Channels + + + + + lmms::AudioOss + + + Device + + + + + Channels + + + + + lmms::AudioPortAudio::setupWidget + + + Backend + + + + + Device + + + + + lmms::AudioPulseAudio + + + Device + + + + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + + + + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + Gain - - Output volume - - - - - Input gain - - - - - Input volume - - - - - Root Mean Square - - - - - Use RMS of the input - - - - - Peak - - - - - Use absolute value of the input - - - - - Left/Right - - - - - Compress left and right audio - - - - - Mid/Side - - - - - Compress mid and side audio - - - - - Compressor - - - - - Compress the audio - - - - - Limiter - - - - - Set Ratio to infinity (is not guaranteed to limit audio volume) - - - - - Unlinked - - - - - Compress each channel separately - - - - - Maximum - - - - - Compress based on the loudest channel - - - - - Average - - - - - Compress based on the averaged channel volume - - - - - Minimum - - - - - Compress based on the quietest channel - - - - - Blend - - - - - Blend between stereo linking modes - - - - - Auto Makeup Gain - - - - - Automatically change makeup gain depending on threshold, knee, and ratio settings - - - - - - Soft Clip - - - - - Play the delta signal - - - - - Use the compressor's output as the sidechain input - - - - - Lookahead Enabled - - - - - Enable Lookahead, which introduces 20 milliseconds of latency + + Ratio - CompressorControls + lmms::BitInvader + + + Sample length + + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + + Input gain + + + + + Input noise + + + + + Output gain + + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls Threshold @@ -3068,63 +4983,5261 @@ This mode is not available for VST plugins. - Controller + lmms::Controller - + Controller %1 - ControllerConnectionDialog + lmms::DelayControls - - Connection Settings + + Delay samples - - MIDI CONTROLLER + + Feedback - + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + + + + + Output gain + + + + + Attack time + + + + + Release time + + + + + Stereo mode + + + + + lmms::Effect + + + Effect enabled + + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + + + + + Denominator + + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + Input channel - - CHANNEL + + Output channel - + Input controller + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain + + + + + Size + + + + + Color + + + + + Output gain + + + + + lmms::SaControls + + + Pause + + + + + Reference freeze + + + + + Waterfall + + + + + Averaging + + + + + Stereo + + + + + Peak hold + + + + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type + + + + + Peak envelope resolution + + + + + Spectrum display resolution + + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + + + + + + + Audible + + + + + Bass + + + + + Mids + + + + + High + + + + + Extended + + + + + Loud + + + + + Silent + + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + + Hanning + + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + + + + + Panning + + + + + Mixer channel + + + + + + Sample track + + + + + lmms::Scale + + + empty + + + + + lmms::Sf2Instrument + + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + + Cutoff frequency + + + + + Resonance + + + + + Filter type + + + + + Voice 3 off + + + + + Volume + + + + + Chip model + + + + + lmms::SlicerT + + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + + + + + lmms::Song + + + Tempo + + + + + Master volume + + + + + Master pitch + + + + + Aborting project load + + + + + Project file contains local paths to plugins, which could be used to run malicious code. + + + + + Can't load project: Project file contains local paths to plugins. + + + + + LMMS Error report + + + + + (repeated %1 times) + + + + + The following errors occurred while loading: + + + + + lmms::StereoEnhancerControls + + + Width + + + + + lmms::StereoMatrixControls + + + Left to Left + + + + + Left to Right + + + + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + + + + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + Input controller + + + + CONTROLLER - - + + Auto Detect - + MIDI-devices to receive MIDI-events from - + USER CONTROLLER - + MAPPING FUNCTION @@ -3134,518 +10247,336 @@ This mode is not available for VST plugins. - + Cancel - + LMMS - LMMS + - + Cycle Detected. - ControllerRackView + lmms::gui::ControllerRackView - + Controller Rack - + Add - הוסף + - + Confirm Delete - + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - ControllerView + lmms::gui::ControllerView - + Controls - + Rename controller - + Enter the new name for this controller - + LFO - - &Remove this controller + + Move &up + Move &down + + + + + &Remove this controller + + + + Re&name this controller - CrossoverEQControlDialog + lmms::gui::CrossoverEQControlDialog - + Band 1/2 crossover: - + Band 2/3 crossover: - + Band 3/4 crossover: - + Band 1 gain - + Band 1 gain: - + Band 2 gain - + Band 2 gain: - + Band 3 gain - + Band 3 gain: - + Band 4 gain - + Band 4 gain: - + Band 1 mute - + Mute band 1 - + Band 2 mute - + Mute band 2 - + Band 3 mute - + Mute band 3 - + Band 4 mute - + Mute band 4 - DelayControls + lmms::gui::DelayControlsDialog - - Delay samples - - - - - Feedback - - - - - LFO frequency - - - - - LFO amount - - - - - Output gain - - - - - DelayControlsDialog - - + DELAY - + Delay time - + FDBK - + Feedback amount - + RATE - + LFO frequency - + AMNT - + LFO amount - + Out gain - + Gain - Dialog + lmms::gui::DispersionControlDialog - - Add JACK Application + + AMOUNT - - Note: Features not implemented yet are greyed out + + Number of all-pass filters - - Application - - - - - Name: - - - - - Application: - - - - - From template - - - - - Custom - - - - - Template: - - - - - Command: - - - - - Setup - - - - - Session Manager: - - - - - None - - - - - Audio inputs: - - - - - MIDI inputs: - - - - - Audio outputs: - - - - - MIDI outputs: - - - - - Take control of main application window - - - - - Workarounds - - - - - Wait for external application start (Advanced, for Debug only) - - - - - Capture only the first X11 Window - - - - - Use previous client output buffer as input for the next client - - - - - Simulate 16 JACK MIDI outputs, with MIDI channel as port index - - - - - Error here - - - - - Carla Control - Connect - - - - - Remote setup - - - - - UDP Port: - - - - - Remote host: - - - - - TCP Port: - - - - - Reported host - - - - - Automatic - - - - - Custom: - - - - - In some networks (like USB connections), the remote system cannot reach the local network. You can specify here which hostname or IP to make the remote Carla connect to. -If you are unsure, leave it as 'Automatic'. - - - - - Set value - - - - - TextLabel - - - - - Scale Points - - - - - DriverSettingsW - - - Driver Settings - - - - - Device: - - - - - Buffer size: - - - - - Sample rate: - - - - - Triple buffer - - - - - Show Driver Control Panel - - - - - Restart the engine to load the new settings - - - - - DualFilterControlDialog - - - + FREQ - - - Cutoff frequency + + Frequency: - - + RESO + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + Resonance - - + + GAIN - - + + Gain - + MIX - + Mix @@ -3655,1118 +10586,536 @@ If you are unsure, leave it as 'Automatic'. - + Filter 2 enabled - + Enable/disable filter 1 - + Enable/disable filter 2 - DualFilterControls + lmms::gui::DynProcControlDialog - - Filter 1 enabled + + INPUT - - Filter 1 type + + Input gain: - - Cutoff frequency 1 + + OUTPUT - - Q/Resonance 1 + + Output gain: - - Gain 1 + + ATTACK - - Mix + + Peak attack time: - - Filter 2 enabled + + RELEASE - - Filter 2 type + + Peak release time: - - Cutoff frequency 2 + + + Reset wavegraph - - Q/Resonance 2 + + + Smooth wavegraph - - Gain 2 + + + Increase wavegraph amplitude by 1 dB - - - Low-pass + + + Decrease wavegraph amplitude by 1 dB - - - Hi-pass + + Stereo mode: maximum - - - Band-pass csg + + Process based on the maximum of both stereo channels - - - Band-pass czpg + + Stereo mode: average - - - Notch + + Process based on the average of both stereo channels - - - All-pass + + Stereo mode: unlinked - - - Moog - - - - - - 2x Low-pass - - - - - - RC Low-pass 12 dB/oct - - - - - - RC Band-pass 12 dB/oct - - - - - - RC High-pass 12 dB/oct - - - - - - RC Low-pass 24 dB/oct - - - - - - RC Band-pass 24 dB/oct - - - - - - RC High-pass 24 dB/oct - - - - - - Vocal Formant - - - - - - 2x Moog - - - - - - SV Low-pass - - - - - - SV Band-pass - - - - - - SV High-pass - - - - - - SV Notch - - - - - - Fast Formant - - - - - - Tripole + + Process each stereo channel independently - Editor + lmms::gui::Editor - + Transport controls - + Play (Space) - + Stop (Space) - + Record - + Record while playing - + Toggle Step Recording - Effect + lmms::gui::EffectRackView - - Effect enabled - - - - - Wet/Dry mix - - - - - Gate - - - - - Decay - - - - - EffectChain - - - Effects enabled - - - - - EffectRackView - - + EFFECTS CHAIN - + Add effect - EffectSelectDialog + lmms::gui::EffectSelectDialog - + Add effect - - + + Name - + Type - + + All + + + + + Search + + + + Description - + Author - EffectView + lmms::gui::EffectView - + On/Off - + W/D - + Wet Level: - + DECAY - + Time: - + GATE - + Gate: - + Controls - + Move &up - + Move &down - + &Remove this plugin - EnvelopeAndLfoParameters + lmms::gui::EnvelopeAndLfoView - - Env pre-delay - - - - - Env attack - - - - - Env hold - - - - - Env decay - - - - - Env sustain - - - - - Env release - - - - - Env mod amount - - - - - LFO pre-delay - - - - - LFO attack - - - - - LFO frequency - - - - - LFO mod amount - - - - - LFO wave shape - - - - - LFO frequency x 100 - - - - - Modulate env amount - - - - - EnvelopeAndLfoView - - - - DEL - - - - - - Pre-delay: - - - - - - ATT - - - - - - Attack: - - - - - HOLD - - - - - Hold: - - - - - DEC - - - - - Decay: - - - - - SUST - - - - - Sustain: - - - - - REL - - - - - Release: - - - - - + + AMT - - + + Modulation amount: - + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + SPD - + Frequency: - + FREQ x 100 - + Multiply LFO frequency by 100 - - MODULATE ENV AMOUNT + + MOD ENV AMOUNT - + Control envelope amount by this LFO - - ms/LFO: - - - - + Hint - + Drag and drop a sample into this window. - EqControls + lmms::gui::EnvelopeGraph - - Input gain + + Scaling - - Output gain + + Dynamic - - Low-shelf gain + + Uses absolute spacings but switches to relative spacing if it's running out of space - - Peak 1 gain + + Absolute - - Peak 2 gain + + Provides enough potential space for each segment but does not scale - - Peak 3 gain + + Relative - - Peak 4 gain - - - - - High-shelf gain - - - - - HP res - - - - - Low-shelf res - - - - - Peak 1 BW - - - - - Peak 2 BW - - - - - Peak 3 BW - - - - - Peak 4 BW - - - - - High-shelf res - - - - - LP res - - - - - HP freq - - - - - Low-shelf freq - - - - - Peak 1 freq - - - - - Peak 2 freq - - - - - Peak 3 freq - - - - - Peak 4 freq - - - - - High-shelf freq - - - - - LP freq - - - - - HP active - - - - - Low-shelf active - - - - - Peak 1 active - - - - - Peak 2 active - - - - - Peak 3 active - - - - - Peak 4 active - - - - - High-shelf active - - - - - LP active - - - - - LP 12 - - - - - LP 24 - - - - - LP 48 - - - - - HP 12 - - - - - HP 24 - - - - - HP 48 - - - - - Low-pass type - - - - - High-pass type - - - - - Analyse IN - - - - - Analyse OUT + + Always uses all of the available space to display the envelope graph - EqControlsDialog + lmms::gui::EqControlsDialog - + HP - + Low-shelf - + Peak 1 - + Peak 2 - + Peak 3 - + Peak 4 - + High-shelf - + LP - + Input gain - - - + + + Gain - + Output gain - + Bandwidth: - + Octave - - Resonance : + + Resonance: - + Frequency: - + LP group - + HP group - EqHandle + lmms::gui::EqHandle - + Reso: - + BW: - - + + Freq: - ExportProjectDialog + lmms::gui::ExportProjectDialog - - Export project - - - - - Export as loop (remove extra bar) - - - - - Export between loop markers - - - - - Render Looped Section: - - - - - time(s) - - - - - File format settings - - - - - File format: - - - - - Sampling rate: - - - - - 44100 Hz - 44100 Hz - - - - 48000 Hz - 48000 Hz - - - - 88200 Hz - 88200 Hz - - - - 96000 Hz - 96000 Hz - - - - 192000 Hz - 192000 Hz - - - - Bit depth: - - - - - 16 Bit integer - - - - - 24 Bit integer - - - - - 32 Bit float - - - - - Stereo mode: - - - - - Mono - מונו - - - - Stereo - סטריאו - - - - Joint stereo - - - - - Compression level: - רמת כיווץ: - - - - Bitrate: - - - - - 64 KBit/s - - - - - 128 KBit/s - - - - - 160 KBit/s - - - - - 192 KBit/s - - - - - 256 KBit/s - - - - - 320 KBit/s - - - - - Use variable bitrate - - - - - Quality settings - - - - - Interpolation: - - - - - Zero order hold - - - - - Sinc worst (fastest) - - - - - Sinc medium (recommended) - - - - - Sinc best (slowest) - - - - - Oversampling: - - - - - 1x (None) - - - - - 2x - - - - - 4x - - - - - 8x - - - - - Start - - - - - Cancel - - - - + Could not open file - + Could not open file %1 for writing. Please make sure you have write permission to the file and the directory containing the file and try again! @@ -4787,4150 +11136,3669 @@ Please make sure you have write permission to the file and the directory contain - + Error - + Error while determining file-encoder device. Please try to choose a different output format. - + Rendering: %1% - Fader + lmms::gui::Fader - + Set value - + Please enter a new value between %1 and %2: + + + Volume: %1 dBFS + + - FileBrowser + lmms::gui::FileBrowser - - User content - - - - - Factory content - - - - + Browser - + Search - + Refresh list + + + User content + + + + + Factory content + + + + + Hidden content + + - FileBrowserTreeWidget + lmms::gui::FileBrowserTreeWidget - + Send to active instrument-track - + Open containing folder - + Song Editor - - BB Editor + + Pattern Editor - + Send to new AudioFileProcessor instance - + Send to new instrument track - + (%2Enter) - + Send to new sample track (Shift + Enter) - + Loading sample - + Please wait, loading sample for preview... - + Error - + %1 does not appear to be a valid %2 file - + --- Factory files --- - FlangerControls + lmms::gui::FileDialog - - Delay samples + + %1 files - - LFO frequency + + All audio files - - Seconds - - - - - Stereo phase - - - - - Regen - - - - - Noise - - - - - Invert + + Other files - FlangerControlsDialog + lmms::gui::FlangerControlsDialog - + DELAY - + Delay time: - + RATE - + Period: - + AMNT - + Amount: - + PHASE - + Phase: - + FDBK - + Feedback amount: - + NOISE - + White noise amount: - + Invert - FreeBoyInstrument + lmms::gui::FloatModelEditorBase - - Sweep time + + Set linear - - Sweep direction + + Set logarithmic - - Sweep rate shift amount + + + Set value - - - Wave pattern duty cycle + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: - - Channel 1 volume - - - - - - - Volume sweep direction - - - - - - - Length of each step in sweep - - - - - Channel 2 volume - - - - - Channel 3 volume - - - - - Channel 4 volume - - - - - Shift Register width - - - - - Right output level - - - - - Left output level - - - - - Channel 1 to SO2 (Left) - - - - - Channel 2 to SO2 (Left) - - - - - Channel 3 to SO2 (Left) - - - - - Channel 4 to SO2 (Left) - - - - - Channel 1 to SO1 (Right) - - - - - Channel 2 to SO1 (Right) - - - - - Channel 3 to SO1 (Right) - - - - - Channel 4 to SO1 (Right) - - - - - Treble - - - - - Bass + + Please enter a new value between %1 and %2: - FreeBoyInstrumentView + lmms::gui::FreeBoyInstrumentView - + Sweep time: - + Sweep time - + Sweep rate shift amount: - + Sweep rate shift amount - - + + Wave pattern duty cycle: + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + - Wave pattern duty cycle - - - - - Square channel 1 volume: - - - - - Square channel 1 volume - - - - - - + Length of each step in sweep: - - - + + + Length of each step in sweep - + Square channel 2 volume: - + Square channel 2 volume - + Wave pattern channel volume: - + Wave pattern channel volume - + Noise channel volume: - + Noise channel volume - + SO1 volume (Right): - + SO1 volume (Right) - + SO2 volume (Left): - + SO2 volume (Left) - + Treble: - + Treble - + Bass: - + Bass - + Sweep direction - - - - - + + + + + Volume sweep direction - + Shift register width - + Channel 1 to SO1 (Right) - + Channel 2 to SO1 (Right) - + Channel 3 to SO1 (Right) - + Channel 4 to SO1 (Right) - + Channel 1 to SO2 (Left) - + Channel 2 to SO2 (Left) - + Channel 3 to SO2 (Left) - + Channel 4 to SO2 (Left) - + Wave pattern graph - MixerChannelView + lmms::gui::GigInstrumentView - - Channel send amount - - - - - Move &left - - - - - Move &right - - - - - Rename &channel - - - - - R&emove channel - - - - - Remove &unused channels - - - - - Set channel color - - - - - Remove channel color - - - - - Pick random channel color - - - - - MixerChannelLcdSpinBox - - - Assign to: - - - - - New mixer Channel - - - - - Mixer - - - Master - - - - - - - Channel %1 - - - - - Volume - ווליום - - - - Mute - - - - - Solo - - - - - MixerView - - - Mixer - - - - - Fader %1 - - - - - Mute - - - - - Mute this mixer channel - - - - - Solo - - - - - Solo mixer channel - - - - - MixerRoute - - - - Amount to send from channel %1 to channel %2 - - - - - GigInstrument - - - Bank - - - - - Patch - - - - - Gain - - - - - GigInstrumentView - - - + + Open GIG file - + Choose patch - + Gain: - + GIG Files (*.gig) - GuiApplication + lmms::gui::GranularPitchShifterControlDialog - + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + Working directory - + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - + Preparing UI - + Preparing song editor - + Preparing mixer - + Preparing controller rack - + Preparing project notes - - Preparing beat/bassline editor + + Preparing microtuner - + + Preparing pattern editor + + + + Preparing piano roll - + Preparing automation editor - InstrumentFunctionArpeggio + lmms::gui::InstrumentFunctionArpeggioView - - Arpeggio - - - - - Arpeggio type - - - - - Arpeggio range - - - - - Note repeats - - - - - Cycle steps - - - - - Skip rate - - - - - Miss rate - - - - - Arpeggio time - - - - - Arpeggio gate - - - - - Arpeggio direction - - - - - Arpeggio mode - - - - - Up - - - - - Down - - - - - Up and down - - - - - Down and up - - - - - Random - - - - - Free - - - - - Sort - - - - - Sync - - - - - InstrumentFunctionArpeggioView - - + ARPEGGIO - + RANGE - + Arpeggio range: - + octave(s) - + REP - + Note repeats: - + time(s) - + CYCLE - + Cycle notes: - + note(s) - + SKIP - + Skip rate: - - + + % - + MISS - + Miss rate: - + TIME - + Arpeggio time: - + ms - + GATE - + Arpeggio gate: - + Chord: - + Direction: - + Mode: - InstrumentFunctionNoteStacking + lmms::gui::InstrumentFunctionNoteStackingView - - octave - - - - - - Major - - - - - Majb5 - - - - - minor - - - - - minb5 - - - - - sus2 - - - - - sus4 - - - - - aug - - - - - augsus4 - - - - - tri - - - - - 6 - - - - - 6sus4 - - - - - 6add9 - - - - - m6 - - - - - m6add9 - - - - - 7 - - - - - 7sus4 - - - - - 7#5 - - - - - 7b5 - - - - - 7#9 - - - - - 7b9 - - - - - 7#5#9 - - - - - 7#5b9 - - - - - 7b5b9 - - - - - 7add11 - - - - - 7add13 - - - - - 7#11 - - - - - Maj7 - - - - - Maj7b5 - - - - - Maj7#5 - - - - - Maj7#11 - - - - - Maj7add13 - - - - - m7 - - - - - m7b5 - - - - - m7b9 - - - - - m7add11 - - - - - m7add13 - - - - - m-Maj7 - - - - - m-Maj7add11 - - - - - m-Maj7add13 - - - - - 9 - - - - - 9sus4 - - - - - add9 - - - - - 9#5 - - - - - 9b5 - - - - - 9#11 - - - - - 9b13 - - - - - Maj9 - - - - - Maj9sus4 - - - - - Maj9#5 - - - - - Maj9#11 - - - - - m9 - - - - - madd9 - - - - - m9b5 - - - - - m9-Maj7 - - - - - 11 - - - - - 11b9 - - - - - Maj11 - - - - - m11 - - - - - m-Maj11 - - - - - 13 - - - - - 13#9 - - - - - 13b9 - - - - - 13b5b9 - - - - - Maj13 - - - - - m13 - - - - - m-Maj13 - - - - - Harmonic minor - - - - - Melodic minor - - - - - Whole tone - - - - - Diminished - - - - - Major pentatonic - - - - - Minor pentatonic - - - - - Jap in sen - - - - - Major bebop - - - - - Dominant bebop - - - - - Blues - - - - - Arabic - - - - - Enigmatic - - - - - Neopolitan - - - - - Neopolitan minor - - - - - Hungarian minor - - - - - Dorian - - - - - Phrygian - - - - - Lydian - - - - - Mixolydian - - - - - Aeolian - - - - - Locrian - - - - - Minor - - - - - Chromatic - - - - - Half-Whole Diminished - - - - - 5 - - - - - Phrygian dominant - - - - - Persian - - - - - Chords - - - - - Chord type - - - - - Chord range - - - - - InstrumentFunctionNoteStackingView - - + STACKING - + Chord: - + RANGE - + Chord range: - + octave(s) - InstrumentMidiIOView + lmms::gui::InstrumentMidiIOView ENABLE MIDI INPUT - - - ENABLE MIDI OUTPUT - - - + CHAN This string must be be short, its width must be less than * width of LCD spin-box of two digits - - + + VELOC This string must be be short, its width must be less than * width of LCD spin-box of three digits - + + ENABLE MIDI OUTPUT + + + + PROG This string must be be short, its width must be less than the * width of LCD spin-box of three digits - + NOTE This string must be be short, its width must be less than * width of LCD spin-box of three digits - + MIDI devices to receive MIDI events from - + MIDI devices to send MIDI events to - - CUSTOM BASE VELOCITY + + VELOCITY MAPPING - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. + + MIDI VELOCITY - - BASE VELOCITY + + MIDI notes at this velocity correspond to 100% note velocity. - InstrumentTuningView + lmms::gui::InstrumentSoundShapingView - - MASTER PITCH - - - - - Enables the use of master pitch - - - - - InstrumentSoundShaping - - - VOLUME - - - - - Volume - ווליום - - - - CUTOFF - - - - - - Cutoff frequency - - - - - RESO - - - - - Resonance - - - - - Envelopes/LFOs - - - - - Filter type - - - - - Q/Resonance - - - - - Low-pass - - - - - Hi-pass - - - - - Band-pass csg - - - - - Band-pass czpg - - - - - Notch - - - - - All-pass - - - - - Moog - - - - - 2x Low-pass - - - - - RC Low-pass 12 dB/oct - - - - - RC Band-pass 12 dB/oct - - - - - RC High-pass 12 dB/oct - - - - - RC Low-pass 24 dB/oct - - - - - RC Band-pass 24 dB/oct - - - - - RC High-pass 24 dB/oct - - - - - Vocal Formant - - - - - 2x Moog - - - - - SV Low-pass - - - - - SV Band-pass - - - - - SV High-pass - - - - - SV Notch - - - - - Fast Formant - - - - - Tripole - - - - - InstrumentSoundShapingView - - + TARGET - + FILTER - + FREQ - + Cutoff frequency: - + Hz - + Q/RESO - + Q/Resonance: - + Envelopes, LFOs and filters are not supported by the current instrument. - InstrumentTrack + lmms::gui::InstrumentTrackView - - - unnamed_track - - - - - Base note - - - - - First note - - - - - Last note - - - - - Volume - ווליום - - - - Panning - - - - - Pitch - - - - - Pitch range - - - - + Mixer channel - - Master pitch - - - - - Enable/Disable MIDI CC - - - - - CC Controller %1 - - - - - - Default preset - - - - - InstrumentTrackView - - + Volume - ווליום + - + Volume: - ווליום: + - + VOL - ווליום + - + Panning - + Panning: - + PAN - + MIDI - + Input - + Output - + Open/Close MIDI CC Rack - - Channel %1: %2 + + %1: %2 - InstrumentTrackWindow + lmms::gui::InstrumentTrackWindow - - GENERAL SETTINGS + + Volume - - Volume - ווליום - - - + Volume: - ווליום: + - + VOL - ווליום + - + Panning - + Panning: - + PAN - + Pitch - + Pitch: - + cents - + PITCH - + Pitch range (semitones) - + RANGE - + Mixer channel - + CHANNEL - + Save current instrument track settings in a preset file - + SAVE - + Envelope, filter & LFO - + Chord stacking & arpeggio - + Effects - + MIDI - - Miscellaneous + + Tuning and transposition - + Save preset - + XML preset file (*.xpf) - + Plugin - JackApplicationW + lmms::gui::InstrumentTuningView - - NSM applications cannot use abstract or absolute paths + + GLOBAL TRANSPOSITION - - NSM applications cannot use CLI arguments + + Enables the use of global transposition - - You need to save the current Carla project before NSM can be used + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. - JuceAboutW + lmms::gui::KickerInstrumentView - - About JUCE + + Start frequency: - - <b>About JUCE</b> + + End frequency: - - This program uses JUCE version 3.x.x. + + Frequency slope: - - JUCE (Jules' Utility Class Extensions) is an all-encompassing C++ class library for developing cross-platform software. - -It contains pretty much everything you're likely to need to create most applications, and is particularly well-suited for building highly-customised GUIs, and for handling graphics and sound. - -JUCE is licensed under the GNU Public Licence version 2.0. -One module (juce_core) is permissively licensed under the ISC. - -Copyright (C) 2017 ROLI Ltd. + + Gain: - - This program uses JUCE version %1. + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: - Knob + lmms::gui::LOMMControlDialog - - Set linear + + Depth: - - Set logarithmic + + Compression amount for all bands - - - Set value + + Time: - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + Attack/release scaling for all bands - - Please enter a new value between %1 and %2: + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters - LadspaControl + lmms::gui::LadspaBrowserView - - Link channels + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: - LadspaControlDialog + lmms::gui::LadspaControlDialog - + Link Channels - + Channel - LadspaControlView + lmms::gui::LadspaControlView - + Link channels - + Value: - LadspaEffect + lmms::gui::LadspaDescription - - Unknown LADSPA plugin %1 requested. + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: - LcdFloatSpinBox + lmms::gui::LadspaMatrixControlDialog - + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + Set value - + Please enter a new value between %1 and %2: - LcdSpinBox + lmms::gui::LcdSpinBox - + Set value - + Please enter a new value between %1 and %2: - LeftRightNav + lmms::gui::LeftRightNav - - - + + + Previous - - - + + + Next - + Previous (%1) - + Next (%1) - LfoController + lmms::gui::LfoControllerDialog - - LFO Controller - - - - - Base value - - - - - Oscillator speed - - - - - Oscillator amount - - - - - Oscillator phase - - - - - Oscillator waveform - - - - - Frequency Multiplier - - - - - LfoControllerDialog - - + LFO - + BASE - + Base: - + FREQ - + LFO frequency: - + AMNT - + Modulation amount: - + PHS - + Phase offset: - + degrees - + Sine wave - + Triangle wave - + Saw wave - + Square wave - + Moog saw wave - + Exponential wave - + White noise - + User-defined shape. Double click to pick a file. - - Mutliply modulation frequency by 1 + + Multiply modulation frequency by 1 - - Mutliply modulation frequency by 100 + + Multiply modulation frequency by 100 - + Divide modulation frequency by 100 - Engine + lmms::gui::LfoGraph - - Generating wavetables - - - - - Initializing data structures - - - - - Opening audio and midi devices - - - - - Launching mixer threads + + %1 Hz - MainWindow + lmms::gui::MainWindow - + Configuration file - + Error while parsing configuration file at line %1:%2: %3 - + Could not open file - + Could not open file %1 for writing. Please make sure you have write permission to the file and the directory containing the file and try again! - + Project recovery - + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - - + + Recover - + Recover the file. Please don't run multiple instances of LMMS when you do this. - - + + Discard - + Launch a default session and delete the restored files. This is not reversible. - + Version %1 - + Preparing plugin browser - + Preparing file browsers - + My Projects - + My Samples - + My Presets - + My Home - - Root directory + + Root Directory - + Volumes - + My Computer - - &File - - - - - &New - - - - - &Open... - - - - + Loading background picture - + + &File + + + + + &New + + + + + &Open... + + + + &Save - + Save &As... - + Save as New &Version - + Save as default template - + Import... - + E&xport... - + E&xport Tracks... - + Export &MIDI... - + &Quit - + &Edit - + Undo - + Redo - + + Scales and keymaps + + + + Settings - + &View - + &Tools - + &Help - + Online Help - + Help - + About - אודות + - + Create new project - + Create new project from template - + Open existing project - + Recently opened projects - + Save current project - + Export current project - + Metronome - - + + Song Editor - - - Beat+Bassline Editor + + + Pattern Editor - - + + Piano Roll - - + + Automation Editor - - + + Mixer - + Show/hide controller rack - + Show/hide project notes - + Untitled - + Recover session. Please save your work! - + LMMS %1 - + Recovered project not saved - + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? - + Project not saved - + The current project was modified since last saving. Do you want to save it now? - + Open Project - + LMMS (*.mmp *.mmpz) - + Save Project - + LMMS Project - + LMMS Project Template - + Save project template - + Overwrite default template? - + This will overwrite your current default template. - + Help not available - + Currently there's no help available in LMMS. Please visit http://lmms.sf.net/wiki for documentation on LMMS. - + Controller Rack - + Project Notes - + Fullscreen - + Volume as dBFS - + Smooth scroll - + Enable note labels in piano roll - + MIDI File (*.mid) - - + + untitled - - + + Select file for project-export... - + Select directory for writing exported tracks... - + Save project - + Project saved - + The project %1 is now saved. - + Project NOT saved. - + The project %1 was not saved! - + Import file - + MIDI sequences - + Hydrogen projects - + All file types - MeterDialog + lmms::gui::MalletsInstrumentView - - + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + Meter Numerator - + Meter numerator - - + + Meter Denominator - + Meter denominator - + TIME SIG - MeterModel + lmms::gui::MicrotunerConfig - - Numerator + + Selected scale slot - - Denominator + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure - MidiCCRackView + lmms::gui::MidiCCRackView - - + + MIDI CC Rack - %1 - + MIDI CC Knobs: - + CC %1 - MidiController + lmms::gui::MidiClipView - - MIDI Controller + + + Transpose - - unnamed_midi_controller + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps - MidiImport + lmms::gui::MidiSetupWidget - - - Setup incomplete - - - - - You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. - - - - - You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - - - - - MIDI Time Signature Numerator - - - - - MIDI Time Signature Denominator - - - - - Numerator - - - - - Denominator - - - - - Track - - - - - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - - - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - - - - - MidiPatternW - - - MIDI Pattern - - - - - Time Signature: - - - - - - - 1/4 - - - - - 2/4 - - - - - 3/4 - - - - - 4/4 - - - - - 5/4 - - - - - 6/4 - - - - - Measures: - - - - - - - 1 - - - - - 2 - - - - - 3 - - - - - 4 - - - - - 5 - - - - - 6 - - - - - 7 - - - - - 8 - - - - - 9 - - - - - 10 - - - - - 11 - - - - - 12 - - - - - 13 - - - - - 14 - - - - - 15 - - - - - 16 - - - - - Default Length: - - - - - - 1/16 - - - - - - 1/15 - - - - - - 1/12 - - - - - - 1/9 - - - - - - 1/8 - - - - - - 1/6 - - - - - - 1/3 - - - - - - 1/2 - - - - - Quantize: - - - - - &File - - - - - &Edit - - - - - &Quit - - - - - &Insert Mode - - - - - F - - - - - &Velocity Mode - - - - - D - - - - - Select All - - - - - A - - - - - MidiPort - - - Input channel - - - - - Output channel - - - - - Input controller - - - - - Output controller - - - - - Fixed input velocity - - - - - Fixed output velocity - - - - - Fixed output note - - - - - Output MIDI program - - - - - Base velocity - - - - - Receive MIDI-events - - - - - Send MIDI-events - - - - - MidiSetupWidget - - + Device - MonstroInstrument + lmms::gui::MixerChannelLcdSpinBox - - Osc 1 volume + + Assign to: - - Osc 1 panning + + New Mixer Channel - - Osc 1 coarse detune + + Please enter a new value between %1 and %2: - - Osc 1 fine detune left - - - - - Osc 1 fine detune right - - - - - Osc 1 stereo phase offset - - - - - Osc 1 pulse width - - - - - Osc 1 sync send on rise - - - - - Osc 1 sync send on fall - - - - - Osc 2 volume - - - - - Osc 2 panning - - - - - Osc 2 coarse detune - - - - - Osc 2 fine detune left - - - - - Osc 2 fine detune right - - - - - Osc 2 stereo phase offset - - - - - Osc 2 waveform - - - - - Osc 2 sync hard - - - - - Osc 2 sync reverse - - - - - Osc 3 volume - - - - - Osc 3 panning - - - - - Osc 3 coarse detune - - - - - Osc 3 Stereo phase offset - - - - - Osc 3 sub-oscillator mix - - - - - Osc 3 waveform 1 - - - - - Osc 3 waveform 2 - - - - - Osc 3 sync hard - - - - - Osc 3 Sync reverse - - - - - LFO 1 waveform - - - - - LFO 1 attack - - - - - LFO 1 rate - - - - - LFO 1 phase - - - - - LFO 2 waveform - - - - - LFO 2 attack - - - - - LFO 2 rate - - - - - LFO 2 phase - - - - - Env 1 pre-delay - - - - - Env 1 attack - - - - - Env 1 hold - - - - - Env 1 decay - - - - - Env 1 sustain - - - - - Env 1 release - - - - - Env 1 slope - - - - - Env 2 pre-delay - - - - - Env 2 attack - - - - - Env 2 hold - - - - - Env 2 decay - - - - - Env 2 sustain - - - - - Env 2 release - - - - - Env 2 slope - - - - - Osc 2+3 modulation - - - - - Selected view - - - - - Osc 1 - Vol env 1 - - - - - Osc 1 - Vol env 2 - - - - - Osc 1 - Vol LFO 1 - - - - - Osc 1 - Vol LFO 2 - - - - - Osc 2 - Vol env 1 - - - - - Osc 2 - Vol env 2 - - - - - Osc 2 - Vol LFO 1 - - - - - Osc 2 - Vol LFO 2 - - - - - Osc 3 - Vol env 1 - - - - - Osc 3 - Vol env 2 - - - - - Osc 3 - Vol LFO 1 - - - - - Osc 3 - Vol LFO 2 - - - - - Osc 1 - Phs env 1 - - - - - Osc 1 - Phs env 2 - - - - - Osc 1 - Phs LFO 1 - - - - - Osc 1 - Phs LFO 2 - - - - - Osc 2 - Phs env 1 - - - - - Osc 2 - Phs env 2 - - - - - Osc 2 - Phs LFO 1 - - - - - Osc 2 - Phs LFO 2 - - - - - Osc 3 - Phs env 1 - - - - - Osc 3 - Phs env 2 - - - - - Osc 3 - Phs LFO 1 - - - - - Osc 3 - Phs LFO 2 - - - - - Osc 1 - Pit env 1 - - - - - Osc 1 - Pit env 2 - - - - - Osc 1 - Pit LFO 1 - - - - - Osc 1 - Pit LFO 2 - - - - - Osc 2 - Pit env 1 - - - - - Osc 2 - Pit env 2 - - - - - Osc 2 - Pit LFO 1 - - - - - Osc 2 - Pit LFO 2 - - - - - Osc 3 - Pit env 1 - - - - - Osc 3 - Pit env 2 - - - - - Osc 3 - Pit LFO 1 - - - - - Osc 3 - Pit LFO 2 - - - - - Osc 1 - PW env 1 - - - - - Osc 1 - PW env 2 - - - - - Osc 1 - PW LFO 1 - - - - - Osc 1 - PW LFO 2 - - - - - Osc 3 - Sub env 1 - - - - - Osc 3 - Sub env 2 - - - - - Osc 3 - Sub LFO 1 - - - - - Osc 3 - Sub LFO 2 - - - - - - Sine wave - - - - - Bandlimited Triangle wave - - - - - Bandlimited Saw wave - - - - - Bandlimited Ramp wave - - - - - Bandlimited Square wave - - - - - Bandlimited Moog saw wave - - - - - - Soft square wave - - - - - Absolute sine wave - - - - - - Exponential wave - - - - - White noise - - - - - Digital Triangle wave - - - - - Digital Saw wave - - - - - Digital Ramp wave - - - - - Digital Square wave - - - - - Digital Moog saw wave - - - - - Triangle wave - - - - - Saw wave - - - - - Ramp wave - - - - - Square wave - - - - - Moog saw wave - - - - - Abs. sine wave - - - - - Random - - - - - Random smooth + + Set value - MonstroView + lmms::gui::MixerChannelView - + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + Operators view - + Matrix view - - - + + + Volume - ווליום + - - - + + + Panning - - - + + + Coarse detune - - - + + + semitones - - + + Fine tune left - - - - + + + + cents - - + + Fine tune right - - + + Stereo phase offset - - - - + + + + deg - + Pulse width - + Send sync on pulse rise - + Send sync on pulse fall - + Hard sync oscillator 2 - + Reverse sync oscillator 2 - + Sub-osc mix - + Hard sync oscillator 3 - + Reverse sync oscillator 3 - - - - + + + + Attack - - + + Rate - - + + Phase - - + + Pre-delay - - + + Hold - - + + Decay - - + + Sustain - - + + Release - - + + Slope - + Mix osc 2 with osc 3 - + Modulate amplitude of osc 3 by osc 2 - + Modulate frequency of osc 3 by osc 2 - + Modulate phase of osc 3 by osc 2 - - - - - - - - - - - - - - - - - - - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + Modulation amount - MultitapEchoControlDialog + lmms::gui::MultitapEchoControlDialog Length @@ -8973,4466 +14841,2870 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. - NesInstrument + lmms::gui::NesInstrumentView - - Channel 1 coarse detune - - - - - Channel 1 volume - - - - - Channel 1 envelope length - - - - - Channel 1 duty cycle - - - - - Channel 1 sweep amount - - - - - Channel 1 sweep rate - - - - - Channel 2 Coarse detune - - - - - Channel 2 Volume - - - - - Channel 2 envelope length - - - - - Channel 2 duty cycle - - - - - Channel 2 sweep amount - - - - - Channel 2 sweep rate - - - - - Channel 3 coarse detune - - - - - Channel 3 volume - - - - - Channel 4 volume - - - - - Channel 4 envelope length - - - - - Channel 4 noise frequency - - - - - Channel 4 noise frequency sweep - - - - - Master volume - - - - - Vibrato - - - - - NesInstrumentView - - - - - + + + + Volume - ווליום + - - - + + + Coarse detune - - - + + + Envelope length - + Enable channel 1 - + Enable envelope 1 - + Enable envelope 1 loop - + Enable sweep 1 - - + + Sweep amount - - + + Sweep rate - - + + 12.5% Duty cycle - - + + 25% Duty cycle - - + + 50% Duty cycle - - + + 75% Duty cycle - + Enable channel 2 - + Enable envelope 2 - + Enable envelope 2 loop - + Enable sweep 2 - + Enable channel 3 - + Noise Frequency - + Frequency sweep - + Enable channel 4 - + Enable envelope 4 - + Enable envelope 4 loop - + Quantize noise frequency when using note frequency - + Use note frequency for noise - + Noise mode - + Master volume - + Vibrato - OpulenzInstrument + lmms::gui::OpulenzInstrumentView - - Patch - - - - - Op 1 attack - - - - - Op 1 decay - - - - - Op 1 sustain - - - - - Op 1 release - - - - - Op 1 level - - - - - Op 1 level scaling - - - - - Op 1 frequency multiplier - - - - - Op 1 feedback - - - - - Op 1 key scaling rate - - - - - Op 1 percussive envelope - - - - - Op 1 tremolo - - - - - Op 1 vibrato - - - - - Op 1 waveform - - - - - Op 2 attack - - - - - Op 2 decay - - - - - Op 2 sustain - - - - - Op 2 release - - - - - Op 2 level - - - - - Op 2 level scaling - - - - - Op 2 frequency multiplier - - - - - Op 2 key scaling rate - - - - - Op 2 percussive envelope - - - - - Op 2 tremolo - - - - - Op 2 vibrato - - - - - Op 2 waveform - - - - - FM - - - - - Vibrato depth - - - - - Tremolo depth - - - - - OpulenzInstrumentView - - - + + Attack - - + + Decay - - + + Release - - + + Frequency multiplier - OscillatorObject + lmms::gui::OrganicInstrumentView - - Osc %1 waveform + + Distortion: - - Osc %1 harmonic + + Volume: - - - Osc %1 volume + + Randomise - - - Osc %1 panning + + + Osc %1 waveform: - - - Osc %1 fine detuning left + + Osc %1 volume: - - Osc %1 coarse detuning + + Osc %1 panning: - - Osc %1 fine detuning right + + Osc %1 stereo detuning - - Osc %1 phase-offset + + cents - - Osc %1 stereo phase-detuning - - - - - Osc %1 wave shape - - - - - Modulation type %1 + + Osc %1 harmonic: - Oscilloscope + lmms::gui::Oscilloscope - + Oscilloscope - + Click to enable - PatchesDialog + lmms::gui::PatmanView - - Qsynth: Channel Preset - - - - - Bank selector - - - - - Bank - - - - - Program selector - - - - - Patch - - - - - Name - - - - - OK - - - - - Cancel - - - - - PatmanView - - + Open patch - + Loop - + Loop mode - + Tune - + Tune mode - + No file selected - + Open patch file - + Patch-Files (*.pat) - MidiClipView + lmms::gui::PatternClipView - - Open in piano-roll + + Open in Pattern Editor - - Set as ghost in piano-roll - - - - - Clear all notes - - - - + Reset name - + Change name + + + lmms::gui::PatternEditorWindow - - Add steps + + Pattern Editor - + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + Remove steps - + + Add steps + + + + Clone Steps - PeakController + lmms::gui::PeakControllerDialog - - Peak Controller - - - - - Peak Controller Bug - - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - - - - - PeakControllerDialog - - + PEAK - + LFO Controller - PeakControllerEffectControlDialog + lmms::gui::PeakControllerEffectControlDialog - + BASE - + Base: - + AMNT - + Modulation amount: - + MULT - + Amount multiplicator: - + ATCK - + Attack: - + DCAY - + Release: - + TRSH - + Treshold: - - - Mute output - - - Absolute value - - - - - PeakControllerEffectControls - - - Base value - - - - - Modulation amount - - - - - Attack - - - - - Release - - - - - Treshold - - - - Mute output - + Absolute value - - - Amount multiplicator - - - PianoRoll + lmms::gui::PeakIndicator - + + -inf + + + + + lmms::gui::PianoRoll + + Note Velocity - + Note Panning - + Mark/unmark current semitone - + Mark/unmark all corresponding octave semitones - + Mark current scale - + Mark current chord - + Unmark all - + Select all notes on this key - + Note lock - + Last note - + No key - + No scale - + No chord - + Nudge - + Snap - + Velocity: %1% - + Panning: %1% left - + Panning: %1% right - + Panning: center - + Glue notes failed - + Please select notes to glue first. - + Please open a clip by double-clicking on it! - - + + Please enter a new value between %1 and %2: - PianoRollWindow + lmms::gui::PianoRollWindow - + Play/pause current clip (Space) - + Record notes from MIDI-device/channel-piano - - Record notes from MIDI-device/channel-piano while playing song or BB track + + Record notes from MIDI-device/channel-piano while playing song or pattern track - + Record notes from MIDI-device/channel-piano, one step at the time - + Stop playing of current clip (Space) - + Edit actions - + Draw mode (Shift+D) - + Erase mode (Shift+E) - + Select mode (Shift+S) - + Pitch Bend mode (Shift+T) - + Quantize - + Quantize positions - + Quantize lengths - + File actions - + Import clip - - + + Export clip - + Copy paste controls - + Cut (%1+X) - + Copy (%1+C) - + Paste (%1+V) - + Timeline controls - + Glue - + Knife - + Fill - + Cut overlaps - + Min length as last - + Max length as last - + Zoom and note controls - + Horizontal zooming - + Vertical zooming - + Quantization - + Note length - + Key - + Scale - + Chord - + Snap mode - + Clear ghost notes - - + + Piano-Roll - %1 - - + + Piano-Roll - no clip - - + + XML clip file (*.xpt *.xptz) - + Export clip success - + Clip saved to %1 - + Import clip. - + You are about to import a clip, this will overwrite your current clip. Do you want to continue? - + Open clip - + Import clip success - + Imported clip %1! - PianoView + lmms::gui::PianoView - + Base note - + First note - + Last note - Plugin + lmms::gui::PluginBrowser - - Plugin not found - - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - - - - - Error while loading plugin - - - - - Failed to load plugin "%1"! - - - - - PluginBrowser - - + Instrument Plugins - + Instrument browser - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. - - no description - - - - - A native amplifier plugin - - - - - Simple sampler with various settings for using samples (e.g. drums) in an instrument-track - - - - - Boost your bass the fast and simple way - - - - - Customizable wavetable synthesizer - - - - - An oversampling bitcrusher - - - - - Carla Patchbay Instrument - - - - - Carla Rack Instrument - - - - - A dynamic range compressor. - - - - - A 4-band Crossover Equalizer - - - - - A native delay plugin - - - - - A Dual filter plugin - - - - - plugin for processing dynamics in a flexible way - - - - - A native eq plugin - - - - - A native flanger plugin - - - - - Emulation of GameBoy (TM) APU - - - - - Player for GIG files - - - - - Filter for importing Hydrogen files into LMMS - - - - - Versatile drum synthesizer - - - - - List installed LADSPA plugins - - - - - plugin for using arbitrary LADSPA-effects inside LMMS. - - - - - Incomplete monophonic imitation TB-303 - - - - - plugin for using arbitrary LV2-effects inside LMMS. - - - - - plugin for using arbitrary LV2 instruments inside LMMS. - - - - - Filter for exporting MIDI-files from LMMS - - - - - Filter for importing MIDI-files into LMMS - - - - - Monstrous 3-oscillator synth with modulation matrix - - - - - A multitap echo delay plugin - - - - - A NES-like synthesizer - - - - - 2-operator FM Synth - - - - - Additive Synthesizer for organ-like sounds - - - - - GUS-compatible patch instrument - - - - - Plugin for controlling knobs with sound peaks - - - - - Reverb algorithm by Sean Costello - - - - - Player for SoundFont files - - - - - LMMS port of sfxr - - - - - Emulation of the MOS6581 and MOS8580 SID. -This chip was used in the Commodore 64 computer. - - - - - A graphical spectrum analyzer. - - - - - Plugin for enhancing stereo separation of a stereo input file - - - - - Plugin for freely manipulating stereo output - - - - - Tuneful things to bang on - - - - - Three powerful oscillators you can modulate in several ways - - - - - A stereo field visualizer. - - - - - VST-host for using VST(i)-plugins within LMMS - - - - - Vibrating string modeler - - - - - plugin for using arbitrary VST effects inside LMMS. - - - - - 4-oscillator modulatable wavetable synth - - - - - plugin for waveshaping - - - - - Mathematical expression parser - - - - - Embedded ZynAddSubFX + + Search - PluginDatabaseW + lmms::gui::PluginDescWidget - - Carla - Add New - - - - - Format - - - - - Internal - - - - - LADSPA - - - - - DSSI - - - - - LV2 - - - - - VST2 - - - - - VST3 - - - - - AU - - - - - Sound Kits - - - - - Type - - - - - Effects - - - - - Instruments - - - - - MIDI Plugins - - - - - Other/Misc - - - - - Architecture - - - - - Native - - - - - Bridged - - - - - Bridged (Wine) - - - - - Requirements - - - - - With Custom GUI - - - - - With CV Ports - - - - - Real-time safe only - - - - - Stereo only - - - - - With Inline Display - - - - - Favorites only - - - - - (Number of Plugins go here) - - - - - &Add Plugin - - - - - Cancel - - - - - Refresh - - - - - Reset filters - - - - - - - - - - - - - - - - - - - - TextLabel - - - - - Format: - - - - - Architecture: - - - - - Type: - - - - - MIDI Ins: - - - - - Audio Ins: - - - - - CV Outs: - - - - - MIDI Outs: - - - - - Parameter Ins: - - - - - Parameter Outs: - - - - - Audio Outs: - - - - - CV Ins: - - - - - UniqueID: - - - - - Has Inline Display: - - - - - Has Custom GUI: - - - - - Is Synth: - - - - - Is Bridged: - - - - - Information - - - - - Name - - - - - Label/URI - - - - - Maker - - - - - Binary/Filename - - - - - Focus Text Search - - - - - Ctrl+F + + Send to new instrument track - PluginEdit + lmms::gui::ProjectNotes - - Plugin Editor - - - - - Edit - - - - - Control - - - - - MIDI Control Channel: - - - - - N - - - - - Output dry/wet (100%) - - - - - Output volume (100%) - - - - - Balance Left (0%) - - - - - - Balance Right (0%) - - - - - Use Balance - - - - - Use Panning - - - - - Settings - - - - - Use Chunks - - - - - Audio: - - - - - Fixed-Size Buffer - - - - - Force Stereo (needs reload) - - - - - MIDI: - - - - - Map Program Changes - - - - - Send Bank/Program Changes - - - - - Send Control Changes - - - - - Send Channel Pressure - - - - - Send Note Aftertouch - - - - - Send Pitchbend - - - - - Send All Sound/Notes Off - - - - - -Plugin Name - - - - - - Program: - - - - - MIDI Program: - - - - - Save State - - - - - Load State - - - - - Information - - - - - Label/URI: - - - - - Name: - - - - - Type: - - - - - Maker: - - - - - Copyright: - - - - - Unique ID: - - - - - PluginFactory - - - Plugin not found. - - - - - LMMS plugin %1 does not have a plugin descriptor named %2! - - - - - PluginParameter - - - Form - - - - - Parameter Name - - - - - ... - - - - - PluginRefreshW - - - Carla - Refresh - - - - - Search for new... - - - - - LADSPA - - - - - DSSI - - - - - LV2 - - - - - VST2 - - - - - VST3 - - - - - AU - - - - - SF2/3 - - - - - SFZ - - - - - Native - - - - - POSIX 32bit - - - - - POSIX 64bit - - - - - Windows 32bit - - - - - Windows 64bit - - - - - Available tools: - - - - - python3-rdflib (LADSPA-RDF support) - - - - - carla-discovery-win64 - - - - - carla-discovery-native - - - - - carla-discovery-posix32 - - - - - carla-discovery-posix64 - - - - - carla-discovery-win32 - - - - - Options: - - - - - Carla will run small processing checks when scanning the plugins (to make sure they won't crash). -You can disable these checks to get a faster scanning time (at your own risk). - - - - - Run processing checks while scanning - - - - - Press 'Scan' to begin the search - - - - - Scan - - - - - >> Skip - - - - - Close - סגור - - - - PluginWidget - - - - - - - Frame - - - - - Enable - - - - - On/Off - - - - - - - - PluginName - - - - - MIDI - - - - - AUDIO IN - - - - - AUDIO OUT - - - - - GUI - - - - - Edit - - - - - Remove - - - - - Plugin Name - - - - - Preset: - - - - - ProjectNotes - - + Project Notes - + Enter project notes here - + Edit Actions - + &Undo - + %1+Z - + &Redo - + %1+Y - + &Copy - + %1+C - + Cu&t - + %1+X - + &Paste - + %1+V - + Format Actions - + &Bold - + %1+B - + &Italic - + %1+I - + &Underline - + %1+U - + &Left - + %1+L - + C&enter - + %1+E - + &Right - + %1+R - + &Justify - + %1+J - + &Color... - ProjectRenderer + lmms::gui::RecentProjectsMenu - - WAV (*.wav) - - - - - FLAC (*.flac) - - - - - OGG (*.ogg) - - - - - MP3 (*.mp3) - - - - - QObject - - - Reload Plugin - - - - - Show GUI - - - - - Help - - - - - QWidget - - - - - - Name: - - - - - URI: - - - - - - - Maker: - - - - - - - Copyright: - - - - - - Requires Real Time: - - - - - - - - - - Yes - - - - - - - - - - No - - - - - - Real Time Capable: - - - - - - In Place Broken: - - - - - - Channels In: - - - - - - Channels Out: - - - - - File: %1 - - - - - File: - - - - - RecentProjectsMenu - - + &Recently Opened Projects - RenameDialog + lmms::gui::RenameDialog - + Rename... - ReverbSCControlDialog + lmms::gui::ReverbSCControlDialog - + Input - + Input gain: - + Size - + Size: - + Color - + Color: - + Output - + Output gain: - ReverbSCControls + lmms::gui::SaControlsDialog - - Input gain - - - - - Size - - - - - Color - - - - - Output gain - - - - - SaControls - - + Pause - - Reference freeze - - - - - Waterfall - - - - - Averaging - - - - - Stereo - סטריאו - - - - Peak hold - - - - - Logarithmic frequency - - - - - Logarithmic amplitude - - - - - Frequency range - - - - - Amplitude range - - - - - FFT block size - - - - - FFT window type - - - - - Peak envelope resolution - - - - - Spectrum display resolution - - - - - Peak decay multiplier - - - - - Averaging weight - - - - - Waterfall history size - - - - - Waterfall gamma correction - - - - - FFT window overlap - - - - - FFT zero padding - - - - - - Full (auto) - - - - - - - Audible - - - - - Bass - - - - - Mids - - - - - High - - - - - Extended - - - - - Loud - - - - - Silent - - - - - (High time res.) - - - - - (High freq. res.) - - - - - Rectangular (Off) - - - - - - Blackman-Harris (Default) - - - - - Hamming - - - - - Hanning - - - - - SaControlsDialog - - - Pause - - - - + Pause data acquisition - + Reference freeze - + Freeze current input as a reference / disable falloff in peak-hold mode. - + Waterfall - + Display real-time spectrogram - + Averaging - + Enable exponential moving average - + Stereo - סטריאו + - + Display stereo channels separately - + Peak hold - + Display envelope of peak values - + Logarithmic frequency - + Switch between logarithmic and linear frequency scale - - + + Frequency range - + Logarithmic amplitude - + Switch between logarithmic and linear amplitude scale - - + + Amplitude range - - Envelope res. - - - - - Increase envelope resolution for better details, decrease for better GUI performance. - - - - - - Draw at most - - - - - envelope points per pixel - - - - - Spectrum res. - - - - - Increase spectrum resolution for better details, decrease for better GUI performance. - - - - - spectrum points per pixel - - - - - Falloff factor - - - - - Decrease to make peaks fall faster. - - - - - Multiply buffered value by - - - - - Averaging weight - - - - - Decrease to make averaging slower and smoother. - - - - - New sample contributes - - - - - Waterfall height - - - - - Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. - - - - - Keep - - - - - lines - - - - - Waterfall gamma - - - - - Decrease to see very weak signals, increase to get better contrast. - - - - - Gamma value: - - - - - Window overlap - - - - - Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. - - - - - Each sample processed - - - - - times - - - - - Zero padding - - - - - Increase to get smoother-looking spectrum. Warning: high CPU usage. - - - - - Processing buffer is - - - - - steps larger than input block - - - - - Advanced settings - - - - - Access advanced settings - - - - - + + FFT block size - - + + FFT window type - - - SampleBuffer - - Fail to open file + + Envelope res. - - Audio files are limited to %1 MB in size and %2 minutes of playing time + + Increase envelope resolution for better details, decrease for better GUI performance. - - Open audio file + + Maximum number of envelope points drawn per pixel: - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) + + Spectrum res. - - Wave-Files (*.wav) + + Increase spectrum resolution for better details, decrease for better GUI performance. - - OGG-Files (*.ogg) + + Maximum number of spectrum points drawn per pixel: - - DrumSynth-Files (*.ds) + + Falloff factor - - FLAC-Files (*.flac) + + Decrease to make peaks fall faster. - - SPEEX-Files (*.spx) + + Multiply buffered value by - - VOC-Files (*.voc) + + Averaging weight - - AIFF-Files (*.aif *.aiff) + + Decrease to make averaging slower and smoother. - - AU-Files (*.au) + + New sample contributes - - RAW-Files (*.raw) + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings - SampleClipView + lmms::gui::SampleClipView - + Double-click to open sample - - Delete (middle mousebutton) - - - - - Delete selection (middle mousebutton) - - - - - Cut - - - - - Cut selection - - - - - Copy - - - - - Copy selection - - - - - Paste - - - - - Mute/unmute (<%1> + middle click) - - - - - Mute/unmute selection (<%1> + middle click) - - - - + Reverse sample - - Set clip color - - - - - Use track color + + Set as ghost in automation editor - SampleTrack + lmms::gui::SampleTrackView - - Volume - ווליום - - - - Panning - - - - + Mixer channel - - - Sample track - - - - - SampleTrackView - - + Track volume - + Channel volume: - - - VOL - ווליום - - Panning - - - - - Panning: + VOL - PAN - - - - - Channel %1: %2 - - - - - SampleTrackWindow - - - GENERAL SETTINGS - - - - - Sample volume - - - - - Volume: - ווליום: - - - - VOL - ווליום - - - Panning - + Panning: - + PAN - + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + Mixer channel - + CHANNEL - SaveOptionsWidget + lmms::gui::SaveOptionsWidget - + Discard MIDI connections - + Save As Project Bundle (with resources) - SetupDialog + lmms::gui::SetupDialog - - Reset to default value - - - - - Use built-in NaN handler - - - - + Settings - - + + General - + Graphical user interface (GUI) - + Display volume as dBFS - + Enable tooltips - + Enable master oscilloscope by default - + Enable all note labels in piano roll - + Enable compact track buttons - + Enable one instrument-track-window mode - + Show sidebar on the right-hand side - + Let sample previews continue when mouse is released - + Mute automation tracks during solo - + Show warning when deleting tracks - - Projects + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + Handles + + + + + Loop edit mode + + + + + Projects + + + + Compress project files by default - + Create a backup file when saving a project - + Reopen last project on startup - + Language - - + + Performance - + Autosave - + Enable autosave - + Allow autosave while playing - + User interface (UI) effects vs. performance - + Smooth scroll in song editor - + Display playback cursor in AudioFileProcessor - + Plugins - + VST plugins embedding: - + No embedding - + Embed using Qt API - + Embed using native Win32 API - + Embed using XEmbed protocol - + Keep plugin windows on top when not embedded - - Sync VST plugins to host playback - - - - + Keep effects running even without input - - + + Audio - + Audio interface - - HQ mode for output audio device - - - - + Buffer size + + + Reset to default value + + - + MIDI - + MIDI interface - + Automatically assign MIDI controller to selected track - - LMMS working directory + + Behavior when recording - - VST plugins directory + + Auto-quantize notes in Piano Roll - - LADSPA plugins directories + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. - - SF2 directory - - - - - Default SF2 - - - - - GIG directory - - - - - Theme directory - - - - - Background artwork - - - - - Some changes require restarting. - - - - - Autosave interval: %1 - - - - - Choose the LMMS working directory - - - - - Choose your VST plugins directory - - - - - Choose your LADSPA plugins directory - - - - - Choose your default SF2 - - - - - Choose your theme directory - - - - - Choose your background picture - - - - - + + Paths - - OK + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + OK + + + + Cancel - + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + Frames: %1 Latency: %2 ms - - Choose your GIG directory + + Choose the LMMS working directory - + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + Choose your SF2 directory - - minutes + + Choose your default SF2 - - minute + + Choose your GIG directory - - Disabled + + Choose your theme directory + + + + + Choose your background picture - SidInstrument + lmms::gui::Sf2InstrumentView - - Cutoff frequency + + + Open SoundFont file - - Resonance + + Choose patch - - Filter type + + Gain: - - Voice 3 off + + Apply reverb (if supported) - - Volume - ווליום + + Room size: + - - Chip model + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) - SidInstrumentView + lmms::gui::SidInstrumentView - + Volume: - ווליום: + - + Resonance: - - + + Cutoff frequency: - + High-pass filter - + Band-pass filter - + Low-pass filter - + Voice 3 off - + MOS6581 SID - + MOS8580 SID - - + + Attack: - - + + Decay: - + Sustain: - - + + Release: - + Pulse Width: - + Coarse: - + Pulse wave - + Triangle wave - + Saw wave - + Noise - + Sync - + Ring modulation - + Filtered - + Test - + Pulse width: - SideBarWidget + lmms::gui::SideBarWidget - + Close - סגור - - - - Song - - - Tempo - - - - - Master volume - - - - - Master pitch - - - - - Aborting project load - - - - - Project file contains local paths to plugins, which could be used to run malicious code. - - - - - Can't load project: Project file contains local paths to plugins. - - - - - LMMS Error report - - - - - (repeated %1 times) - - - - - The following errors occurred while loading: - SongEditor + lmms::gui::SlicerTView - + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + Could not open file - + Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. - + Operation denied - + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. - - - + + + Error - + Couldn't create bundle folder. - + Couldn't create resources folder. - + Failed to copy resources. - + + Could not write file - - Could not open %1 for writing. You probably are not permitted towrite to this file. Please make sure you have write-access to the file and try again. + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. - - This %1 was created with LMMS %2 + + An unknown error has occurred and the file could not be saved. - + Error in file - + The file %1 seems to contain errors and therefore can't be loaded. - - Version difference - - - - + template - + project - + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + Tempo - + TEMPO - + Tempo in BPM - - High quality mode - - - - - - + + + Master volume - - - - Master pitch + + + + Global transposition - + + 1/%1 Bar + + + + + %1 Bars + + + + Value: %1% - - Value: %1 semitones + + Value: %1 keys - SongEditorWindow + lmms::gui::SongEditorWindow - + Song-Editor - + Play song (Space) - + Record samples from Audio-device - - Record samples from Audio-device while playing song or BB track + + Record samples from Audio-device while playing song or pattern track - + Stop song (Space) - + Track actions - - Add beat/bassline + + Add pattern-track - + Add sample-track - + Add automation-track - + Edit actions - + Draw mode - + Knife mode (split sample clips) - + Edit mode (select and move) - + Timeline controls - + Bar insert controls - + Insert bar - + Remove bar - + Zoom controls + - Horizontal zooming + Zoom - + Snap controls - - + + Clip snapping size - + Toggle proportional snap on/off - + Base snapping size - StepRecorderWidget + lmms::gui::StepRecorderWidget - + Hint - + Move recording curser using <Left/Right> arrows - SubWindow + lmms::gui::StereoEnhancerControlDialog - - Close - סגור + + WIDTH + - + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + + Close + + + + Maximize - + Restore - TabWidget + lmms::gui::TapTempoView - - - Settings for %1 + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz - TemplatesMenu + lmms::gui::TemplatesMenu - + New from template - TempoSyncKnob + lmms::gui::TempoSyncBarModelEditor - - + + Tempo Sync - + No Sync - + Eight beats - + Whole note - + Half note - + Quarter note - + 8th note - + 16th note - + 32nd note - + Custom... - + Custom - + Synced to Eight Beats - + Synced to Whole Note - + Synced to Half Note - + Synced to Quarter Note - + Synced to 8th Note - + Synced to 16th Note - + Synced to 32nd Note - TimeDisplayWidget + lmms::gui::TempoSyncKnob - + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + Time units - + MIN - + SEC - + MSEC - + BAR - + BEAT - + TICK - TimeLineWidget + lmms::gui::TimeLineWidget - + Auto scrolling - + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + Loop points - + After stopping go back to beginning - + After stopping go back to position at which playing was started - + After stopping keep position - + Hint - + Press <%1> to disable magnetic loop points. - - - Track - - Mute + + Set loop begin here - - Solo + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles - TrackContainer + lmms::gui::TrackContentWidget - - Couldn't import file - - - - - Couldn't find a filter for importing file %1. -You should convert this file into a format supported by LMMS using another software. - - - - - Couldn't open file - - - - - Couldn't open file %1 for reading. -Please make sure you have read-permission to the file and the directory containing the file and try again! - - - - - Loading project... - - - - - - Cancel - - - - - - Please wait... - - - - - Loading cancelled - - - - - Project loading was cancelled. - - - - - Loading Track %1 (%2/Total %3) - - - - - Importing MIDI-file... - - - - - Clip - - - Mute - - - - - ClipView - - - Current position - - - - - Current length - - - - - - %1:%2 (%3:%4 to %5:%6) - - - - - Press <%1> and drag to make a copy. - - - - - Press <%1> for free resizing. - - - - - Hint - - - - - Delete (middle mousebutton) - - - - - Delete selection (middle mousebutton) - - - - - Cut - - - - - Cut selection - - - - - Merge Selection - - - - - Copy - - - - - Copy selection - - - - - Paste - - - - - Mute/unmute (<%1> + middle click) - - - - - Mute/unmute selection (<%1> + middle click) - - - - - Set clip color - - - - - Use track color - - - - - TrackContentWidget - - + Paste - TrackOperationsWidget + lmms::gui::TrackOperationsWidget - + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. @@ -13454,248 +17726,240 @@ Please make sure you have read-permission to the file and the directory containi - + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? - + Confirm removal - + Don't ask again - + Clone this track - + Remove this track - + Clear this track - + Channel %1: %2 - - Assign to new mixer Channel + + Assign to new Mixer Channel - + Turn all recording on - + Turn all recording off + + + Track color + + - Change color + Change + + + + + Reset - Reset color to default + Pick random - Set random color - - - - - Clear clip colors + Reset clip colors - TripleOscillatorView + lmms::gui::TripleOscillatorView - + Modulate phase of oscillator 1 by oscillator 2 - + Modulate amplitude of oscillator 1 by oscillator 2 - + Mix output of oscillators 1 & 2 - + Synchronize oscillator 1 with oscillator 2 - + Modulate frequency of oscillator 1 by oscillator 2 - + Modulate phase of oscillator 2 by oscillator 3 - + Modulate amplitude of oscillator 2 by oscillator 3 - + Mix output of oscillators 2 & 3 - + Synchronize oscillator 2 with oscillator 3 - + Modulate frequency of oscillator 2 by oscillator 3 - + Osc %1 volume: - + Osc %1 panning: - + Osc %1 coarse detuning: - + semitones - + Osc %1 fine detuning left: - - + + cents - + Osc %1 fine detuning right: - + Osc %1 phase-offset: - - + + degrees - + Osc %1 stereo phase-detuning: - + Sine wave - + Triangle wave - + Saw wave - + Square wave - + Moog-like saw wave - + Exponential wave - + White noise - + User-defined wave - - - VecControls - - Display persistence amount - - - - - Logarithmic scale - - - - - High quality + + Use alias-free wavetable oscillators. - VecControlsDialog + lmms::gui::VecControlsDialog - + HQ - + Double the resolution and simulate continuous analog-like trace. @@ -13710,2618 +17974,782 @@ Please make sure you have read-permission to the file and the directory containi - + Persist. - + Trace persistence: higher amount means the trace will stay bright for longer time. - + Trace persistence - VersionedSaveDialog + lmms::gui::VersionedSaveDialog - + Increment version number - + Decrement version number - + Save Options - + already exists. Do you want to replace it? - VestigeInstrumentView + lmms::gui::VestigeInstrumentView - - + + Open VST plugin - + Control VST plugin from LMMS host - + Open VST plugin preset - + Previous (-) - + Save preset - + Next (+) - + Show/hide GUI - + Turn off all notes - + DLL-files (*.dll) - + EXE-files (*.exe) - + + SO-files (*.so) + + + + No VST plugin loaded - + Preset - + by - + - VST plugin control - VstEffectControlDialog + lmms::gui::VibedView - + + Enable waveform + + + + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + Show/hide - + Control VST plugin from LMMS host - + Open VST plugin preset - + Previous (-) - + Next (+) - + Save preset - - + + Effect by: - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - VstPlugin + lmms::gui::WatsynView - - - The VST plugin %1 could not be loaded. + + + + + Volume - - Open Preset - - - - - - Vst Plugin Preset (*.fxp *.fxb) - - - - - : default - - - - - Save Preset - - - - - .fxp - - - - - .FXP - - - - - .FXB - - - - - .fxb - - - - - Loading plugin - - - - - Please wait while loading VST plugin... - - - - - WatsynInstrument - - - Volume A1 - - - - - Volume A2 - - - - - Volume B1 - - - - - Volume B2 - - - - - Panning A1 - - - - - Panning A2 - - - - - Panning B1 - - - - - Panning B2 - - - - - Freq. multiplier A1 - - - - - Freq. multiplier A2 - - - - - Freq. multiplier B1 - - - - - Freq. multiplier B2 - - - - - Left detune A1 - - - - - Left detune A2 - - - - - Left detune B1 - - - - - Left detune B2 - - - - - Right detune A1 - - - - - Right detune A2 - - - - - Right detune B1 - - - - - Right detune B2 - - - - - A-B Mix - - - - - A-B Mix envelope amount - - - - - A-B Mix envelope attack - - - - - A-B Mix envelope hold - - - - - A-B Mix envelope decay - - - - - A1-B2 Crosstalk - - - - - A2-A1 modulation - - - - - B2-B1 modulation - - - - - Selected graph - - - - - WatsynView - + + - - - Volume - ווליום - - - - - - Panning - - - - + + + + Freq. multiplier - - - - + + + + Left detune + + + + + + - - - - - - cents - - - - + + + + Right detune - + A-B Mix - + Mix envelope amount - + Mix envelope attack - + Mix envelope hold - + Mix envelope decay - + Crosstalk - + Select oscillator A1 - + Select oscillator A2 - + Select oscillator B1 - + Select oscillator B2 - + Mix output of A2 to A1 - + Modulate amplitude of A1 by output of A2 - + Ring modulate A1 and A2 - + Modulate phase of A1 by output of A2 - + Mix output of B2 to B1 - + Modulate amplitude of B1 by output of B2 - + Ring modulate B1 and B2 - + Modulate phase of B1 by output of B2 - - - - + + + + Draw your own waveform here by dragging your mouse on this graph. - + Load waveform - + Load a waveform from a sample file - + Phase left - + Shift phase by -15 degrees - + Phase right - + Shift phase by +15 degrees + + + + Normalize + + - Normalize - - - - - Invert - - + + Smooth - - + + Sine wave - - - + + + Triangle wave - + Saw wave - - + + Square wave - Xpressive + lmms::gui::WaveShaperControlDialog - - Selected graph - - - - - A1 - - - - - A2 - - - - - A3 - - - - - W1 smoothing - - - - - W2 smoothing - - - - - W3 smoothing - - - - - Panning 1 - - - - - Panning 2 - - - - - Rel trans - - - - - XpressiveView - - - Draw your own waveform here by dragging your mouse on this graph. - - - - - Select oscillator W1 - - - - - Select oscillator W2 - - - - - Select oscillator W3 - - - - - Select output O1 - - - - - Select output O2 - - - - - Open help window - - - - - - Sine wave - - - - - - Moog-saw wave - - - - - - Exponential wave - - - - - - Saw wave - - - - - - User-defined wave - - - - - - Triangle wave - - - - - - Square wave - - - - - - White noise - - - - - WaveInterpolate - - - - - ExpressionValid - - - - - General purpose 1: - - - - - General purpose 2: - - - - - General purpose 3: - - - - - O1 panning: - - - - - O2 panning: - - - - - Release transition: - - - - - Smoothness - - - - - ZynAddSubFxInstrument - - - Portamento - - - - - Filter frequency - - - - - Filter resonance - - - - - Bandwidth - - - - - FM gain - - - - - Resonance center frequency - - - - - Resonance bandwidth - - - - - Forward MIDI control change events - - - - - ZynAddSubFxView - - - Portamento: - - - - - PORT - - - - - Filter frequency: - - - - - FREQ - - - - - Filter resonance: - - - - - RES - - - - - Bandwidth: - - - - - BW - - - - - FM gain: - - - - - FM GAIN - - - - - Resonance center frequency: - - - - - RES CF - - - - - Resonance bandwidth: - - - - - RES BW - - - - - Forward MIDI control changes - - - - - Show GUI - - - - - AudioFileProcessor - - - Amplify - - - - - Start of sample - - - - - End of sample - - - - - Loopback point - - - - - Reverse sample - - - - - Loop mode - - - - - Stutter - - - - - Interpolation mode - - - - - None - - - - - Linear - - - - - Sinc - - - - - Sample not found: %1 - - - - - BitInvader - - - Sample length - - - - - BitInvaderView - - - Sample length - - - - - Draw your own waveform here by dragging your mouse on this graph. - - - - - - Sine wave - - - - - - Triangle wave - - - - - - Saw wave - - - - - - Square wave - - - - - - White noise - - - - - - User-defined wave - - - - - - Smooth waveform - - - - - Interpolation - - - - - Normalize - - - - - DynProcControlDialog - - + INPUT - + Input gain: - + OUTPUT - - - Output gain: - - - - - ATTACK - - - - - Peak attack time: - - - - - RELEASE - - - - - Peak release time: - - - - - - Reset wavegraph - - - - - - Smooth wavegraph - - - - - - Increase wavegraph amplitude by 1 dB - - - - - - Decrease wavegraph amplitude by 1 dB - - - - - Stereo mode: maximum - - - - - Process based on the maximum of both stereo channels - - - - - Stereo mode: average - - - - - Process based on the average of both stereo channels - - - - - Stereo mode: unlinked - - - - - Process each stereo channel independently - - - - - DynProcControls - - - Input gain - - - - - Output gain - - - - - Attack time - - - - - Release time - - - - - Stereo mode - - - - - graphModel - - - Graph - - - - - KickerInstrument - - - Start frequency - - - - - End frequency - - - - - Length - - - - - Start distortion - - - - - End distortion - - - - - Gain - - - - - Envelope slope - - - - - Noise - - - - - Click - - - - - Frequency slope - - - - - Start from note - - - - - End to note - - - - - KickerInstrumentView - - - Start frequency: - - - - - End frequency: - - - - - Frequency slope: - - - - - Gain: - - - - - Envelope length: - - - - - Envelope slope: - - - - - Click: - - - - - Noise: - - - - - Start distortion: - - - - - End distortion: - - - - - LadspaBrowserView - - - - Available Effects - - - - - - Unavailable Effects - - - - - - Instruments - - - - - - Analysis Tools - - - - - - Don't know - - - - - Type: - - - - - LadspaDescription - - - Plugins - - - - - Description - - - - - LadspaPortDialog - - - Ports - - - - - Name - - - - - Rate - - - - - Direction - - - - - Type - - - - - Min < Default < Max - - - - - Logarithmic - - - - - SR Dependent - - - - - Audio - - - - - Control - - - - - Input - - - - - Output - - - - - Toggled - - - - - Integer - - - - - Float - - - - - - Yes - - - - - Lb302Synth - - - VCF Cutoff Frequency - - - - - VCF Resonance - - - - - VCF Envelope Mod - - - - - VCF Envelope Decay - - - - - Distortion - - - - - Waveform - - - - - Slide Decay - - - - - Slide - - - - - Accent - - - - - Dead - - - - - 24dB/oct Filter - - - - - Lb302SynthView - - - Cutoff Freq: - - - - - Resonance: - - - - - Env Mod: - - - - - Decay: - - - - - 303-es-que, 24dB/octave, 3 pole filter - - - - - Slide Decay: - - - - - DIST: - - - - - Saw wave - - - - - Click here for a saw-wave. - - - - - Triangle wave - - - - - Click here for a triangle-wave. - - - - - Square wave - - - - - Click here for a square-wave. - - - - - Rounded square wave - - - - - Click here for a square-wave with a rounded end. - - - - - Moog wave - - - - - Click here for a moog-like wave. - - - - - Sine wave - - - - - Click for a sine-wave. - - - - - - White noise wave - - - - - Click here for an exponential wave. - - - - - Click here for white-noise. - - - - - Bandlimited saw wave - - - - - Click here for bandlimited saw wave. - - - - - Bandlimited square wave - - - - - Click here for bandlimited square wave. - - - - - Bandlimited triangle wave - - - - - Click here for bandlimited triangle wave. - - - - - Bandlimited moog saw wave - - - - - Click here for bandlimited moog saw wave. - - - - - MalletsInstrument - - - Hardness - - - - - Position - - - - - Vibrato gain - - - - - Vibrato frequency - - - - - Stick mix - - - - - Modulator - - - - - Crossfade - - - - - LFO speed - - - - - LFO depth - - - - - ADSR - - - - - Pressure - - - - - Motion - - - - - Speed - - - - - Bowed - - - - - Spread - - - - - Marimba - - - - - Vibraphone - - - - - Agogo - - - - - Wood 1 - - - - - Reso - - - - - Wood 2 - - - - - Beats - - - - - Two fixed - - - - - Clump - - - - - Tubular bells - - - - - Uniform bar - - - - - Tuned bar - - - - - Glass - - - - - Tibetan bowl - - - - - MalletsInstrumentView - - - Instrument - - - - - Spread - - - - - Spread: - - - - - Missing files - - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - - - - - Hardness - - - - - Hardness: - - - - - Position - - - - - Position: - - - - - Vibrato gain - - - - - Vibrato gain: - - - - - Vibrato frequency - - - - - Vibrato frequency: - - - - - Stick mix - - - - - Stick mix: - - - - - Modulator - - - - - Modulator: - - - - - Crossfade - - - - - Crossfade: - - - - - LFO speed - - - - - LFO speed: - - - - - LFO depth - - - - - LFO depth: - - - - - ADSR - - - - - ADSR: - - - - - Pressure - - - - - Pressure: - - - - - Speed - - - - - Speed: - - - - - ManageVSTEffectView - - - - VST parameter control - - - - - VST sync - - - - - - Automated - - - - - Close - - - - - ManageVestigeInstrumentView - - - - - VST plugin control - - - - - VST Sync - - - - - - Automated - - - - - Close - - - - - OrganicInstrument - - - Distortion - - - - - Volume - ווליום - - - - OrganicInstrumentView - - - Distortion: - - - - - Volume: - ווליום: - - - - Randomise - - - - - - Osc %1 waveform: - - - - - Osc %1 volume: - - - - - Osc %1 panning: - - - - - Osc %1 stereo detuning - - - - - cents - - - - - Osc %1 harmonic: - - - - - PatchesDialog - - - Qsynth: Channel Preset - - - - - Bank selector - - - - - Bank - - - - - Program selector - - - - - Patch - - - - - Name - - - - - OK - - - - - Cancel - - - - - Sf2Instrument - - - Bank - - - - - Patch - - - - - Gain - - - - - Reverb - - - - - Reverb room size - - - - - Reverb damping - - - - - Reverb width - - - - - Reverb level - - - - - Chorus - - - - - Chorus voices - - - - - Chorus level - - - - - Chorus speed - - - - - Chorus depth - - - - - A soundfont %1 could not be loaded. - - - - - Sf2InstrumentView - - - - Open SoundFont file - - - - - Choose patch - - - - - Gain: - - - - - Apply reverb (if supported) - - - - - Room size: - - - - - Damping: - - - - - Width: - - - - - - Level: - - - - - Apply chorus (if supported) - - - - - Voices: - - - - - Speed: - - - - - Depth: - - - - - SoundFont Files (*.sf2 *.sf3) - - - - - SfxrInstrument - - - Wave - - - - - StereoEnhancerControlDialog - - - WIDTH - - - - - Width: - - - - - StereoEnhancerControls - - - Width - - - - - StereoMatrixControlDialog - - - Left to Left Vol: - - - - - Left to Right Vol: - - - - - Right to Left Vol: - - - - - Right to Right Vol: - - - - - StereoMatrixControls - - - Left to Left - - - - - Left to Right - - - - - Right to Left - - - - - Right to Right - - - - - VestigeInstrument - - - Loading plugin - - - - - Please wait while loading the VST plugin... - - - - - Vibed - - - String %1 volume - - - - - String %1 stiffness - - - - - Pick %1 position - - - - - Pickup %1 position - - - - - String %1 panning - - - - - String %1 detune - - - - - String %1 fuzziness - - - - - String %1 length - - - - - Impulse %1 - - - - - String %1 - - - - - VibedView - - - String volume: - - - - - String stiffness: - - - - - Pick position: - - - - - Pickup position: - - - - - String panning: - - - - - String detune: - - - - - String fuzziness: - - - - - String length: - - - - - Impulse - - - - - Octave - - - - - Impulse Editor - - - - - Enable waveform - - - - - Enable/disable string - - - - - String - - - - - - Sine wave - - - - - - Triangle wave - - - - - - Saw wave - - - - - - Square wave - - - - - - White noise - - - - - - User-defined wave - - - - - - Smooth waveform - - - - - - Normalize waveform - - - - - VoiceObject - - - Voice %1 pulse width - - - - - Voice %1 attack - - - - - Voice %1 decay - - - - - Voice %1 sustain - - - - - Voice %1 release - - - - - Voice %1 coarse detuning - - - - - Voice %1 wave shape - - - - - Voice %1 sync - - - - - Voice %1 ring modulate - - - - - Voice %1 filtered - - - - - Voice %1 test - - - - - WaveShaperControlDialog - - - INPUT - - - - - Input gain: - - - - - OUTPUT - - - - - Output gain: - - - + Output gain: + + + + + Reset wavegraph - - + + Smooth wavegraph - - + + Increase wavegraph amplitude by 1 dB - - + + Decrease wavegraph amplitude by 1 dB - + Clip input - + Clip input signal to 0 dB - WaveShaperControls + lmms::gui::XpressiveView - - Input gain + + Draw your own waveform here by dragging your mouse on this graph. - - Output gain + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness - + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + + + + \ No newline at end of file diff --git a/data/locale/hu_HU.ts b/data/locale/hu_HU.ts index 88ef6a431..a15c5d42c 100644 --- a/data/locale/hu_HU.ts +++ b/data/locale/hu_HU.ts @@ -1,4 +1,4 @@ - + AboutDialog @@ -70,811 +70,44 @@ Ha szeretnél részt venni az LMMS más nyelvekre történő fordításában vag - AmplifierControlDialog + AboutJuceDialog - - VOL - VOL + + About JUCE + - - Volume: - Hangerő: + + <b>About JUCE</b> + - - PAN - PAN + + This program uses JUCE version 3.x.x. + - - Panning: - Panoráma: + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + - - LEFT - BAL - - - - Left gain: - Bal oldali erősítés: - - - - RIGHT - JOBB - - - - Right gain: - Jobb oldali erősítés: + + This program uses JUCE version + - AmplifierControls + AudioDeviceSetupWidget - - Volume - Hangerő - - - - Panning - Panoráma - - - - Left gain - Bal oldali erősítés - - - - Right gain - Jobb oldali erősítés - - - - AudioAlsaSetupWidget - - - DEVICE - ESZKÖZ - - - - CHANNELS - CSATORNÁK - - - - AudioFileProcessorView - - - Open sample - Minta megnyitása - - - - Reverse sample - Minta megfordítása - - - - Disable loop - Ismétlés tiltása - - - - Enable loop - Ismétlés engedélyezése - - - - Enable ping-pong loop - Oda-vissza ismétlés engedélyezése - - - - Continue sample playback across notes - Folyamatos lejátszás több note-on keresztül - - - - Amplify: - Erősítés: - - - - Start point: - Kezdőpont: - - - - End point: - Végpont: - - - - Loopback point: - Visszatérési pont: - - - - AudioFileProcessorWaveView - - - Sample length: - Minta hossza: - - - - AudioJack - - - JACK client restarted - JACK kliens újraindítva - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - A JACK kirúgta az LMMS-t valamilyen oknál fogva, ezért az LMMS JACK backendje újra lett indítva. A kapcsolatokat manuálisan kell újra létrehozni. - - - - JACK server down - JACK szerver leállt - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - Úgy tűnik, a JACK kiszolgáló leállt, és új példány indítása nem sikerült. Ennél fogva az LMMS nem képes tovább működni. Kérjük, mentsd a projektet és indítsd újra a JACK-et és LMMS-t. - - - - Client name - Kliens név - - - - Channels - Csatornák - - - - AudioOss - - - Device - Eszköz - - - - Channels - Csatornák - - - - AudioPortAudio::setupWidget - - - Backend - Backend - - - - Device - Eszköz - - - - AudioPulseAudio - - - Device - Eszköz - - - - Channels - Csatornák - - - - AudioSdl::setupWidget - - - Device - Eszköz - - - - AudioSndio - - - Device - Eszköz - - - - Channels - Csatornák - - - - AudioSoundIo::setupWidget - - - Backend - Backend - - - - Device - Eszköz - - - - AutomatableModel - - - &Reset (%1%2) - &Visszaállítás (%1%2) - - - - &Copy value (%1%2) - Érték &másolása (%1%2) - - - - &Paste value (%1%2) - Érték &beillesztése (%1%2) - - - - &Paste value - Érték &beillesztése - - - - Edit song-global automation - Globális automatizáció szerkesztése - - - - Remove song-global automation - Globális automatizáció eltávolítása - - - - Remove all linked controls - Minden kapcsolt vezérlő eltávolítása - - - - Connected to %1 - Csatlakozva ehhez: %1 - - - - Connected to controller - Csatlakozva a vezérlőhöz - - - - Edit connection... - Kapcsolat szerkesztése... - - - - Remove connection - Kapcsolat eltávolítása - - - - Connect to controller... - Csatlakozás a vezérlőhöz... - - - - AutomationEditor - - - Edit Value - Érték megadása - - - - New outValue - Kimenő érték - - - - New inValue - Bemenő érték - - - - Please open an automation clip with the context menu of a control! - Nyiss meg egy automatizációs klipet dupla kattintással! - - - - AutomationEditorWindow - - - Play/pause current clip (Space) - Klip lejátszása/megállítása (Space) - - - - Stop playing of current clip (Space) - Lejátszás leállítása (Space) - - - - Edit actions - Műveletek szerkesztése - - - - Draw mode (Shift+D) - Beszúrás (Shift+D) - - - - Erase mode (Shift+E) - Törlés (Shift+E) - - - - Draw outValues mode (Shift+C) - Kimenő érték beszúrása (Shift+C) - - - - Flip vertically - Függőleges tükrözés - - - - Flip horizontally - Vízszintes tükrözés - - - - Interpolation controls - Interpoláció vezérlők - - - - Discrete progression - Diszkrét átmenet - - - - Linear progression - Lineáris átmenet - - - - Cubic Hermite progression - Köbös Hermite átmenet - - - - Tension value for spline - Spline feszítése - - - - Tension: - Feszítés: - - - - Zoom controls - Nagyítás vezérlők - - - - Horizontal zooming - Vízszintes nagyítás - - - - Vertical zooming - Függőleges nagyítás - - - - Quantization controls - Kvantálás vezérlők - - - - Quantization - Kvantálás - - - - - Automation Editor - no clip - Automatizáció Szerkesztő - - - - - Automation Editor - %1 - Automatizáció Szerkesztő - %1 - - - - Model is already connected to this clip. - Ez a vezérlő már csatlakoztatva van a kliphez. - - - - AutomationClip - - - Drag a control while pressing <%1> - Húzz ide egy vezérlőt <%1> nyomvatartása mellett - - - - AutomationClipView - - - Open in Automation editor - Megnyitás az Automatizáció Szerkesztőben - - - - Clear - Tartalom törlése - - - - Reset name - Név visszaállítása - - - - Change name - Átnevezés - - - - Set/clear record - Felvétel be/ki - - - - Flip Vertically (Visible) - Látható terület függőleges tükrözése - - - - Flip Horizontally (Visible) - Látható terület vízszintes tükrözése - - - - %1 Connections - %1 Kapcsolat - - - - Disconnect "%1" - "%1" leválasztása - - - - Model is already connected to this clip. - Ez a vezérlő már csatlakoztatva van a kliphez. - - - - AutomationTrack - - - Automation track - Automatizáció sáv - - - - PatternEditor - - - Beat+Bassline Editor - Beat+Bassline szerkesztő - - - - Play/pause current beat/bassline (Space) - Klip lejátszása/megállítása (Space) - - - - Stop playback of current beat/bassline (Space) - Lejátszás leállítása (Space) - - - - Beat selector - Ütem választó - - - - Track and step actions - Sáv és lépés műveletek - - - - Add beat/bassline - Beat/Bassline sáv hozzáadása - - - - Clone beat/bassline clip - Beat/Bassline sáv klónozása - - - - Add sample-track - Hangminta sáv hozzáadása - - - - Add automation-track - Automatizáció sáv hozzáadása - - - - Remove steps - Lépések eltávolítása - - - - Add steps - Lépések hozzáadása - - - - Clone Steps - Megduplázás - - - - PatternClipView - - - Open in Beat+Bassline-Editor - Megnyitás a Beat+Bassline szerkesztőben - - - - Reset name - Név visszaállítása - - - - Change name - Átnevezés - - - - PatternTrack - - - Beat/Bassline %1 - Beat/Bassline %1 - - - - Clone of %1 - %1 másolata - - - - BassBoosterControlDialog - - - FREQ - FREKV - - - - Frequency: - Frekvencia: - - - - GAIN - ERŐSÍTÉS - - - - Gain: - Erősítés: - - - - RATIO - ARÁNY - - - - Ratio: - Arány: - - - - BassBoosterControls - - - Frequency - Frekvencia - - - - Gain - Erősítés - - - - Ratio - Arány - - - - BitcrushControlDialog - - - IN - BE - - - - OUT - KI - - - - - GAIN - ERŐSÍTÉS - - - - Input gain: - Bemeneti erősítés: - - - - NOISE - ZAJ - - - - Input noise: - Bemeneti zaj: - - - - Output gain: - Kimeneti erősítés: - - - - CLIP - CLIP - - - - Output clip: - Kimenet levágása: - - - - Rate enabled - Mintavételi gyakoriság - - - - Enable sample-rate crushing - Mintavételi frekvencia csökkentése - - - - Depth enabled - Bitmélység - - - - Enable bit-depth crushing - Bitmélység csökkentése - - - - FREQ - FREKV - - - - Sample rate: - Mintavételi frekvencia: - - - - STEREO - SZTEREÓ - - - - Stereo difference: - Sztereó különbség: - - - - QUANT - QUANT - - - - Levels: - Szintek: - - - - BitcrushControls - - - Input gain - Bemeneti erősítés - - - - Input noise - Bemeneti zaj - - - - Output gain - Kimeneti erősítés - - - - Output clip - Kimenet levágása - - - - Sample rate - Mintavételi frekvencia - - - - Stereo difference - Sztereó különbség - - - - Levels - Szintek - - - - Rate enabled - Mintavételi gyakoriság - - - - Depth enabled - Bitmélység + + [System Default] + @@ -900,124 +133,124 @@ Ha szeretnél részt venni az LMMS más nyelvekre történő fordításában vag Részletes licensz helye - + Artwork Grafika - + Using KDE Oxygen icon set, designed by Oxygen Team. KDE Oxygen ikonkészlet, tervezte az Oxygen Team. - + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. Néhány gomb, háttér és egyéb grafikus elem a Calf Studio Gear, OpenAV és OpenOctave projektekből. - + VST is a trademark of Steinberg Media Technologies GmbH. A VST a Steinberg Media Technologies GmbH. védjegye. - + Special thanks to António Saraiva for a few extra icons and artwork! Külön köszönet António Saraivának a további ikonokért és grafikus elemekért! - + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. Az LV2 logót tervezte Thorsten Wilms, Peter Shorthose ötlete alapján. - + MIDI Keyboard designed by Thorsten Wilms. A MIDI billentyűzetet tervezte Thorsten Wilms. - + Carla, Carla-Control and Patchbay icons designed by DoosC. A Carla, Carla-Control és Patchbay ikonokat tervezte: DoosC - + Features Szolgáltatások - + AU/AudioUnit: AU/AudioUnit: - + LADSPA: LADSPA: - - - - - - - - + + + + + + + + TextLabel TextLabel - + VST2: VST2: - + DSSI: DSSI: - + LV2: LV2: - + VST3: VST3: - + OSC OSC - + Host URLs: Hoszt URL-ek: - + Valid commands: Érvényes parancsok: - + valid osc commands here érvényes osc parancsok helye - + Example: Példa: - + License Licenc - + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -1302,50 +535,50 @@ POSSIBILITY OF SUCH DAMAGES. - + OSC Bridge Version OSC Bridge verzió - + Plugin Version - Plugin verzió + Bővítmény verzió - + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> <br>Verzió: %1<br>A Carla egy teljes értékű audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> - - + + (Engine not running) (A motor nem fut) - + Everything! (Including LRDF) Minden! (Az LRDF-et is beleértve) - + Everything! (Including CustomData/Chunks) Minden! (CustomData/Chunks beleértve) - + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> Körülbelül 110&#37;-ig teljes (egyedi bővítményekkel)<br/>Elérhető szolgáltatások/bővítmények:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - - - + + + Using Juce host JUCE host használatával - + About 85% complete (missing vst bank/presets and some minor stuff) Körülbelül 85%-ig teljes (VST bankok/presetek és néhány apróbb dolog hiányzik) @@ -1378,563 +611,600 @@ POSSIBILITY OF SUCH DAMAGES. Betöltés... - - Buffer Size: - Buffer méret: + + Save + - + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + + Buffer Size: + Pufferméret: + + + Sample Rate: Mintavételi frekvencia: - + ? Xruns ? Xrun - + DSP Load: %p% DSP terhelés: %p% - + &File &Fájl - + &Engine &Motor - + &Plugin &Plugin - + Macros (all plugins) - Makrók (minden plugin) + Makrók (minden bővítmény) - + &Canvas &Vászon - + Zoom Nagyítás - + &Settings &Beállítások - + &Help &Súgó - - toolBar - toolBar + + Tool Bar + - + Disk Lemez - - + + Home Kezdőlap - + Transport Továbbítás - + Playback Controls Lejátszás vezérlők - + Time Information Idő Információ - + Frame: - + Keret: - + 000'000'000 000'000'000 - + Time: Idő: - + 00:00:00 00:00:00 - + BBT: BBT: - + 000|00|0000 000|00|0000 - + Settings Beállítások - + BPM BPM - + Use JACK Transport JACK Transport használata - + Use Ableton Link Ableton Link használata - + &New &Új - + Ctrl+N Ctrl+N - + &Open... &Megnyitás... - - + + Open... Megnyitás... - + Ctrl+O Ctrl+O - + &Save &Mentés - + Ctrl+S Ctrl+S - + Save &As... Mentés &másként... - - + + Save As... Mentés másként... - + Ctrl+Shift+S Ctrl+Shift+S - + &Quit &Kilépés - + Ctrl+Q Ctrl+Q - + &Start &Start - + F5 F5 - + St&op St&op - + F6 F6 - + &Add Plugin... - Plugin &hozzáadása... + Bővítmény &hozzáadása... - + Ctrl+A Ctrl+A - + &Remove All Összes &eltávolítása - + Enable Engedélyezés - + Disable Tiltás - + 0% Wet (Bypass) - + 100% Wet - + 0% Volume (Mute) 0% Hangerő (Némítás) - + 100% Volume 100% Hangerő - + Center Balance Balansz középre állítása - + &Play &Lejátszás - + Ctrl+Shift+P Ctrl+Shift+P - + &Stop &Stop - + Ctrl+Shift+X Ctrl+Shift+X - + &Backwards &Vissza - + Ctrl+Shift+B Ctrl+Shift+B - + &Forwards &Előre - + Ctrl+Shift+F Ctrl+Shift+F - + &Arrange &Rendezés - + Ctrl+G Ctrl+G - - + + &Refresh &Frissítés - + Ctrl+R Ctrl+R - + Save &Image... &Kép mentése... - + Auto-Fit Automatikus kitöltés - + Zoom In Nagyítás - + Ctrl++ Ctrl++ - + Zoom Out Kicsinyítés - + Ctrl+- Ctrl+- - + Zoom 100% Nagyítás 100% - + Ctrl+1 Ctrl+1 - + Show &Toolbar &Eszköztár megjelenítése - + &Configure Carla Carla &konfigurálása - + &About &Névjegy - + About &JUCE &JUCE névjegye - + About &Qt &Qt névjegye - + Show Canvas &Meters &Kivezérlésmérő megjelenítése - + Show Canvas &Keyboard &Billentyűzet megjelenítése - + Show Internal Belső - + Show External Külső - + Show Time Panel - + Idő panel megjelenítése - + Show &Side Panel Oldalsó &panel megjelenítése - + + Ctrl+P + + + + &Connect... &Csatlakozás - + Compact Slots - + Rekeszek összecsukása - + Expand Slots - + Rekeszek kinyitása - + Perform secret 1 - + Perform secret 2 - + Perform secret 3 - + Perform secret 4 - + Perform secret 5 - + Add &JACK Application... &JACK alkalmazás hozzáadása... - + &Configure driver... &Driver konfigurálása... - + Panic Pánik - + Open custom driver panel... Driver vezérlőpaneljének megnyitása... + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + + CarlaHostWindow - + Export as... Exportálás... - - - - + + + + Error Hiba - + Failed to load project Nem sikerült betölteni a projektet - + Failed to save project Nem sikerült menteni a projektet - + Quit Kilépés - + Are you sure you want to quit Carla? Biztosan ki akarsz lépni? - + Could not connect to Audio backend '%1', possible reasons: %2 Nem sikerült a(z) '%1' audio backendhez csatlakozni. Lehetséges okok: %2 - + Could not connect to Audio backend '%1' Nem sikerült a(z) '%1' audio backendhez csatlakozni. - + Warning Figyelmeztetés - + There are still some plugins loaded, you need to remove them to stop the engine. Do you want to do this now? - Néhány plugin még be van töltve, ezeket el kell távolítani a motor leállításához.. + Néhány bővítmény még be van töltve, ezeket el kell távolítani a motor leállításához. Szeretnéd ezt most megtenni? - - CarlaInstrumentView - - - Show GUI - GUI megjelenítése - - CarlaSettingsW @@ -1989,19 +1259,19 @@ Szeretnéd ezt most megtenni? - + Main - + Canvas Vászon - + Engine Motor @@ -2013,7 +1283,7 @@ Szeretnéd ezt most megtenni? Plugin Paths - Plugin útvonalak + Bővítmény útvonalak @@ -2022,1488 +1292,590 @@ Szeretnéd ezt most megtenni? - + Experimental Kísérleti - + <b>Main</b> <b>Fő</b> - + Paths Útvonalak - + Default project folder: Alapértelmezett projekt mappa: - + Interface Felület: - + + Use "Classic" as default rack skin + + + + Interface refresh interval: Felület frissítési gyakorisága: - - + + ms ms - + Show console output in Logs tab (needs engine restart) Konzol kimenet megjelenítése a Napló lapon (motor újraindítása szükséges) - + Show a confirmation dialog before quitting Megerősítés kilépés előtt - - + + Theme Téma - + Use Carla "PRO" theme (needs restart) Carla "PRO" téma használata (újraindítást igényel) - + Color scheme: Színséma: - + Black Sötét - + System Rendszer - + Enable experimental features Kísérleti funkciók engedélyezése - + <b>Canvas</b> <b>Vászon</b> - + Bezier Lines Bezier-vonalak - + Theme: Téma: - + Size: Méret: - + 775x600 775x600 - + 1550x1200 1550x1200 - + 3100x2400 3100x2400 - + 4650x3600 4650x3600 - + 6200x4800 6200x4800 - + + 12400x9600 + + + + Options Opciók - + Auto-hide groups with no ports Port nélküli csoportok automatikus elrejtése - + Auto-select items on hover Elemek kijelölése rámutatáskor - + Basic eye-candy (group shadows) Árnyékok - + Render Hints Megjelenítés - + Anti-Aliasing Anti-Aliasing - + Full canvas repaints (slower, but prevents drawing issues) Teljes vászon újrarajzolása (lassabb, de megelőzheti a grafikai problémákat) - + <b>Engine</b> <b>Motor</b> - - + + Core Mag - + Single Client Egy kliens - + Multiple Clients Több kliens - - + + Continuous Rack Összefüggő rack - - + + Patchbay Patchbay - + Audio driver: Audió driver: - + Process mode: Működési mód: - - - - + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog Paraméterek maximális száma a Szerkesztés ablakban - + Max Parameters: - + Maximális paraméterszám: - + ... ... - + Reset Xrun counter after project load Xrun számláló lenullázása projekt betöltésekor - + Plugin UIs - Pluginek felülete + Bővítmények felülete - - + + How much time to wait for OSC GUIs to ping back the host Várakozás az OSC GUI válaszára - + UI Bridge Timeout: - + Use OSC-GUI bridges when possible, this way separating the UI from DSP code - + OSC-GUI hidak használata lehetőség szerint, így elkülönítve a felhasználói felületet a DSP kódtól. - + Use UI bridges instead of direct handling when possible UI hidak kasználata közvetlen kezelés helyett, ha lehetséges - + Make plugin UIs always-on-top - A plugin-ablakok mindig felül legyenek + A bővítmény-ablakok mindig felül legyenek - + Make plugin UIs appear on top of Carla (needs restart) - Pluginek felületének megjelenítése a Carla felett (újraindítást igényel) + Bővítmények felületének megjelenítése a Carla felett (újraindítást igényel) - + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS - - + + Restart the engine to load the new settings Indítsd újra a motort az új beállítások betöltéséhez - + <b>OSC</b> <b>OSC</b> - + Enable OSC OSC engedélyezése - + Enable TCP port TCP port engedélyezése - - + + Use specific port: Megadott port használata: - + Overridden by CARLA_OSC_TCP_PORT env var Felülírja a CARLA_OSC_TCP_PORT környezeti változó - - + + Use randomly assigned port Véletlenszerű portszám használata - + Enable UDP port UDP port engedélyezése - + Overridden by CARLA_OSC_UDP_PORT env var Felülírja a CARLA_OSC_UDP_PORT környezeti változó - + DSSI UIs require OSC UDP port enabled - + <b>File Paths</b> <b>Fájl útvonalak</b> - + Audio Audió - + MIDI MIDI - + Used for the "audiofile" plugin - Az "audiofile" plugin számára + Az "audiofile" bővítmény számára - + Used for the "midifile" plugin - A "midifile" plugin számára + A "midifile" bővítmény számára - - + + Add... Hozzáadás... - - + + Remove Eltávolítás - - + + Change... Módosít... - + <b>Plugin Paths</b> - <b>Plugin útvonalak</b> + <b>Bővítmény útvonalak</b> - + LADSPA LADSPA - + DSSI DSSI - + LV2 LV2 - + VST2 VST2 - + VST3 VST3 - + SF2/3 SF2/3 - + SFZ SFZ - + + JSFX + + + + + CLAP + + + + Restart Carla to find new plugins - + <b>Wine</b> <b>Wine</b> - + Executable Futtatható - + Path to 'wine' binary: A 'wine' futtatható állomány útvonala: - + Prefix Prefix - + Auto-detect Wine prefix based on plugin filename - Wine prefix automatikus felismerése a plugin fájlneve alapján + Wine prefix automatikus felismerése a bővítmény fájlneve alapján - + Fallback: Tartalék: - + Note: WINEPREFIX env var is preferred over this fallback Megjegyzés: A WINEPREFIX környezeti változó ezt a beállítást felülbírálja. - + Realtime Priority Valósidejű prioritás - + Base priority: Alap prioritás: - + WineServer priority: WineServer prioritás: - + These options are not available for Carla as plugin - Ezek a beállítások nem elérhetők a Carla pluginként való használatakor. + Ezek a beállítások nem elérhetők a Carla bővítményként való használatakor. - + <b>Experimental</b> <b>Kísérleti</b> - + Experimental options! Likely to be unstable! Ezen funkciók használata instabilitáshoz vezethet! - + Enable plugin bridges Plugin hidak engedélyezése - + Enable Wine bridges Wine hidak engedélyezése - + Enable jack applications JACK alkalmazások engedélyezése - + Export single plugins to LV2 - - Load Carla backend in global namespace (NOT RECOMMENDED) + + Use system/desktop-theme icons (needs restart) - + + Load Carla backend in global namespace (NOT RECOMMENDED) + A Carla backend betöltése globális névtérben (NEM JAVASOLT) + + + Fancy eye-candy (fade-in/out groups, glow connections) Vizuális effektusok - + Use OpenGL for rendering (needs restart) OpenGL használata a rendereléshez (újraindítást igényel) - + High Quality Anti-Aliasing (OpenGL only) Magas minőségű anti-aliasing (csak OpenGL) - + Render Ardour-style "Inline Displays" Ardour-féle "Inline kijelzők" megjelenítése - + Force mono plugins as stereo by running 2 instances at the same time. This mode is not available for VST plugins. - Monó pluginek használata sztereóként 2 példány futtatásával. -Ez a mód nem elérhető VST pluginek esetén. + Monó bővítmények használata sztereóként 2 példány futtatásával. +Ez a mód nem elérhető VST bővítmények esetén. - + Force mono plugins as stereo - Monó pluginek kényszerítése sztereóként + Monó bővítmények használata sztereóként - - Prevent plugins from doing bad stuff (needs restart) + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. - - Whenever possible, run the plugins in bridge mode. + + Prevent unsafe calls from plugins (needs restart) - + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + Run plugins in bridge mode when possible - - - - + + + + Add Path Útvonal hozzáadása - - CompressorControlDialog - - - Threshold: - Küszöb: - - - - Volume at which the compression begins to take place - Az a jelszint, amely felett a kompresszió elkezdődik - - - - Ratio: - Arány: - - - - How far the compressor must turn the volume down after crossing the threshold - Mennyire csökkentse a jelszintet a kompresszor a küszöb átlépése után - - - - Attack: - Attack: - - - - Speed at which the compressor starts to compress the audio - A kompresszió kezdetének sebessége - - - - Release: - Release: - - - - Speed at which the compressor ceases to compress the audio - A kompresszió megszűnésének sebessége - - - - Knee: - Lekerekítés: - - - - Smooth out the gain reduction curve around the threshold - Az erősítési görbe lekerekítése a küszöbérték körül - - - - Range: - Tartomány: - - - - Maximum gain reduction - Maximális jelszint-csökkentés - - - - Lookahead Length: - Előretekintés hossza: - - - - How long the compressor has to react to the sidechain signal ahead of time - A kompresszor ennyi idővel előre reagál a sidechain jelre. - - - - Hold: - Tartás: - - - - Delay between attack and release stages - Az attack és release fázisok közötti késleltetés - - - - RMS Size: - RMS méret: - - - - Size of the RMS buffer - Az RMS puffer mérete - - - - Input Balance: - Bemeneti balansz: - - - - Bias the input audio to the left/right or mid/side - Bemenet eltolása bal/jobb vagy mid/side irányban - - - - Output Balance: - Kimeneti balansz: - - - - Bias the output audio to the left/right or mid/side - Kimenet eltolása bal/jobb vagy mid/side irányban - - - - Stereo Balance: - Sztereó balansz: - - - - Bias the sidechain signal to the left/right or mid/side - Sidechain jel eltolása bal/jobb vagy mid/side irányban - - - - Stereo Link Blend: - Sztereó mód keverése: - - - - Blend between unlinked/maximum/average/minimum stereo linking modes - Sztereó módok közötti keverés - - - - Tilt Gain: - - - - - Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. - - - - - Tilt Frequency: - - - - - Center frequency of sidechain tilt filter - - - - - Mix: - Keverés: - - - - Balance between wet and dry signals - A nyers és a feldolgozott jel aránya - - - - Auto Attack: - - - - - Automatically control attack value depending on crest factor - - - - - Auto Release: - - - - - Automatically control release value depending on crest factor - - - - - Output gain - Kimeneti erősítés - - - - - Gain - Erősítés - - - - Output volume - Kimeneti hangerő - - - - Input gain - Bemeneti erősítés - - - - Input volume - Bemeneti hangerő - - - - Root Mean Square - Négyzetes közép - - - - Use RMS of the input - Bemenet RMS értékének használata - - - - Peak - Csúcsérték - - - - Use absolute value of the input - Bemenet abszolútértékének használata - - - - Left/Right - Bal/Jobb - - - - Compress left and right audio - - - - - Mid/Side - Mid/Side - - - - Compress mid and side audio - - - - - Compressor - Kompresszor - - - - Compress the audio - Audió jel kompresszálása - - - - Limiter - Limiter - - - - Set Ratio to infinity (is not guaranteed to limit audio volume) - Az arány végtelenre állítása (nem garantált a jelszint-korlátozás) - - - - Unlinked - Független - - - - Compress each channel separately - Csatornák kezelése egymástól függetlenül - - - - Maximum - Maximum - - - - Compress based on the loudest channel - A leghangosabb csatorna alapján - - - - Average - Átlag - - - - Compress based on the averaged channel volume - A csatornák átlaga alapján - - - - Minimum - Minimum - - - - Compress based on the quietest channel - A leghalkabb csatorna alapján - - - - Blend - Keverés - - - - Blend between stereo linking modes - Sztereó módok közötti keverés - - - - Auto Makeup Gain - - - - - Automatically change makeup gain depending on threshold, knee, and ratio settings - - - - - - Soft Clip - - - - - Play the delta signal - Különbségi jel hallgatása - - - - Use the compressor's output as the sidechain input - A kompresszor kimenetének használata sidechain bemenetként - - - - Lookahead Enabled - Előretekintés engedélyezése - - - - Enable Lookahead, which introduces 20 milliseconds of latency - Előretekintés engedélyezése, mely 20 ms késést eredményez. - - - - CompressorControls - - - Threshold - Küszöb - - - - Ratio - Arány - - - - Attack - Attack - - - - Release - Release - - - - Knee - Lekerekítés - - - - Hold - Tartás - - - - Range - Tartomány - - - - RMS Size - RMS méret - - - - Mid/Side - Mid/Side - - - - Peak Mode - Csúcsérték mód - - - - Lookahead Length - Előretekintés hossza - - - - Input Balance - Bemeneti balansz - - - - Output Balance - Kimeneti balansz - - - - Limiter - Limiter - - - - Output Gain - Kimeneti erősítés - - - - Input Gain - Bemeneti erősítés - - - - Blend - Keverés - - - - Stereo Balance - Sztereó balansz - - - - Auto Makeup Gain - - - - - Audition - - - - - Feedback - Visszacsatolás - - - - Auto Attack - - - - - Auto Release - - - - - Lookahead - Előretekintés - - - - Tilt - - - - - Tilt Frequency - - - - - Stereo Link - Sztereó összekapcsolás - - - - Mix - Keverés - - - - Controller - - - Controller %1 - Vezérlő %1 - - - - ControllerConnectionDialog - - - Connection Settings - Kapcsolat tulajdonságai - - - - MIDI CONTROLLER - MIDI VEZÉRLŐ - - - - Input channel - Bemeneti csatorna - - - - CHANNEL - CSATORNA - - - - Input controller - Bemeneti eszköz - - - - CONTROLLER - VEZÉRLŐ - - - - - Auto Detect - Automatikus felismerés - - - - MIDI-devices to receive MIDI-events from - MIDI események fogadása erről az eszközről - - - - USER CONTROLLER - SZOFTVERES VEZÉRLŐ - - - - MAPPING FUNCTION - HOZZÁRENDELÉSI FÜGGVÉNY - - - - OK - OK - - - - Cancel - Mégse - - - - LMMS - LMMS - - - - Cycle Detected. - Körkörös hozzárendelés. - - - - ControllerRackView - - - Controller Rack - Vezérlő Rack - - - - Add - Hozzáadás - - - - Confirm Delete - Törlés megerősítése - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Biztosan törlöd? Ehhez a vezérlőhöz működő kapcsolatok tartoznak. A visszavonás nem lehetséges. - - - - ControllerView - - - Controls - Paraméterek - - - - Rename controller - Vezérlő átnevezése - - - - Enter the new name for this controller - Add meg a vezérlő új nevét - - - - LFO - LFO - - - - &Remove this controller - Vezérlő &törlése - - - - Re&name this controller - Vezérlő át&nevezése - - - - CrossoverEQControlDialog - - - Band 1/2 crossover: - Sáv 1/2 frekvencia: - - - - Band 2/3 crossover: - Sáv 2/3 frekvencia: - - - - Band 3/4 crossover: - Sáv 3/4 frekvencia: - - - - Band 1 gain - Sáv 1 erősítés - - - - Band 1 gain: - Sáv 1 erősítés: - - - - Band 2 gain - Sáv 2 erősítés - - - - Band 2 gain: - Sáv 2 erősítés: - - - - Band 3 gain - Sáv 3 erősítés - - - - Band 3 gain: - Sáv 3 erősítés: - - - - Band 4 gain - Sáv 4 erősítés - - - - Band 4 gain: - Sáv 4 erősítés: - - - - Band 1 mute - Sáv 1 némítás - - - - Mute band 1 - Sáv 1 némítás - - - - Band 2 mute - Sáv 2 némítás - - - - Mute band 2 - Sáv 2 némítás - - - - Band 3 mute - Sáv 3 némítás - - - - Mute band 3 - Sáv 3 némítás - - - - Band 4 mute - Sáv 4 némítás - - - - Mute band 4 - Sáv 4 némítás - - - - DelayControls - - - Delay samples - Késleltetési idő - - - - Feedback - Visszacsatolás - - - - LFO frequency - LFO frekvencia - - - - LFO amount - LFO mennyiség - - - - Output gain - Kimeneti erősítés - - - - DelayControlsDialog - - - DELAY - IDŐ - - - - Delay time - Késleltetési idő - - - - FDBK - FDBK - - - - Feedback amount - Visszacsatolás mennyisége: - - - - RATE - FREKV - - - - LFO frequency - LFO frekvencia - - - - AMNT - AMNT - - - - LFO amount - LFO mennyiség - - - - Out gain - Kimeneti erősítés - - - - Gain - Erősítés - - Dialog - - - Add JACK Application - JACK alkalmazás hozzáadása - - - - Note: Features not implemented yet are greyed out - Megjegyzés: A nem implementált funkciók szürkével jelennek meg. - - - - Application - Alkalmazás - - - - Name: - Név: - - - - Application: - Alkalmazás: - - - - From template - Sablonból - - - - Custom - Egyéni - - - - Template: - Sablon: - - - - Command: - Parancs: - - - - Setup - Beállítások - - - - Session Manager: - Munkamenet kezelő: - - - - None - Nincs - - - - Audio inputs: - Audió bemenetek: - - - - MIDI inputs: - MIDI bemenetek: - - - - Audio outputs: - Audió kimenetek: - - - - MIDI outputs: - MIDI kimenetek: - - - - Take control of main application window - Irányítás átvétele az alkalmazás fő ablaka felett - - - - Workarounds - Kerülő megoldások - - - - Wait for external application start (Advanced, for Debug only) - Várakozás a külső alkalmazás indulására (Haladó, csak hibakeresési célra) - - - - Capture only the first X11 Window - Csak az első X11 ablak elkapása - - - - Use previous client output buffer as input for the next client - Előző kliens kimeneti pufferének használata a következő kliens bemeneteként - - - - Simulate 16 JACK MIDI outputs, with MIDI channel as port index - 16 JACK MIDI kimenet szimulálása, ahol a port száma a MIDI csatornát jelöli - - - - Error here - Hiba helye - Carla Control - Connect @@ -3529,28 +1901,6 @@ Ez a mód nem elérhető VST pluginek esetén. TCP Port: TCP Port: - - - Reported host - - - - - Automatic - Automatikus - - - - Custom: - Egyéni: - - - - In some networks (like USB connections), the remote system cannot reach the local network. You can specify here which hostname or IP to make the remote Carla connect to. -If you are unsure, leave it as 'Automatic'. - Bizonyos hálózatokban (példáus USB kapcsolatnál) a távoli rendszer nem éri el a helyi hálózatot. Itt adhatod meg, hogy a távoli Carla példány mely állomásnévhez vagy IP-címhez kapcsolódjon. -Ha nem vagy biztos benne, válaszd az "Automatikus" lehetőséget. - Set value @@ -3582,7 +1932,7 @@ Ha nem vagy biztos benne, válaszd az "Automatikus" lehetőséget. Buffer size: - Buffer méret: + Pufferméret: @@ -3605,948 +1955,6 @@ Ha nem vagy biztos benne, válaszd az "Automatikus" lehetőséget.Indítsd újra a motort az új beállítások betöltéséhez - - DualFilterControlDialog - - - - FREQ - FREKV - - - - - Cutoff frequency - Vágási frekvencia - - - - - RESO - RESO - - - - - Resonance - Rezonancia - - - - - GAIN - ERŐSÍTÉS - - - - - Gain - Erősítés - - - - MIX - MIX - - - - Mix - Keverés - - - - Filter 1 enabled - 1. szűrő engedélyezése - - - - Filter 2 enabled - 2. szűrő engedélyezése - - - - Enable/disable filter 1 - 1. szűrő engedélyezése - - - - Enable/disable filter 2 - 2. szűrő engedélyezése - - - - DualFilterControls - - - Filter 1 enabled - 1. szűrő engedélyezése - - - - Filter 1 type - 1. szűrő típusa - - - - Cutoff frequency 1 - Vágási frekvencia 1 - - - - Q/Resonance 1 - Q/Rezonancia 1 - - - - Gain 1 - Erősítés 1 - - - - Mix - Keverés - - - - Filter 2 enabled - 2. szűrő engedélyezése - - - - Filter 2 type - 2. szűrő típusa - - - - Cutoff frequency 2 - Vágási frekvencia 2 - - - - Q/Resonance 2 - Q/Rezonancia 2 - - - - Gain 2 - Erősítés 2 - - - - - Low-pass - Aluláteresztő - - - - - Hi-pass - Felüláteresztő - - - - - Band-pass csg - Sáváteresztő csg - - - - - Band-pass czpg - Sáváteresztő czpg - - - - - Notch - Lyukszűrő - - - - - All-pass - All-pass - - - - - Moog - Moog - - - - - 2x Low-pass - 2x Aluláteresztő - - - - - RC Low-pass 12 dB/oct - RC aluláteresztő 12 dB/oktáv - - - - - RC Band-pass 12 dB/oct - RC sáváteresztő 12 dB/oktáv - - - - - RC High-pass 12 dB/oct - RC felüláteresztő 12 dB/oktáv - - - - - RC Low-pass 24 dB/oct - RC aluláteresztő 24 dB/oktáv - - - - - RC Band-pass 24 dB/oct - RC sáváteresztő 24 dB/oktáv - - - - - RC High-pass 24 dB/oct - RC felüláteresztő 24 dB/oktáv - - - - - Vocal Formant - - - - - - 2x Moog - 2x Moog - - - - - SV Low-pass - SV aluláteresztő - - - - - SV Band-pass - SV sáváteresztő - - - - - SV High-pass - SV felüláteresztő - - - - - SV Notch - SV lyukszűrő - - - - - Fast Formant - - - - - - Tripole - - - - - Editor - - - Transport controls - Továbbítás vezérlők - - - - Play (Space) - Lejátszás (Space) - - - - Stop (Space) - Stop (Space) - - - - Record - Felvétel - - - - Record while playing - - - - - Toggle Step Recording - - - - - Effect - - - Effect enabled - Effekt engedélyezése - - - - Wet/Dry mix - - - - - Gate - - - - - Decay - Decay - - - - EffectChain - - - Effects enabled - Effektlánc engedélyezése - - - - EffectRackView - - - EFFECTS CHAIN - EFFEKTLÁNC - - - - Add effect - Effekt hozzáadása - - - - EffectSelectDialog - - - Add effect - Effekt hozzáadása - - - - - Name - Név - - - - Type - Típus - - - - Description - Leírás - - - - Author - Készítő - - - - EffectView - - - On/Off - Be/Ki - - - - W/D - W/D - - - - Wet Level: - - - - - DECAY - - - - - Time: - Idő: - - - - GATE - - - - - Gate: - - - - - Controls - Paraméterek - - - - Move &up - Mozgatás &fel - - - - Move &down - Mozgatás &le - - - - &Remove this plugin - Plugin &eltávolítása - - - - EnvelopeAndLfoParameters - - - Env pre-delay - - - - - Env attack - - - - - Env hold - - - - - Env decay - - - - - Env sustain - - - - - Env release - - - - - Env mod amount - - - - - LFO pre-delay - LFO késleltetés - - - - LFO attack - LFO felfutás - - - - LFO frequency - LFO frekvencia - - - - LFO mod amount - LFO moduláció mértéke - - - - LFO wave shape - LFO hullámforma - - - - LFO frequency x 100 - LFO frekvencia x 100 - - - - Modulate env amount - - - - - EnvelopeAndLfoView - - - - DEL - DEL - - - - - Pre-delay: - Késleltetés: - - - - - ATT - ATT - - - - - Attack: - Felfutás: - - - - HOLD - HOLD - - - - Hold: - Tartás: - - - - DEC - DEC - - - - Decay: - Decay: - - - - SUST - SUST - - - - Sustain: - Kitartás: - - - - REL - REL - - - - Release: - Lecsengés: - - - - - AMT - AMT - - - - - Modulation amount: - Moduláció mértéke: - - - - SPD - SPD - - - - Frequency: - Frekvencia: - - - - FREQ x 100 - FREKVENCIA x 100 - - - - Multiply LFO frequency by 100 - LFO frekvencia szorzása 100-zal - - - - MODULATE ENV AMOUNT - - - - - Control envelope amount by this LFO - A burkológörbe erősségének vezérlése az LFO-val - - - - ms/LFO: - ms/LFO: - - - - Hint - Tipp - - - - Drag and drop a sample into this window. - Húzz egy hangmintát erre az ablakra. - - - - EqControls - - - Input gain - Bemeneti erősítés - - - - Output gain - Kimeneti erősítés - - - - Low-shelf gain - - - - - Peak 1 gain - - - - - Peak 2 gain - - - - - Peak 3 gain - - - - - Peak 4 gain - - - - - High-shelf gain - - - - - HP res - Felüláteresztő rezonancia - - - - Low-shelf res - - - - - Peak 1 BW - - - - - Peak 2 BW - - - - - Peak 3 BW - - - - - Peak 4 BW - - - - - High-shelf res - - - - - LP res - Aluláteresztő rezonancia - - - - HP freq - Felüláteresztő frekvencia - - - - Low-shelf freq - - - - - Peak 1 freq - - - - - Peak 2 freq - - - - - Peak 3 freq - - - - - Peak 4 freq - - - - - High-shelf freq - - - - - LP freq - Aluláteresztő frekvencia - - - - HP active - Felüláteresztő aktív - - - - Low-shelf active - - - - - Peak 1 active - - - - - Peak 2 active - - - - - Peak 3 active - - - - - Peak 4 active - - - - - High-shelf active - - - - - LP active - Aluláteresztő aktív - - - - LP 12 - LP 12 - - - - LP 24 - LP 24 - - - - LP 48 - LP 48 - - - - HP 12 - HP 12 - - - - HP 24 - HP 24 - - - - HP 48 - HP 48 - - - - Low-pass type - Aluláteresztő meredeksége - - - - High-pass type - Felüláteresztő meredeksége - - - - Analyse IN - Bemeneti jel mutatása - - - - Analyse OUT - Kimeneti jel mutatása - - - - EqControlsDialog - - - HP - Felüláteresztő - - - - Low-shelf - - - - - Peak 1 - - - - - Peak 2 - - - - - Peak 3 - - - - - Peak 4 - - - - - High-shelf - - - - - LP - Aluláteresztő - - - - Input gain - Bemeneti erősítés - - - - - - Gain - Erősítés - - - - Output gain - Kimeneti erősítés - - - - Bandwidth: - Sávszélesség: - - - - Octave - Oktáv - - - - Resonance : - Rezonancia: - - - - Frequency: - Frekvencia: - - - - LP group - LP csoport - - - - HP group - HP csoport - - - - EqHandle - - - Reso: - Rezonancia: - - - - BW: - Sávszélesség: - - - - - Freq: - Frekvencia: - - ExportProjectDialog @@ -4730,2126 +2138,652 @@ Ha nem vagy biztos benne, válaszd az "Automatikus" lehetőséget.Sinc best (leglassabb) - - Oversampling: - Túlmintavételezés: - - - - 1x (None) - 1x (Nincs) - - - - 2x - 2x - - - - 4x - 4x - - - - 8x - 8x - - - + Start Indítás - + Cancel Mégse - - - Could not open file - Nem lehet megnyitni a fájlt - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - A(z) %1 fájl nem nyitható meg írásra. -Ellenőrizd, hogy rendelkezel-e a szükséges engedélyekkel és próbáld újra! - - - - Export project to %1 - Exportálás a(z) %1 fájlba - - - - ( Fastest - biggest ) - ( Leggyorsabb - legnagyobb ) - - - - ( Slowest - smallest ) - ( Leglassabb - legkisebb ) - - - - Error - Hiba - - - - Error while determining file-encoder device. Please try to choose a different output format. - Hiba a fájlkódoló eszköz meghatározásakor. Próbálj másik kimeneti formátumot választani. - - - - Rendering: %1% - Renderelés: %1% - - - - Fader - - - Set value - Érték megadása - - - - Please enter a new value between %1 and %2: - Adj meg egy új értéket %1 és %2 között: - - - - FileBrowser - - - User content - Saját tartalom - - - - Factory content - Gyári tartalom - - - - Browser - Tallózás - - - - Search - Keresés - - - - Refresh list - Lista frissítése - - - - FileBrowserTreeWidget - - - Send to active instrument-track - Küldés az aktív hangszersávra - - - - Open containing folder - Tartalmazó mappa megnyitása - - - - Song Editor - Dalszerkesztő - - - - BB Editor - Beat+Bassline szerkesztő - - - - Send to new AudioFileProcessor instance - Küldés új AudioFileProcessor példányba - - - - Send to new instrument track - Küldés új hangszersávra - - - - (%2Enter) - (%2Enter) - - - - Send to new sample track (Shift + Enter) - Küldés új audió sávra (Shift + Enter) - - - - Loading sample - Hangminta betöltése - - - - Please wait, loading sample for preview... - Kis türelmet, hangminta betöltése előnézethez... - - - - Error - Hiba - - - - %1 does not appear to be a valid %2 file - %1 nem tűnik érvényes %2 fájlnak. - - - - --- Factory files --- - --- Gyári tartalom --- - - - - FlangerControls - - - Delay samples - Késleltetési idő - - - - LFO frequency - LFO frekvencia - - - - Seconds - Erősség - - - - Stereo phase - Sztereó fázis - - - - Regen - Visszacsatolás - - - - Noise - Zaj - - - - Invert - Invertálás - - - - FlangerControlsDialog - - - DELAY - IDŐ - - - - Delay time: - Késleltetési idő: - - - - RATE - FREKV - - - - Period: - Periódus: - - - - AMNT - AMNT - - - - Amount: - Mérték: - - - - PHASE - FÁZIS - - - - Phase: - Fázis: - - - - FDBK - FDBK - - - - Feedback amount: - Visszacsatolás mértéke: - - - - NOISE - ZAJ - - - - White noise amount: - Fehér zaj mennyisége: - - - - Invert - Invertálás - - - - FreeBoyInstrument - - - Sweep time - - - - - Sweep direction - - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle - Kitöltési tényező - - - - Channel 1 volume - 1. csatorna hangerő - - - - - - Volume sweep direction - - - - - - - Length of each step in sweep - - - - - Channel 2 volume - 2. csatorna hangerő - - - - Channel 3 volume - 3. csatorna hangerő - - - - Channel 4 volume - 4. csatorna hangerő - - - - Shift Register width - Shift regiszter méret - - - - Right output level - Jobb kimeneti szint - - - - Left output level - Bal kimeneti szint - - - - Channel 1 to SO2 (Left) - - - - - Channel 2 to SO2 (Left) - - - - - Channel 3 to SO2 (Left) - - - - - Channel 4 to SO2 (Left) - - - - - Channel 1 to SO1 (Right) - - - - - Channel 2 to SO1 (Right) - - - - - Channel 3 to SO1 (Right) - - - - - Channel 4 to SO1 (Right) - - - - - Treble - Magas - - - - Bass - Mély - - - - FreeBoyInstrumentView - - - Sweep time: - - - - - Sweep time - - - - - Sweep rate shift amount: - - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle: - Kitöltési tényező: - - - - - Wave pattern duty cycle - Kitöltési tényező - - - - Square channel 1 volume: - Négyszög csatorna 1 hangerő: - - - - Square channel 1 volume - Négyszög csatorna 1 hangerő - - - - - - Length of each step in sweep: - - - - - - - Length of each step in sweep - - - - - Square channel 2 volume: - Négyszög csatorna 2 hangerő: - - - - Square channel 2 volume - Négyszög csatorna 2 hangerő - - - - Wave pattern channel volume: - Rajzolt hullám hangerő: - - - - Wave pattern channel volume - Rajzolt hullám hangerő - - - - Noise channel volume: - Zaj csatorna hangerő: - - - - Noise channel volume - Zaj csatorna hangerő - - - - SO1 volume (Right): - - - - - SO1 volume (Right) - - - - - SO2 volume (Left): - - - - - SO2 volume (Left) - - - - - Treble: - Magas: - - - - Treble - Magas - - - - Bass: - Mély: - - - - Bass - Mély - - - - Sweep direction - - - - - - - - - Volume sweep direction - - - - - Shift register width - Shift regiszter méret - - - - Channel 1 to SO1 (Right) - - - - - Channel 2 to SO1 (Right) - - - - - Channel 3 to SO1 (Right) - - - - - Channel 4 to SO1 (Right) - - - - - Channel 1 to SO2 (Left) - - - - - Channel 2 to SO2 (Left) - - - - - Channel 3 to SO2 (Left) - - - - - Channel 4 to SO2 (Left) - - - - - Wave pattern graph - - - - - MixerChannelView - - - Channel send amount - - - - - Move &left - Mozgatás &balra - - - - Move &right - Mozgatás &jobbra - - - - Rename &channel - Csatorna át&nevezése - - - - R&emove channel - Csatorna &eltávolítása - - - - Remove &unused channels - &Nem használt csatornák eltávolítása - - - - Set channel color - Szín módosítása - - - - Remove channel color - Szín eltávolítása - - - - Pick random channel color - Véletlenszerű szín - - - - MixerChannelLcdSpinBox - - - Assign to: - Hozzárendelés: - - - - New mixer Channel - Új csatorna - - - - Mixer - - - Master - Master - - - - - - Channel %1 - FX %1 - - - - Volume - Hangerő - - - - Mute - Némítás - - - - Solo - Szóló - - - - MixerView - - - Mixer - Keverő - - - - Fader %1 - FX Fader %1 - - - - Mute - Némítás - - - - Mute this mixer channel - Csatorna némítása - - - - Solo - Szóló - - - - Solo mixer channel - Csatorna szóló - - - - MixerRoute - - - - Amount to send from channel %1 to channel %2 - %1. csatornáról %2. csatornára küldött jel mennyisége - - - - GigInstrument - - - Bank - Bank - - - - Patch - Patch - - - - Gain - Erősítés - - - - GigInstrumentView - - - - Open GIG file - GIG fájl megnyitása - - - - Choose patch - Patch kiválasztása - - - - Gain: - Erősítés: - - - - GIG Files (*.gig) - GIG fájlok (*.gig) - - - - GuiApplication - - - Working directory - Munkakönyvtár - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - A(z) %1 munkakönyvtár nem létezik. Létrehozod most? A munkakönyvtár bármikor megváltoztatható a Szerkesztés -> Beállítások menüpontban. - - - - Preparing UI - Kezelőfelület előkészítése - - - - Preparing song editor - Dalszerkesztő előkészítése - - - - Preparing mixer - Keverő előkészítése - - - - Preparing controller rack - Controller Rack előkészítése - - - - Preparing project notes - Jegyzetek előkészítése - - - - Preparing beat/bassline editor - Beat+Bassline szerkesztő előkészítése - - - - Preparing piano roll - Piano Roll előkészítése - - - - Preparing automation editor - Automatizáció szerkesztő előkészítése - - - - InstrumentFunctionArpeggio - - - Arpeggio - Arpeggio - - - - Arpeggio type - Arpeggio típusa - - - - Arpeggio range - - - - - Note repeats - Ismétlés - - - - Cycle steps - - - - - Skip rate - Kihagyási arány - - - - Miss rate - Tévesztési arány - - - - Arpeggio time - - - - - Arpeggio gate - - - - - Arpeggio direction - Arpeggio iránya - - - - Arpeggio mode - Arpeggio mód - - - - Up - Fel - - - - Down - Le - - - - Up and down - Fel és le - - - - Down and up - Le és fel - - - - Random - Véletlenszerű - - - - Free - Szabad - - - - Sort - Sorrend - - - - Sync - Szinkron - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - ARPEGGIO - - - - RANGE - - - - - Arpeggio range: - Arpeggio tartomány: - - - - octave(s) - oktáv - - - - REP - - - - - Note repeats: - Ismétlés: - - - - time(s) - - - - - CYCLE - - - - - Cycle notes: - - - - - note(s) - - - - - SKIP - - - - - Skip rate: - Kihagyási arány: - - - - - - % - % - - - - MISS - - - - - Miss rate: - Tévesztési arány: - - - - TIME - IDŐ - - - - Arpeggio time: - Arpeggio sebesség: - - - - ms - ms - - - - GATE - - - - - Arpeggio gate: - - - - - Chord: - Akkord: - - - - Direction: - Irány: - - - - Mode: - Mód: - InstrumentFunctionNoteStacking - + octave oktáv - - + + Major Dúr - + Majb5 Majb5 - + minor Moll - + minb5 minb5 - + sus2 sus2 - + sus4 sus4 - + aug aug - + augsus4 augsus4 - + tri - + tri - + 6 6 - + 6sus4 6sus4 - + 6add9 6add9 - + m6 m6 - + m6add9 m6add9 - + 7 7 - + 7sus4 7sus4 - + 7#5 7#5 - + 7b5 7b5 - + 7#9 7#9 - + 7b9 7b9 - + 7#5#9 7#5#9 - + 7#5b9 7#5b9 - + 7b5b9 7b5b9 - + 7add11 7add11 - + 7add13 7add13 - + 7#11 7#11 - + Maj7 Maj7 - + Maj7b5 Maj7b5 - + Maj7#5 Maj7#5 - + Maj7#11 Maj7#11 - + Maj7add13 Maj7add13 - + m7 m7 - + m7b5 m7b5 - + m7b9 m7b9 - + m7add11 m7add11 - + m7add13 m7add13 - + m-Maj7 m-Maj7 - + m-Maj7add11 m-Maj7add11 - + m-Maj7add13 m-Maj7add13 - + 9 9 - + 9sus4 9sus4 - + add9 add9 - + 9#5 9#5 - + 9b5 9b5 - + 9#11 9#11 - + 9b13 9b13 - + Maj9 Maj9 - + Maj9sus4 Maj9sus4 - + Maj9#5 Maj9#5 - + Maj9#11 Maj9#11 - + m9 m9 - + madd9 madd9 - + m9b5 m9b5 - + m9-Maj7 m9-Maj7 - + 11 11 - + 11b9 11b9 - + Maj11 Maj11 - + m11 m11 - + m-Maj11 m-Maj11 - + 13 13 - + 13#9 13#9 - + 13b9 13b9 - + 13b5b9 13b5b9 - + Maj13 Maj13 - + m13 m13 - + m-Maj13 m-Maj13 - + Harmonic minor Harmonikus moll - + Melodic minor Dallamos moll - + Whole tone Egészhang - + Diminished Szűkített - + Major pentatonic Dúr pentaton - + Minor pentatonic Mól pentaton - + Jap in sen Jap in sen - + Major bebop Dúr Bebop - + Dominant bebop Domináns Bebop - + Blues Blues - + Arabic Arab - + Enigmatic Enigmatikus - + Neopolitan Nápolyi - + Neopolitan minor Nápolyi moll - + Hungarian minor Magyar moll - + Dorian Dór - + Phrygian Fríg - + Lydian Líd - + Mixolydian Mixolíd - + Aeolian Eol - + Locrian Lokriszi - + Minor Moll - + Chromatic Kromatikus - + Half-Whole Diminished Fél-egész szűkített - + 5 5 - + Phrygian dominant Fríg domináns - + Persian Perzsa - - - Chords - Akkordok - - - - Chord type - Akkord típus - - - - Chord range - Akkord tartomány - - - - InstrumentFunctionNoteStackingView - - - STACKING - - - - - Chord: - Akkord: - - - - RANGE - - - - - Chord range: - Akkord tartomány: - - - - octave(s) - oktáv - - - - InstrumentMidiIOView - - - ENABLE MIDI INPUT - MIDI BEMENET ENGEDÉLYEZÉSE - - - - ENABLE MIDI OUTPUT - MIDI KIMENET ENGEDÉLYEZÉSE - - - - - CHAN - This string must be be short, its width must be less than * width of LCD spin-box of two digits - CSAT - - - - - VELOC - This string must be be short, its width must be less than * width of LCD spin-box of three digits - - - - - PROG - This string must be be short, its width must be less than the * width of LCD spin-box of three digits - PROG - - - - NOTE - This string must be be short, its width must be less than * width of LCD spin-box of three digits - - - - - MIDI devices to receive MIDI events from - MIDI események fogadása erről az eszközről - - - - MIDI devices to send MIDI events to - MIDI események küldése erre az eszközre - - - - CUSTOM BASE VELOCITY - - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. - - - - - BASE VELOCITY - - - - - InstrumentTuningView - - - MASTER PITCH - TRANSZPONÁLÁS - - - - Enables the use of master pitch - Transzponálás engedélyezése - InstrumentSoundShaping - + VOLUME HANGERŐ - + Volume Hangerő - + CUTOFF - + FREKV - - + Cutoff frequency Vágási frekvencia - + RESO RESO - + Resonance Rezonancia - - - Envelopes/LFOs - Burkológörbék/LFO-k - - - - Filter type - Szűrő típus - - - - Q/Resonance - Q/Rezonancia - - - - Low-pass - Aluláteresztő - - - - Hi-pass - Felüláteresztő - - - - Band-pass csg - Sáváteresztő csg - - - - Band-pass czpg - Sáváteresztő czpg - - - - Notch - Lyukszűrő - - - - All-pass - All-pass - - - - Moog - Moog - - - - 2x Low-pass - 2x Aluláteresztő - - - - RC Low-pass 12 dB/oct - RC aluláteresztő 12 dB/oktáv - - - - RC Band-pass 12 dB/oct - RC sáváteresztő 12 dB/oktáv - - - - RC High-pass 12 dB/oct - RC felüláteresztő 12 dB/oktáv - - - - RC Low-pass 24 dB/oct - RC aluláteresztő 24 dB/oktáv - - - - RC Band-pass 24 dB/oct - RC sáváteresztő 24 dB/oktáv - - - - RC High-pass 24 dB/oct - RC felüláteresztő 24 dB/oktáv - - - - Vocal Formant - - - - - 2x Moog - 2x Moog - - - - SV Low-pass - SV aluláteresztő - - - - SV Band-pass - SV sáváteresztő - - - - SV High-pass - SV felüláteresztő - - - - SV Notch - SV lyukszűrő - - - - Fast Formant - - - - - Tripole - - - InstrumentSoundShapingView + JackAppDialog - - TARGET - CÉL - - - - FILTER - SZŰRŐ - - - - FREQ - FREKV - - - - Cutoff frequency: - Vágási frekvencia: - - - - Hz - Hz - - - - Q/RESO - Q/RESO - - - - Q/Resonance: - Q/Rezonancia: - - - - Envelopes, LFOs and filters are not supported by the current instrument. - A burkológörbék, LFO-k és szűrők nem támogatottak a jelenlegi hangszer által. - - - - InstrumentTrack - - - - unnamed_track - névtelen_sáv - - - - Base note - Alaphang - - - - First note - Legalsó hang - - - - Last note - Legfelső hang - - - - Volume - Hangerő - - - - Panning - Panoráma - - - - Pitch - Hangmagasság - - - - Pitch range - Hangmagasság tartomány - - - - Mixer channel - Keverő csatorna - - - - Master pitch - Transzponálás - - - - Enable/Disable MIDI CC - MIDI CC engedélyezése - - - - CC Controller %1 - CC vezérlő %1 - - - - - Default preset - Alapértelmezett preset - - - - InstrumentTrackView - - - Volume - Hangerő - - - - Volume: - Hangerő: - - - - VOL - VOL - - - - Panning - Panoráma - - - - Panning: - Panoráma: - - - - PAN - PAN - - - - MIDI - MIDI - - - - Input - Bemenet - - - - Output - Kimenet - - - - Open/Close MIDI CC Rack - MIDI CC Rack megnyitása/bezárása - - - - Channel %1: %2 - FX %1: %2 - - - - InstrumentTrackWindow - - - GENERAL SETTINGS - ÁLTALÁNOS BEÁLLÍTÁSOK - - - - Volume - Hangerő - - - - Volume: - Hangerő: - - - - VOL - VOL - - - - Panning - Panoráma - - - - Panning: - Panoráma: - - - - PAN - PAN - - - - Pitch - Hangmagasság - - - - Pitch: - Hangmagasság: - - - - cents - cent - - - - PITCH + + Add JACK Application - - Pitch range (semitones) - Hangmagasság tartomány (félhangok) - - - - RANGE + + Note: Features not implemented yet are greyed out - - Mixer channel - Keverő csatorna - - - - CHANNEL - FX - - - - Save current instrument track settings in a preset file - Aktuális hangszersáv beállításainak mentése - - - - SAVE - MENTÉS - - - - Envelope, filter & LFO - Burkológörbe, szűrő, LFO - - - - Chord stacking & arpeggio + + Application - - Effects - Effektek + + Name: + - - MIDI - MIDI + + Application: + - - Miscellaneous - Egyéb + + From template + - - Save preset - Preset mentése + + Custom + - - XML preset file (*.xpf) - XML preset fájl (*.xpf) + + Template: + - - Plugin - Plugin + + Command: + - - - JackApplicationW - + + Setup + + + + + Session Manager: + + + + + None + + + + + Audio inputs: + + + + + MIDI inputs: + + + + + Audio outputs: + + + + + MIDI outputs: + + + + + Take control of main application window + + + + + Workarounds + + + + + Wait for external application start (Advanced, for Debug only) + + + + + Capture only the first X11 Window + + + + + Use previous client output buffer as input for the next client + + + + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + + + + + Error here + + + + NSM applications cannot use abstract or absolute paths - + NSM applications cannot use CLI arguments - + You need to save the current Carla project before NSM can be used @@ -6857,948 +2791,11 @@ Ellenőrizd, hogy rendelkezel-e a szükséges engedélyekkel és próbáld újra JuceAboutW - - About JUCE - A JUCE névjegye - - - - <b>About JUCE</b> - <b>A JUCE névjegye</b> - - - - This program uses JUCE version 3.x.x. - Ez a program a JUCE 3.x.x verziót használja. - - - - JUCE (Jules' Utility Class Extensions) is an all-encompassing C++ class library for developing cross-platform software. - -It contains pretty much everything you're likely to need to create most applications, and is particularly well-suited for building highly-customised GUIs, and for handling graphics and sound. - -JUCE is licensed under the GNU Public Licence version 2.0. -One module (juce_core) is permissively licensed under the ISC. - -Copyright (C) 2017 ROLI Ltd. - - - - + This program uses JUCE version %1. Ez a program a JUCE %1 verziót használja. - - Knob - - - Set linear - Lineáris skála - - - - Set logarithmic - Logaritmikus skála - - - - - Set value - Érték megadása - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - Adj meg egy új értéket -96.0 dBFS és 6.0 dBFS között: - - - - Please enter a new value between %1 and %2: - Adj meg egy új értéket %1 és %2 között: - - - - LadspaControl - - - Link channels - Csatornák összekapcsolása - - - - LadspaControlDialog - - - Link Channels - Csatornák összekapcsolása - - - - Channel - Csatorna - - - - LadspaControlView - - - Link channels - Csatornák összekapcsolása - - - - Value: - Érték: - - - - LadspaEffect - - - Unknown LADSPA plugin %1 requested. - Ismeretlen LADSPA plugin: %1 - - - - LcdFloatSpinBox - - - Set value - Érték megadása - - - - Please enter a new value between %1 and %2: - Adj meg egy új értéket %1 és %2 között: - - - - LcdSpinBox - - - Set value - Érték megadása - - - - Please enter a new value between %1 and %2: - Adj meg egy új értéket %1 és %2 között: - - - - LeftRightNav - - - - - Previous - Előző - - - - - - Next - Következő - - - - Previous (%1) - Előző (%1) - - - - Next (%1) - Következő (%1) - - - - LfoController - - - LFO Controller - LFO vezérlő - - - - Base value - Alapérték - - - - Oscillator speed - Oszcillátor sebesség - - - - Oscillator amount - Moduláció mértéke - - - - Oscillator phase - Oszcillátor fázis - - - - Oscillator waveform - Oszcillátor hullámforma - - - - Frequency Multiplier - Frekvencia szorzó - - - - LfoControllerDialog - - - LFO - LFO - - - - BASE - ALAP - - - - Base: - Alapérték: - - - - FREQ - FREKV - - - - LFO frequency: - LFO frekvencia: - - - - AMNT - AMNT - - - - Modulation amount: - Moduláció mértéke: - - - - PHS - - - - - Phase offset: - Fáziseltolás: - - - - degrees - fok - - - - Sine wave - Szinuszhullám - - - - Triangle wave - Háromszöghullám - - - - Saw wave - Fűrészfoghullám - - - - Square wave - Négyszöghullám - - - - Moog saw wave - Moog fűrészfog - - - - Exponential wave - Exponenciális - - - - White noise - Fehér zaj - - - - User-defined shape. -Double click to pick a file. - Felhasználó által megadott hullámforma. -Kattints duplán egy fájl kiválasztásához. - - - - Mutliply modulation frequency by 1 - Frekvencia szorzása 1-gyel - - - - Mutliply modulation frequency by 100 - Frekvencia szorzása 100-zal - - - - Divide modulation frequency by 100 - Frekvencia osztása 100-zal - - - - Engine - - - Generating wavetables - Hullámtáblák generálása - - - - Initializing data structures - Adatstruktúrák inicializálása - - - - Opening audio and midi devices - Audio és MIDI eszközök megnyitása - - - - Launching mixer threads - - - - - MainWindow - - - Configuration file - Konfigurációs fájl - - - - Error while parsing configuration file at line %1:%2: %3 - Hiba a konfigurációs fájl olvasásakor: -%1:%2: %3 - - - - Could not open file - Nem lehet megnyitni a fájlt - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - A(z) %1 fájl nem nyitható meg írásra. -Ellenőrizd, hogy rendelkezel-e a szükséges engedélyekkel és próbáld újra! - - - - Project recovery - Projekt helyreállítása - - - - There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - Létezik egy visszaállítási fájl. Úgy tűnik, hogy a legutóbbi munkamenet nem megfelelően fejeződött be, vagy az LMMS egy másik példánya már fut. Szeretnéd helyreállítani a munkamenetet? - - - - - Recover - Visszaállítás - - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - - - - - - Discard - Elvetés - - - - Launch a default session and delete the restored files. This is not reversible. - Üres munkamenet indítása és a visszaállított fájlok törlése. Ez a művelet nem vonható vissza. - - - - Version %1 - Verzió %1 - - - - Preparing plugin browser - Plugin tallózó előkészítése - - - - Preparing file browsers - Fájltallózók előlészítése - - - - My Projects - Projektjeim - - - - My Samples - Mintáim - - - - My Presets - Presetek - - - - My Home - Mappám - - - - Root directory - Gyökérkönyvtár - - - - Volumes - Hangerők - - - - My Computer - Számítógépem - - - - &File - &Fájl - - - - &New - &Új - - - - &Open... - &Megnyitás... - - - - Loading background picture - Háttérkép betöltése - - - - &Save - &Mentés - - - - Save &As... - Mentés &másként... - - - - Save as New &Version - Mentés új &verzióként - - - - Save as default template - Mentés alapértelmezett sablonként - - - - Import... - Importálás... - - - - E&xport... - E&xportálás... - - - - E&xport Tracks... - Sávonkénti e&xportálás - - - - Export &MIDI... - &MIDI exportálása... - - - - &Quit - &Kilépés - - - - &Edit - &Szerkesztés - - - - Undo - Visszavonás - - - - Redo - Mégis - - - - Settings - Beállítások - - - - &View - &Nézet - - - - &Tools - &Eszközök - - - - &Help - &Súgó - - - - Online Help - Online súgó - - - - Help - Súgó - - - - About - Névjegy - - - - Create new project - Új projekt létrehozása - - - - Create new project from template - Új projekt létrehozása sablonból - - - - Open existing project - Már létező projekt megnyitása - - - - Recently opened projects - Legutóbbi projektek - - - - Save current project - Jelenlegi projekt mentése - - - - Export current project - Jelenlegi projekt exportálása - - - - Metronome - Metronóm - - - - - Song Editor - Dalszerkesztő - - - - - Beat+Bassline Editor - Beat+Bassline szerkesztő - - - - - Piano Roll - Piano Roll - - - - - Automation Editor - Automatizáció szerkesztő - - - - - Mixer - Keverő - - - - Show/hide controller rack - Controller Rack megjelenítése/elrejtése - - - - Show/hide project notes - Jegyzetek megjelenítése/elrejtése - - - - Untitled - Névtelen - - - - Recover session. Please save your work! - - - - - LMMS %1 - LMMS %1 - - - - Recovered project not saved - - - - - This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? - Ez a projekt egy korábbi munkamenetből lett visszaállítva és jelenleg nincs mentve. El akarod menteni most? - - - - Project not saved - A projekt nincs elmentve - - - - The current project was modified since last saving. Do you want to save it now? - A jelenlegi projekt módosítva lett a legutóbbi mentés óta. El szeretnéd menteni most? - - - - Open Project - Projekt megnyitása - - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - - Save Project - Projekt mentése - - - - LMMS Project - LMMS Projekt - - - - LMMS Project Template - LMMS Projekt Sablon - - - - Save project template - Projekt sablon mentése - - - - Overwrite default template? - Felülírod az alapértelmezett sablont? - - - - This will overwrite your current default template. - Ez a művelet felülírja a jelenlegi alapértelmezett sablont. - - - - Help not available - Súgó nem elérhatő - - - - Currently there's no help available in LMMS. -Please visit http://lmms.sf.net/wiki for documentation on LMMS. - - - - - Controller Rack - Vezérlő Rack - - - - Project Notes - Jegyzetek - - - - Fullscreen - Teljes képernyő - - - - Volume as dBFS - Hangerő dBFS-ként - - - - Smooth scroll - Sima görgetés - - - - Enable note labels in piano roll - - - - - MIDI File (*.mid) - MIDI fájl (*.mid) - - - - - untitled - névtelen - - - - - Select file for project-export... - Válassz egy fájlt az exportáláshoz... - - - - Select directory for writing exported tracks... - Válassz mappát az exportált fájloknak... - - - - Save project - Projekt mentése - - - - Project saved - Projekt mentve - - - - The project %1 is now saved. - A(z) %1 projekt mentésre került. - - - - Project NOT saved. - A projekt NEM került mentésre. - - - - The project %1 was not saved! - A(z) %1 projekt mentése nem sikerült! - - - - Import file - Fájl importálása - - - - MIDI sequences - MIDI szekvenciák - - - - Hydrogen projects - Hydrogen projektek - - - - All file types - Minden fájl - - - - MeterDialog - - - - Meter Numerator - Ütemmutató számláló - - - - Meter numerator - Ütemmutató számláló - - - - - Meter Denominator - Ütemmutató nevező - - - - Meter denominator - Ütemmutató nevező - - - - TIME SIG - - - - - MeterModel - - - Numerator - Számláló - - - - Denominator - Nevező - - - - MidiCCRackView - - - - MIDI CC Rack - %1 - MIDI CC Rack - %1 - - - - MIDI CC Knobs: - MIDI CC vezérlők: - - - - CC %1 - CC %1 - - - - MidiController - - - MIDI Controller - MIDI vezérlő - - - - unnamed_midi_controller - névtelen_midi_vezérlő - - - - MidiImport - - - - Setup incomplete - - - - - You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. - Nincs megadva alapértelmezett SoundFont fájl, ezért az importált sávok lejátszásakor semmilyen hang nem lesz hallható. Javasoljuk, hogy tölts le egy General MIDI hangkészletfájlt, add meg a Beállítások ablakban, majd próbálkozz újra. - - - - You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - - - - - MIDI Time Signature Numerator - MIDI ütemmutató számláló - - - - MIDI Time Signature Denominator - MIDI ütemmutató nevező - - - - Numerator - Számláló - - - - Denominator - Nevező - - - - Track - Sáv - - - - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - JACK szerver leállt - - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - Úgy tűnik, a JACK kiszolgáló leállt. - - MidiPatternW @@ -8004,2731 +3001,370 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. &Kilépés - - &Insert Mode + + Esc + &Insert Mode + &Beszúrás mód + + + F F - + &Velocity Mode - + &Velocity Mód - + D D - + Select All Összes kijelölése - + A A - - MidiPort - - - Input channel - Bemeneti csatorna - - - - Output channel - Kimeneti csatorna - - - - Input controller - Bemeneti eszköz - - - - Output controller - Kimeneti eszköz - - - - Fixed input velocity - - - - - Fixed output velocity - - - - - Fixed output note - - - - - Output MIDI program - Kimenő MIDI program - - - - Base velocity - - - - - Receive MIDI-events - MIDI események fogadása - - - - Send MIDI-events - MIDI események küldése - - - - MidiSetupWidget - - - Device - Eszköz - - - - MonstroInstrument - - - Osc 1 volume - Osc 1 hangerő - - - - Osc 1 panning - Osc 1 panoráma - - - - Osc 1 coarse detune - Osc 1 hangolás - - - - Osc 1 fine detune left - Osc 1 finomhangolás bal - - - - Osc 1 fine detune right - Osc 1 finomhangolás jobb - - - - Osc 1 stereo phase offset - Osc 1 sztereó fáziseltolás - - - - Osc 1 pulse width - Osc 1 pulzusszélesség - - - - Osc 1 sync send on rise - Osc 1 szinkron küldése a felfutó élen - - - - Osc 1 sync send on fall - Osc 1 szinkron küldése a lefutó élen - - - - Osc 2 volume - Osc 2 hangerő - - - - Osc 2 panning - Osc 2 panoráma - - - - Osc 2 coarse detune - Osc 2 hangolás - - - - Osc 2 fine detune left - Osc 2 finomhangolás bal - - - - Osc 2 fine detune right - Osc 2 finomhangolás jobb - - - - Osc 2 stereo phase offset - Osc 2 sztereó fáziseltolás - - - - Osc 2 waveform - Osc 2 hullámforma - - - - Osc 2 sync hard - - - - - Osc 2 sync reverse - - - - - Osc 3 volume - Osc 3 hangerő - - - - Osc 3 panning - Osc 3 panoráma - - - - Osc 3 coarse detune - Osc 3 hangolás - - - - Osc 3 Stereo phase offset - Osc 3 sztereó fáziseltolás - - - - Osc 3 sub-oscillator mix - - - - - Osc 3 waveform 1 - Osc 3, 1. hullámforma - - - - Osc 3 waveform 2 - Osc 3, 2. hullámforma - - - - Osc 3 sync hard - - - - - Osc 3 Sync reverse - - - - - LFO 1 waveform - LFO 1 hullámforma - - - - LFO 1 attack - LFO 1 felfutás - - - - LFO 1 rate - LFO 1 frekvencia - - - - LFO 1 phase - LFO 1 fázis - - - - LFO 2 waveform - LFO 2 hullámforma - - - - LFO 2 attack - LFO 2 felfutás - - - - LFO 2 rate - LFO 2 frekvencia - - - - LFO 2 phase - LFO 2 fázis - - - - Env 1 pre-delay - Burkológörbe 1 késleltetés - - - - Env 1 attack - Burkológörbe 1 felfutás - - - - Env 1 hold - Env 1 hold - - - - Env 1 decay - Env 1 decay - - - - Env 1 sustain - Env 1 sustain - - - - Env 1 release - Env 1 release - - - - Env 1 slope - Burkológörbe 1 meredekség - - - - Env 2 pre-delay - Env 2 késleltetés - - - - Env 2 attack - Env 2 attack - - - - Env 2 hold - Env 2 hold - - - - Env 2 decay - Env 2 decay - - - - Env 2 sustain - Env 2 sustain - - - - Env 2 release - Env 2 release - - - - Env 2 slope - Burkológörbe 2 meredekség - - - - Osc 2+3 modulation - Osc 2+3 moduláció - - - - Selected view - Kiválasztott nézet - - - - Osc 1 - Vol env 1 - Osc 1 - Vol env 1 - - - - Osc 1 - Vol env 2 - Osc 1 - Vol env 2 - - - - Osc 1 - Vol LFO 1 - Osc 1 - Hangerő LFO 1 - - - - Osc 1 - Vol LFO 2 - Osc 1 - Hangerő LFO 2 - - - - Osc 2 - Vol env 1 - Osc 2 - Vol env 1 - - - - Osc 2 - Vol env 2 - Osc 2 - Vol env 2 - - - - Osc 2 - Vol LFO 1 - Osc 2 - Hangerő LFO 1 - - - - Osc 2 - Vol LFO 2 - Osc 2 - Hangerő LFO 2 - - - - Osc 3 - Vol env 1 - Osc 3 - Vol env 1 - - - - Osc 3 - Vol env 2 - Osc 3 - Vol env 2 - - - - Osc 3 - Vol LFO 1 - Osc 3 - Hangerő LFO 1 - - - - Osc 3 - Vol LFO 2 - Osc 3 - Hangerő LFO 2 - - - - Osc 1 - Phs env 1 - Osc 1 - Phs env 1 - - - - Osc 1 - Phs env 2 - Osc 1 - Phs env 2 - - - - Osc 1 - Phs LFO 1 - Osc 1 - Fázis LFO 1 - - - - Osc 1 - Phs LFO 2 - Osc 1 - Fázis LFO 2 - - - - Osc 2 - Phs env 1 - Osc 2 - Phs env 1 - - - - Osc 2 - Phs env 2 - Osc 2 - Phs env 2 - - - - Osc 2 - Phs LFO 1 - Osc 2 - Fázis LFO 1 - - - - Osc 2 - Phs LFO 2 - Osc 2 - Fázis LFO 2 - - - - Osc 3 - Phs env 1 - Osc 3 - Phs env 1 - - - - Osc 3 - Phs env 2 - Osc 3 - Phs env 2 - - - - Osc 3 - Phs LFO 1 - Osc 3 - Fázis LFO 1 - - - - Osc 3 - Phs LFO 2 - Osc 3 - Fázis LFO 2 - - - - Osc 1 - Pit env 1 - Osc 1 - Pit env 1 - - - - Osc 1 - Pit env 2 - Osc 1 - Pit env 2 - - - - Osc 1 - Pit LFO 1 - Osc 1 - Pit LFO 1 - - - - Osc 1 - Pit LFO 2 - Osc 1 - Pit LFO 2 - - - - Osc 2 - Pit env 1 - Osc 2 - Pit env 1 - - - - Osc 2 - Pit env 2 - Osc 2 - Pit env 2 - - - - Osc 2 - Pit LFO 1 - Osc 2 - Pit LFO 1 - - - - Osc 2 - Pit LFO 2 - Osc 2 - Pit LFO 2 - - - - Osc 3 - Pit env 1 - Osc 3 - Pit env 1 - - - - Osc 3 - Pit env 2 - Osc 3 - Pit env 2 - - - - Osc 3 - Pit LFO 1 - Osc 3 - Pit LFO 1 - - - - Osc 3 - Pit LFO 2 - Osc 3 - Pit LFO 2 - - - - Osc 1 - PW env 1 - Osc 1 - PW env 1 - - - - Osc 1 - PW env 2 - Osc 1 - PW env 2 - - - - Osc 1 - PW LFO 1 - Osc 1 - PW LFO 1 - - - - Osc 1 - PW LFO 2 - Osc 1 - PW LFO 2 - - - - Osc 3 - Sub env 1 - Osc 3 - Sub env 1 - - - - Osc 3 - Sub env 2 - Osc 3 - Sub env 2 - - - - Osc 3 - Sub LFO 1 - Osc 3 - Sub LFO 1 - - - - Osc 3 - Sub LFO 2 - Osc 3 - Sub LFO 2 - - - - - Sine wave - Szinuszhullám - - - - Bandlimited Triangle wave - Sávlimitált háromszög - - - - Bandlimited Saw wave - Sávlimitált fűrészfog - - - - Bandlimited Ramp wave - Sávlimitált rámpa - - - - Bandlimited Square wave - Sávlimitált négyszög - - - - Bandlimited Moog saw wave - Sávlimitált Moog fűrészfog - - - - - Soft square wave - Lekerekített négyszög - - - - Absolute sine wave - Egyenirányított szinusz - - - - - Exponential wave - Exponenciális - - - - White noise - Fehér zaj - - - - Digital Triangle wave - Digitális háromszög - - - - Digital Saw wave - Digitális fűrészfog - - - - Digital Ramp wave - Digitális rámpa - - - - Digital Square wave - Digitális négyszög - - - - Digital Moog saw wave - Digitális Moog fűrészfog - - - - Triangle wave - Háromszöghullám - - - - Saw wave - Fűrészfoghullám - - - - Ramp wave - Rámpa - - - - Square wave - Négyszöghullám - - - - Moog saw wave - Moog fűrészfog - - - - Abs. sine wave - Egyenirányított szinusz - - - - Random - Véletlenszerű - - - - Random smooth - Véletlenszerű folyamatos - - - - MonstroView - - - Operators view - Operátor nézet - - - - Matrix view - Mátrix nézet - - - - - - Volume - Hangerő - - - - - - Panning - Panoráma - - - - - - Coarse detune - Elhangolás - - - - - - semitones - félhang - - - - - Fine tune left - Finomhangolás bal - - - - - - - cents - cent - - - - - Fine tune right - Finomhangolás jobb - - - - - - Stereo phase offset - Sztereó fáziseltolás - - - - - - - - deg - fok - - - - Pulse width - Pulzusszélesség - - - - Send sync on pulse rise - Szinkron küldése a felfutó élen - - - - Send sync on pulse fall - Szinkron küldése a lefutó élen - - - - Hard sync oscillator 2 - - - - - Reverse sync oscillator 2 - - - - - Sub-osc mix - - - - - Hard sync oscillator 3 - - - - - Reverse sync oscillator 3 - - - - - - - - Attack - Attack - - - - - Rate - Ütem: - - - - - Phase - Fázis - - - - - Pre-delay - Késleltetés - - - - - Hold - Tartás - - - - - Decay - Decay - - - - - Sustain - Kitartás - - - - - Release - Release - - - - - Slope - Meredekség - - - - Mix osc 2 with osc 3 - - - - - Modulate amplitude of osc 3 by osc 2 - 3. oszcillátor amplitúdójának modulációja a 2. oszcillátorral - - - - Modulate frequency of osc 3 by osc 2 - 3. oszcillátor frekvenciájának modulációja a 2. oszcillátorral - - - - Modulate phase of osc 3 by osc 2 - 3. oszcillátor fázisának modulációja a 2. oszcillátorral - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Modulation amount - Moduláció mértéke - - - - MultitapEchoControlDialog - - - Length - Hossz - - - - Step length: - Lépéshossz: - - - - Dry - - - - - Dry gain: - - - - - Stages - Fokozatok - - - - Low-pass stages: - Aluláteresztő fokozatok: - - - - Swap inputs - Bemenetek felcserélése - - - - Swap left and right input channels for reflections - - - - - NesInstrument - - - Channel 1 coarse detune - 1. csatorna hangolás - - - - Channel 1 volume - 1. csatorna hangerő - - - - Channel 1 envelope length - 1. csatorna burkológörbe hossza - - - - Channel 1 duty cycle - 1. csatorna kitöltési tényező - - - - Channel 1 sweep amount - - - - - Channel 1 sweep rate - - - - - Channel 2 Coarse detune - 2. csatorna hangolás - - - - Channel 2 Volume - 2. csatorna hangerő - - - - Channel 2 envelope length - 2. csatorna burkológörbe hossza - - - - Channel 2 duty cycle - 2. csatorna kitöltési tényező - - - - Channel 2 sweep amount - - - - - Channel 2 sweep rate - - - - - Channel 3 coarse detune - 3. csatorna hangolás - - - - Channel 3 volume - 3. csatorna hangerő - - - - Channel 4 volume - 4. csatorna hangerő - - - - Channel 4 envelope length - 4. csatorna burkológörbe hossza - - - - Channel 4 noise frequency - 4. csatorna frekvencia - - - - Channel 4 noise frequency sweep - - - - - Master volume - Fő hangerő - - - - Vibrato - Vibrato - - - - NesInstrumentView - - - - - - Volume - Hangerő - - - - - - Coarse detune - Elhangolás: - - - - - - Envelope length - Burkológörbe hossza - - - - Enable channel 1 - 1. csatorna engedélyezése - - - - Enable envelope 1 - 1. burkológörbe engedélyezése - - - - Enable envelope 1 loop - 1. burkológörbe ismétlése - - - - Enable sweep 1 - - - - - - Sweep amount - - - - - - Sweep rate - - - - - - 12.5% Duty cycle - 12.5%-os kitöltés - - - - - 25% Duty cycle - 25%-os kitöltés - - - - - 50% Duty cycle - 50%-os kitöltés - - - - - 75% Duty cycle - 75%-os kitöltés - - - - Enable channel 2 - 2. csatorna engedélyezése - - - - Enable envelope 2 - 2. burkológörbe engedélyezése - - - - Enable envelope 2 loop - 2. burkológörbe ismétlése - - - - Enable sweep 2 - - - - - Enable channel 3 - 3. csatorna engedélyezése - - - - Noise Frequency - Zaj frekvencia: - - - - Frequency sweep - - - - - Enable channel 4 - 4. csatorna engedélyezése - - - - Enable envelope 4 - 4. burkológörbe engedélyezése - - - - Enable envelope 4 loop - 4. burkológörbe ismétlése - - - - Quantize noise frequency when using note frequency - - - - - Use note frequency for noise - - - - - Noise mode - Zaj mód - - - - Master volume - Fő hangerő - - - - Vibrato - Vibrato - - - - OpulenzInstrument - - - Patch - Patch - - - - Op 1 attack - Op 1 felfutás - - - - Op 1 decay - Op 1 csillapítás - - - - Op 1 sustain - Op 1 kitartás - - - - Op 1 release - Op 1 lecsengés - - - - Op 1 level - Op 1 jelszint - - - - Op 1 level scaling - - - - - Op 1 frequency multiplier - Op 1 frekvencia szorzó - - - - Op 1 feedback - Op 1 visszacsatolás - - - - Op 1 key scaling rate - - - - - Op 1 percussive envelope - Op 1 perkusszív burkológörbe - - - - Op 1 tremolo - Op 1 tremolo - - - - Op 1 vibrato - Op 1 vibrato - - - - Op 1 waveform - Op 1 hullámforma - - - - Op 2 attack - Op 2 felfutás - - - - Op 2 decay - Op 2 csillapítás - - - - Op 2 sustain - Op 2 kitartás - - - - Op 2 release - Op 2 lecsengés - - - - Op 2 level - Op 2 jelszint - - - - Op 2 level scaling - - - - - Op 2 frequency multiplier - Op 2 frekvencia szorzó - - - - Op 2 key scaling rate - - - - - Op 2 percussive envelope - Op 2 perkusszív burkológörbe - - - - Op 2 tremolo - Op 2 tremolo - - - - Op 2 vibrato - Op 2 vibrato - - - - Op 2 waveform - Op 2 hullámforma - - - - FM - FM - - - - Vibrato depth - Vibrato mélység - - - - Tremolo depth - Tremolo mélység - - - - OpulenzInstrumentView - - - - Attack - Felfutás - - - - - Decay - Decay - - - - - Release - Release - - - - - Frequency multiplier - Frekvencia szorzó - - - - OscillatorObject - - - Osc %1 waveform - Osc %1 hullámforma - - - - Osc %1 harmonic - Osc %1 harmonikus - - - - - Osc %1 volume - Osc %1 hangerő - - - - - Osc %1 panning - Osc %1 panoráma - - - - - Osc %1 fine detuning left - Osc %1 finomhangolás bal - - - - Osc %1 coarse detuning - Osc %1 hangolás - - - - Osc %1 fine detuning right - Osc %1 finomhangolás jobb - - - - Osc %1 phase-offset - Osc %1 fáziseltolás - - - - Osc %1 stereo phase-detuning - Osc %1 sztereó fáziseltolás - - - - Osc %1 wave shape - Osc %1 hullámforma - - - - Modulation type %1 - Moduláció típus %1 - - - - Oscilloscope - - - Oscilloscope - Oszcilloszkóp - - - - Click to enable - Kattints az engedélyezéshez - - PatchesDialog + Qsynth: Channel Preset + Bank selector Bank választó + Bank Bank + Program selector Program választó + Patch Patch + Name Név + OK OK + Cancel Mégse - - PatmanView - - - Open patch - Patch megnyitása - - - - Loop - Ismétlés - - - - Loop mode - Ismétlési mód - - - - Tune - - - - - Tune mode - - - - - No file selected - Nincs kiválasztva fájl - - - - Open patch file - Patch fájl megnyitása - - - - Patch-Files (*.pat) - Patch fájlok (*.pat) - - - - MidiClipView - - - Open in piano-roll - Megnyitás a Piano Rollban - - - - Set as ghost in piano-roll - - - - - Clear all notes - - - - - Reset name - Név visszaállítása - - - - Change name - Átnevezés - - - - Add steps - Lépések hozzáadása - - - - Remove steps - Lépések eltávolítása - - - - Clone Steps - Megduplázás - - - - PeakController - - - Peak Controller - - - - - Peak Controller Bug - - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - - - - - PeakControllerDialog - - - PEAK - - - - - LFO Controller - LFO vezérlő - - - - PeakControllerEffectControlDialog - - - BASE - ALAP - - - - Base: - Alapérték: - - - - AMNT - AMNT - - - - Modulation amount: - Moduláció mértéke: - - - - MULT - - - - - Amount multiplicator: - - - - - ATCK - ATCK - - - - Attack: - Felfutás: - - - - DCAY - DCAY - - - - Release: - Lecsengés: - - - - TRSH - - - - - Treshold: - Küszöb: - - - - Mute output - Kimenet némítása - - - - Absolute value - Abszolútérték - - - - PeakControllerEffectControls - - - Base value - Alapérték - - - - Modulation amount - Moduláció mértéke - - - - Attack - Felfutás - - - - Release - Release - - - - Treshold - Küszöb - - - - Mute output - Kimenet némítása - - - - Absolute value - Abszolútérték - - - - Amount multiplicator - - - - - PianoRoll - - - Note Velocity - - - - - Note Panning - - - - - Mark/unmark current semitone - - - - - Mark/unmark all corresponding octave semitones - - - - - Mark current scale - Skála megjelölése - - - - Mark current chord - Akkord megjelölése - - - - Unmark all - Minden jelölés törlése - - - - Select all notes on this key - - - - - Note lock - - - - - Last note - Legutóbbi - - - - No key - - - - - No scale - Nincs skála - - - - No chord - Nincs akkord - - - - Nudge - - - - - Snap - - - - - Velocity: %1% - - - - - Panning: %1% left - Panoráma: %1% bal - - - - Panning: %1% right - Panoráma: %1% jobb - - - - Panning: center - Panoráma: közép - - - - Glue notes failed - - - - - Please select notes to glue first. - - - - - Please open a clip by double-clicking on it! - Nyiss meg egy kilppet dupla kattintással! - - - - - Please enter a new value between %1 and %2: - Adj meg egy új értéket %1 és %2 között: - - - - PianoRollWindow - - - Play/pause current clip (Space) - Klip lejátszása/megállítása (Space) - - - - Record notes from MIDI-device/channel-piano - - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - - - - - Record notes from MIDI-device/channel-piano, one step at the time - - - - - Stop playing of current clip (Space) - Lejátszás leállítása (Space) - - - - Edit actions - Műveletek szerkesztése - - - - Draw mode (Shift+D) - Beszúrás (Shift+D) - - - - Erase mode (Shift+E) - Törlés (Shift+E) - - - - Select mode (Shift+S) - Kijelölés (Shift+S) - - - - Pitch Bend mode (Shift+T) - Hajlítás (Shift+T) - - - - Quantize - Kvantálás - - - - Quantize positions - Pozíció kvantálása - - - - Quantize lengths - Hosszúság kvantálása - - - - File actions - Fájl műveletek - - - - Import clip - Pattern importálása - - - - - Export clip - Pattern exportálása - - - - Copy paste controls - - - - - Cut (%1+X) - Kivágás (%1+X) - - - - Copy (%1+C) - Másolás (%1+C) - - - - Paste (%1+V) - Beillesztés (%1+V) - - - - Timeline controls - Idővonal vezérlők - - - - Glue - Egyesítés - - - - Knife - Felosztás - - - - Fill - Kitöltés - - - - Cut overlaps - Átfedések levágása - - - - Min length as last - - - - - Max length as last - - - - - Zoom and note controls - - - - - Horizontal zooming - Vízszintes nagyítás - - - - Vertical zooming - Függőleges nagyítás - - - - Quantization - Kvantálás - - - - Note length - - - - - Key - - - - - Scale - Skála - - - - Chord - Akkord - - - - Snap mode - - - - - Clear ghost notes - - - - - - Piano-Roll - %1 - Piano Roll - %1 - - - - - Piano-Roll - no clip - Piano Roll - - - - - XML clip file (*.xpt *.xptz) - XML pattern fájl (*.xpt *.xptz) - - - - Export clip success - Pattern exportálása sikeres - - - - Clip saved to %1 - Pattern mentve a(z) %1 fájlba. - - - - Import clip. - Pattern importálása - - - - You are about to import a clip, this will overwrite your current clip. Do you want to continue? - - - - - Open clip - Pattern megnyitása - - - - Import clip success - Pattern importálása sikeres - - - - Imported clip %1! - %1 importálva - - - - PianoView - - - Base note - Alaphang - - - - First note - Legalsó hang - - - - Last note - Legutóbbi - - - - Plugin - - - Plugin not found - A plugin nem található - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - A(z) "%1" plugin nem található, vagy nem lehet betölteni. -Ok: "%2" - - - - Error while loading plugin - Hiba a plugin betöltésekor - - - - Failed to load plugin "%1"! - A(z) "%1" plugin betöltése nem sikerült. - - PluginBrowser - - Instrument Plugins - Hangszer Pluginek - - - - Instrument browser - - - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - - - - + no description nincs leírás - + A native amplifier plugin Natív erősítő - + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track - + Egyszerű sampler különböző beállításokkal a hangminták (pl. dobok) hangszersávon történő használatához - + Boost your bass the fast and simple way Mélytartomány kiemelése gyors és egyszerű módon - + Customizable wavetable synthesizer Testreszabható hullámtábla-szintetizátor - + An oversampling bitcrusher - + Carla Patchbay Instrument - + Carla Patchbay hangszer - + Carla Rack Instrument - + Carla Rack hangszer - + A dynamic range compressor. Dinamikakompresszor - + A 4-band Crossover Equalizer 4 sávos crossover equalizer - + A native delay plugin Natív késleltetés - + A Dual filter plugin Kettős szűrő - + plugin for processing dynamics in a flexible way - + Dinamikatartomány kezelése rugalmas módon - + A native eq plugin Natív equalizer - + A native flanger plugin Natív flanger - + Emulation of GameBoy (TM) APU A GameBoy (TM) APU emulációja - + Player for GIG files Lejátszó GIG fájlokhoz - + Filter for importing Hydrogen files into LMMS - + Szűrő a Hydrogen fájlok LMMS-be történő importálásához - + Versatile drum synthesizer - + Sokoldalú dobszintetizátor - + List installed LADSPA plugins Telepített LADSPA bővítmények listája - + plugin for using arbitrary LADSPA-effects inside LMMS. - + Bővítmény tetszőleges LADSPA effektek LMMS-ben történő használatához - + Incomplete monophonic imitation TB-303 Félkész monofonikus TB-303 imitáció - + plugin for using arbitrary LV2-effects inside LMMS. - + Bővítmény tetszőleges LV2 effektek LMMS-ben történő használatához - + plugin for using arbitrary LV2 instruments inside LMMS. - + Bővítmény tetszőleges LV2 hangszerek LMMS-ben történő használatához - + Filter for exporting MIDI-files from LMMS - + Szűrő a MIDI fájlok LMMS-ből történő exportálásához - + Filter for importing MIDI-files into LMMS - + Szűrő a MIDI fájlok LMMS-be történő importálásához - + Monstrous 3-oscillator synth with modulation matrix - + Szörnyűséges 3 oszcillátoros szintetizátor modulációs mátrixszal - + A multitap echo delay plugin Többlépéses késleltetés - + A NES-like synthesizer NES-szerű szintetizátor - + 2-operator FM Synth 2 operátoros FM szintetizátor - + Additive Synthesizer for organ-like sounds Additív szintetizátor orgonaszerű hangokhoz - + GUS-compatible patch instrument - + Plugin for controlling knobs with sound peaks Szabályzók vezérlése a hangjel segítségével - + Reverb algorithm by Sean Costello Sean Costello zengető algoritmusa - + Player for SoundFont files Lejátszó a SoundFont fájlokhoz - + LMMS port of sfxr - + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. A Commodore 64-ben használt MOS6581 és MOS8580 SID chip emulációja. - + A graphical spectrum analyzer. Grafikus spektrum-analizátor - + Plugin for enhancing stereo separation of a stereo input file Bővítmény a sztereó fájlok sztereó különválasztásának javításához - + Plugin for freely manipulating stereo output Bővítmény a sztereó kimenet manipulálásához - + Tuneful things to bang on Hangolt dolgok, amit ütni lehet - + Three powerful oscillators you can modulate in several ways Három erőteljes oszcillátor számos modulációs móddal - + A stereo field visualizer. Sztereó tér megjelenítése - + VST-host for using VST(i)-plugins within LMMS - VST host a VSTi pluginek használatához + VST host a VSTi bővítmények használatához - + Vibrating string modeler Rezgő húrok fizikai modellezése - + plugin for using arbitrary VST effects inside LMMS. - + Bővítmény tetszőleges VST effektek LMMS-ben történő használatához - + 4-oscillator modulatable wavetable synth - + plugin for waveshaping - + Hullámformálásra használható bővítmény - + Mathematical expression parser Matematikai kifejezés értelmező - + Embedded ZynAddSubFX Beágyazott ZynAddSubFX - - - PluginDatabaseW - - Carla - Add New - Carla - Hozzáadás - - - - Format - Formátum - - - - Internal - Beépített - - - - LADSPA - LADSPA - - - - DSSI - DSSI - - - - LV2 - LV2 - - - - VST2 - VST2 - - - - VST3 - VST3 - - - - AU - AU - - - - Sound Kits + + An all-pass filter allowing for extremely high orders. - - Type - Típus - - - - Effects - Effektek - - - - Instruments - Hangszerek - - - - MIDI Plugins - MIDI pluginek - - - - Other/Misc - Egyéb - - - - Architecture - Architektúra - - - - Native - Natív - - - - Bridged + + Granular pitch shifter - - Bridged (Wine) + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. - - Requirements - Követelmények - - - - With Custom GUI + + Basic Slicer - - With CV Ports + + Tap to the beat - - - Real-time safe only - - - - - Stereo only - Csak sztereó - - - - With Inline Display - - - - - Favorites only - - - - - (Number of Plugins go here) - - - - - &Add Plugin - Plugin hozzá&adása - - - - Cancel - Mégse - - - - Refresh - Frissítés - - - - Reset filters - Szűrők törlése - - - - - - - - - - - - - - - - - - - TextLabel - TextLabel - - - - Format: - Formátum: - - - - Architecture: - Architektúra: - - - - Type: - Típus: - - - - MIDI Ins: - MIDI bemenetek: - - - - Audio Ins: - Audió bemenetek: - - - - CV Outs: - CV kimenetek: - - - - MIDI Outs: - MIDI kimenetek: - - - - Parameter Ins: - Paraméter bemenetek: - - - - Parameter Outs: - Paraméter kimenetek: - - - - Audio Outs: - Audió kimenetek: - - - - CV Ins: - CV bemenetek: - - - - UniqueID: - Egyedi azonosító: - - - - Has Inline Display: - - - - - Has Custom GUI: - - - - - Is Synth: - - - - - Is Bridged: - - - - - Information - Információ - - - - Name - Név - - - - Label/URI - - - - - Maker - Készítő - - - - Binary/Filename - Bináris/Fájlnév: - - - - Focus Text Search - - - - - Ctrl+F - Ctrl+F - PluginEdit @@ -10825,95 +3461,100 @@ This chip was used in the Commodore 64 computer. + Send Notes + + + + Send Bank/Program Changes Bank- és programváltás küldése - + Send Control Changes - + Send Channel Pressure - + Send Note Aftertouch Aftertouch küldése - + Send Pitchbend Hanghajlítás küldése - + Send All Sound/Notes Off - + Minden hang kikapcsolása - + Plugin Name -Plugin név +Bővítmény név - + Program: Program: - + MIDI Program: MIDI Program: - + Save State Állapot mentése - + Load State Állapot betöltése - + Information Információ - + Label/URI: Címke/URI: - + Name: Név: - + Type: Típus: - + Maker: Készítő: - + Copyright: - + Copyright: - + Unique ID: Egyedi azonosító: @@ -10921,13 +3562,454 @@ Plugin név PluginFactory - + Plugin not found. - A plugin nem található. + A bővítmény nem található. - + LMMS plugin %1 does not have a plugin descriptor named %2! + A(z) %1 LMMS bővítmény nem rendelkezik %2 nevű plugin-leíróval. + + + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No @@ -10945,157 +4027,61 @@ Plugin név + TextLabel + + + + ... ... - PluginRefreshW + PluginRefreshDialog - - Carla - Refresh - Carla - Frissítés - - - - Search for new... - A következők keresése: - - - - LADSPA - LADSPA - - - - DSSI - DSSI - - - - LV2 - LV2 - - - - VST2 - VST2 - - - - VST3 - VST3 - - - - AU - AU - - - - SF2/3 - SF2/3 - - - - SFZ - SFZ - - - - Native - Natív - - - - POSIX 32bit - POSIX 32bit - - - - POSIX 64bit - POSIX 64bit - - - - Windows 32bit - Windows 32bit - - - - Windows 64bit - Windows 64bit - - - - Available tools: - Elérhető eszközök: - - - - python3-rdflib (LADSPA-RDF support) - python3-rdflib (LADSPA-RDF támogatás) - - - - carla-discovery-win64 - carla-discovery-win64 - - - - carla-discovery-native - carla-discovery-native - - - - carla-discovery-posix32 - carla-discovery-posix32 - - - - carla-discovery-posix64 - carla-discovery-posix64 - - - - carla-discovery-win32 - carla-discovery-win32 - - - - Options: - Opciók: - - - - Carla will run small processing checks when scanning the plugins (to make sure they won't crash). -You can disable these checks to get a faster scanning time (at your own risk). + + Plugin Refresh - - Run processing checks while scanning + + Search for: - + + All plugins, ignoring cache + + + + + Updated plugins only + + + + + Check previously invalid plugins + + + + Press 'Scan' to begin the search - + Scan - + >> Skip - >> Kihagyás + - + Close - Bezárás + @@ -11110,57 +4096,57 @@ You can disable these checks to get a faster scanning time (at your own risk). - + Enable Engedélyezés - + On/Off Be/Ki - + - + PluginName - + MIDI MIDI - + AUDIO IN AUDIÓ BEMENET - + AUDIO OUT AUDIÓ KIMENET - + GUI GUI - + Edit Szerkesztés - + Remove Eltávolítás Plugin Name - Plugin név + Bővítmény név @@ -11168,2553 +4154,13823 @@ You can disable these checks to get a faster scanning time (at your own risk).Preset: - - ProjectNotes - - - Project Notes - Jegyzetek - - - - Enter project notes here - Ide írd a jegyzeteket! - - - - Edit Actions - Szerkesztés műveletek - - - - &Undo - &Visszavonás - - - - %1+Z - %1+Z - - - - &Redo - &Ismét - - - - %1+Y - %1+Y - - - - &Copy - &Másolás - - - - %1+C - %1+C - - - - Cu&t - &Kivágás - - - - %1+X - %1+X - - - - &Paste - &Beillesztés - - - - %1+V - %1+V - - - - Format Actions - Formázás műveletek - - - - &Bold - &Félkövér - - - - %1+B - %1+B - - - - &Italic - &Dőlt - - - - %1+I - %1+I - - - - &Underline - Alá&húzott - - - - %1+U - %1+U - - - - &Left - &Balra - - - - %1+L - %1+L - - - - C&enter - &Középre - - - - %1+E - %1+E - - - - &Right - &Jobbra - - - - %1+R - %1+R - - - - &Justify - &Sorkizárás - - - - %1+J - %1+J - - - - &Color... - S&zín - - ProjectRenderer - + WAV (*.wav) WAV (*.wav) - + FLAC (*.flac) FLAC (*.flac) - + OGG (*.ogg) OGG (*.ogg) - + MP3 (*.mp3) MP3 (*.mp3) + + QGroupBox + + + + Settings for %1 + + + QObject - + Reload Plugin - Plugin újratöltése + Bővítmény újratöltése - + Show GUI GUI megjelenítése - + Help Súgó + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + QWidget - - - - + + Name: - Név: + Név: - - URI: - URI: - - - - - + Maker: - Készítő: + Készítő: - - - + Copyright: - + Copyright: - - + Requires Real Time: - - - - - - + + + Yes Igen - - - - - - + + + No Nem - - + Real Time Capable: - - + In Place Broken: - - + Channels In: - Bemeneti csatornák: + Bemeneti csatornák: - - + Channels Out: - Kimeneti csatornák: + Kimeneti csatornák: - + File: %1 Fájl: %1 - + File: Fájl: - RecentProjectsMenu + XYControllerW - - &Recently Opened Projects - &Legutóbbi projektek + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + - RenameDialog + lmms::AmplifierControls - - Rename... - Átnevezés... + + Volume + + + + + Panning + + + + + Left gain + + + + + Right gain + - ReverbSCControlDialog + lmms::AudioFileProcessor - - Input - Bemenet + + Amplify + - - Input gain: - Bemeneti erősítés: + + Start of sample + - - Size - Méret + + End of sample + - - Size: - Méret: + + Loopback point + - - Color - Csillapítás + + Reverse sample + - - Color: - Csillapítás: + + Loop mode + - - Output - Kimenet + + Stutter + - - Output gain: - Kimeneti erősítés: + + Interpolation mode + + + + + None + + + + + Linear + + + + + Sinc + + + + + Sample not found + - ReverbSCControls + lmms::AudioJack - + + JACK client restarted + + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + + + + + Client name + + + + + Channels + + + + + lmms::AudioOss + + + Device + + + + + Channels + + + + + lmms::AudioPortAudio::setupWidget + + + Backend + + + + + Device + + + + + lmms::AudioPulseAudio + + + Device + + + + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + + + + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + + Gain + + + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + Input gain - Bemeneti erősítés + - - Size - Méret + + Input noise + - - Color - Csillapítás + + Output gain + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + + + + + Output gain + + + + + Attack time + + + + + Release time + + + + + Stereo mode + + + + + lmms::Effect + + + Effect enabled + + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + + + + + Denominator + + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + Input gain + + + + + Size + + + + + Color + + + + Output gain - Kimeneti erősítés + - SaControls - - - Pause - Megállítás - - - - Reference freeze - Referencia fagyasztás - + lmms::SaControls - Waterfall - Spektogram + Pause + + Reference freeze + + + + + Waterfall + + + + Averaging - - - Stereo - Sztereó - - - - Peak hold - Csúcsérték tartása - - Logarithmic frequency - Logaritmikus frekvencia - - - - Logarithmic amplitude - Logaritmikus amplitúdó - - - - Frequency range - Frekvenciatartomány - - - - Amplitude range - Amplitúdó tartomány - - - - FFT block size - FFT blokk méret - - - - FFT window type - FFT ablak típus - - - - Peak envelope resolution + Stereo - - Spectrum display resolution - Spektrum kijelző felbontás + + Peak hold + - - Peak decay multiplier + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type - Averaging weight + Peak envelope resolution - Waterfall history size - Spektogram történet hossza + Spectrum display resolution + - Waterfall gamma correction - Spektogram gamma korrekció + Peak decay multiplier + - FFT window overlap - - - - - FFT zero padding - - - - - - Full (auto) - Teljes - - - - - - Audible - Hallható - - - - Bass - Mély - - - - Mids - Közép - - - - High - Magas - - - - Extended - Széles - - - - Loud - Hangos - - - - Silent - Halk - - - - (High time res.) - (Magas időbeli felbontás) - - - - (High freq. res.) - (Magas frekvencia-felbontás) - - - - Rectangular (Off) - Négyszög (Ki) - - - - - Blackman-Harris (Default) - Blackman-Harris (Alapértelmezett) - - - - Hamming - Hamming - - - - Hanning - Hanning - - - - SaControlsDialog - - - Pause - Megállítás - - - - Pause data acquisition - Adatgyűjtés megállítása - - - - Reference freeze - Referencia fagyasztás - - - - Freeze current input as a reference / disable falloff in peak-hold mode. - - - - - Waterfall - Spektogram - - - - Display real-time spectrogram - Valós idejű spektogram megjelenítése - - - - Averaging - - - - - Enable exponential moving average - - - - - Stereo - Sztereó - - - - Display stereo channels separately - Csatormák egymástól független megjelenítése - - - - Peak hold - Csúcsérték tartása - - - - Display envelope of peak values - - - - - Logarithmic frequency - Logaritmikus frekvencia - - - - Switch between logarithmic and linear frequency scale - Váltás logaritmikus és lineáris frekvenciaskála között - - - - - Frequency range - Frekvenciatartomány - - - - Logarithmic amplitude - Logaritmikus amplitúdó - - - - Switch between logarithmic and linear amplitude scale - Váltás logaritmikus és lineáris amplitúdóskála között - - - - - Amplitude range - Amplitúdó tartomány - - - - Envelope res. - - - - - Increase envelope resolution for better details, decrease for better GUI performance. - - - - - - Draw at most - - - - - envelope points per pixel - - - - - Spectrum res. - Spektrum felbontás - - - - Increase spectrum resolution for better details, decrease for better GUI performance. - - - - - spectrum points per pixel - - - - - Falloff factor - - - - - Decrease to make peaks fall faster. - - - - - Multiply buffered value by - - - - Averaging weight - - Decrease to make averaging slower and smoother. + + Waterfall history size - - New sample contributes + + Waterfall gamma correction - - Waterfall height - Spektogram magassága - - - - Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + FFT window overlap - - Keep + + FFT zero padding - - lines + + + Full (auto) - - Waterfall gamma - Spektogram gamma - - - - Decrease to see very weak signals, increase to get better contrast. - Csökkentve a kisebb jelek is láthatók, növelve nagyobb a kontraszt. - - - - Gamma value: - Gamma érték: - - - - Window overlap + + + + Audible - - Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + Bass - - Each sample processed + + Mids - - times + + High - - Zero padding + + Extended - - Increase to get smoother-looking spectrum. Warning: high CPU usage. + + Loud - - Processing buffer is + + Silent - - steps larger than input block + + (High time res.) - - Advanced settings - Haladó beállítások + + (High freq. res.) + - - Access advanced settings - Haladó beállítások megjelenítése + + Rectangular (Off) + - - - FFT block size - FFT blokk méret + + + Blackman-Harris (Default) + - - - FFT window type - FFT ablak típus + + Hamming + + + + + Hanning + - SampleBuffer + lmms::SampleClip - - Fail to open file - Nem lehet megnyitni a fájlt - - - - Audio files are limited to %1 MB in size and %2 minutes of playing time - Az audió fájl maximális mérete %1 MB, maximális hossza %2 perc lehet. - - - - Open audio file - Audiófájl megnyitása - - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - Minden támogatott audiófájl (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - - Wave-Files (*.wav) - Wave fájlok (*.wav) - - - - OGG-Files (*.ogg) - OGG Fájlok (*.ogg) - - - - DrumSynth-Files (*.ds) - DrumSynth Fájlok (*.ds) - - - - FLAC-Files (*.flac) - FLAC Fájlok (*.flac) - - - - SPEEX-Files (*.spx) - SPEEX Fájlok (*.spx) - - - - VOC-Files (*.voc) - VOC Fájlok (*.voc) - - - - AIFF-Files (*.aif *.aiff) - AIFF Fájlok (*.aif *.aiff) - - - - AU-Files (*.au) - AU Fájlok (*.au) - - - - RAW-Files (*.raw) - RAW Fájlok (*.raw) + + Sample not found + - SampleClipView + lmms::SampleTrack - - Double-click to open sample - Kattintson duplán hangfájl betöltéséhez - - - - Delete (middle mousebutton) - Törlés (középső egérgomb) - - - - Delete selection (middle mousebutton) - Kijelöltek törlése (középső egérgomb) - - - - Cut - Kivágás - - - - Cut selection - Kijelölés kivágása - - - - Copy - Másolás - - - - Copy selection - Kijelölés másolása - - - - Paste - Beillesztés - - - - Mute/unmute (<%1> + middle click) - Némítás (<%1> + középső egérgomb) - - - - Mute/unmute selection (<%1> + middle click) - Kijelölés némítása (<%1> + középső egérgomb) - - - - Reverse sample - Minta megfordítása - - - - Set clip color - Szín módosítása - - - - Use track color - Sáv színének használata - - - - SampleTrack - - + Volume - Hangerő + - + Panning - Panoráma + - + Mixer channel - Keverő csatorna + - - + + Sample track - Hangminta sáv - - - - SampleTrackView - - - Track volume - Sáv hangerő - - - - Channel volume: - Csatorna hangerő: - - - - VOL - VOL - - - - Panning - Panoráma - - - - Panning: - Panoráma: - - - - PAN - PAN - - - - Channel %1: %2 - FX %1: %2 - - - - SampleTrackWindow - - - GENERAL SETTINGS - ÁLTALÁNOS BEÁLLÍTÁSOK - - - - Sample volume - - - - - Volume: - Hangerő: - - - - VOL - VOL - - - - Panning - Panoráma - - - - Panning: - Panoráma: - - - - PAN - PAN - - - - Mixer channel - Keverő csatorna - - - - CHANNEL - FX - - - - SaveOptionsWidget - - - Discard MIDI connections - MIDI kapcsolatok elvetése - - - - Save As Project Bundle (with resources) - SetupDialog + lmms::Scale - - Reset to default value - Visszaállítás - - - - Use built-in NaN handler - Beépített NaN kezelés használata - - - - Settings - Beállítások - - - - - General - Általános - - - - Graphical user interface (GUI) - Felhasználói felület (GUI) - - - - Display volume as dBFS - Hangerő kijelzése dBFS-ként - - - - Enable tooltips - Eszköztippek engedélyezése - - - - Enable master oscilloscope by default - Oszcilloszkóp engedélyezése alaphelyzetben - - - - Enable all note labels in piano roll + + empty - - - Enable compact track buttons - Kompakt sávgombok - - - - Enable one instrument-track-window mode - Mindig csak egy hangszer-ablak megjelenítése - - - - Show sidebar on the right-hand side - Oldalsáv áthelyezése jobb oldalra - - - - Let sample previews continue when mouse is released - Hangminta előnézetek folytatása az egérgomb elengedése után - - - - Mute automation tracks during solo - Automatizációs sávok némítása szóló esetén - - - - Show warning when deleting tracks - Figyelmeztetés sávok törlése előtt - - - - Projects - Projektek - - - - Compress project files by default - Projektfájlok tömörítése alapértelmezetten - - - - Create a backup file when saving a project - Biztonsági mentés létrehozása projekt mentésekor - - - - Reopen last project on startup - A legutóbbi projekt betöltése indításkor - - - - Language - Nyelv - - - - - Performance - Teljesítmény - - - - Autosave - Automatikus mentés - - - - Enable autosave - Automatikus mentés engedélyezése - - - - Allow autosave while playing - Automatikus mentés lejátszás közben - - - - User interface (UI) effects vs. performance - - - - - Smooth scroll in song editor - Sima görgetés a dalszerkesztőben - - - - Display playback cursor in AudioFileProcessor - - - - - Plugins - Bővítmények - - - - VST plugins embedding: - VST plugin beágyazás: - - - - No embedding - Nincs beágyazás - - - - Embed using Qt API - Beágyazás a Qt API használatával - - - - Embed using native Win32 API - Beágyazás a Win32 API használatával - - - - Embed using XEmbed protocol - Beágyazás az XEmbed protokoll használatával - - - - Keep plugin windows on top when not embedded - Plugin ablak mindig legfelül, ha nincs beágyazva. - - - - Sync VST plugins to host playback - VST pluginek szinkronizálása a lejátszáshoz - - - - Keep effects running even without input - Effektek ébren tartása bemenet hiányában is - - - - - Audio - Audió - - - - Audio interface - Audió interfész - - - - HQ mode for output audio device - - - - - Buffer size - Buffer méret - - - - - MIDI - MIDI - - - - MIDI interface - MIDI interfész - - - - Automatically assign MIDI controller to selected track - MIDI vezérlő automatikus hozzárendelése a kijelölt sávhoz - - - - LMMS working directory - LMMS munkakönyvtár - - - - VST plugins directory - VST plugin könyvtár - - - - LADSPA plugins directories - LADSPA plugin könyvtárak - - - - SF2 directory - SF2 könyvtár - - - - Default SF2 - Alapértelmezett SF2 fájl - - - - GIG directory - GIG könyvtár - - - - Theme directory - Grafikus téma könyvtára: - - - - Background artwork - Háttérkép - - - - Some changes require restarting. - Egyes beállítások a program újraindítását követően lépnek érvénybe. - - - - Autosave interval: %1 - Automatikus mentés gyakorisága: %1 - - - - Choose the LMMS working directory - Adja meg az LMMS mankakönyvtárat - - - - Choose your VST plugins directory - Add meg a VST plugin könyvtárat - - - - Choose your LADSPA plugins directory - Adja meg a LADSPA plugin könyvtárat - - - - Choose your default SF2 - Adja meg az alapértelmezett SF2 fájlt - - - - Choose your theme directory - Adja meg a grafikus téma könyvtárát - - - - Choose your background picture - Háttérkép kiválasztása - - - - - Paths - Útvonalak - - - - OK - OK - - - - Cancel - Mégse - - - - Frames: %1 -Latency: %2 ms - - - - - Choose your GIG directory - Add meg a GIG könyvtárat - - - - Choose your SF2 directory - Add meg az SF2 könyvtárat - - - - minutes - perc - - - - minute - perc - - - - Disabled - Letiltva - - SidInstrument + lmms::Sf2Instrument - + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + Cutoff frequency - Vágási frekvencia + - + Resonance - Rezonancia + + + + + Filter type + - Filter type - Szűrő típus - - - Voice 3 off - + Volume - Hangerő + - + Chip model - Chip modell + - SidInstrumentView + lmms::SlicerT - - Volume: - Hangerő: - - - - Resonance: - Rezonancia: - - - - - Cutoff frequency: - Vágási frekvencia: - - - - High-pass filter - Felüláteresztő szűrő - - - - Band-pass filter - Sáváteresztő szűrő - - - - Low-pass filter - Aluláteresztő szűrő - - - - Voice 3 off + + Note threshold - - MOS6581 SID - MOS6581 SID - - - - MOS8580 SID - MOS8580 SID - - - - - Attack: - Felfutás: - - - - - Decay: - Decay: - - - - Sustain: - Kitartás: - - - - - Release: - Lecsengés: - - - - Pulse Width: - Pulzusszélesség: - - - - Coarse: - Elhangolás: - - - - Pulse wave - Négyszöghullám - - - - Triangle wave - Háromszöghullám - - - - Saw wave - Fűrészfoghullám - - - - Noise - Zaj - - - - Sync - Szinkron - - - - Ring modulation - Ring moduláció - - - - Filtered + + FadeOut - - Test - Teszt + + Original bpm + - - Pulse width: - Pulzusszélesség: + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + - SideBarWidget + lmms::Song - - Close - Bezárás - - - - Song - - + Tempo - Tempó + - + Master volume - Fő hangerő + - + Master pitch - Transzponálás - - - - Aborting project load - Betöltés megszakítása + + Aborting project load + + + + Project file contains local paths to plugins, which could be used to run malicious code. - + Can't load project: Project file contains local paths to plugins. - + LMMS Error report - LMMS hibajelentés + - + (repeated %1 times) - + The following errors occurred while loading: - Az alábbi hibák történtek a betöltés során: - - - - SongEditor - - - Could not open file - Nem lehet megnyitni a fájlt - - - - Could not open file %1. You probably have no permissions to read this file. - Please make sure to have at least read permissions to the file and try again. - A(z) %1 fájl nem nyitható meg. Ellenőrizd, hogy rendelkezel-e olvasási jogosultsággal a fájlhoz, majd próbáld újra. - - - - Operation denied - Művelet megtagadva - - - - A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. - - - - - - - Error - Hiba - - - - Couldn't create bundle folder. - - - - - Couldn't create resources folder. - - - - - Failed to copy resources. - Az erőforrások másolása sikertelen. - - - - Could not write file - A fájl nem írható - - - - Could not open %1 for writing. You probably are not permitted towrite to this file. Please make sure you have write-access to the file and try again. - A(z) %1 fájl nem nyitható meg írásra. -Ellenőrizd, hogy rendelkezel-e a szükséges engedélyekkel és próbáld újra! - - - - This %1 was created with LMMS %2 - Ez a %1 az LMMS %2 verziójával készült - - - - Error in file - Hiba a fájlban - - - - The file %1 seems to contain errors and therefore can't be loaded. - A(z) %1 fájl hibát tartalmaz, ezért nem lehet betölteni. - - - - Version difference - Verzió eltérés - - - - template - sablon - - - - project - projekt - - - - Tempo - Tempó - - - - TEMPO - TEMPÓ - - - - Tempo in BPM - Tempó BPM-ben - - - - High quality mode - Magas minőségű mód - - - - - - Master volume - Fő hangerő - - - - - - Master pitch - Transzponálás - - - - Value: %1% - Érték: %1% - - - - Value: %1 semitones - Érték: %1 félhang - - - - SongEditorWindow - - - Song-Editor - Dalszerkesztő - - - - Play song (Space) - Lejátszás (Space) - - - - Record samples from Audio-device - - - - - Record samples from Audio-device while playing song or BB track - - - - - Stop song (Space) - Stop (Space) - - - - Track actions - Sáv műveletek - - - - Add beat/bassline - Beat/Bassline sáv hozzáadása - - - - Add sample-track - Hangminta sáv hozzáadása - - - - Add automation-track - Automatizáció sáv hozzáadása - - - - Edit actions - Műveletek szerkesztése - - - - Draw mode - Beszúrás - - - - Knife mode (split sample clips) - Audió klip felosztása - - - - Edit mode (select and move) - Kijelölés és mozgatás - - - - Timeline controls - Idővonal vezérlők - - - - Bar insert controls - - - - - Insert bar - Ütem beszúrása - - - - Remove bar - Ütem eltávolítása - - - - Zoom controls - Nagyítás vezérlők - - - - Horizontal zooming - Vízszintes nagyítás - - - - Snap controls - - - - - - Clip snapping size - - - - - Toggle proportional snap on/off - - - - - Base snapping size - StepRecorderWidget + lmms::StereoEnhancerControls - - Hint - Tipp - - - - Move recording curser using <Left/Right> arrows + + Width - SubWindow + lmms::StereoMatrixControls - - Close - Bezárás - - - - Maximize - Teljes méret - - - - Restore - Visszaállítás - - - - TabWidget - - - - Settings for %1 - %1 beállításai - - - - TemplatesMenu - - - New from template - Létrehozás sablonból - - - - TempoSyncKnob - - - - Tempo Sync - Szinkronizálás tempóhoz - - - - No Sync - Nincs - - - - Eight beats - 8 ütem - - - - Whole note - 1 ütem - - - - Half note - 1/2 ütem - - - - Quarter note - 1/4 ütem - - - - 8th note - 1/8 ütem - - - - 16th note - 1/16 ütem - - - - 32nd note - 1/32 ütem - - - - Custom... - Egyéni... - - - - Custom - Egyéni - - - - Synced to Eight Beats + + Left to Left - - Synced to Whole Note + + Left to Right - - Synced to Half Note + + Right to Left - - Synced to Quarter Note - - - - - Synced to 8th Note - - - - - Synced to 16th Note - - - - - Synced to 32nd Note + + Right to Right - TimeDisplayWidget + lmms::Track - - Time units - Időegység - - - - MIN - MIN - - - - SEC - - - - - MSEC - - - - - BAR - - - - - BEAT - - - - - TICK - - - - - TimeLineWidget - - - Auto scrolling - Automatikus görgetés - - - - Loop points - Loop pontok - - - - After stopping go back to beginning - Leállításkor vissza az elejére - - - - After stopping go back to position at which playing was started - Leállításkor vissza a lejátszás kezdetéhez - - - - After stopping keep position - Leállításkor a pozíció megtartása - - - - Hint - Tipp - - - - Press <%1> to disable magnetic loop points. - - - - - Track - - + Mute - Némítás + - + Solo - Szóló + - TrackContainer + lmms::TrackContainer - + Couldn't import file - Nem lehet importálni a fájlt + - + Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software. - + Couldn't open file - Nem lehet megnyitni a fájlt + - + Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! - A(z) %1 fájl nem nyitható meg. Ellenőrizd, hogy rendelkezel-e olvasási jogosultsággal a fájlhoz, majd próbáld újra. + - + Loading project... - Projekt betöltése... + - - + + Cancel - Mégse + - - + + Please wait... - Kis türelmet... + - + Loading cancelled - Betöltés megszakítva + - + Project loading was cancelled. - A projekt betöltése megszakítva. + - + Loading Track %1 (%2/Total %3) - Sáv betöltése: %1 (%2/Összesen %3) + - + Importing MIDI-file... - MIDI fájl importálása... + - Clip + lmms::TripleOscillator - - Mute - Némítás + + Sample not found + - ClipView + lmms::VecControls - + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + Current position - Jelenlegi pozíció + - + Current length - Jelenlegi hossz + - - + + %1:%2 (%3:%4 to %5:%6) - %1:%2 (%3:%4 - %5:%6) + - + Press <%1> and drag to make a copy. - + Press <%1> for free resizing. - + Hint - Tipp + - + Delete (middle mousebutton) - Törlés (középső egérgomb) + - + Delete selection (middle mousebutton) - Kijelöltek törlése (középső egérgomb) + - + Cut - Kivágás + - + Cut selection - Kijelöltek kivágása + - + Merge Selection - + Copy - Másolás + - + Copy selection - Kijelölés másolása + - + Paste - Beillesztés + - + Mute/unmute (<%1> + middle click) - Némítás (<%1> + középső egérgomb) + - + Mute/unmute selection (<%1> + middle click) - Kijelölés némítása (<%1> + középső egérgomb) + - - Set clip color - Szín módosítása + + Clip color + - - Use track color - Sáv színének használata + + Change + + + + + Reset + + + + + Pick random + - TrackContentWidget + lmms::gui::CompressorControlDialog - + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + + + + + Draw mode + + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + + + + + + Zoom + + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + + + + + lmms::gui::StepRecorderWidget + + + Hint + + + + + Move recording curser using <Left/Right> arrows + + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + + Close + + + + + Maximize + + + + + Restore + + + + + lmms::gui::TapTempoView + + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + + + + + lmms::gui::TemplatesMenu + + + New from template + + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + + + + + MIN + + + + + SEC + + + + + MSEC + + + + + BAR + + + + + BEAT + + + + + TICK + + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + + + + + After stopping go back to beginning + + + + + After stopping go back to position at which playing was started + + + + + After stopping keep position + + + + + Hint + + + + + Press <%1> to disable magnetic loop points. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + Paste - Beillesztés + - TrackOperationsWidget + lmms::gui::TrackOperationsWidget - + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. Actions - Műveletek + Mute - Némítás + Solo - Szóló - - - - After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? - Egy sáv törlése nem visszavonható. Biztosan törlöd a(z) "%1" sávot? - - - - Confirm removal - Törlés megerősítése - - - - Don't ask again - Ne kérdezd újra - - - - Clone this track - Sáv klónozása - - - - Remove this track - Sáv eltávolítása - - - - Clear this track - Sáv tartalmának törlése - - - - Channel %1: %2 - FX %1: %2 - - - - Assign to new mixer Channel - Hozzárendelés új csatornához - - - - Turn all recording on - Minden felvétel bekapcsolása - - - - Turn all recording off - Minden felvétel kikapcsolása - - - - Change color - Szín módosítása - - - - Reset color to default - Szín visszaállítása - - - - Set random color - Véletlenszerű szín - - - - Clear clip colors - Klip színek törlése - - - - TripleOscillatorView - - - Modulate phase of oscillator 1 by oscillator 2 - 1. oszcillátor fázisának modulációja a 2. oszcillátorral - - - - Modulate amplitude of oscillator 1 by oscillator 2 - 1. oszcillátor amplitúdójának modulációja a 2. oszcillátorral - - - - Mix output of oscillators 1 & 2 - 1. és 2. oszcillátorok kimenetének keverése - - - - Synchronize oscillator 1 with oscillator 2 - 1. oszcillátor szinkronizálása a 2. oszcillátorral - - - - Modulate frequency of oscillator 1 by oscillator 2 - 1. oszcillátor frekvenciájának modulációja a 2. oszcillátorral - - - - Modulate phase of oscillator 2 by oscillator 3 - 2. oszcillátor fázisának modulációja a 3. oszcillátorral - - - - Modulate amplitude of oscillator 2 by oscillator 3 - 2. oszcillátor amplitúdójának modulációja a 3. oszcillátorral - - - - Mix output of oscillators 2 & 3 - 2. és 3. oszcillátorok kimenetének keverése - - - - Synchronize oscillator 2 with oscillator 3 - 2. oszcillátor szinkronizálása a 3. oszcillátorral - - - - Modulate frequency of oscillator 2 by oscillator 3 - 2. oszcillátor frekvenciájának modulációja a 3. oszcillátorral - - - - Osc %1 volume: - Osc %1 hangerő: - - - - Osc %1 panning: - Osc %1 panoráma: - - - - Osc %1 coarse detuning: - Osc %1 hangolás: - - - - semitones - félhang - - - - Osc %1 fine detuning left: - Osc %1 finomhangolás bal: - - - - - cents - cent - - - - Osc %1 fine detuning right: - Osc %1 finomhangolás jobb: - - - - Osc %1 phase-offset: - Osc %1 fáziseltolás: - - - - - degrees - fok - - - - Osc %1 stereo phase-detuning: - Osc %1 sztereó fáziseltolás: - - - - Sine wave - Szinuszhullám - - - - Triangle wave - Háromszöghullám - - - - Saw wave - Fűrészfoghullám - - - - Square wave - Négyszöghullám - - - - Moog-like saw wave - Moog fűrészfog - - - - Exponential wave - Exponenciális - - - - White noise - Fehér zaj - - - - User-defined wave - Felhasználó által megadott hullám - - - - VecControls - - - Display persistence amount - - Logarithmic scale - Logaritmikus skála + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + - - High quality - Magas minőség + + Confirm removal + + + + + Don't ask again + + + + + Clone this track + + + + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors + - VecControlsDialog + lmms::gui::TripleOscillatorView - - HQ - HQ + + Modulate phase of oscillator 1 by oscillator 2 + + + + Modulate amplitude of oscillator 1 by oscillator 2 + + + + + Mix output of oscillators 1 & 2 + + + + + Synchronize oscillator 1 with oscillator 2 + + + + + Modulate frequency of oscillator 1 by oscillator 2 + + + + + Modulate phase of oscillator 2 by oscillator 3 + + + + + Modulate amplitude of oscillator 2 by oscillator 3 + + + + + Mix output of oscillators 2 & 3 + + + + + Synchronize oscillator 2 with oscillator 3 + + + + + Modulate frequency of oscillator 2 by oscillator 3 + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + + cents + + + + + Osc %1 fine detuning right: + + + + + Osc %1 phase-offset: + + + + + + degrees + + + + + Osc %1 stereo phase-detuning: + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog-like saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined wave + + + + + Use alias-free wavetable oscillators. + + + + + lmms::gui::VecControlsDialog + HQ + + + + Double the resolution and simulate continuous analog-like trace. Log. scale - Log. skála + @@ -13722,2618 +17978,782 @@ Please make sure you have read-permission to the file and the directory containi - + Persist. - + Trace persistence: higher amount means the trace will stay bright for longer time. - + Trace persistence - VersionedSaveDialog - - - Increment version number - Verziószám növelése - + lmms::gui::VersionedSaveDialog + Increment version number + + + + Decrement version number - Verziószám csökkentése + - + Save Options - Mentési beállítások + - + already exists. Do you want to replace it? - már létezik. Felülírod? + - VestigeInstrumentView + lmms::gui::VestigeInstrumentView - - + + Open VST plugin - VST plugin megnyitása + - + Control VST plugin from LMMS host - + Open VST plugin preset - VST plugin preset megnyitása + - + Previous (-) - Előző (-) + - + Save preset - Preset mentése + - + Next (+) - Következő (+) + - + Show/hide GUI - GUI megjelenítése/elrejtése + - + Turn off all notes - Minden hang kikapcsolása + - + DLL-files (*.dll) - DLL fájlok (*.dll) + - + EXE-files (*.exe) - EXE fájlok (*.exe) + + + + + SO-files (*.so) + + + + + No VST plugin loaded + - No VST plugin loaded - Nincs VST plugin betöltve + Preset + - Preset - Preset - - - by - készítő: + - + - VST plugin control - - VST plugin vezérlők - - - - VstEffectControlDialog - - - Show/hide - - - - - Control VST plugin from LMMS host - - - - - Open VST plugin preset - VST plugin preset megnyitása - - - - Previous (-) - Előző (-) - - - - Next (+) - Következő (+) - - - - Save preset - Preset mentése - - - - - Effect by: - Készítő: - - - - &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - - - - VstPlugin - - - - The VST plugin %1 could not be loaded. - A(z) %1 VST plugin nem tölthető be. - - - - Open Preset - Preset megnyitása - - - - - Vst Plugin Preset (*.fxp *.fxb) - VST Plugin Preset (*.fxp *.fxb) - - - - : default - : alapértelmezett - - - - Save Preset - Preset mentése - - - - .fxp - .fxp - - - - .FXP - .FXP - - - - .FXB - .FXB - - - - .fxb - .fxb - - - - Loading plugin - Plugin betöltése - - - - Please wait while loading VST plugin... - Várj, amíg a VST plugin betöltődik... - - - - WatsynInstrument - - - Volume A1 - A1 Hangerő - - - - Volume A2 - A2 Hangerő - - - - Volume B1 - B1 Hangerő - - - - Volume B2 - B2 Hangerő - - - - Panning A1 - A1 Panoráma - - - - Panning A2 - A2 Panoráma - - - - Panning B1 - B1 Panoráma - - - - Panning B2 - B2 Panoráma - - - - Freq. multiplier A1 - A1 Frekvencia szorzó - - - - Freq. multiplier A2 - A2 Frekvencia szorzó - - - - Freq. multiplier B1 - B1 Frekvencia szorzó - - - - Freq. multiplier B2 - B2 Frekvencia szorzó - - - - Left detune A1 - A1 Bal oldali elhangolás - - - - Left detune A2 - A2 Bal oldali elhangolás - - - - Left detune B1 - B1 Bal oldali elhangolás - - - - Left detune B2 - B2 Bal oldali elhangolás - - - - Right detune A1 - A1 Jobb oldali elhangolás - - - - Right detune A2 - A2 Jobb oldali elhangolás - - - - Right detune B1 - B1 Jobb oldali elhangolás - - - - Right detune B2 - B2 Jobb oldali elhangolás - - - - A-B Mix - A-B arány - - - - A-B Mix envelope amount - - - - - A-B Mix envelope attack - - - - - A-B Mix envelope hold - - - - - A-B Mix envelope decay - - - - - A1-B2 Crosstalk - A1-B2 Áthallás - - - - A2-A1 modulation - A2-A1 moduláció - - - - B2-B1 modulation - B2-B1 moduláció - - - - Selected graph - WatsynView + lmms::gui::VibedView - - - - - Volume - Hangerő - - - - - - - Panning - Panoráma - - - - - - - Freq. multiplier - Frekvencia szorzó - - - - - - - Left detune - Bal oldali elhangolás - - - - - - - - - - - cents - cent - - - - - - - Right detune - Jobb oldali elhangolás - - - - A-B Mix - A-B arány - - - - Mix envelope amount + + Enable waveform - - Mix envelope attack - - - - - Mix envelope hold - - - - - Mix envelope decay - - - - - Crosstalk - Áthallás - - - - Select oscillator A1 - Oszcillátor A1 kiválasztása - - - - Select oscillator A2 - Oszcillátor A2 kiválasztása - - - - Select oscillator B1 - Oszcillátor B1 kiválasztása - - - - Select oscillator B2 - Oszcillátor B2 kiválasztása - - - - Mix output of A2 to A1 - A1 és A2 keverése - - - - Modulate amplitude of A1 by output of A2 - A1 amplitúdójának modulációja A2-vel - - - - Ring modulate A1 and A2 - - - - - Modulate phase of A1 by output of A2 - A1 fázisának modulációja A2-vel - - - - Mix output of B2 to B1 - B1 és B2 keverése - - - - Modulate amplitude of B1 by output of B2 - B1 amplitúdójának modulációja B2-vel - - - - Ring modulate B1 and B2 - - - - - Modulate phase of B1 by output of B2 - B1 fázisának modulációja B2-vel - - - - - - - Draw your own waveform here by dragging your mouse on this graph. - - - - - Load waveform - Hullámforma betöltése - - - - Load a waveform from a sample file - Hullámforma betöltése fájlból - - - - Phase left - Fázis balra - - - - Shift phase by -15 degrees - Fázis eltolása -15 fokkal - - - - Phase right - Fázis jobbra - - - - Shift phase by +15 degrees - Fázis eltolása +15 fokkal - - - - - Normalize - Normalizálás - - - - - Invert - Invertálás - - - - - Smooth - Simítás - - - - - Sine wave - Szinuszhullám - - - - - - Triangle wave - Háromszöghullám - - - - Saw wave - Fűrészfoghullám - - - - - Square wave - Négyszöghullám - - - - Xpressive - - - Selected graph - - - - - A1 - A1 - - - - A2 - A2 - - - - A3 - A3 - - - - W1 smoothing - W1 simítása - - - - W2 smoothing - W2 simítása - - - - W3 smoothing - W3 simítása - - - - Panning 1 - Panoráma 1 - - - - Panning 2 - Panoráma 2 - - - - Rel trans - - - - - XpressiveView - - - Draw your own waveform here by dragging your mouse on this graph. - - - - - Select oscillator W1 - W1 oszcillátor kiválasztása - - - - Select oscillator W2 - W2 oszcillátor kiválasztása - - - - Select oscillator W3 - W3 oszcillátor kiválasztása - - - - Select output O1 - O1 kimenet kiválasztása - - - - Select output O2 - O2 kimenet kiválasztása - - - - Open help window - Súgó megnyitása - - - - - Sine wave - Szinuszhullám - - - - - Moog-saw wave - Moog fűrészfog - - - - - Exponential wave - Exponenciális - - - - - Saw wave - Fűrészfoghullám - - - - - User-defined wave - Felhasználó által megadott hullám - - - - - Triangle wave - Háromszöghullám - - - - - Square wave - Négyszöghullám - - - - - White noise - Fehér zaj - - - - WaveInterpolate - Interpoláció - - - - ExpressionValid - Érvényes kifejezés - - - - General purpose 1: - Általános 1: - - - - General purpose 2: - Általános 2: - - - - General purpose 3: - Általános 3: - - - - O1 panning: - O1 panoráma: - - - - O2 panning: - O2 panoráma: - - - - Release transition: - Elengedési idő: - - - - Smoothness - Simítás - - - - ZynAddSubFxInstrument - - - Portamento - Portamento - - - - Filter frequency - Szűrő frekvencia - - - - Filter resonance - Szűrő rezonancia - - - - Bandwidth - Sávszélesség - - - - FM gain - - - - - Resonance center frequency - - - - - Resonance bandwidth - - - - - Forward MIDI control change events - MIDI CC események továbbítása - - - - ZynAddSubFxView - - - Portamento: - Portamento: - - - - PORT - PORT - - - - Filter frequency: - Szűrő frekvencia: - - - - FREQ - FREKV - - - - Filter resonance: - Szűrő rezonancia: - - - - RES - RES - - - - Bandwidth: - Sávszélesség: - - - - BW - BW - - - - FM gain: - - - - - FM GAIN - - - - - Resonance center frequency: - - - - - RES CF - - - - - Resonance bandwidth: - - - - - RES BW - RES BW - - - - Forward MIDI control changes - MIDI CC események továbbítása - - - - Show GUI - GUI megjelenítése - - - - AudioFileProcessor - - - Amplify - Erősítés - - - - Start of sample - Minta eleje - - - - End of sample - Minta vége - - - - Loopback point - Visszatérési pont - - - - Reverse sample - Minta megfordítása - - - - Loop mode - Ismétlési mód - - - - Stutter - - - - - Interpolation mode - Interpolációs mód - - - - None - Nincs - - - - Linear - Lineáris - - - - Sinc - Sinc - - - - Sample not found: %1 - Hangminta nem található: %1 - - - - BitInvader - - - Sample length - Minta hossza - - - - BitInvaderView - - - Sample length - Minta hossza - - - - Draw your own waveform here by dragging your mouse on this graph. - - - - - - Sine wave - Szinuszhullám - - - - - Triangle wave - Háromszöghullám - - - - - Saw wave - Fűrészfoghullám - - - - - Square wave - Négyszöghullám - - - - - White noise - Fehér zaj - - - - - User-defined wave - Felhasználó által megadott hullám - - - - + + Smooth waveform - Hullámforma simítása - - - - Interpolation - Interpoláció - - - - Normalize - Normalizálás - - - - DynProcControlDialog - - - INPUT - BEMENET - - - - Input gain: - Bemeneti erősítés: - - - - OUTPUT - KIMENET - - - - Output gain: - Kimeneti erősítés: - - - - ATTACK - ATTACK - - - - Peak attack time: - - RELEASE - RELEASE - - - - Peak release time: + + + Normalize waveform - - - Reset wavegraph - Visszaállítás - - - - - Smooth wavegraph - Lekerekítés - - - - - Increase wavegraph amplitude by 1 dB - Amplitúdó növelése 1 dB-lel - - - - - Decrease wavegraph amplitude by 1 dB - Amplitúdó csökkentése 1 dB-lel - - - - Stereo mode: maximum - Sztereó mód: maximum - - - - Process based on the maximum of both stereo channels - Feldolgozás a csatonák maximuma alapján - - - - Stereo mode: average - Sztereó mód: átlag - - - - Process based on the average of both stereo channels - Feldolgozás a csatonák átlaga alapján - - - - Stereo mode: unlinked - Sztereó mód: független - - - - Process each stereo channel independently - A két csatorna egymástól független feldolgozása - - - - DynProcControls - - - Input gain - Bemeneti erősítés - - - - Output gain - Kimeneti erősítés - - - - Attack time - - - - - Release time - - - - - Stereo mode - Sztereó mód - - - - graphModel - - - Graph - - - - - KickerInstrument - - - Start frequency - Kezdő frekvencia - - - - End frequency - Végső frekvencia - - - - Length - Hossz - - - - Start distortion - Kezdeti torzítás - - - - End distortion - Végső torzítás - - - - Gain - Erősítés - - - - Envelope slope - Burkológörbe meredekség - - - - Noise - Zaj - - - - Click - Kattanás - - - - Frequency slope - Frekvenciaváltozás sebessége - - - - Start from note - - - - - End to note - - - - - KickerInstrumentView - - - Start frequency: - Kezdő frekvencia: - - - - End frequency: - Végső frekvencia: - - - - Frequency slope: - Frekvenciaváltozás sebessége: - - - - Gain: - Erősítés: - - - - Envelope length: - Burkológörbe hossza: - - - - Envelope slope: - Burkológörbe meredekség: - - - - Click: - Kattanás: - - - - Noise: - Zaj: - - - - Start distortion: - Kezdeti torzítás: - - - - End distortion: - Végső torzítás: - - - - LadspaBrowserView - - - - Available Effects - Elérhető effektek - - - - - Unavailable Effects - Nem elérhető effektek - - - - - Instruments - Hangszerek - - - - - Analysis Tools - Analizáló eszközök - - - - - Don't know - Ismeretlen - - - - Type: - Típus: - - - - LadspaDescription - - - Plugins - Bővítmények - - - - Description - Leírás - - - - LadspaPortDialog - - - Ports - Portok - - - - Name - Név - - - - Rate - Ütem: - - - - Direction - Irány - - - - Type - Típus - - - - Min < Default < Max - Min < Alapértelmezés < Max - - - - Logarithmic - Logaritmikus - - - - SR Dependent - - - - - Audio - Audió - - - - Control - Vezérlő - - - - Input - Bemenet - - - - Output - Kimenet - - - - Toggled - Ki/Be - - - - Integer - Egész - - - - Float - Lebegőpontos - - - - - Yes - Igen - - - - Lb302Synth - - - VCF Cutoff Frequency - VCF vágási frekvencia - - - - VCF Resonance - VCF rezonancia - - - - VCF Envelope Mod - VCF burkológörbe moduláció - - - - VCF Envelope Decay - - - - - Distortion - Torzítás - - - - Waveform - Hullámforma - - - - Slide Decay - - - - - Slide - - - - - Accent - - - - - Dead - - - - - 24dB/oct Filter - - - - - Lb302SynthView - - - Cutoff Freq: - Vágási frekvencia: - - - - Resonance: - Rezonancia: - - - - Env Mod: - Moduláció: - - - - Decay: - Decay: - - - - 303-es-que, 24dB/octave, 3 pole filter - - - - - Slide Decay: - - - - - DIST: - Torzítás: - - - - Saw wave - Fűrészfoghullám - - - - Click here for a saw-wave. - Fűrészfoghullám - - - - Triangle wave - Háromszöghullám - - - - Click here for a triangle-wave. - Háromszöghullám - - - - Square wave - Négyszöghullám - - - - Click here for a square-wave. - Négyszöghullám - - - - Rounded square wave - Lekerekített négyszög - - - - Click here for a square-wave with a rounded end. - Lekerekített négyszög - - - - Moog wave - Moog-szerű hullám - - - - Click here for a moog-like wave. - Moog-szerű hullám - - - + + Sine wave - Szinuszhullám - - - - Click for a sine-wave. - Szinusz - - - - - White noise wave - Fehér zaj - - - - Click here for an exponential wave. - Exponenciális hullám - - - - Click here for white-noise. - Fehér zaj - - - - Bandlimited saw wave - Sávlimitált fűrészfog - - - - Click here for bandlimited saw wave. - Sávlimitált fűrészfog - - - - Bandlimited square wave - Sávlimitált négyszög - - - - Click here for bandlimited square wave. - Sávlimitált négyszög - - - - Bandlimited triangle wave - Sávlimitált háromszög - - - - Click here for bandlimited triangle wave. - Sávlimitált háromszög - - - - Bandlimited moog saw wave - Sávlimitált Moog fűrészfog - - - - Click here for bandlimited moog saw wave. - Sávlimitált Moog fűrészfog - - - - MalletsInstrument - - - Hardness - Keménység - - - - Position - Pozíció - - - - Vibrato gain - Vibrato erősség - - - - Vibrato frequency - Vibrato frekvencia - - - - Stick mix - Ütő - - - - Modulator - Modulátor - - - - Crossfade - Keverési arány - - - - LFO speed - LFO sebesség - - - - LFO depth - LFO erősség - - - - ADSR - ADSR - - - - Pressure - Nyomás - - - - Motion - - Speed - Sebesség - - - - Bowed + + + Triangle wave - - Spread - Szórás - - - - Marimba - Marimba - - - - Vibraphone - Vibrafon - - - - Agogo - Agogo - - - - Wood 1 - Fa 1 - - - - Reso + + + Saw wave - - Wood 2 - Fa 2 - - - - Beats + + + Square wave - - Two fixed + + + White noise - - Clump + + + User-defined wave - - Tubular bells - Csőharang - - - - Uniform bar - - - - - Tuned bar - - - - - Glass - - - - - Tibetan bowl - Tibeti hangtál - - - - MalletsInstrumentView - - - Instrument - Hangszer - - - - Spread - Szórás - - - - Spread: - Szórás: - - - - Missing files - HIányzó fájlok - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - Az STK telepítése hiányosnak tűnik. Ellenőrizd, hogy a teljes STK csomag telepítve van-e! - - - - Hardness - Keménység - - - - Hardness: - Keménység: - - - - Position - Pozíció - - - - Position: - Pozíció: - - - - Vibrato gain - Vibrato erősség - - - - Vibrato gain: - Vibrato erősség: - - - - Vibrato frequency - Vibrato frekvencia - - - - Vibrato frequency: - Vibrato frekvencia: - - - - Stick mix - Ütő - - - - Stick mix: - Ütő: - - - - Modulator - Modulátor - - - - Modulator: - Modulátor: - - - - Crossfade - Keverési arány - - - - Crossfade: - Keverési arány: - - - - LFO speed - LFO sebesség - - - - LFO speed: - LFO sebesség: - - - - LFO depth - LFO erősség - - - - LFO depth: - LFO erősség: - - - - ADSR - ADSR - - - - ADSR: - ADSR: - - - - Pressure - Nyomás - - - - Pressure: - Nyomás: - - - - Speed - Sebesség - - - - Speed: - Sebesség: - - - - ManageVSTEffectView - - - - VST parameter control - - VST plugin vezérlők - - - - VST sync - VST Szinkron - - - - - Automated - Automatizált - - - - Close - Bezárás - - - - ManageVestigeInstrumentView - - - - - VST plugin control - - VST plugin vezérlők - - - - VST Sync - VST Szinkron - - - - - Automated - Automatizált - - - - Close - Bezárás - - - - OrganicInstrument - - - Distortion - Torzítás - - - - Volume - Hangerő - - - - OrganicInstrumentView - - - Distortion: - Torzítás: - - - - Volume: - Hangerő: - - - - Randomise - Randomizálás - - - - - Osc %1 waveform: - Osc %1 hullámforma: - - - - Osc %1 volume: - Osc %1 hangerő: - - - - Osc %1 panning: - Osc %1 panoráma: - - - - Osc %1 stereo detuning - Osc %1 sztereó elhangolás - - - - cents - cent - - - - Osc %1 harmonic: - Osc %1 harmonikus: - - - - PatchesDialog - - - Qsynth: Channel Preset - - - - - Bank selector - Bank választó - - - - Bank - Bank - - - - Program selector - Program választó - - - - Patch - Patch - - - - Name - Név - - - - OK - OK - - - - Cancel - Mégse - - - - Sf2Instrument - - - Bank - Bank - - - - Patch - Patch - - - - Gain - Erősítés - - - - Reverb - Zengető - - - - Reverb room size - Terem méret - - - - Reverb damping - Csillapítás - - - - Reverb width - Szélesség - - - - Reverb level - Zengető mennyiség - - - - Chorus - Kórus - - - - Chorus voices - Szólamok száma - - - - Chorus level - Kórus mennyiség - - - - Chorus speed - Kórus frekvencia - - - - Chorus depth - Kórus mélység - - - - A soundfont %1 could not be loaded. - A(z) %1 SoundFont nem tölthető be. - - - - Sf2InstrumentView - - - - Open SoundFont file - SoundFont fájl megnyitása - - - - Choose patch - Patch kiválasztása - - - - Gain: - Erősítés: - - - - Apply reverb (if supported) - Zengető alkalmazása (ha támogatott) - - - - Room size: - Terem méret: - - - - Damping: - Csillapítás: - - - - Width: - Szélesség: - - - - - Level: - Mennyiség: - - - - Apply chorus (if supported) - Kórus alkalmazása (ha támogatott) - - - - Voices: - Szólamok: - - - - Speed: - Sebesség: - - - - Depth: - Mélység: - - - - SoundFont Files (*.sf2 *.sf3) - SoundFont fájlok (*.sf2 *.sf3) - - - - SfxrInstrument - - - Wave - Hullám - - - - StereoEnhancerControlDialog - - - WIDTH - SZÉLESSÉG - - - - Width: - Szélesség: - - - - StereoEnhancerControls - - - Width - Szélesség - - - - StereoMatrixControlDialog - - - Left to Left Vol: - Bal - Bal jelszint: - - - - Left to Right Vol: - Bal - Jobb jelszint: - - - - Right to Left Vol: - Jobb - Bal jelszint: - - - - Right to Right Vol: - Jobb - Jobb jelszint - - - - StereoMatrixControls - - - Left to Left - Bal - Bal - - - - Left to Right - Bal - Jobb - - - - Right to Left - Jobb - Bal - - - - Right to Right - Jobb - Jobb - - - - VestigeInstrument - - - Loading plugin - Plugin betöltése - - - - Please wait while loading the VST plugin... - Várj, amíg a VST plugin betöltődik... - - - - Vibed - - - String %1 volume - %1. húr hangerő - - - - String %1 stiffness - %1. húr feszessége - - - - Pick %1 position - %1. húr pengetés helye - - - - Pickup %1 position - %1. hangszedő pozíciója - - - - String %1 panning - %1. húr panoráma - - - - String %1 detune - %1. húr elhangolása - - - - String %1 fuzziness - - - - - String %1 length - %1. húr hossza: - - - - Impulse %1 - Impulzus %1 - - - - String %1 - %1. húr - - - - VibedView - - + String volume: - Húr hangerő: + - + String stiffness: - Húr feszessége: + - + Pick position: - Pengetés helye: + - + Pickup position: - Hangszedő pozíciója: + - + String panning: - Húr panoráma: + - + String detune: - Húr elhangolása: + - + String fuzziness: - + String length: - Húr hossza: + - - Impulse - Impulzus - - - - Octave - Oktáv - - - + Impulse Editor - Impulzusszerkesztő + - - Enable waveform - Húr engedélyezése + + Impulse + - + Enable/disable string - Húr engedélyezése/tiltása + - + + Octave + + + + String - Húr + + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + - - + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + + + + + Next (+) + + + + + Save preset + + + + + + Effect by: + + + + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + + + + + lmms::gui::WatsynView + + + + + + Volume + + + + + + + + Panning + + + + + + + + Freq. multiplier + + + + + + + + Left detune + + + + + + + + + + + + cents + + + + + + + + Right detune + + + + + A-B Mix + + + + + Mix envelope amount + + + + + Mix envelope attack + + + + + Mix envelope hold + + + + + Mix envelope decay + + + + + Crosstalk + + + + + Select oscillator A1 + + + + + Select oscillator A2 + + + + + Select oscillator B1 + + + + + Select oscillator B2 + + + + + Mix output of A2 to A1 + + + + + Modulate amplitude of A1 by output of A2 + + + + + Ring modulate A1 and A2 + + + + + Modulate phase of A1 by output of A2 + + + + + Mix output of B2 to B1 + + + + + Modulate amplitude of B1 by output of B2 + + + + + Ring modulate B1 and B2 + + + + + Modulate phase of B1 by output of B2 + + + + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Load waveform + + + + + Load a waveform from a sample file + + + + + Phase left + + + + + Shift phase by -15 degrees + + + + + Phase right + + + + + Shift phase by +15 degrees + + + + + + Normalize + + + + + + Invert + + + + + + Smooth + + + + + Sine wave - Szinuszhullám + - - + + + Triangle wave - Háromszöghullám + - - + Saw wave - Fűrészfoghullám + - - + + Square wave - Négyszöghullám - - - - - White noise - Fehér zaj - - - - - User-defined wave - Felhasználó által megadott hullám - - - - - Smooth waveform - Hullámforma simítása - - - - - Normalize waveform - Hullámforma normalizálása - - - - VoiceObject - - - Voice %1 pulse width - - - - - Voice %1 attack - - - - - Voice %1 decay - - - - - Voice %1 sustain - - - - - Voice %1 release - - - - - Voice %1 coarse detuning - - - - - Voice %1 wave shape - - - - - Voice %1 sync - - - - - Voice %1 ring modulate - - - - - Voice %1 filtered - - - - - Voice %1 test - WaveShaperControlDialog + lmms::gui::WaveShaperControlDialog - + INPUT - BEMENET + - + Input gain: - Bemeneti erősítés: + - + OUTPUT - KIMENET - - - - Output gain: - Kimeneti erősítés: + - - Reset wavegraph - Visszaállítás + Output gain: + + - - Smooth wavegraph - Lekerekítés + Reset wavegraph + + - - Increase wavegraph amplitude by 1 dB - Amplitúdó növelése 1 dB-lel + Smooth wavegraph + + - + Increase wavegraph amplitude by 1 dB + + + + + Decrease wavegraph amplitude by 1 dB - Amplitúdó csökkentése 1 dB-lel + - + Clip input - Bemenet levágása + - + Clip input signal to 0 dB - Bemenet levágása 0dB-re + - WaveShaperControls + lmms::gui::XpressiveView - - Input gain - Bemeneti erősítés + + Draw your own waveform here by dragging your mouse on this graph. + - - Output gain - Kimeneti erősítés + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + - + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + + + + \ No newline at end of file diff --git a/data/locale/id.ts b/data/locale/id.ts index 4adeb9b22..fc7bb422f 100644 --- a/data/locale/id.ts +++ b/data/locale/id.ts @@ -1,4 +1,4 @@ - + AboutDialog @@ -70,810 +70,43 @@ Jika Anda tertarik untuk menerjemahkan LMMS dalam bahasa lain atau ingin meningk - AmplifierControlDialog + AboutJuceDialog - - VOL - VOL - - - - Volume: - Volume: - - - - PAN - SEIMBANG - - - - Panning: - Keseimbangan: - - - - LEFT - KIRI - - - - Left gain: - gain kiri: - - - - RIGHT - KANAN - - - - Right gain: - gain kanan: - - - - AmplifierControls - - - Volume - Volume - - - - Panning - Keseimbangan - - - - Left gain - gain Kiri - - - - Right gain - gain Kanan - - - - AudioAlsaSetupWidget - - - DEVICE - PERANGKAT - - - - CHANNELS - SALURAN - - - - AudioFileProcessorView - - - Open sample - Buka sampel - - - - Reverse sample - Balikan sampel - - - - Disable loop - Nonaktifkan pengulangan - - - - Enable loop - Aktifkan pengulangan - - - - Enable ping-pong loop + + About JUCE - - Continue sample playback across notes - Lanjutkan pemutaran sampel di catatan melintasi not - - - - Amplify: - Penguatan: - - - - Start point: - Poin awal: - - - - End point: - Poin akhir: - - - - Loopback point: - Titik pengulangan: - - - - AudioFileProcessorWaveView - - - Sample length: - Panjang sampel: - - - - AudioJack - - - JACK client restarted - klien JACK dimulai ulang - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS dikeluarkan oleh JACK karena alasan tertentu. Oleh karena itu backend LMMS JACK, telah dimulai ulang. Anda harus membuat koneksi manual lagi. - - - - JACK server down - Server JACK lumpuh - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - Server JACK sepertinya telah dimatikan dan pemulaian instansi baru gagal. Oleh karena itu LMMS tidak bisa dilanjutkan. Anda harus menyimpan proyek anda dan memulai ulang JACK dan LMMS. - - - - Client name + + <b>About JUCE</b> - - Channels + + This program uses JUCE version 3.x.x. + + + + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + + + + + This program uses JUCE version - AudioOss + AudioDeviceSetupWidget - - Device - - - - - Channels - - - - - AudioPortAudio::setupWidget - - - Backend - - - - - Device - - - - - AudioPulseAudio - - - Device - - - - - Channels - - - - - AudioSdl::setupWidget - - - Device - - - - - AudioSndio - - - Device - - - - - Channels - - - - - AudioSoundIo::setupWidget - - - Backend - - - - - Device - - - - - AutomatableModel - - - &Reset (%1%2) - &Mulai ulang (%1%2) - - - - &Copy value (%1%2) - &Salin nilai (%1%2) - - - - &Paste value (%1%2) - &Tempel nilai (%1%2) - - - - &Paste value - &Tempel nilai - - - - Edit song-global automation - Ubah lagu otomasi global - - - - Remove song-global automation - Hapus lagu otomasi global - - - - Remove all linked controls - Hapus semua pengendali yang terhubung - - - - Connected to %1 - Terhubung ke %1 - - - - Connected to controller - Terhubung ke pengendali - - - - Edit connection... - Ubah koneksi... - - - - Remove connection - Hapus koneksi - - - - Connect to controller... - Hubungkan ke pengendali... - - - - AutomationEditor - - - Edit Value - - - - - New outValue - - - - - New inValue - - - - - Please open an automation clip with the context menu of a control! - Silakan buka pola otomasi dengan menu konteks kontrol! - - - - AutomationEditorWindow - - - Play/pause current clip (Space) - Putar/jeda pola saat ini (Spasi) - - - - Stop playing of current clip (Space) - Berhenti memutar pola saat ini (Spasi) - - - - Edit actions - Ubah aksi - - - - Draw mode (Shift+D) - Mode menggambar (Shift+D) - - - - Erase mode (Shift+E) - Mode penghapus (Shift+E) - - - - Draw outValues mode (Shift+C) - - - - - Flip vertically - Balik secara vertikal - - - - Flip horizontally - Balik secara horizontal - - - - Interpolation controls - Kontrol interpolasi - - - - Discrete progression - Perkembangan diskrit - - - - Linear progression - perkembangan linier - - - - Cubic Hermite progression - Perkembangan Hermite Cubic - - - - Tension value for spline - nilai tegangan untuk spline - - - - Tension: - Tegangan: - - - - Zoom controls - Kontrol Zum - - - - Horizontal zooming - Pembesaran horizontal - - - - Vertical zooming - Pembesaran vertikal - - - - Quantization controls - Kontrol kuantitasi - - - - Quantization - Kuantitasi - - - - - Automation Editor - no clip - Editor Otomasi - tiada pola - - - - - Automation Editor - %1 - Editor Otomasi - %1 - - - - Model is already connected to this clip. - Model sudah terhubung ke pola ini. - - - - AutomationClip - - - Drag a control while pressing <%1> - Tarik kontrol sambil menekan <%1> - - - - AutomationClipView - - - Open in Automation editor - Buka di editor Otomasi - - - - Clear - Bersih - - - - Reset name - Reset nama - - - - Change name - Ganti nama - - - - Set/clear record - Setel/bersihkan catatan - - - - Flip Vertically (Visible) - Balik secara Vertikal (Terlihat) - - - - Flip Horizontally (Visible) - Balik secara Horizontal (Terlihat) - - - - %1 Connections - %1 Koneksi - - - - Disconnect "%1" - Putuskan "%1" - - - - Model is already connected to this clip. - Model sudah terhubung ke pola ini. - - - - AutomationTrack - - - Automation track - Trek otomasi - - - - PatternEditor - - - Beat+Bassline Editor - Editor Bassline+ketukan - - - - Play/pause current beat/bassline (Space) - Putar/jeda ketukan/bassline saat ini (Spasi) - - - - Stop playback of current beat/bassline (Space) - Hentikan pemutaran ketukan/bassline saat ini (Spasi) - - - - Beat selector - Pemilih Ketukan - - - - Track and step actions - Aksi trek dan langkah - - - - Add beat/bassline - Tambah ketukan/bassline - - - - Clone beat/bassline clip - - - - - Add sample-track - Tambah Trek-sampel - - - - Add automation-track - Tambah trek-otomasi - - - - Remove steps - Hapus langkah - - - - Add steps - Tambah langkah - - - - Clone Steps - Klon langkah - - - - PatternClipView - - - Open in Beat+Bassline-Editor - Buka di Ketukan/Bassline-Editor - - - - Reset name - Reset nama - - - - Change name - Ganti nama - - - - PatternTrack - - - Beat/Bassline %1 - Ketukan/Bassline %1 - - - - Clone of %1 - Klon dari %1 - - - - BassBoosterControlDialog - - - FREQ - FREK - - - - Frequency: - Frekuensi: - - - - GAIN - GAIN - - - - Gain: - Gain: - - - - RATIO - RASIO - - - - Ratio: - Rasio: - - - - BassBoosterControls - - - Frequency - Frekuensi - - - - Gain - Gain - - - - Ratio - Rasio - - - - BitcrushControlDialog - - - IN - MASUK - - - - OUT - KELUAR - - - - - GAIN - GAIN - - - - Input gain: - Gain masukan: - - - - NOISE - RIUH - - - - Input noise: - - - - - Output gain: - Gait keluaran: - - - - CLIP - KLIP - - - - Output clip: - - - - - Rate enabled - - - - - Enable sample-rate crushing - - - - - Depth enabled - - - - - Enable bit-depth crushing - - - - - FREQ - FREK - - - - Sample rate: - Nilai sampel: - - - - STEREO - STEREO - - - - Stereo difference: - Perbedaan stereo: - - - - QUANT - - - - - Levels: - Tingkat: - - - - BitcrushControls - - - Input gain - Gain masukan - - - - Input noise - - - - - Output gain - Gain keluaran - - - - Output clip - - - - - Sample rate - Nilai sampel - - - - Stereo difference - Perbedaan stereo - - - - Levels - Tingkatan - - - - Rate enabled - - - - - Depth enabled + + [System Default] @@ -900,124 +133,124 @@ Jika Anda tertarik untuk menerjemahkan LMMS dalam bahasa lain atau ingin meningk - + Artwork - + Using KDE Oxygen icon set, designed by Oxygen Team. - + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. - + VST is a trademark of Steinberg Media Technologies GmbH. - + VST merupakan merk dagang milik Steinberg Media Technologies GmbH. - + Special thanks to António Saraiva for a few extra icons and artwork! - + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. - + MIDI Keyboard designed by Thorsten Wilms. - - - - - Carla, Carla-Control and Patchbay icons designed by DoosC. - + MIDI Keyboard dirancang oleh Thorsten Wilms. - Features - + Carla, Carla-Control and Patchbay icons designed by DoosC. + Ikon Carla, Carla-Control, dan Patchbay dirancang oleh DoosC. - + + Features + Fitur + + + AU/AudioUnit: - + LADSPA: - - - - - - - - + + + + + + + + TextLabel - + VST2: - + DSSI: - + LV2: - + VST3: - + OSC - + Host URLs: - + Valid commands: - + valid osc commands here - + Example: - + License Lisensi - + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -1302,50 +535,50 @@ POSSIBILITY OF SUCH DAMAGES. - + OSC Bridge Version - + Plugin Version - + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> - - + + (Engine not running) - + Everything! (Including LRDF) - + Everything! (Including CustomData/Chunks) - + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - - - + + + Using Juce host - + About 85% complete (missing vst bank/presets and some minor stuff) @@ -1365,7 +598,7 @@ POSSIBILITY OF SUCH DAMAGES. Patchbay - + Patchbay @@ -1378,561 +611,598 @@ POSSIBILITY OF SUCH DAMAGES. - + + Save + + + + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + Buffer Size: - + Sample Rate: - + ? Xruns - + DSP Load: %p% - + &File &Berkas - + &Engine - + &Plugin - + Macros (all plugins) - + &Canvas - + Zoom - + &Settings - + &Help &Bantuan - - toolBar + + Tool Bar - + Disk - - + + Home - + Transport - + Playback Controls - + Time Information - + Frame: - + 000'000'000 - + Time: Waktu: - + 00:00:00 - + BBT: - + 000|00|0000 - + Settings Pengaturan - + BPM - + Use JACK Transport - + Use Ableton Link - + &New &Baru - + Ctrl+N - + &Open... &Buka - - + + Open... - + Ctrl+O - + &Save &Simpan - + Ctrl+S - + Save &As... Simpan &Sebagai... - - + + Save As... - + Ctrl+Shift+S - + Ctrl+Shift+S - + &Quit &Keluar - + Ctrl+Q - + &Start - + F5 - + St&op - + F6 - + &Add Plugin... - + Ctrl+A - + &Remove All - + Enable - + Disable - + 0% Wet (Bypass) - + 100% Wet - + 0% Volume (Mute) - + 100% Volume - + Center Balance - + &Play - + Ctrl+Shift+P - + &Stop - + Ctrl+Shift+X - + &Backwards - + Ctrl+Shift+B - + &Forwards - + Ctrl+Shift+F - + &Arrange - + Ctrl+G - - + + &Refresh - + Ctrl+R - + Save &Image... - + Auto-Fit - + Zoom In - + Ctrl++ - + Zoom Out - + Ctrl+- - + Zoom 100% - + Ctrl+1 - + Show &Toolbar - + &Configure Carla - + &About - + About &JUCE - + About &Qt - + Show Canvas &Meters - + Show Canvas &Keyboard - + Show Internal - + Show External - + Show Time Panel - + Show &Side Panel - + + Ctrl+P + + + + &Connect... - + Compact Slots - + Expand Slots - + Perform secret 1 - + Perform secret 2 - + Perform secret 3 - + Perform secret 4 - + Perform secret 5 - + Add &JACK Application... - + &Configure driver... - + Panic - + Open custom driver panel... + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + + CarlaHostWindow - + Export as... - - - - + + + + Error Kesalahan - + Failed to load project - + Failed to save project - + Quit - + Are you sure you want to quit Carla? - + Could not connect to Audio backend '%1', possible reasons: %2 - + Could not connect to Audio backend '%1' - + Warning - + There are still some plugins loaded, you need to remove them to stop the engine. Do you want to do this now? - - CarlaInstrumentView - - - Show GUI - Tampilkan GUI - - CarlaSettingsW @@ -1987,19 +1257,19 @@ Do you want to do this now? - + Main - + Canvas - + Engine @@ -2020,1487 +1290,589 @@ Do you want to do this now? - + Experimental - + <b>Main</b> - + Paths - + Default project folder: - + Interface - + + Use "Classic" as default rack skin + + + + Interface refresh interval: - - + + ms - + Show console output in Logs tab (needs engine restart) - + Show a confirmation dialog before quitting - - + + Theme - + Use Carla "PRO" theme (needs restart) - + Color scheme: - + Black - + System - + Enable experimental features - + <b>Canvas</b> - + Bezier Lines - + Theme: - + Size: Ukuran: - + 775x600 - + 1550x1200 - + 3100x2400 - + 4650x3600 - + 4650x3600 - + 6200x4800 - + + 12400x9600 + + + + Options - + Auto-hide groups with no ports - + Auto-select items on hover - + Basic eye-candy (group shadows) - + Render Hints - + Render Bantuan - + Anti-Aliasing - + Full canvas repaints (slower, but prevents drawing issues) - + <b>Engine</b> - - + + Core - + Single Client - + Multiple Clients - - + + Continuous Rack - - + + Patchbay - + Patchbay - + Audio driver: - + Process mode: - - - - + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog - + Max Parameters: - + ... - + Reset Xrun counter after project load - + Plugin UIs - - + + How much time to wait for OSC GUIs to ping back the host - + UI Bridge Timeout: - + Use OSC-GUI bridges when possible, this way separating the UI from DSP code - + Use UI bridges instead of direct handling when possible - + Make plugin UIs always-on-top - + Make plugin UIs appear on top of Carla (needs restart) - + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS - - + + Restart the engine to load the new settings - + <b>OSC</b> - + Enable OSC - + Enable TCP port - - + + Use specific port: - + Overridden by CARLA_OSC_TCP_PORT env var - - + + Use randomly assigned port - + Enable UDP port - + Overridden by CARLA_OSC_UDP_PORT env var - + DSSI UIs require OSC UDP port enabled - + <b>File Paths</b> - + Audio Audio - + MIDI MIDI - + Used for the "audiofile" plugin - + Used for the "midifile" plugin - - + + Add... - - + + Remove - - + + Change... - + <b>Plugin Paths</b> - + LADSPA - + DSSI - + LV2 - + VST2 - + VST3 - + SF2/3 - + SFZ - + + JSFX + + + + + CLAP + + + + Restart Carla to find new plugins - + <b>Wine</b> - + Executable - + Path to 'wine' binary: - + Prefix - + Auto-detect Wine prefix based on plugin filename - + Fallback: - + Note: WINEPREFIX env var is preferred over this fallback - + Realtime Priority - + Base priority: - + WineServer priority: - + These options are not available for Carla as plugin - + <b>Experimental</b> - + Experimental options! Likely to be unstable! - + Enable plugin bridges - + Enable Wine bridges - + Enable jack applications - + Export single plugins to LV2 - + + Use system/desktop-theme icons (needs restart) + + + + Load Carla backend in global namespace (NOT RECOMMENDED) - + Fancy eye-candy (fade-in/out groups, glow connections) - + Use OpenGL for rendering (needs restart) - + High Quality Anti-Aliasing (OpenGL only) - + Render Ardour-style "Inline Displays" - + Force mono plugins as stereo by running 2 instances at the same time. This mode is not available for VST plugins. - + Force mono plugins as stereo - - Prevent plugins from doing bad stuff (needs restart) + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. - - Whenever possible, run the plugins in bridge mode. + + Prevent unsafe calls from plugins (needs restart) - + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + Run plugins in bridge mode when possible - - - - + + + + Add Path - - CompressorControlDialog - - - Threshold: - - - - - Volume at which the compression begins to take place - - - - - Ratio: - Rasio: - - - - How far the compressor must turn the volume down after crossing the threshold - - - - - Attack: - Attack: - - - - Speed at which the compressor starts to compress the audio - - - - - Release: - Release: - - - - Speed at which the compressor ceases to compress the audio - - - - - Knee: - - - - - Smooth out the gain reduction curve around the threshold - - - - - Range: - - - - - Maximum gain reduction - - - - - Lookahead Length: - - - - - How long the compressor has to react to the sidechain signal ahead of time - - - - - Hold: - Hold: - - - - Delay between attack and release stages - - - - - RMS Size: - - - - - Size of the RMS buffer - - - - - Input Balance: - - - - - Bias the input audio to the left/right or mid/side - - - - - Output Balance: - - - - - Bias the output audio to the left/right or mid/side - - - - - Stereo Balance: - - - - - Bias the sidechain signal to the left/right or mid/side - - - - - Stereo Link Blend: - - - - - Blend between unlinked/maximum/average/minimum stereo linking modes - - - - - Tilt Gain: - - - - - Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. - - - - - Tilt Frequency: - - - - - Center frequency of sidechain tilt filter - - - - - Mix: - - - - - Balance between wet and dry signals - - - - - Auto Attack: - - - - - Automatically control attack value depending on crest factor - - - - - Auto Release: - - - - - Automatically control release value depending on crest factor - - - - - Output gain - Gain keluaran - - - - - Gain - GainGain - - - - Output volume - - - - - Input gain - Gain masukan - - - - Input volume - - - - - Root Mean Square - - - - - Use RMS of the input - - - - - Peak - - - - - Use absolute value of the input - - - - - Left/Right - - - - - Compress left and right audio - - - - - Mid/Side - - - - - Compress mid and side audio - - - - - Compressor - - - - - Compress the audio - - - - - Limiter - - - - - Set Ratio to infinity (is not guaranteed to limit audio volume) - - - - - Unlinked - - - - - Compress each channel separately - - - - - Maximum - - - - - Compress based on the loudest channel - - - - - Average - - - - - Compress based on the averaged channel volume - - - - - Minimum - - - - - Compress based on the quietest channel - - - - - Blend - - - - - Blend between stereo linking modes - - - - - Auto Makeup Gain - - - - - Automatically change makeup gain depending on threshold, knee, and ratio settings - - - - - - Soft Clip - - - - - Play the delta signal - - - - - Use the compressor's output as the sidechain input - - - - - Lookahead Enabled - - - - - Enable Lookahead, which introduces 20 milliseconds of latency - - - - - CompressorControls - - - Threshold - - - - - Ratio - Rasio - - - - Attack - Attack - - - - Release - Release - - - - Knee - - - - - Hold - Tahan - - - - Range - - - - - RMS Size - - - - - Mid/Side - - - - - Peak Mode - - - - - Lookahead Length - - - - - Input Balance - - - - - Output Balance - - - - - Limiter - - - - - Output Gain - Gain Keluaran - - - - Input Gain - Gain Masukan - - - - Blend - - - - - Stereo Balance - - - - - Auto Makeup Gain - - - - - Audition - - - - - Feedback - Umpan balik - - - - Auto Attack - - - - - Auto Release - - - - - Lookahead - - - - - Tilt - - - - - Tilt Frequency - - - - - Stereo Link - - - - - Mix - Mix - - - - Controller - - - Controller %1 - Kontroler %1 - - - - ControllerConnectionDialog - - - Connection Settings - Pengaturan Koneksi - - - - MIDI CONTROLLER - KONTROLER MIDI - - - - Input channel - Saluran Masukan - - - - CHANNEL - SALURAN - - - - Input controller - Kontroler masukan - - - - CONTROLLER - KONTROLER - - - - - Auto Detect - Deteksi Otomatis - - - - MIDI-devices to receive MIDI-events from - Perangkat MIDI untuk menerima aktifitas-MIDI dari - - - - USER CONTROLLER - KONTROLER PENGGUNA - - - - MAPPING FUNCTION - PEMETAAN FUNGSI - - - - OK - OK - - - - Cancel - Batal - - - - LMMS - LMMS - - - - Cycle Detected. - Siklus terdeteksi. - - - - ControllerRackView - - - Controller Rack - Kontroler rak - - - - Add - Tambah - - - - Confirm Delete - Konfirmasi Hapus - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Konfirmasi hapus? Ada (beberapa) koneksi yang terasosiasi dengan kontroler ini. Tidak mungkin untuk melakukan undi. - - - - ControllerView - - - Controls - Kontrol - - - - Rename controller - Ganti nama kontroler - - - - Enter the new name for this controller - Masukan nama baru untuk kontroler ini - - - - LFO - LFO - - - - &Remove this controller - &Hapus kontroler ini - - - - Re&name this controller - Ganti&Nama kontroler ini - - - - CrossoverEQControlDialog - - - Band 1/2 crossover: - - - - - Band 2/3 crossover: - - - - - Band 3/4 crossover: - - - - - Band 1 gain - - - - - Band 1 gain: - - - - - Band 2 gain - - - - - Band 2 gain: - - - - - Band 3 gain - - - - - Band 3 gain: - - - - - Band 4 gain - - - - - Band 4 gain: - - - - - Band 1 mute - - - - - Mute band 1 - - - - - Band 2 mute - - - - - Mute band 2 - - - - - Band 3 mute - - - - - Mute band 3 - - - - - Band 4 mute - - - - - Mute band 4 - - - - - DelayControls - - - Delay samples - - - - - Feedback - Umpan balik - - - - LFO frequency - Frekuensi LFO - - - - LFO amount - Jumlah LFO - - - - Output gain - Gain keluaran - - - - DelayControlsDialog - - - DELAY - DELAY - - - - Delay time - - - - - FDBK - UMPBLK - - - - Feedback amount - - - - - RATE - NILAI - - - - LFO frequency - Frekuensi LFO - - - - AMNT - JMLH - - - - LFO amount - Jumlah LFO - - - - Out gain - - - - - Gain - GainGain - - Dialog - - - Add JACK Application - - - - - Note: Features not implemented yet are greyed out - - - - - Application - - - - - Name: - - - - - Application: - - - - - From template - - - - - Custom - - - - - Template: - - - - - Command: - - - - - Setup - - - - - Session Manager: - - - - - None - Tidak ada - - - - Audio inputs: - - - - - MIDI inputs: - - - - - Audio outputs: - - - - - MIDI outputs: - - - - - Take control of main application window - - - - - Workarounds - - - - - Wait for external application start (Advanced, for Debug only) - - - - - Capture only the first X11 Window - - - - - Use previous client output buffer as input for the next client - - - - - Simulate 16 JACK MIDI outputs, with MIDI channel as port index - - - - - Error here - - Carla Control - Connect @@ -3526,27 +1898,6 @@ This mode is not available for VST plugins. TCP Port: - - - Reported host - - - - - Automatic - - - - - Custom: - - - - - In some networks (like USB connections), the remote system cannot reach the local network. You can specify here which hostname or IP to make the remote Carla connect to. -If you are unsure, leave it as 'Automatic'. - - Set value @@ -3601,948 +1952,6 @@ If you are unsure, leave it as 'Automatic'. - - DualFilterControlDialog - - - - FREQ - FREK - - - - - Cutoff frequency - Frekuensi cutoff - - - - - RESO - RESO - - - - - Resonance - Resonansi - - - - - GAIN - GAIN - - - - - Gain - Gain - - - - MIX - MIX - - - - Mix - Mix - - - - Filter 1 enabled - Filter 1 diaktifkan - - - - Filter 2 enabled - Filter 2 diaktifkan - - - - Enable/disable filter 1 - - - - - Enable/disable filter 2 - - - - - DualFilterControls - - - Filter 1 enabled - Filter 1 diaktifkan - - - - Filter 1 type - Tipe Filter 1 - - - - Cutoff frequency 1 - - - - - Q/Resonance 1 - Q/Resonansi 1 - - - - Gain 1 - Gain 1 - - - - Mix - Mix - - - - Filter 2 enabled - Filter 2 diaktifkan - - - - Filter 2 type - Tipe Filter 2 - - - - Cutoff frequency 2 - - - - - Q/Resonance 2 - Q/Resonansi 2 - - - - Gain 2 - Gain 2 - - - - - Low-pass - - - - - - Hi-pass - - - - - - Band-pass csg - - - - - - Band-pass czpg - - - - - - Notch - Notch - - - - - All-pass - - - - - - Moog - Moog - - - - - 2x Low-pass - - - - - - RC Low-pass 12 dB/oct - - - - - - RC Band-pass 12 dB/oct - - - - - - RC High-pass 12 dB/oct - - - - - - RC Low-pass 24 dB/oct - - - - - - RC Band-pass 24 dB/oct - - - - - - RC High-pass 24 dB/oct - - - - - - Vocal Formant - - - - - - 2x Moog - 2x Moog - - - - - SV Low-pass - - - - - - SV Band-pass - - - - - - SV High-pass - - - - - - SV Notch - SV Notch - - - - - Fast Formant - Formant Cepat - - - - - Tripole - Tripol - - - - Editor - - - Transport controls - Kontrol transport - - - - Play (Space) - Putar (Spasi) - - - - Stop (Space) - Hentikan (Spasi) - - - - Record - Rekam - - - - Record while playing - Rekam ketika memutar - - - - Toggle Step Recording - - - - - Effect - - - Effect enabled - Efek diaktifkan - - - - Wet/Dry mix - - - - - Gate - Lawang - - - - Decay - Tahan - - - - EffectChain - - - Effects enabled - Aktifkan efek - - - - EffectRackView - - - EFFECTS CHAIN - RANTAI EFEK - - - - Add effect - Tambah efek - - - - EffectSelectDialog - - - Add effect - Tambah efek - - - - - Name - Nama - - - - Type - Tipe - - - - Description - Deskripsi - - - - Author - Pencipta - - - - EffectView - - - On/Off - Nyala/Mati - - - - W/D - B/K - - - - Wet Level: - Tingkat Basah: - - - - DECAY - DECAY - - - - Time: - Waktu: - - - - GATE - LAWANG - - - - Gate: - Lawang: - - - - Controls - Kontrol - - - - Move &up - Pindah ke &atas - - - - Move &down - Pindah ke &bawah - - - - &Remove this plugin - &Hapus plugin ini - - - - EnvelopeAndLfoParameters - - - Env pre-delay - - - - - Env attack - - - - - Env hold - - - - - Env decay - - - - - Env sustain - - - - - Env release - - - - - Env mod amount - - - - - LFO pre-delay - - - - - LFO attack - - - - - LFO frequency - Frekuensi LFO - - - - LFO mod amount - - - - - LFO wave shape - - - - - LFO frequency x 100 - - - - - Modulate env amount - - - - - EnvelopeAndLfoView - - - - DEL - DEL - - - - - Pre-delay: - - - - - - ATT - ATT - - - - - Attack: - Attack: - - - - HOLD - HOLD - - - - Hold: - Hold: - - - - DEC - DEC - - - - Decay: - Decay: - - - - SUST - SUST - - - - Sustain: - Sustain: - - - - REL - REL - - - - Release: - Release: - - - - - AMT - JMLH - - - - - Modulation amount: - Jumlah modulasi: - - - - SPD - SPD - - - - Frequency: - Frekuensi: - - - - FREQ x 100 - FREK x 100 - - - - Multiply LFO frequency by 100 - - - - - MODULATE ENV AMOUNT - - - - - Control envelope amount by this LFO - - - - - ms/LFO: - md/LFO: - - - - Hint - Petunjuk - - - - Drag and drop a sample into this window. - - - - - EqControls - - - Input gain - Gain masukan - - - - Output gain - Gain keluaran - - - - Low-shelf gain - - - - - Peak 1 gain - Gain peak 1 - - - - Peak 2 gain - Gain peak 2 - - - - Peak 3 gain - Gain peak 3 - - - - Peak 4 gain - Gain peak 4 - - - - High-shelf gain - - - - - HP res - HP res - - - - Low-shelf res - - - - - Peak 1 BW - Peak 1 BW - - - - Peak 2 BW - Peak 2 BW - - - - Peak 3 BW - - - - - Peak 4 BW - - - - - High-shelf res - - - - - LP res - LP res - - - - HP freq - HP freq - - - - Low-shelf freq - - - - - Peak 1 freq - Frek peak 1 - - - - Peak 2 freq - Frek peak 2 - - - - Peak 3 freq - Frek peak 3 - - - - Peak 4 freq - Frek peak 4 - - - - High-shelf freq - - - - - LP freq - Frek LP - - - - HP active - HP aktif - - - - Low-shelf active - - - - - Peak 1 active - Peak 1 aktif - - - - Peak 2 active - Peak 2 aktif - - - - Peak 3 active - Peak 3 aktif - - - - Peak 4 active - Peak 4 aktif - - - - High-shelf active - - - - - LP active - LP aktif - - - - LP 12 - LP 12 - - - - LP 24 - LP 24 - - - - LP 48 - LP 48 - - - - HP 12 - HP 12 - - - - HP 24 - HP 24 - - - - HP 48 - Hp 48 - - - - Low-pass type - - - - - High-pass type - - - - - Analyse IN - - - - - Analyse OUT - - - - - EqControlsDialog - - - HP - HP - - - - Low-shelf - - - - - Peak 1 - Peak 1 - - - - Peak 2 - Peak 2 - - - - Peak 3 - Peak 3 - - - - Peak 4 - Peak 4 - - - - High-shelf - - - - - LP - LP - - - - Input gain - Gain masukan - - - - - - Gain - Gain - - - - Output gain - Gain keluaran - - - - Bandwidth: - - - - - Octave - Oktaf - - - - Resonance : - Resonansi : - - - - Frequency: - Frekuensi: - - - - LP group - - - - - HP group - - - - - EqHandle - - - Reso: - Reso: - - - - BW: - BW: - - - - - Freq: - Frek: - - ExportProjectDialog @@ -4553,7 +1962,7 @@ If you are unsure, leave it as 'Automatic'. Export as loop (remove extra bar) - + Ekspor sebagai loop (hapus bar tambahan) @@ -4726,2129 +2135,653 @@ If you are unsure, leave it as 'Automatic'. - - Oversampling: - - - - - 1x (None) - 1x (Tidak ada) - - - - 2x - 2x - - - - 4x - 4x - - - - 8x - 8x - - - + Start Mulai - + Cancel Batal - - - Could not open file - Tidak bisa membuka berkas - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Tidak bisa membuka berkas %1 untuk menulis. -Pastikan Anda memiliki izin menulis ke file dan direktori yang berisi berkas tersebut dan coba lagi! - - - - Export project to %1 - Ekspor proyek ke %1 - - - - ( Fastest - biggest ) - - - - - ( Slowest - smallest ) - - - - - Error - Kesalahan - - - - Error while determining file-encoder device. Please try to choose a different output format. - Kesalahan ketika menentukan perangkat encoder-file. Cobalah untuk memilih format keluaran yang berbeda. - - - - Rendering: %1% - Merender: %1% - - - - Fader - - - Set value - - - - - Please enter a new value between %1 and %2: - Silakan masukan nilai baru antara %1 dan %2: - - - - FileBrowser - - - User content - - - - - Factory content - - - - - Browser - Penjelajah - - - - Search - Cari - - - - Refresh list - Segarkan daftar - - - - FileBrowserTreeWidget - - - Send to active instrument-track - Kirim ke trek-instrumen yang aktif - - - - Open containing folder - - - - - Song Editor - Editor Lagu - - - - BB Editor - - - - - Send to new AudioFileProcessor instance - - - - - Send to new instrument track - - - - - (%2Enter) - - - - - Send to new sample track (Shift + Enter) - - - - - Loading sample - Memuat sampel - - - - Please wait, loading sample for preview... - Mohon tunggu, memuat sampel untuk pratinjau... - - - - Error - Kesalahan - - - - %1 does not appear to be a valid %2 file - - - - - --- Factory files --- - --- Berkas pabrik --- - - - - FlangerControls - - - Delay samples - - - - - LFO frequency - Frekuensi LFO - - - - Seconds - Detik - - - - Stereo phase - - - - - Regen - Regen - - - - Noise - Derau - - - - Invert - Balik - - - - FlangerControlsDialog - - - DELAY - DELAY - - - - Delay time: - - - - - RATE - NILAI - - - - Period: - Periode: - - - - AMNT - JMLH - - - - Amount: - Jumlah: - - - - PHASE - - - - - Phase: - - - - - FDBK - UMPBLK - - - - Feedback amount: - - - - - NOISE - RIUH - - - - White noise amount: - - - - - Invert - Balik - - - - FreeBoyInstrument - - - Sweep time - - - - - Sweep direction - - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle - - - - - Channel 1 volume - Volume Saluran 1 - - - - - - Volume sweep direction - - - - - - - Length of each step in sweep - - - - - Channel 2 volume - Volume Saluran 2 - - - - Channel 3 volume - Volume Saluran 3 - - - - Channel 4 volume - Volume Saluran 4 - - - - Shift Register width - - - - - Right output level - - - - - Left output level - - - - - Channel 1 to SO2 (Left) - Saluran 1 ke SO2 (Kiri) - - - - Channel 2 to SO2 (Left) - Saluran 2 ke SO2 (Kiri) - - - - Channel 3 to SO2 (Left) - Saluran 3 ke SO2 (Kiri) - - - - Channel 4 to SO2 (Left) - Saluran 4 ke SO2 (Kiri) - - - - Channel 1 to SO1 (Right) - Saluran 1 ke SO1 (Kanan) - - - - Channel 2 to SO1 (Right) - Saluran 2 ke SO1 (Kanan) - - - - Channel 3 to SO1 (Right) - Saluran 3 ke SO1 (Kanan) - - - - Channel 4 to SO1 (Right) - Saluran 4 ke SO1 (Kanan) - - - - Treble - Trebel - - - - Bass - Bass - - - - FreeBoyInstrumentView - - - Sweep time: - - - - - Sweep time - - - - - Sweep rate shift amount: - - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle: - - - - - - Wave pattern duty cycle - - - - - Square channel 1 volume: - - - - - Square channel 1 volume - - - - - - - Length of each step in sweep: - - - - - - - Length of each step in sweep - - - - - Square channel 2 volume: - - - - - Square channel 2 volume - - - - - Wave pattern channel volume: - - - - - Wave pattern channel volume - - - - - Noise channel volume: - - - - - Noise channel volume - - - - - SO1 volume (Right): - - - - - SO1 volume (Right) - - - - - SO2 volume (Left): - - - - - SO2 volume (Left) - - - - - Treble: - Trebel: - - - - Treble - Trebel - - - - Bass: - Bass: - - - - Bass - Bass - - - - Sweep direction - - - - - - - - - Volume sweep direction - - - - - Shift register width - - - - - Channel 1 to SO1 (Right) - Saluran 1 ke SO1 (Kanan) - - - - Channel 2 to SO1 (Right) - Saluran 2 ke SO1 (Kanan) - - - - Channel 3 to SO1 (Right) - Saluran 3 ke SO1 (Kanan) - - - - Channel 4 to SO1 (Right) - Saluran 4 ke SO1 (Kanan) - - - - Channel 1 to SO2 (Left) - Saluran 1 ke SO2 (Kiri) - - - - Channel 2 to SO2 (Left) - Saluran 2 ke SO2 (Kiri) - - - - Channel 3 to SO2 (Left) - Saluran 3 ke SO2 (Kiri) - - - - Channel 4 to SO2 (Left) - Saluran 4 ke SO2 (Kiri) - - - - Wave pattern graph - - - - - MixerChannelView - - - Channel send amount - Jumlah kirim saluran - - - - Move &left - Pindah ke &kiri - - - - Move &right - Pindah ke &kanan - - - - Rename &channel - Ganti nama &saluran - - - - R&emove channel - H&apus saluran - - - - Remove &unused channels - Hapus &saluran yang tak terpakai - - - - Set channel color - - - - - Remove channel color - - - - - Pick random channel color - - - - - MixerChannelLcdSpinBox - - - Assign to: - - - - - New mixer Channel - Saluran FX Baru - - - - Mixer - - - Master - Master - - - - - - Channel %1 - FX %1 - - - - Volume - Volume - - - - Mute - Bisu - - - - Solo - Solo - - - - MixerView - - - Mixer - Mixer - - - - Fader %1 - FX Pemudar %1 - - - - Mute - Bisu - - - - Mute this mixer channel - Bisukan saluran FX ini - - - - Solo - Solo - - - - Solo mixer channel - Saluran FX Solo - - - - MixerRoute - - - - Amount to send from channel %1 to channel %2 - Jumlah untuk kirim dari saluran %1 ke saluran %2 - - - - GigInstrument - - - Bank - Bank - - - - Patch - Patch - - - - Gain - Gain - - - - GigInstrumentView - - - - Open GIG file - Buka berkas GIG - - - - Choose patch - - - - - Gain: - Gain: - - - - GIG Files (*.gig) - Berkas GIG (*.gig) - - - - GuiApplication - - - Working directory - Direktori kerja - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - Direktori kerja LMMS %1 tidak ada. Buat sekarang? Anda dapat mengganti direktori nanti via Edit -> Pengaturan - - - - Preparing UI - Menyiapkan UI - - - - Preparing song editor - Menyiapkan editor lagu - - - - Preparing mixer - Menyiapkan mixer - - - - Preparing controller rack - Menyiapkan rak kontroler - - - - Preparing project notes - Menyiapkan not proyek - - - - Preparing beat/bassline editor - Menyiapkan edior ketukan/bassline - - - - Preparing piano roll - Menyiapkan rol piano - - - - Preparing automation editor - Menyiapkan editor otomasi - - - - InstrumentFunctionArpeggio - - - Arpeggio - Arpeggio - - - - Arpeggio type - Tipe arpeggio - - - - Arpeggio range - Jarak arpeggio - - - - Note repeats - - - - - Cycle steps - Langkah siklus - - - - Skip rate - Lewati nilai - - - - Miss rate - Tingkat miss - - - - Arpeggio time - Waktu arpeggio - - - - Arpeggio gate - Gate arpeggio - - - - Arpeggio direction - Arah arpeggio - - - - Arpeggio mode - Mode arpeggio - - - - Up - Atas - - - - Down - Bawah - - - - Up and down - Atas dan bawah - - - - Down and up - Bawah dan atas - - - - Random - Acak - - - - Free - Bebas - - - - Sort - Sortir - - - - Sync - Selaras - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - ARPEGGIO - - - - RANGE - JARAK - - - - Arpeggio range: - Jarak arpeggio: - - - - octave(s) - Oktaf - - - - REP - - - - - Note repeats: - - - - - time(s) - - - - - CYCLE - SIKLUS - - - - Cycle notes: - Siklus nada: - - - - note(s) - not - - - - SKIP - LEWAT - - - - Skip rate: - Lewati nilai: - - - - - - % - % - - - - MISS - - - - - Miss rate: - - - - - TIME - WAKTU - - - - Arpeggio time: - Waktu arpeggio: - - - - ms - md - - - - GATE - LAWANG - - - - Arpeggio gate: - - - - - Chord: - Chord: - - - - Direction: - Arah: - - - - Mode: - Mode: - InstrumentFunctionNoteStacking - + octave oktaf - - + + Major Mayor - + Majb5 Mayb5 - + minor minor - + minb5 minb5 - + sus2 sus2 - + sus4 sus4 - + aug aug - + augsus4 augsus4 - + tri tri - + 6 6 - + 6sus4 6sus4 - + 6add9 6add9 - + m6 m6 - + m6add9 m6add9 - + 7 7 - + 7sus4 7sus4 - + 7#5 7#5 - + 7b5 7b5 - + 7#9 7#9 - + 7b9 7b9 - + 7#5#9 7#5#9 - + 7#5b9 7#5b9 - + 7b5b9 7b5b9 - + 7add11 7add11 - + 7add13 7add13 - + 7#11 7#11 - + Maj7 May7 - + Maj7b5 May7b5 - + Maj7#5 May7#5 - + Maj7#11 May7#11 - + Maj7add13 May7add13 - + m7 m7 - + m7b5 m7b5 - + m7b9 m7b9 - + m7add11 m7add11 - + m7add13 m7add13 - + m-Maj7 m-May7 - + m-Maj7add11 m-May7add11 - + m-Maj7add13 m-May7add13 - + 9 9 - + 9sus4 9sus4 - + add9 add9 - + 9#5 9#5 - + 9b5 9b5 - + 9#11 9#11 - + 9b13 9b13 - + Maj9 Maj9 - + Maj9sus4 May9sus4 - + Maj9#5 May9#5 - + Maj9#11 May9#11 - + m9 m9 - + madd9 madd9 - + m9b5 m9b5 - + m9-Maj7 m9-Maj7 - + 11 11 - + 11b9 11b9 - + Maj11 May11 - + m11 m11 - + m-Maj11 m-May11 - + 13 13 - + 13#9 13#9 - + 13b9 13b9 - + 13b5b9 13b5b9 - + Maj13 May13 - + m13 m13 - + m-Maj13 m-May13 - + Harmonic minor Harmonic minor - + Melodic minor Melodic minor - + Whole tone Whole tone - + Diminished Diminished - + Major pentatonic Pentatonik mayor - + Minor pentatonic Pentatonik minor - + Jap in sen Jap in sen - + Major bebop Bebop Mayor - + Dominant bebop Dominan bebop - + Blues Blues - + Arabic Arabic - + Enigmatic Enigmatic - + Neopolitan Neopolitan - + Neopolitan minor Neopolitan minor - + Hungarian minor Hungarian minor - + Dorian Dorian - + Phrygian - + Lydian Lydian - + Mixolydian Mixolydian - + Aeolian Aeolian - + Locrian Locrian - + Minor Minor - + Chromatic Chromatic - + Half-Whole Diminished Half-Whole Diminished - + 5 5 - + Phrygian dominant Dominan frigia - + Persian Persia - - - Chords - Chord - - - - Chord type - Tipe Chord - - - - Chord range - Jarak Chord - - - - InstrumentFunctionNoteStackingView - - - STACKING - - - - - Chord: - Chord: - - - - RANGE - JARAK - - - - Chord range: - Jarak chord: - - - - octave(s) - Oktaf(beberapa) - - - - InstrumentMidiIOView - - - ENABLE MIDI INPUT - AKTIFKAN MASUKAN MIDI - - - - ENABLE MIDI OUTPUT - AKTIFKAN KELUARAN MIDI - - - - - CHAN - This string must be be short, its width must be less than * width of LCD spin-box of two digits - - - - - - VELOC - This string must be be short, its width must be less than * width of LCD spin-box of three digits - - - - - PROG - This string must be be short, its width must be less than the * width of LCD spin-box of three digits - - - - - NOTE - This string must be be short, its width must be less than * width of LCD spin-box of three digits - CATATAN - - - - MIDI devices to receive MIDI events from - Perangkat MIDI untuk menerima event MIDI dari - - - - MIDI devices to send MIDI events to - Perangkat MIDI untuk kirim event MIDI ke - - - - CUSTOM BASE VELOCITY - - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. - - - - - BASE VELOCITY - - - - - InstrumentTuningView - - - MASTER PITCH - MASTER PITCH - - - - Enables the use of master pitch - - InstrumentSoundShaping - + VOLUME VOLUME - + Volume Volume - + CUTOFF - - + Cutoff frequency Frekuensi cutoff - + RESO RESO - + Resonance Resonansi - - - Envelopes/LFOs - - - - - Filter type - Tipe filter - - - - Q/Resonance - - - - - Low-pass - - - - - Hi-pass - - - - - Band-pass csg - - - - - Band-pass czpg - - - - - Notch - Notch - - - - All-pass - - - - - Moog - Moog - - - - 2x Low-pass - - - - - RC Low-pass 12 dB/oct - - - - - RC Band-pass 12 dB/oct - - - - - RC High-pass 12 dB/oct - - - - - RC Low-pass 24 dB/oct - - - - - RC Band-pass 24 dB/oct - - - - - RC High-pass 24 dB/oct - - - - - Vocal Formant - - - - - 2x Moog - 2x Moog - - - - SV Low-pass - - - - - SV Band-pass - - - - - SV High-pass - - - - - SV Notch - SV Notch - - - - Fast Formant - Formant Cepat - - - - Tripole - Tripol - - InstrumentSoundShapingView + JackAppDialog - - TARGET - SASARAN - - - - FILTER - FILTER - - - - FREQ - FREK - - - - Cutoff frequency: - Frekuensi cutoff: - - - - Hz - Hz - - - - Q/RESO + + Add JACK Application - - Q/Resonance: + + Note: Features not implemented yet are greyed out - - Envelopes, LFOs and filters are not supported by the current instrument. - - - - - InstrumentTrack - - - - unnamed_track - trek_tak_bernama - - - - Base note - Not dasar - - - - First note + + Application - - Last note + + Name: - - Volume - Volume - - - - - Panning - Keseimbangan - - - - Pitch - Pitch - - - - Pitch range - Jarak pitch - - - - Mixer channel - Saluran FX - - - - Master pitch - Master pitch - - - - Enable/Disable MIDI CC + + Application: - - CC Controller %1 + + From template - - - Default preset - Preset default - - - - InstrumentTrackView - - - Volume - Volume - - - - - Volume: - Volume: - - - - VOL - VOL - - - - Panning - Keseimbangan - - - - Panning: - Keseimbangan: - - - - PAN - PAN - - - - MIDI - MIDI - - - - Input - Masukan - - - - Output - Keluaran - - - - Open/Close MIDI CC Rack + + Custom - - Channel %1: %2 - FX %1: %2 - - - - InstrumentTrackWindow - - - GENERAL SETTINGS - PENGATURAN UMUM - - - - Volume - Volume - - - - Volume: - Volume: - - - - VOL - VOL - - - - Panning - Keseimbangan - - - - Panning: - Keseimbangan: - - - - PAN - PAN - - - - Pitch - Pitch - - - - Pitch: - Pitch: - - - - cents - sen - - - - PITCH + + Template: - - Pitch range (semitones) + + Command: - - RANGE - JARAK - - - - Mixer channel - Saluran FX - - - - CHANNEL - FX - - - - Save current instrument track settings in a preset file - Simpan pengaturan trek instrumen saat ini kedalam berkas preset - - - - SAVE - SIMPAN - - - - Envelope, filter & LFO + + Setup - - Chord stacking & arpeggio + + Session Manager: - - Effects - Efek + + None + - - MIDI - MIDI + + Audio inputs: + - - Miscellaneous - Serba aneka + + MIDI inputs: + - - Save preset - Simpan preset + + Audio outputs: + - - XML preset file (*.xpf) - Berkas preset XML (*.xpf) + + MIDI outputs: + - - Plugin - Plugin + + Take control of main application window + - - - JackApplicationW - + + Workarounds + + + + + Wait for external application start (Advanced, for Debug only) + + + + + Capture only the first X11 Window + + + + + Use previous client output buffer as input for the next client + + + + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + + + + + Error here + + + + NSM applications cannot use abstract or absolute paths - + NSM applications cannot use CLI arguments - + You need to save the current Carla project before NSM can be used @@ -6856,946 +2789,11 @@ Pastikan Anda memiliki izin menulis ke file dan direktori yang berisi berkas ter JuceAboutW - - About JUCE - - - - - <b>About JUCE</b> - - - - - This program uses JUCE version 3.x.x. - - - - - JUCE (Jules' Utility Class Extensions) is an all-encompassing C++ class library for developing cross-platform software. - -It contains pretty much everything you're likely to need to create most applications, and is particularly well-suited for building highly-customised GUIs, and for handling graphics and sound. - -JUCE is licensed under the GNU Public Licence version 2.0. -One module (juce_core) is permissively licensed under the ISC. - -Copyright (C) 2017 ROLI Ltd. - - - - + This program uses JUCE version %1. - - Knob - - - Set linear - Atur linier - - - - Set logarithmic - Atur logaritmik - - - - - Set value - - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - Silakan masukan nilai baru antara -96.0 dBFS dan 6.0 dBFS: - - - - Please enter a new value between %1 and %2: - Silakan masukan nilai baru antara %1 dan %2: - - - - LadspaControl - - - Link channels - Hubungkan saluran - - - - LadspaControlDialog - - - Link Channels - Hubungkan Saluran - - - - Channel - Saluran - - - - LadspaControlView - - - Link channels - Hubungkan saluran - - - - Value: - Nilai: - - - - LadspaEffect - - - Unknown LADSPA plugin %1 requested. - Plugin LADSPA yang tidak diketahui %1 diminta. - - - - LcdFloatSpinBox - - - Set value - - - - - Please enter a new value between %1 and %2: - Silakan masukan nilai baru antara %1 dan %2: - - - - LcdSpinBox - - - Set value - - - - - Please enter a new value between %1 and %2: - Silakan masukan nilai baru antara %1 dan %2: - - - - LeftRightNav - - - - - Previous - Sebelumnya - - - - - - Next - Selanjutnya - - - - Previous (%1) - Sebelumnya (%1) - - - - Next (%1) - Selanjutnya (%1) - - - - LfoController - - - LFO Controller - Kontroler LFO - - - - Base value - Nilai dasar - - - - Oscillator speed - Kecepatan osilator - - - - Oscillator amount - Jumlah osilator - - - - Oscillator phase - Tahap osilator - - - - Oscillator waveform - Bentuk gelombang osilator - - - - Frequency Multiplier - - - - - LfoControllerDialog - - - LFO - LFO - - - - BASE - DASAR - - - - Base: - - - - - FREQ - FREK - - - - LFO frequency: - - - - - AMNT - JMLH - - - - Modulation amount: - Jumlah modulasi: - - - - PHS - PHS - - - - Phase offset: - - - - - degrees - - - - - Sine wave - Gelombang sinus - - - - Triangle wave - Gelombang segitiga - - - - Saw wave - Gelombang gergaji - - - - Square wave - Gelombang kotak - - - - Moog saw wave - - - - - Exponential wave - - - - - White noise - Kebisingan putih - - - - User-defined shape. -Double click to pick a file. - - - - - Mutliply modulation frequency by 1 - - - - - Mutliply modulation frequency by 100 - - - - - Divide modulation frequency by 100 - - - - - Engine - - - Generating wavetables - Membuat wavetables - - - - Initializing data structures - Inisialisasi struktur data - - - - Opening audio and midi devices - Membuka audio dan perangkat midi - - - - Launching mixer threads - Meluncurkan thread mixer - - - - MainWindow - - - Configuration file - Berkas konfigurasi - - - - Error while parsing configuration file at line %1:%2: %3 - Kesalahan saat mengurai berkas konfigurasi pada baris %1:%2 %3 - - - - Could not open file - Tidak bisa membuka berkas - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Tidak bisa membuka berkas %1 - - - - Project recovery - Pemulihan proyek - - - - There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - - - - - - Recover - Pulihkan - - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - Memulihkan berkas. Jangan menjalankan beberapa instansi LMMS saat Anda melakukan ini. - - - - - Discard - Buang - - - - Launch a default session and delete the restored files. This is not reversible. - Jalankan sesi default dan hapus berkas yang dipulihkan. Ini tidak reversibel. - - - - Version %1 - Versi %1 - - - - Preparing plugin browser - Menyiapkan penjelajah plugin - - - - Preparing file browsers - Menyiapkan penjelajah berkas - - - - My Projects - Proyek Saya - - - - My Samples - Sampel Saya - - - - My Presets - Preset Saya - - - - My Home - Rumah Saya - - - - Root directory - Direktori root - - - - Volumes - Volume - - - - My Computer - Komputer Saya - - - - &File - &Berkas - - - - &New - &Baru - - - - &Open... - &Buka - - - - Loading background picture - - - - - &Save - &Simpan - - - - Save &As... - Simpan &Sebagai... - - - - Save as New &Version - Simpan sebagai &Versi yang baru - - - - Save as default template - Simpan sebagai template default - - - - Import... - Impor... - - - - E&xport... - E&kspor - - - - E&xport Tracks... - E&kspor trek... - - - - Export &MIDI... - Ekspor &MIDI... - - - - &Quit - &Keluar - - - - &Edit - &Edit - - - - Undo - Undo - - - - Redo - Redo - - - - Settings - Pengaturan - - - - &View - &Tampilan - - - - &Tools - &Alat - - - - &Help - &Bantuan - - - - Online Help - Bantuan Daring - - - - Help - Bantuan - - - - About - Ihwal - - - - Create new project - Buat proyek baru - - - - Create new project from template - Buat proyek baru dari template - - - - Open existing project - Buka proyek yang sudah ada - - - - Recently opened projects - Proyek yang Baru Dibuka - - - - Save current project - Simpan proyek saat ini - - - - Export current project - Ekspor proyek saat ini - - - - Metronome - Metronom - - - - - Song Editor - Editor Lagu - - - - - Beat+Bassline Editor - Editor Bassline+ketukan - - - - - Piano Roll - Rol Piano - - - - - Automation Editor - Editor Otomasi - - - - - Mixer - Mixer - - - - Show/hide controller rack - Tampilkan/sembunyikan rak kontroler - - - - Show/hide project notes - Tampilkan/sembunyikan not proyek - - - - Untitled - Tak berjudul - - - - Recover session. Please save your work! - Sesi pemulihan. Tolong simpan pekerjaanmu! - - - - LMMS %1 - LMMS %1 - - - - Recovered project not saved - Proyek yang dipulihkan tidak disimpan - - - - This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? - Proyek ini dipulihkan dari sesi sebelumnya. Saat ini belum disimpan dan akan hilang jika Anda tidak menyimpannya. Apakah Anda ingin menyimpannya sekarang? - - - - Project not saved - Proyek tidak disimpan - - - - The current project was modified since last saving. Do you want to save it now? - Proyek saat ini sudah dimodifikasi sejak penyimpanan terakhir. Apakah anda ingin menyimpannya sekarang? - - - - Open Project - Buka Proyek - - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - - Save Project - Simpan Proyek - - - - LMMS Project - Proyek LMMS - - - - LMMS Project Template - Proyek Template LMMS - - - - Save project template - Simpan template proyek - - - - Overwrite default template? - Timpa template default? - - - - This will overwrite your current default template. - Ini akan menimpa template default Anda saat ini. - - - - Help not available - Bantuan tidak tersedia - - - - Currently there's no help available in LMMS. -Please visit http://lmms.sf.net/wiki for documentation on LMMS. - Sasat ini belum ada bantuan tersedia di LMMS. -Silakan kunjungi http://lmms.sf.net/wiki untuk dokumentasi LMMS. - - - - Controller Rack - Kontroler rak - - - - Project Notes - Catatan Proyek - - - - Fullscreen - - - - - Volume as dBFS - Volume sebagai dBFS - - - - Smooth scroll - Gulung halus - - - - Enable note labels in piano roll - Aktifkan label not di rol piano - - - - MIDI File (*.mid) - Berkas MIDI (*.mid) - - - - - untitled - tak berjudul - - - - - Select file for project-export... - Pilih berkas untuk ekspor-proyek... - - - - Select directory for writing exported tracks... - Pilih direktori untuk menulis trek yang diekspor... - - - - Save project - Simpan proyek - - - - Project saved - Proyek disimpan - - - - The project %1 is now saved. - Proyek %1 telah disimpan. - - - - Project NOT saved. - Proyek TIDAK disimpan. - - - - The project %1 was not saved! - Proyek %1 tidak disimpan! - - - - Import file - Impor berkas - - - - MIDI sequences - Rangkaian MIDI - - - - Hydrogen projects - Proyek hidrogen - - - - All file types - Semua tipe berkas - - - - MeterDialog - - - - Meter Numerator - - - - - Meter numerator - - - - - - Meter Denominator - - - - - Meter denominator - - - - - TIME SIG - - - - - MeterModel - - - Numerator - - - - - Denominator - - - - - MidiCCRackView - - - - MIDI CC Rack - %1 - - - - - MIDI CC Knobs: - - - - - CC %1 - - - - - MidiController - - - MIDI Controller - Kontroler MIDI - - - - unnamed_midi_controller - kontroler_midi_tanpa_nama - - - - MidiImport - - - - Setup incomplete - Pemasangan tidak lengkap - - - - You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. - - - - - You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - Anda tidak mengkompilasi LMMS dengan dukungan pemutar SoundFont2, yang digunakan untuk menambah suara default ke berkas MIDI yang diimpor. Oleh karena itu tidak ada suara yang akan diputer setelah mengimpor berkas MIDI ini. - - - - MIDI Time Signature Numerator - - - - - MIDI Time Signature Denominator - - - - - Numerator - - - - - Denominator - - - - - Track - Trek - - - - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - Server JACK lumpuh - - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - - - MidiPatternW @@ -8001,2732 +2999,369 @@ Silakan kunjungi http://lmms.sf.net/wiki untuk dokumentasi LMMS. &Keluar - - &Insert Mode + + Esc + &Insert Mode + + + + F - + &Velocity Mode - + D - + Select All - + A - - MidiPort - - - Input channel - Saluran Masukan - - - - Output channel - Saluran keluaran - - - - Input controller - Kontroler masukan - - - - Output controller - Kontroler keluaran - - - - Fixed input velocity - - - - - Fixed output velocity - - - - - Fixed output note - - - - - Output MIDI program - Program MIDI keluaran - - - - Base velocity - Kecepatan dasar - - - - Receive MIDI-events - Terima aktifitas-MIDI - - - - Send MIDI-events - Kirim aktifitas-MIDI - - - - MidiSetupWidget - - - Device - - - - - MonstroInstrument - - - Osc 1 volume - - - - - Osc 1 panning - - - - - Osc 1 coarse detune - - - - - Osc 1 fine detune left - - - - - Osc 1 fine detune right - - - - - Osc 1 stereo phase offset - - - - - Osc 1 pulse width - - - - - Osc 1 sync send on rise - - - - - Osc 1 sync send on fall - - - - - Osc 2 volume - - - - - Osc 2 panning - - - - - Osc 2 coarse detune - - - - - Osc 2 fine detune left - - - - - Osc 2 fine detune right - - - - - Osc 2 stereo phase offset - - - - - Osc 2 waveform - - - - - Osc 2 sync hard - - - - - Osc 2 sync reverse - - - - - Osc 3 volume - - - - - Osc 3 panning - - - - - Osc 3 coarse detune - - - - - Osc 3 Stereo phase offset - - - - - Osc 3 sub-oscillator mix - - - - - Osc 3 waveform 1 - - - - - Osc 3 waveform 2 - - - - - Osc 3 sync hard - - - - - Osc 3 Sync reverse - - - - - LFO 1 waveform - - - - - LFO 1 attack - - - - - LFO 1 rate - - - - - LFO 1 phase - - - - - LFO 2 waveform - - - - - LFO 2 attack - - - - - LFO 2 rate - - - - - LFO 2 phase - - - - - Env 1 pre-delay - - - - - Env 1 attack - - - - - Env 1 hold - - - - - Env 1 decay - - - - - Env 1 sustain - - - - - Env 1 release - - - - - Env 1 slope - - - - - Env 2 pre-delay - - - - - Env 2 attack - - - - - Env 2 hold - - - - - Env 2 decay - - - - - Env 2 sustain - - - - - Env 2 release - - - - - Env 2 slope - - - - - Osc 2+3 modulation - - - - - Selected view - Tampilan yang dipilih - - - - Osc 1 - Vol env 1 - - - - - Osc 1 - Vol env 2 - - - - - Osc 1 - Vol LFO 1 - - - - - Osc 1 - Vol LFO 2 - - - - - Osc 2 - Vol env 1 - - - - - Osc 2 - Vol env 2 - - - - - Osc 2 - Vol LFO 1 - - - - - Osc 2 - Vol LFO 2 - - - - - Osc 3 - Vol env 1 - - - - - Osc 3 - Vol env 2 - - - - - Osc 3 - Vol LFO 1 - - - - - Osc 3 - Vol LFO 2 - - - - - Osc 1 - Phs env 1 - - - - - Osc 1 - Phs env 2 - - - - - Osc 1 - Phs LFO 1 - - - - - Osc 1 - Phs LFO 2 - - - - - Osc 2 - Phs env 1 - - - - - Osc 2 - Phs env 2 - - - - - Osc 2 - Phs LFO 1 - - - - - Osc 2 - Phs LFO 2 - - - - - Osc 3 - Phs env 1 - - - - - Osc 3 - Phs env 2 - - - - - Osc 3 - Phs LFO 1 - - - - - Osc 3 - Phs LFO 2 - - - - - Osc 1 - Pit env 1 - - - - - Osc 1 - Pit env 2 - - - - - Osc 1 - Pit LFO 1 - - - - - Osc 1 - Pit LFO 2 - - - - - Osc 2 - Pit env 1 - - - - - Osc 2 - Pit env 2 - - - - - Osc 2 - Pit LFO 1 - - - - - Osc 2 - Pit LFO 2 - - - - - Osc 3 - Pit env 1 - - - - - Osc 3 - Pit env 2 - - - - - Osc 3 - Pit LFO 1 - - - - - Osc 3 - Pit LFO 2 - - - - - Osc 1 - PW env 1 - - - - - Osc 1 - PW env 2 - - - - - Osc 1 - PW LFO 1 - - - - - Osc 1 - PW LFO 2 - - - - - Osc 3 - Sub env 1 - - - - - Osc 3 - Sub env 2 - - - - - Osc 3 - Sub LFO 1 - - - - - Osc 3 - Sub LFO 2 - - - - - - Sine wave - Gelombang sinus - - - - Bandlimited Triangle wave - - - - - Bandlimited Saw wave - - - - - Bandlimited Ramp wave - - - - - Bandlimited Square wave - - - - - Bandlimited Moog saw wave - - - - - - Soft square wave - Gelombang kotak halus - - - - Absolute sine wave - Gelombang sinus absolut - - - - - Exponential wave - - - - - White noise - Kebisingan putih - - - - Digital Triangle wave - Gelombang Segitiga digital - - - - Digital Saw wave - Gelombang Gergaji digital - - - - Digital Ramp wave - - - - - Digital Square wave - Gelombang Kotak digital - - - - Digital Moog saw wave - - - - - Triangle wave - Gelombang segitiga - - - - Saw wave - Gelombang gergaji - - - - Ramp wave - - - - - Square wave - Gelombang kotak - - - - Moog saw wave - - - - - Abs. sine wave - - - - - Random - Acak - - - - Random smooth - Halus acak - - - - MonstroView - - - Operators view - Tampilan operator - - - - Matrix view - Tampilan matrix - - - - - - Volume - Volume - - - - - - - Panning - Keseimbangan - - - - - - Coarse detune - Detune kasar - - - - - - semitones - - - - - - Fine tune left - - - - - - - - cents - sen - - - - - Fine tune right - - - - - - - Stereo phase offset - - - - - - - - - deg - - - - - Pulse width - - - - - Send sync on pulse rise - - - - - Send sync on pulse fall - - - - - Hard sync oscillator 2 - - - - - Reverse sync oscillator 2 - - - - - Sub-osc mix - - - - - Hard sync oscillator 3 - - - - - Reverse sync oscillator 3 - - - - - - - - Attack - Attack - - - - - Rate - Nilai - - - - - Phase - - - - - - Pre-delay - - - - - - Hold - Tahan - - - - - Decay - Tahan - - - - - Sustain - Tahan - - - - - Release - Release - - - - - Slope - - - - - Mix osc 2 with osc 3 - - - - - Modulate amplitude of osc 3 by osc 2 - - - - - Modulate frequency of osc 3 by osc 2 - - - - - Modulate phase of osc 3 by osc 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Modulation amount - - - - - MultitapEchoControlDialog - - - Length - Panjang - - - - Step length: - - - - - Dry - - - - - Dry gain: - - - - - Stages - - - - - Low-pass stages: - - - - - Swap inputs - Tukar masukan - - - - Swap left and right input channels for reflections - - - - - NesInstrument - - - Channel 1 coarse detune - - - - - Channel 1 volume - Volume Saluran 1 - - - - Channel 1 envelope length - - - - - Channel 1 duty cycle - - - - - Channel 1 sweep amount - - - - - Channel 1 sweep rate - - - - - Channel 2 Coarse detune - - - - - Channel 2 Volume - Volume Saluran 2 - - - - Channel 2 envelope length - - - - - Channel 2 duty cycle - - - - - Channel 2 sweep amount - - - - - Channel 2 sweep rate - - - - - Channel 3 coarse detune - - - - - Channel 3 volume - Volume Saluran 3 - - - - Channel 4 volume - Volume Saluran 4 - - - - Channel 4 envelope length - - - - - Channel 4 noise frequency - - - - - Channel 4 noise frequency sweep - - - - - Master volume - Volume master - - - - Vibrato - Getaran - - - - NesInstrumentView - - - - - - Volume - Volume - - - - - - - Coarse detune - Detune kasar - - - - - - Envelope length - Panjang sampul - - - - Enable channel 1 - Aktifkan saluran 1 - - - - Enable envelope 1 - Aktifkan sampul 1 - - - - Enable envelope 1 loop - Akftifkan envelop pengulangan 1 - - - - Enable sweep 1 - - - - - - Sweep amount - - - - - - Sweep rate - - - - - - 12.5% Duty cycle - Siklus tugas 12,5% - - - - - 25% Duty cycle - Siklus tugas 25% - - - - - 50% Duty cycle - Siklus tugas 50% - - - - - 75% Duty cycle - Siklus tugas 75% - - - - Enable channel 2 - Aktifkan saluran 2 - - - - Enable envelope 2 - Aktifkan sampul 2 - - - - Enable envelope 2 loop - Akftifkan envelop pengulangan 2 - - - - Enable sweep 2 - - - - - Enable channel 3 - Aktifkan saluran 3 - - - - Noise Frequency - Frekuensi Riuh - - - - Frequency sweep - - - - - Enable channel 4 - Aktifkan saluran 4 - - - - Enable envelope 4 - Aktifkan sampul 4 - - - - Enable envelope 4 loop - Akftifkan envelop pengulangan 4 - - - - Quantize noise frequency when using note frequency - - - - - Use note frequency for noise - Gunakan frekuensi not untuk riuh - - - - Noise mode - Mode derau - - - - Master volume - Volume master - - - - Vibrato - Getaran - - - - OpulenzInstrument - - - Patch - Patch - - - - Op 1 attack - - - - - Op 1 decay - - - - - Op 1 sustain - - - - - Op 1 release - - - - - Op 1 level - - - - - Op 1 level scaling - - - - - Op 1 frequency multiplier - - - - - Op 1 feedback - - - - - Op 1 key scaling rate - - - - - Op 1 percussive envelope - - - - - Op 1 tremolo - - - - - Op 1 vibrato - - - - - Op 1 waveform - - - - - Op 2 attack - - - - - Op 2 decay - - - - - Op 2 sustain - - - - - Op 2 release - - - - - Op 2 level - - - - - Op 2 level scaling - - - - - Op 2 frequency multiplier - - - - - Op 2 key scaling rate - - - - - Op 2 percussive envelope - - - - - Op 2 tremolo - - - - - Op 2 vibrato - - - - - Op 2 waveform - - - - - FM - FM - - - - Vibrato depth - - - - - Tremolo depth - - - - - OpulenzInstrumentView - - - - Attack - Attack - - - - - Decay - Decay - - - - - Release - Release - - - - - Frequency multiplier - - - - - OscillatorObject - - - Osc %1 waveform - Bentuk gelombang Osc %1 - - - - Osc %1 harmonic - - - - - - Osc %1 volume - Volume Osc %1 - - - - - Osc %1 panning - Keseimbangan Osc %1 - - - - - Osc %1 fine detuning left - - - - - Osc %1 coarse detuning - - - - - Osc %1 fine detuning right - - - - - Osc %1 phase-offset - - - - - Osc %1 stereo phase-detuning - - - - - Osc %1 wave shape - bentuk gelombang Osc %1 - - - - Modulation type %1 - Tipe modulasi %1 - - - - Oscilloscope - - - Oscilloscope - - - - - Click to enable - klik untuk mengaktifkan - - PatchesDialog + Qsynth: Channel Preset + Bank selector Pemilih bank + Bank Bank + Program selector Pemilih program + Patch Patch + Name Nama + OK OK + Cancel Batal - - PatmanView - - - Open patch - - - - - Loop - Pengulangan - - - - Loop mode - Mode pengulangan - - - - Tune - Nada - - - - Tune mode - Mode nada - - - - No file selected - Tidak ada berkas dipilih - - - - Open patch file - Buka berkas patch - - - - Patch-Files (*.pat) - Berkas-Patch (*.pat) - - - - MidiClipView - - - Open in piano-roll - Buka di rol-piano - - - - Set as ghost in piano-roll - - - - - Clear all notes - Bersihkan semua not - - - - Reset name - Reset nama - - - - Change name - Ganti nama - - - - Add steps - Tambah langkah - - - - Remove steps - Hapus langkah - - - - Clone Steps - Klon langkah - - - - PeakController - - - Peak Controller - - - - - Peak Controller Bug - - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - Karena bug pada versi lama LMMS, pengendali puncak mungkin tidak terhubung dengan benar. Pastikan pengendali puncak terhubung dengan benar dan simpan kembali berkas ini. Maaf atas ketidaknyamanan yang terjadi. - - - - PeakControllerDialog - - - PEAK - - - - - LFO Controller - Kontroler LFO - - - - PeakControllerEffectControlDialog - - - BASE - DASAR - - - - Base: - - - - - AMNT - JMLH - - - - Modulation amount: - Jumlah modulasi: - - - - MULT - - - - - Amount multiplicator: - - - - - ATCK - - - - - Attack: - Attack: - - - - DCAY - - - - - Release: - Release: - - - - TRSH - - - - - Treshold: - - - - - Mute output - - - - - Absolute value - - - - - PeakControllerEffectControls - - - Base value - Nilai dasar - - - - Modulation amount - - - - - Attack - Attack - - - - Release - Release - - - - Treshold - - - - - Mute output - - - - - Absolute value - - - - - Amount multiplicator - - - - - PianoRoll - - - Note Velocity - - - - - Note Panning - Keseimbangan Not - - - - Mark/unmark current semitone - - - - - Mark/unmark all corresponding octave semitones - Tandai / hapus tanda semua semitone oktaf yang sesuai - - - - Mark current scale - - - - - Mark current chord - - - - - Unmark all - Hapus tanda semua - - - - Select all notes on this key - Pilih semua not pada kunci ini - - - - Note lock - - - - - Last note - - - - - No key - - - - - No scale - - - - - No chord - - - - - Nudge - - - - - Snap - - - - - Velocity: %1% - Kecepatan: %1% - - - - Panning: %1% left - Menyeimbangkan: %1% kiri - - - - Panning: %1% right - Menyeimbangkan: %1% kanan - - - - Panning: center - Menyeimbangkan: tengah - - - - Glue notes failed - - - - - Please select notes to glue first. - - - - - Please open a clip by double-clicking on it! - Buka pola dengan mengklik dua kali di atasnya! - - - - - Please enter a new value between %1 and %2: - Silakan masukan nilai baru antara %1 dan %2: - - - - PianoRollWindow - - - Play/pause current clip (Space) - Putar/jeda pola saat ini (Spasi) - - - - Record notes from MIDI-device/channel-piano - Rekam not dari perangkat-MIDI/channel-piano - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - Rekam not dari perangkat-MIDI/channel-piano sambil memutar lagu atau trek BB - - - - Record notes from MIDI-device/channel-piano, one step at the time - - - - - Stop playing of current clip (Space) - Berhenti memutar pola sekarang (Spasi) - - - - Edit actions - Ubah aksi - - - - Draw mode (Shift+D) - mode Menggambar (Shift+D) - - - - Erase mode (Shift+E) - Mode penghapus (Shift+E) - - - - Select mode (Shift+S) - Mode pilih (Shift+S) - - - - Pitch Bend mode (Shift+T) - - - - - Quantize - Kuantitas - - - - Quantize positions - - - - - Quantize lengths - - - - - File actions - - - - - Import clip - - - - - - Export clip - - - - - Copy paste controls - Kontrol salin tempel - - - - Cut (%1+X) - - - - - Copy (%1+C) - - - - - Paste (%1+V) - - - - - Timeline controls - Kontrol linimasa - - - - Glue - - - - - Knife - - - - - Fill - - - - - Cut overlaps - - - - - Min length as last - - - - - Max length as last - - - - - Zoom and note controls - Kontrol not dan zoom - - - - Horizontal zooming - Pembesaran horizontal - - - - Vertical zooming - Pembesaran vertikal - - - - Quantization - Kuantitasi - - - - Note length - - - - - Key - - - - - Scale - - - - - Chord - - - - - Snap mode - - - - - Clear ghost notes - - - - - - Piano-Roll - %1 - Rol-Piano - %1 - - - - - Piano-Roll - no clip - Rol-Piano - tiada pola - - - - - XML clip file (*.xpt *.xptz) - - - - - Export clip success - - - - - Clip saved to %1 - - - - - Import clip. - - - - - You are about to import a clip, this will overwrite your current clip. Do you want to continue? - - - - - Open clip - - - - - Import clip success - - - - - Imported clip %1! - - - - - PianoView - - - Base note - Not dasar - - - - First note - - - - - Last note - - - - - Plugin - - - Plugin not found - Plugin tidak ditemukan - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - Plugin "%1" tidak ditemukan atau tidak bisa dimuat! -Alasan: "%2" - - - - Error while loading plugin - Gagal ketika memuat plugin - - - - Failed to load plugin "%1"! - Gagal untuk memuat plugin "%1"! - - PluginBrowser - - Instrument Plugins - Plugin Instrumen - - - - Instrument browser - Penjelajah instrumen - - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - Seret instrumen ke Editor-Lagu,Editor Ketukan+Bassline atau ke trek instrumen yang ada. - - - + no description - tiada deskripsi + tanpa deskripsi - + A native amplifier plugin Plugin amplifier native - + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track Sampler sederhana dengan macam-macam pengaturan untuk menggunakan sampel. (cnth. drum) dalam sebuah trek instrumen - + Boost your bass the fast and simple way - Tingkatkan bass Anda dengan cara cepat dan sederhana + Tingkatkan bass Anda secara cepat dan sederhana - + Customizable wavetable synthesizer Synthesizer wavetable yang dapat disesuaikan - + An oversampling bitcrusher - + Carla Patchbay Instrument Instrumen Carla Patchbay - + Carla Rack Instrument Rak Instrumen Carla - + A dynamic range compressor. - + A 4-band Crossover Equalizer - + A native delay plugin - + A Dual filter plugin - + Plugin filter ganda - + plugin for processing dynamics in a flexible way - plugin untuk memproses dynamics dengan cara yang fleksibel + plugin untuk memproses dinamika suara dengan cara yang fleksibel - + A native eq plugin Plugin eq bawaan - + A native flanger plugin - + Plugin flanger bawaan - + Emulation of GameBoy (TM) APU Emulasi APU GameBoy (TM) - + Player for GIG files Pemutar untuk berkas GIG - + Filter for importing Hydrogen files into LMMS Filter untuk mengimpor berkas Hydrogen ke LMMS - + Versatile drum synthesizer Synthesizer drum serbaguna - + List installed LADSPA plugins Daftar plugin LADSPA yang terpasang - + plugin for using arbitrary LADSPA-effects inside LMMS. Plugin untuk menggunakan efek LADSPA yang sewenang-wenang di dalam LMMS. - + Incomplete monophonic imitation TB-303 - + plugin for using arbitrary LV2-effects inside LMMS. - + plugin for using arbitrary LV2 instruments inside LMMS. - + Filter for exporting MIDI-files from LMMS Filter untuk mengekspor berkas MIDI dari LMMS - + Filter for importing MIDI-files into LMMS Filter untuk mengimpor berkas MIDI ke LMMS - + Monstrous 3-oscillator synth with modulation matrix - + A multitap echo delay plugin - + A NES-like synthesizer Synthesizer seperti NES - + 2-operator FM Synth 2-operator FM Synth - + Additive Synthesizer for organ-like sounds - + GUS-compatible patch instrument - + Instrumen patch yang kompatibel dengan GUS - + Plugin for controlling knobs with sound peaks Plugin untuk mengendalikan kenop dengan puncak suara - + Reverb algorithm by Sean Costello - + Player for SoundFont files Pemutar untuk berkas SoundFont - + LMMS port of sfxr - + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Emulasi SID MOS6581 dan MOS8580. Chip yang digunakan pada komputer Commodore 64. - + A graphical spectrum analyzer. - + Plugin for enhancing stereo separation of a stereo input file - + Plugin for freely manipulating stereo output - + Tuneful things to bang on Hal-hal yang menyenangkan untuk ajep-ajep - + Three powerful oscillators you can modulate in several ways - + A stereo field visualizer. - + VST-host for using VST(i)-plugins within LMMS - + Vibrating string modeler Menggetarkan modeler string - + plugin for using arbitrary VST effects inside LMMS. Plugin untuk menggunakan efek VST yang sewenang-wenang di dalam LMMS. - + 4-oscillator modulatable wavetable synth - + plugin for waveshaping plugin untuk pembentukan gelombang - + Mathematical expression parser - + Embedded ZynAddSubFX Tertanam ZynAddSubFX - - - PluginDatabaseW - - Carla - Add New + + An all-pass filter allowing for extremely high orders. - - Format + + Granular pitch shifter - - Internal + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. - - LADSPA + + Basic Slicer - - DSSI - - - - - LV2 - - - - - VST2 - - - - - VST3 - - - - - AU - - - - - Sound Kits - - - - - Type - Tipe - - - - Effects - Efek - - - - Instruments - Instrumen - - - - MIDI Plugins - - - - - Other/Misc - - - - - Architecture - - - - - Native - - - - - Bridged - - - - - Bridged (Wine) - - - - - Requirements - - - - - With Custom GUI - - - - - With CV Ports - - - - - Real-time safe only - - - - - Stereo only - - - - - With Inline Display - - - - - Favorites only - - - - - (Number of Plugins go here) - - - - - &Add Plugin - - - - - Cancel - Batal - - - - Refresh - - - - - Reset filters - - - - - - - - - - - - - - - - - - - - TextLabel - - - - - Format: - - - - - Architecture: - - - - - Type: - Tipe: - - - - MIDI Ins: - - - - - Audio Ins: - - - - - CV Outs: - - - - - MIDI Outs: - - - - - Parameter Ins: - - - - - Parameter Outs: - - - - - Audio Outs: - - - - - CV Ins: - - - - - UniqueID: - - - - - Has Inline Display: - - - - - Has Custom GUI: - - - - - Is Synth: - - - - - Is Bridged: - - - - - Information - - - - - Name - Nama - - - - Label/URI - - - - - Maker - - - - - Binary/Filename - - - - - Focus Text Search - - - - - Ctrl+F + + Tap to the beat @@ -10735,7 +3370,7 @@ Chip yang digunakan pada komputer Commodore 64. Plugin Editor - + Editor Plugin @@ -10801,7 +3436,7 @@ Chip yang digunakan pada komputer Commodore 64. Audio: - + Audio: @@ -10816,102 +3451,107 @@ Chip yang digunakan pada komputer Commodore 64. MIDI: - + MIDI: Map Program Changes - + Petakan Perubahan Program - Send Bank/Program Changes + Send Notes - Send Control Changes + Send Bank/Program Changes - Send Channel Pressure + Send Control Changes - Send Note Aftertouch + Send Channel Pressure - Send Pitchbend + Send Note Aftertouch + Send Pitchbend + + + + Send All Sound/Notes Off - + Plugin Name - + Program: - + MIDI Program: - + Save State - + Load State - + Information - + Label/URI: - + Name: - + Type: Tipe: - + Maker: - + Copyright: - + Hak Cipta: - + Unique ID: @@ -10919,16 +3559,457 @@ Plugin Name PluginFactory - + Plugin not found. Plugin tidak ditemukan. - + LMMS plugin %1 does not have a plugin descriptor named %2! Plugin LMMS %1 tidak memiliki deskriptor plugin bernama %2! + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + PluginParameter @@ -10943,157 +4024,61 @@ Plugin Name + TextLabel + + + + ... - PluginRefreshW + PluginRefreshDialog - - Carla - Refresh + + Plugin Refresh - - Search for new... + + Search for: - - LADSPA + + All plugins, ignoring cache - - DSSI + + Updated plugins only - - LV2 + + Check previously invalid plugins - - VST2 - - - - - VST3 - - - - - AU - - - - - SF2/3 - - - - - SFZ - - - - - Native - - - - - POSIX 32bit - - - - - POSIX 64bit - - - - - Windows 32bit - - - - - Windows 64bit - - - - - Available tools: - - - - - python3-rdflib (LADSPA-RDF support) - - - - - carla-discovery-win64 - - - - - carla-discovery-native - - - - - carla-discovery-posix32 - - - - - carla-discovery-posix64 - - - - - carla-discovery-win32 - - - - - Options: - - - - - Carla will run small processing checks when scanning the plugins (to make sure they won't crash). -You can disable these checks to get a faster scanning time (at your own risk). - - - - - Run processing checks while scanning - - - - + Press 'Scan' to begin the search - + Scan - + >> Skip - + Close - Tutup + @@ -11108,50 +4093,50 @@ You can disable these checks to get a faster scanning time (at your own risk). - + Enable - + On/Off Nyala/Mati - + - + PluginName - + MIDI MIDI - + AUDIO IN - + AUDIO OUT - + GUI - + Edit - + Remove @@ -11166,2287 +4151,13561 @@ You can disable these checks to get a faster scanning time (at your own risk). - - ProjectNotes - - - Project Notes - Catatan Proyek - - - - Enter project notes here - - - - - Edit Actions - Ubah Aksi - - - - &Undo - &Undo - - - - %1+Z - %1+Z - - - - &Redo - &Redo - - - - %1+Y - %1+Y - - - - &Copy - &Salin - - - - %1+C - %1+C - - - - Cu&t - Po&tong - - - - %1+X - %1+X - - - - &Paste - &Tempel - - - - %1+V - %1+V - - - - Format Actions - Aksi Format - - - - &Bold - &Tebal - - - - %1+B - %1+B - - - - &Italic - &Miring - - - - %1+I - %1+I - - - - &Underline - &Garis bawah - - - - %1+U - %1+U - - - - &Left - &Kiri - - - - %1+L - %1+L - - - - C&enter - Te&ngah - - - - %1+E - %1+E - - - - &Right - &Kanan - - - - %1+R - %1+R - - - - &Justify - &Ratakan - - - - %1+J - %1+J - - - - &Color... - &Warna - - ProjectRenderer - + WAV (*.wav) WAV (*.wav) - + FLAC (*.flac) FLAC (*.flac) - + OGG (*.ogg) OGG (*.ogg) - + MP3 (*.mp3) MP3 (*.mp3) + + QGroupBox + + + + Settings for %1 + + + QObject - + Reload Plugin - + Show GUI Tampilkan GUI - + Help Bantuan + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + QWidget - - - - + + Name: Nama: - - URI: - - - - - - + Maker: Pembuat: - - - + Copyright: Hak cipta: - - + Requires Real Time: Membutuhkan Real Time: - - - - - - + + + Yes Ya - - - - - - + + + No Tidak - - + Real Time Capable: Kemampuan Real Time: - - + In Place Broken: - - + Channels In: Saluran Masukan: - - + Channels Out: Saluran Keluaran: - + File: %1 Berkas: %1 - + File: Berkas: - RecentProjectsMenu + XYControllerW - - &Recently Opened Projects - &Proyek yang Baru Dibuka + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + - RenameDialog + lmms::AmplifierControls - - Rename... - Ganti nama... + + Volume + + + + + Panning + + + + + Left gain + + + + + Right gain + - ReverbSCControlDialog + lmms::AudioFileProcessor - - Input - Masukan + + Amplify + - - Input gain: - Gain masukan: + + Start of sample + - - Size - Ukuran + + End of sample + - - Size: - Ukuran: + + Loopback point + - - Color - Warna + + Reverse sample + - - Color: - Warna: + + Loop mode + - - Output - Keluaran + + Stutter + - - Output gain: - Gait keluaran: + + Interpolation mode + + + + + None + + + + + Linear + + + + + Sinc + + + + + Sample not found + - ReverbSCControls + lmms::AudioJack - + + JACK client restarted + + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + + + + + Client name + + + + + Channels + + + + + lmms::AudioOss + + + Device + + + + + Channels + + + + + lmms::AudioPortAudio::setupWidget + + + Backend + + + + + Device + + + + + lmms::AudioPulseAudio + + + Device + + + + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + + + + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + + Gain + + + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + Input gain - Gain masukan + - - Size - Ukuran + + Input noise + - - Color - Warna + + Output gain + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + + + + + Output gain + + + + + Attack time + + + + + Release time + + + + + Stereo mode + + + + + lmms::Effect + + + Effect enabled + + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + + + + + Denominator + + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + Input gain + + + + + Size + + + + + Color + + + + Output gain - Gain keluaran + - SaControls + lmms::SaControls - + Pause - + Reference freeze - + Waterfall - + Averaging - - - Stereo - Stereo - - - - Peak hold - - - Logarithmic frequency + Stereo - Logarithmic amplitude + Peak hold + + + + + Logarithmic frequency - Frequency range - - - - - Amplitude range - - - - - FFT block size + Logarithmic amplitude - FFT window type + Frequency range + + + + + Amplitude range + + + + + FFT block size - Peak envelope resolution - - - - - Spectrum display resolution - - - - - Peak decay multiplier + FFT window type - Averaging weight + Peak envelope resolution - Waterfall history size + Spectrum display resolution - Waterfall gamma correction + Peak decay multiplier - FFT window overlap + Averaging weight + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + FFT zero padding - - + + Full (auto) - - + + Audible - + Bass - Bass + - + Mids - + High - + Extended - + Loud - + Silent - + (High time res.) - + (High freq. res.) - + Rectangular (Off) - + Blackman-Harris (Default) - + Hamming - + Hanning - SaControlsDialog + lmms::SampleClip - - Pause - - - - - Pause data acquisition - - - - - Reference freeze - - - - - Freeze current input as a reference / disable falloff in peak-hold mode. - - - - - Waterfall - - - - - Display real-time spectrogram - - - - - Averaging - - - - - Enable exponential moving average - - - - - Stereo - Stereo - - - - Display stereo channels separately - - - - - Peak hold - - - - - Display envelope of peak values - - - - - Logarithmic frequency - - - - - Switch between logarithmic and linear frequency scale - - - - - - Frequency range - - - - - Logarithmic amplitude - - - - - Switch between logarithmic and linear amplitude scale - - - - - - Amplitude range - - - - - Envelope res. - - - - - Increase envelope resolution for better details, decrease for better GUI performance. - - - - - - Draw at most - - - - - envelope points per pixel - - - - - Spectrum res. - - - - - Increase spectrum resolution for better details, decrease for better GUI performance. - - - - - spectrum points per pixel - - - - - Falloff factor - - - - - Decrease to make peaks fall faster. - - - - - Multiply buffered value by - - - - - Averaging weight - - - - - Decrease to make averaging slower and smoother. - - - - - New sample contributes - - - - - Waterfall height - - - - - Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. - - - - - Keep - - - - - lines - - - - - Waterfall gamma - - - - - Decrease to see very weak signals, increase to get better contrast. - - - - - Gamma value: - - - - - Window overlap - - - - - Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. - - - - - Each sample processed - - - - - times - - - - - Zero padding - - - - - Increase to get smoother-looking spectrum. Warning: high CPU usage. - - - - - Processing buffer is - - - - - steps larger than input block - - - - - Advanced settings - - - - - Access advanced settings - - - - - - FFT block size - - - - - - FFT window type + + Sample not found - SampleBuffer + lmms::SampleTrack - - Fail to open file - Gagal untuk membuka berkas - - - - Audio files are limited to %1 MB in size and %2 minutes of playing time - Berkas suara dibatasi ukuran hingga %1 MB dan waktu pemutaran %2 menit - - - - Open audio file - Buka berkas suara - - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - Semua Berkas-Suara (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - - Wave-Files (*.wav) - Berkas-Wave (*.wav) - - - - OGG-Files (*.ogg) - Berkas-OGG (*.ogg) - - - - DrumSynth-Files (*.ds) - Berkas-DrumSynth (*.ds) - - - - FLAC-Files (*.flac) - Berkas-FLAC (*.flac) - - - - SPEEX-Files (*.spx) - Berkas-SPEEX (*.spx) - - - - VOC-Files (*.voc) - Berkas-VOC (*.voc) - - - - AIFF-Files (*.aif *.aiff) - Berkas-AIFF (*.aif *.aiff) - - - - AU-Files (*.au) - Berkas-AU (*.au) - - - - RAW-Files (*.raw) - Berkas-RAW (*.raw) - - - - SampleClipView - - - Double-click to open sample - - - - - Delete (middle mousebutton) - Hapus (tombol tengah mouse) - - - - Delete selection (middle mousebutton) - - - - - Cut - Potong - - - - Cut selection - - - - - Copy - Salin - - - - Copy selection - - - - - Paste - Tempel - - - - Mute/unmute (<%1> + middle click) - Bisukan/suarakan (<%1> + middle click) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Reverse sample - Balikan sampel - - - - Set clip color - - - - - Use track color - - - - - SampleTrack - - + Volume - Volume - + - + Panning - Keseimbangan + - + Mixer channel - Saluran FX + - - + + Sample track - Trek sampel - - - - SampleTrackView - - - Track volume - Volume trek - - - - Channel volume: - Volume channel: - - - - VOL - VOL - - - - Panning - Keseimbangan - - - - Panning: - Keseimbangan: - - - - PAN - SEIMBANG - - - - Channel %1: %2 - FX %1: %2 - - - - SampleTrackWindow - - - GENERAL SETTINGS - PENGATURAN UMUM - - - - Sample volume - - - - - Volume: - Volume: - - - - VOL - VOL - - - - Panning - Keseimbangan - - - - Panning: - Keseimbangan: - - - - PAN - SEIMBANG - - - - Mixer channel - Saluran FX - - - - FX - FX - - - - SaveOptionsWidget - - - Discard MIDI connections - - - - - Save As Project Bundle (with resources) - SetupDialog + lmms::Scale - - Reset to default value + + empty - - - Use built-in NaN handler - - - - - Settings - Pengaturan - - - - - General - - - - - Graphical user interface (GUI) - - - - - Display volume as dBFS - Tampilkan volume sebagai dBFS - - - - Enable tooltips - Aktifkan tooltips - - - - Enable master oscilloscope by default - - - - - Enable all note labels in piano roll - - - - - Enable compact track buttons - - - - - Enable one instrument-track-window mode - - - - - Show sidebar on the right-hand side - - - - - Let sample previews continue when mouse is released - - - - - Mute automation tracks during solo - - - - - Show warning when deleting tracks - - - - - Projects - - - - - Compress project files by default - - - - - Create a backup file when saving a project - - - - - Reopen last project on startup - - - - - Language - - - - - - Performance - - - - - Autosave - - - - - Enable autosave - - - - - Allow autosave while playing - - - - - User interface (UI) effects vs. performance - - - - - Smooth scroll in song editor - - - - - Display playback cursor in AudioFileProcessor - - - - - Plugins - Plugin - - - - VST plugins embedding: - - - - - No embedding - Tidak disematkan - - - - Embed using Qt API - Disematkan menggunakan API Qt - - - - Embed using native Win32 API - Disematkan menggunakan API Win32 asli - - - - Embed using XEmbed protocol - Disematkan menggunakan protokol XEmbed - - - - Keep plugin windows on top when not embedded - - - - - Sync VST plugins to host playback - Selaraskan plugin VST ke pemutaran host - - - - Keep effects running even without input - Biarkan efek berjalan walaupun tanpa masukan - - - - - Audio - Audio - - - - Audio interface - - - - - HQ mode for output audio device - - - - - Buffer size - - - - - - MIDI - MIDI - - - - MIDI interface - - - - - Automatically assign MIDI controller to selected track - - - - - LMMS working directory - Direktori kerja LMMS - - - - VST plugins directory - - - - - LADSPA plugins directories - - - - - SF2 directory - Direktori SF2 - - - - Default SF2 - - - - - GIG directory - Direktori GIG - - - - Theme directory - - - - - Background artwork - Latar belakang karya seni - - - - Some changes require restarting. - - - - - Autosave interval: %1 - - - - - Choose the LMMS working directory - - - - - Choose your VST plugins directory - - - - - Choose your LADSPA plugins directory - - - - - Choose your default SF2 - - - - - Choose your theme directory - - - - - Choose your background picture - - - - - - Paths - - - - - OK - OK - - - - Cancel - Batal - - - - Frames: %1 -Latency: %2 ms - Bingkai: %1 -Latensi: %2 md - - - - Choose your GIG directory - Pilih direktor GIG anda - - - - Choose your SF2 directory - Pilih direktor SF2 anda - - - - minutes - menit - - - - minute - menit - - - - Disabled - Dinonaktifkan - - SidInstrument + lmms::Sf2Instrument - + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + Cutoff frequency - Frekuensi cutoff + - + Resonance - Resonansi + + + + + Filter type + - Filter type - Tipe filter - - - Voice 3 off - + Volume - Volume + - + Chip model - Model chip - - - - SidInstrumentView - - - Volume: - Volume: - - - - Resonance: - Resonansi: - - - - - Cutoff frequency: - Frekuensi cutoff: - - - - High-pass filter - - - - - Band-pass filter - - - - - Low-pass filter - - - - - Voice 3 off - - - - - MOS6581 SID - MOS6581 SID - - - - MOS8580 SID - MOS8580 SID - - - - - Attack: - Attack: - - - - - Decay: - Decay: - - - - Sustain: - Sustain: - - - - - Release: - Release: - - - - Pulse Width: - - - - - Coarse: - - - - - Pulse wave - - - - - Triangle wave - Gelombang segitiga - - - - Saw wave - Gelombang gergaji - - - - Noise - Derau - - - - Sync - Selaras - - - - Ring modulation - - - - - Filtered - - - - - Test - Tes - - - - Pulse width: - SideBarWidget + lmms::SlicerT - - Close - Tutup + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + - Song + lmms::Song - + Tempo - Tempo + - + Master volume - Volume master + - + Master pitch - Master pitch - - - - Aborting project load + Aborting project load + + + + Project file contains local paths to plugins, which could be used to run malicious code. - + Can't load project: Project file contains local paths to plugins. - + LMMS Error report - Laporan kesalahan LMMS + - + (repeated %1 times) - + The following errors occurred while loading: - SongEditor + lmms::StereoEnhancerControls - - Could not open file - Tidak bisa membuka berkas + + Width + + + + + lmms::StereoMatrixControls + + + Left to Left + - + + Left to Right + + + + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + + + + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. - Tidak bisa membuka berkas %1. Anda mungkin tidak memiliki izin untuk membaca berkas ini. -Setidaknya pastikan Anda memiliki izini baca kepada berkas tersebut lalu coba lagi. + - + Operation denied - + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. - - - + + + Error - Kesalahan + - + Couldn't create bundle folder. - + Couldn't create resources folder. - + Failed to copy resources. - + + Could not write file - Tidak bisa menulis berkas - - - - Could not open %1 for writing. You probably are not permitted towrite to this file. Please make sure you have write-access to the file and try again. - + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + This %1 was created with LMMS %2 - - Error in file - Kesalahan dalam berkas + + Zoom + - - The file %1 seems to contain errors and therefore can't be loaded. - Berkas %1 sepertinya menganduh kesalahan dan oleh karena itu tidak bisa dimuat. - - - - Version difference - Perbedaan Versi - - - - template - template - - - - project - proyek - - - + Tempo - Tempo + - + TEMPO - + Tempo in BPM - - High quality mode - Mode kualitas tinggi - - - - - + + + Master volume - Volume master + - - - - Master pitch - Master pitch + + + + Global transposition + - + + 1/%1 Bar + + + + + %1 Bars + + + + Value: %1% - Nilai: %1% + - - Value: %1 semitones - Nilai: %1 semitone + + Value: %1 keys + - SongEditorWindow + lmms::gui::SongEditorWindow - + Song-Editor - Editor-Lagu + + + + + Play song (Space) + + + + + Record samples from Audio-device + - Play song (Space) - Putar lagu (Spasi) + Record samples from Audio-device while playing song or pattern track + - Record samples from Audio-device - Rekam sampel dari perangkat-Audio - - - - Record samples from Audio-device while playing song or BB track - Rekam sampel dari perangkat-Audio saat memutar lagu atau trek BB - - - Stop song (Space) - Hentikan lagu (Spasi) + - + Track actions - Aksi trek + - - Add beat/bassline - Tambah ketukan/bassline + + Add pattern-track + - + Add sample-track - Tambah Trek-sampel + - + Add automation-track - Tambah trek-otomasi + - + Edit actions - Ubah aksi + - + Draw mode - Mode gambar + - + Knife mode (split sample clips) - + Edit mode (select and move) - Mode Edit (pilih dan pindah) + - + Timeline controls - Kontrol timeline + - + Bar insert controls - + Insert bar - + Remove bar - + Zoom controls - Kontrol Zum + + - Horizontal zooming - Pembesaran horizontal + Zoom + - + Snap controls - - + + Clip snapping size - + Toggle proportional snap on/off - + Base snapping size - StepRecorderWidget + lmms::gui::StepRecorderWidget - + Hint - Petunjuk + - + Move recording curser using <Left/Right> arrows - SubWindow + lmms::gui::StereoEnhancerControlDialog - + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + Close - Tutup + - + Maximize - Maksimalkan + - + Restore - Kembalikan + - TabWidget + lmms::gui::TapTempoView - - - Settings for %1 - Pengaturan untuk %1 + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + - TemplatesMenu + lmms::gui::TemplatesMenu - + New from template - Baru dari template + - TempoSyncKnob + lmms::gui::TempoSyncBarModelEditor - - + + Tempo Sync - Selaraskan Tempo + - + No Sync - + Eight beats - Delapan ketukan + - + Whole note - Seluruh not + - + Half note - Setengah not + - + Quarter note - Seperempat not + - + 8th note - not 8 + - + 16th note - not 16 + - + 32nd note - not 32 + - + Custom... - Kustom... + - + Custom - Kustom + - + Synced to Eight Beats - + Synced to Whole Note - + Synced to Half Note - + Synced to Quarter Note - + Synced to 8th Note - + Synced to 16th Note - + Synced to 32nd Note - TimeDisplayWidget + lmms::gui::TempoSyncKnob - + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + Time units - - - MIN - MIN - - SEC - DTK + MIN + - MSEC - MDTK + SEC + - - BAR - BAR + + MSEC + - BEAT - KETUKAN + BAR + + BEAT + + + + TICK - TIK + - TimeLineWidget + lmms::gui::TimeLineWidget - + Auto scrolling - + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + Loop points - + After stopping go back to beginning - + After stopping go back to position at which playing was started - Setelah berhenti kembali ke posisi dimana pemutaran dimulai + - + After stopping keep position - Jaga posisi setelah berhenti + - + Hint - Petunjuk + - + Press <%1> to disable magnetic loop points. - Tekan <%1> untuk menonaktifkan titik pengulangan magnetik. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + - Track + lmms::gui::TrackContentWidget - - Mute - Bisu - - - - Solo - Solo - - - - TrackContainer - - - Couldn't import file - Tidak bisa mengimpor berkas - - - - Couldn't find a filter for importing file %1. -You should convert this file into a format supported by LMMS using another software. - Tidak bisa mencari filter untuk mengimpor berkas %1. -Anda seharusnya mengubah berkas ini menjadi format yang didukung oleh LMMS menggunakan perangkat lunak lain. - - - - Couldn't open file - Tidak bisa membuka berkas - - - - Couldn't open file %1 for reading. -Please make sure you have read-permission to the file and the directory containing the file and try again! - Tidak bisa membuka berkas %1 untuk dibaca. -Pastikan anda memiliki izin baca untuk berkas ini dan direktori yang mengandung berkas ini dan coba lagi! - - - - Loading project... - Memuat proyek... - - - - - Cancel - Batal - - - - - Please wait... - Mohon tunggu... - - - - Loading cancelled - - - - - Project loading was cancelled. - - - - - Loading Track %1 (%2/Total %3) - Memuat Trek %1 (%2/Total %3) - - - - Importing MIDI-file... - Mengimpor berkas-MIDI... - - - - Clip - - - Mute - Bisu - - - - ClipView - - - Current position - Posisi saat ini - - - - Current length - Panjang saat ini - - - - - %1:%2 (%3:%4 to %5:%6) - %1:%2 (%3:%4 to %5:%6) - - - - Press <%1> and drag to make a copy. - Tekan <%1> dan seret untuk membuat salinan. - - - - Press <%1> for free resizing. - Tekan <%1> untuk merubah ukuran secara bebas. - - - - Hint - Petunjuk - - - - Delete (middle mousebutton) - Hapus (tombol tengah mouse) - - - - Delete selection (middle mousebutton) - - - - - Cut - Potong - - - - Cut selection - - - - - Merge Selection - - - - - Copy - Salin - - - - Copy selection - - - - + Paste - Tempel - - - - Mute/unmute (<%1> + middle click) - Bisukan/suarakan (<%1> + middle click) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Set clip color - - - - - Use track color - TrackContentWidget + lmms::gui::TrackOperationsWidget - - Paste - Tempel - - - - TrackOperationsWidget - - + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. @@ -13459,257 +17718,249 @@ Pastikan anda memiliki izin baca untuk berkas ini dan direktori yang mengandung Mute - Bisu + Solo - Solo + - + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? - + Confirm removal - + Don't ask again - + Clone this track - Klon trek ini - - - - Remove this track - Hapus trek ini - - - - Clear this track - Bersihkan trek ini - - - - Channel %1: %2 - FX %1: %2 - - - - Assign to new mixer Channel - Tetapkan ke Saluran FX baru - - - - Turn all recording on - Hidupkan semua rekaman - - - - Turn all recording off - Matikan semua rekaman - - - - Change color - Ganti warna - - - - Reset color to default - Reset warna ke default - - - - Set random color - - Clear clip colors + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors - TripleOscillatorView + lmms::gui::TripleOscillatorView - + Modulate phase of oscillator 1 by oscillator 2 - + Modulate amplitude of oscillator 1 by oscillator 2 - + Mix output of oscillators 1 & 2 - + Synchronize oscillator 1 with oscillator 2 - + Modulate frequency of oscillator 1 by oscillator 2 - + Modulate phase of oscillator 2 by oscillator 3 - + Modulate amplitude of oscillator 2 by oscillator 3 - + Mix output of oscillators 2 & 3 - + Synchronize oscillator 2 with oscillator 3 - Selaraskan osilator 2 dengan osilator 3 + - + Modulate frequency of oscillator 2 by oscillator 3 - + Osc %1 volume: - Volume Osc %1: + - + Osc %1 panning: - Keseimbangan Osc %1: + - + Osc %1 coarse detuning: - + semitones - semitone + - + Osc %1 fine detuning left: - - + + cents - sen + - + Osc %1 fine detuning right: - + Osc %1 phase-offset: - - + + degrees - derajat + - + Osc %1 stereo phase-detuning: - + Sine wave - Gelombang sinus + - + Triangle wave - Gelombang segitiga + - + Saw wave - Gelombang gergaji + - + Square wave - Gelombang kotak + - + Moog-like saw wave - + Exponential wave - + White noise - Kebisingan putih + - + User-defined wave - - - VecControls - - Display persistence amount - - - - - Logarithmic scale - - - - - High quality + + Use alias-free wavetable oscillators. - VecControlsDialog + lmms::gui::VecControlsDialog - + HQ - + Double the resolution and simulate continuous analog-like trace. @@ -13724,2620 +17975,782 @@ Pastikan anda memiliki izin baca untuk berkas ini dan direktori yang mengandung - + Persist. - + Trace persistence: higher amount means the trace will stay bright for longer time. - + Trace persistence - VersionedSaveDialog - - - Increment version number - Tingkatkan versi nomor - + lmms::gui::VersionedSaveDialog - Decrement version number - Turunkan versi nomor + Increment version number + - + + Decrement version number + + + + Save Options - + already exists. Do you want to replace it? - sudah ada. Apakah anda ingin menimpanya? + - VestigeInstrumentView + lmms::gui::VestigeInstrumentView - - + + Open VST plugin - + Control VST plugin from LMMS host - + Open VST plugin preset - + Previous (-) - Sebelumnya (-) + - + Save preset - Simpan preset + - + Next (+) - Selanjutnya (+) + - + Show/hide GUI - Tampilkan/sembunyikan GUI + - + Turn off all notes - Matikan semua not + - + DLL-files (*.dll) - Berkas-DLL (*.dll) + - + EXE-files (*.exe) - berkas-EXE (*.exe) + - + + SO-files (*.so) + + + + No VST plugin loaded - + Preset - Preset + - + by - oleh + - + - VST plugin control - - kontrol VST plugin + - VstEffectControlDialog + lmms::gui::VibedView - - Show/hide - Tampilkan/sembunyikan + + Enable waveform + - + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + + + + Control VST plugin from LMMS host - + Open VST plugin preset - + Previous (-) - Sebelumnya (-) + - + Next (+) - Selanjutnya (+) + - + Save preset - Simpan preset + - - + + Effect by: - Efek oleh: + - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + - VstPlugin + lmms::gui::WatsynView - - - The VST plugin %1 could not be loaded. - VST plugin %1 tidak dapat dimuat. - - - - Open Preset - Buka Preset - - - - - Vst Plugin Preset (*.fxp *.fxb) - Preset Vst Plugin (*.fxp *.fxb) - - - - : default - : default - - - - Save Preset - Simpan Preset - - - - .fxp - .fxp - - - - .FXP - .FXP - - - - .FXB - .FXB - - - - .fxb - .fxb - - - - Loading plugin - Memuat plugin - - - - Please wait while loading VST plugin... - Mohon tunggu, sedang memuat VST plugin... - - - - WatsynInstrument - - - Volume A1 - Volume A1 - - - - Volume A2 - Volume A2 - - - - Volume B1 - Volume B1 - - - - Volume B2 - Volume B2 - - - - Panning A1 - Keseimbangan A1 - - - - Panning A2 - Keseimbangan A2 - - - - Panning B1 - Keseimbangan B1 - - - - Panning B2 - Keseimbangan B2 - - - - Freq. multiplier A1 + + + + + Volume - - Freq. multiplier A2 - - - - - Freq. multiplier B1 - - - - - Freq. multiplier B2 - - - - - Left detune A1 - - - - - Left detune A2 - - - - - Left detune B1 - - - - - Left detune B2 - - - - - Right detune A1 - - - - - Right detune A2 - Detune A2 kanan - - - - Right detune B1 - Detune B1 Kanan - - - - Right detune B2 - Detune B2 kanan - - - - A-B Mix - A-B Mix - - - - A-B Mix envelope amount - - - - - A-B Mix envelope attack - - - - - A-B Mix envelope hold - - - - - A-B Mix envelope decay - - - - - A1-B2 Crosstalk - - - - - A2-A1 modulation - Modulasi A2-A1 - - - - B2-B1 modulation - Modulasi B2-B1 - - - - Selected graph - Grafik yang dipilih - - - - WatsynView - + + - - - Volume - Volume - + Panning + + + - - - Panning - Keseimbangan - - - - - - Freq. multiplier - - - - + + + + Left detune + + + + + + - - - - - - cents - sen + - - - - + + + + Right detune - + A-B Mix - A-B Mix + - + Mix envelope amount - + Mix envelope attack - + Mix envelope hold - + Mix envelope decay - + Crosstalk - + Select oscillator A1 - Pilih osilator A1 + - + Select oscillator A2 - Pilih osilator A2 + - + Select oscillator B1 - Pilih osilator B1 + - + Select oscillator B2 - Pilih osilator B2 + - + Mix output of A2 to A1 - Campurkan keluaran dari A2 ke A1 + - + Modulate amplitude of A1 by output of A2 - + Ring modulate A1 and A2 - + Modulate phase of A1 by output of A2 - + Mix output of B2 to B1 - Gabung keluaran dari B2 ke B1 + - + Modulate amplitude of B1 by output of B2 - + Ring modulate B1 and B2 - + Modulate phase of B1 by output of B2 - - - - + + + + Draw your own waveform here by dragging your mouse on this graph. - Gambar bentuk gelombang kamu sendiri dengan menyeret tetikus kamu di grafik ini. + - + Load waveform - Muat gelombang grafik + - + Load a waveform from a sample file - + Phase left - + Shift phase by -15 degrees - + Phase right - + Shift phase by +15 degrees + + + + Normalize + + - Normalize - Normalisasi - - - - Invert - Balik + - - + + Smooth - Halus + - - + + Sine wave - Gelombang sinus + - - - + + + Triangle wave - Gelombang segitiga + - + Saw wave - Gelombang gergaji + - - + + Square wave - Gelombang kotak - - - - Xpressive - - - Selected graph - Grafik yang dipilih - - - - A1 - A1 - - - - A2 - A2 - - - - A3 - A3 - - - - W1 smoothing - - - - - W2 smoothing - - - - - W3 smoothing - - - - - Panning 1 - - - - - Panning 2 - - - - - Rel trans - XpressiveView + lmms::gui::WaveShaperControlDialog - - Draw your own waveform here by dragging your mouse on this graph. - Gambar bentuk gelombang kamu sendiri dengan menyeret tetikus kamu di grafik ini. - - - - Select oscillator W1 - - - - - Select oscillator W2 - - - - - Select oscillator W3 - - - - - Select output O1 - - - - - Select output O2 - - - - - Open help window - - - - - - Sine wave - Gelombang sinus - - - - - Moog-saw wave - - - - - - Exponential wave - - - - - - Saw wave - Gelombang gergaji - - - - - User-defined wave - - - - - - Triangle wave - Gelombang segitiga - - - - - Square wave - Gelombang kotak - - - - - White noise - Kebisingan putih - - - - WaveInterpolate - - - - - ExpressionValid - - - - - General purpose 1: - - - - - General purpose 2: - - - - - General purpose 3: - - - - - O1 panning: - - - - - O2 panning: - - - - - Release transition: - - - - - Smoothness - - - - - ZynAddSubFxInstrument - - - Portamento - - - - - Filter frequency - - - - - Filter resonance - - - - - Bandwidth - Lebar pita - - - - FM gain - - - - - Resonance center frequency - - - - - Resonance bandwidth - - - - - Forward MIDI control change events - - - - - ZynAddSubFxView - - - Portamento: - Portamento: - - - - PORT - PORT - - - - Filter frequency: - - - - - FREQ - FREK - - - - Filter resonance: - - - - - RES - RES - - - - Bandwidth: - Lebar pita: - - - - BW - LP - - - - FM gain: - - - - - FM GAIN - FM GAIN - - - - Resonance center frequency: - Frekuensi resonansi tengah: - - - - RES CF - - - - - Resonance bandwidth: - - - - - RES BW - - - - - Forward MIDI control changes - - - - - Show GUI - Tampilkan GUI - - - - AudioFileProcessor - - - Amplify - - - - - Start of sample - Awal dari sampel - - - - End of sample - Akhir dar sampel - - - - Loopback point - Titik loopback - - - - Reverse sample - Balikan sampel - - - - Loop mode - Mode pengulangan - - - - Stutter - - - - - Interpolation mode - - - - - None - Tidak ada - - - - Linear - - - - - Sinc - - - - - Sample not found: %1 - Sampel tidak ditemukan: %1 - - - - BitInvader - - - Sample length - - - - - BitInvaderView - - - Sample length - - - - - Draw your own waveform here by dragging your mouse on this graph. - Gambar bentuk gelombang kamu sendiri dengan menyeret tetikus kamu di grafik ini. - - - - - Sine wave - Gelombang sinus - - - - - Triangle wave - Gelombang segitiga - - - - - Saw wave - Gelombang gergaji - - - - - Square wave - Gelombang kotak - - - - - White noise - Kebisingan putih - - - - - User-defined wave - - - - - - Smooth waveform - Gelombang halus - - - - Interpolation - Interpolasi - - - - Normalize - Normalisasi - - - - DynProcControlDialog - - + INPUT - MASUKAN + - + Input gain: - Gain masukan: + - + OUTPUT - KELUARAN - - - - Output gain: - Gait keluaran: - - - - ATTACK - - - Peak attack time: - - - - - RELEASE - - - - - Peak release time: - - - - - - Reset wavegraph - - - - - - Smooth wavegraph - - - - - - Increase wavegraph amplitude by 1 dB - - - - - - Decrease wavegraph amplitude by 1 dB - - - - - Stereo mode: maximum - - - - - Process based on the maximum of both stereo channels - - - - - Stereo mode: average - - - - - Process based on the average of both stereo channels - - - - - Stereo mode: unlinked - - - - - Process each stereo channel independently - - - - - DynProcControls - - - Input gain - Gain masukan - - - - Output gain - Gain keluaran - - - - Attack time - - - - - Release time - - - - - Stereo mode - Mode stereo - - - - graphModel - - - Graph - Grafik - - - - KickerInstrument - - - Start frequency - Frekuensi mulai - - - - End frequency - Frekuensi akhir - - - - Length - Panjang - - - - Start distortion - - - - - End distortion - - - - - Gain - Gain - - - - Envelope slope - - - - - Noise - Derau - - - - Click - Klik - - - - Frequency slope - - - - - Start from note - Mulai dari not - - - - End to note - Berakhir ke not - - - - KickerInstrumentView - - - Start frequency: - Frekuensi mulai: - - - - End frequency: - Frekuensi akhir: - - - - Frequency slope: - - - - - Gain: - Gain: - - - - Envelope length: - - - - - Envelope slope: - - - - - Click: - Klik: - - - - Noise: - Derau: - - - - Start distortion: - - - - - End distortion: - - - - - LadspaBrowserView - - - - Available Effects - Efek tersedia - - - - - Unavailable Effects - Efek tak tersedia - - - - - Instruments - Instrumen - - - - - Analysis Tools - Alat Analisis - - - - - Don't know - Tidak tahu - - - - Type: - Tipe: - - - - LadspaDescription - - - Plugins - Plugin - - - - Description - Deskripsi - - - - LadspaPortDialog - - - Ports - - - - - Name - Nama - - - - Rate - Nilai - - - - Direction - Arah - - - - Type - Tipe - - - - Min < Default < Max - Min < Default < Maks - - - - Logarithmic - Logaritmik - - - - SR Dependent - - - - - Audio - Audio - - - - Control - Kontrol - - - - Input - Masukan - - - - Output - Keluaran - - - - Toggled - - - - - Integer - Integer - - - - Float - Float - - - - - Yes - Ya - - - - Lb302Synth - - - VCF Cutoff Frequency - - - - - VCF Resonance - Resonansi VCF - - - - VCF Envelope Mod - - - - - VCF Envelope Decay - - - - - Distortion - Distorsi - - - - Waveform - Grafik gelombang - - - - Slide Decay - - - - - Slide - - - - - Accent - Aksen - - - - Dead - Mati - - - - 24dB/oct Filter - Filter 24dB/oct - - - - Lb302SynthView - - - Cutoff Freq: - Frek Cutoff: - - - - Resonance: - Resonansi: - - - - Env Mod: - Env Mod: - - - - Decay: - Decay: - - - - 303-es-que, 24dB/octave, 3 pole filter - - - - - Slide Decay: - - - - - DIST: - - - - - Saw wave - Gelombang gergaji - - - - Click here for a saw-wave. - Klik disini untuk gelombang gergaji. - - - - Triangle wave - Gelombang segitiga - - - - Click here for a triangle-wave. - Klik disini untuk gelombang-segitiga. - - - - Square wave - Gelombang kotak - - - - Click here for a square-wave. - Klik disini untuk gelombang-kotak. - - - - Rounded square wave - Gelombang persegi bulat - - - - Click here for a square-wave with a rounded end. - - - - - Moog wave - - - - - Click here for a moog-like wave. - - - - - Sine wave - Gelombang sinus - - - - Click for a sine-wave. - - - - - - White noise wave - Gelombang riuh - - - - Click here for an exponential wave. - Klik disini untuk gelombang eksponensial. - - - - Click here for white-noise. - Klik disini untuk kebisingan-putih. - - - - Bandlimited saw wave - - - - - Click here for bandlimited saw wave. - - - - - Bandlimited square wave - - - - - Click here for bandlimited square wave. - - - - - Bandlimited triangle wave - - - - - Click here for bandlimited triangle wave. - - - - - Bandlimited moog saw wave - - - - - Click here for bandlimited moog saw wave. - - - - - MalletsInstrument - - - Hardness - Kekerasan - - - - Position - Posisi - - - - Vibrato gain - - - - - Vibrato frequency - - - - - Stick mix - - - - - Modulator - Modulator - - - - Crossfade - - - - - LFO speed - Kecepatan LFO - - - - LFO depth - - - - - ADSR - ADSR - - - - Pressure - Tekanan - - - - Motion - - - - - Speed - Kecepatan - - - - Bowed - - - - - Spread - - - - - Marimba - Marimba - - - - Vibraphone - Vibraphone - - - - Agogo - - - - - Wood 1 - - - - - Reso - Reso - - - - Wood 2 - - - - - Beats - Ketukan - - - - Two fixed - - - - - Clump - - - - - Tubular bells - - - - - Uniform bar - - - - - Tuned bar - - - - - Glass - - - - - Tibetan bowl - - - - - MalletsInstrumentView - - - Instrument - Instrumen - - - - Spread - - - - - Spread: - - - - - Missing files - Berkas yang hilang - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - - - - - Hardness - Kekerasan - - - - Hardness: - - - - - Position - Posisi - - - - Position: - Posisi: - - - - Vibrato gain - - - - - Vibrato gain: - - - - - Vibrato frequency - - - - - Vibrato frequency: - - - - - Stick mix - - - - - Stick mix: - - - - - Modulator - Modulator - - - - Modulator: - - - - - Crossfade - - - - - Crossfade: - - - - - LFO speed - Kecepatan LFO - - - - LFO speed: - kecepatan LFO: - - - - LFO depth - - - - - LFO depth: - - - - - ADSR - ADSR - - - - ADSR: - ADSR: - - - - Pressure - Tekanan - - - - Pressure: - Tekanan: - - - - Speed - Kecepatan - - - - Speed: - Kecepatan: - - - - ManageVSTEffectView - - - - VST parameter control - - VST kontrol parameter - - - - VST sync - - - - - - Automated - Diotomasi - - - - Close - Tutup - - - - ManageVestigeInstrumentView - - - - - VST plugin control - - kontrol VST plugin - - - - VST Sync - - - - - - Automated - Diotomasi - - - - Close - Tutup - - - - OrganicInstrument - - - Distortion - Distorsi - - - - Volume - Volume - - - - - OrganicInstrumentView - - - Distortion: - Distorsi: - - - - Volume: - Volume: - - - - Randomise - - - - - - Osc %1 waveform: - Bentuk Gelombang Osc %1: - - - - Osc %1 volume: - Volume Osc %1: - - - - Osc %1 panning: - Keseimbangan Osc %1: - - - - Osc %1 stereo detuning - - - - - cents - sen - - - - Osc %1 harmonic: - - - - - PatchesDialog - - - Qsynth: Channel Preset - - - - - Bank selector - Pemilih bank - - - - Bank - Bank - - - - Program selector - Pemilih program - - - - Patch - Patch - - - - Name - Nama - - - - OK - OK - - - - Cancel - Batal - - - - Sf2Instrument - - - Bank - Bank - - - - Patch - Patch - - - - Gain - Gain - - - - Reverb - - - - - Reverb room size - - - - - Reverb damping - - - - - Reverb width - - - - - Reverb level - - - - - Chorus - - - - - Chorus voices - - - - - Chorus level - - - - - Chorus speed - - - - - Chorus depth - - - - - A soundfont %1 could not be loaded. - Soundfont %1 tidak dapat dimuat. - - - - Sf2InstrumentView - - - - Open SoundFont file - Buka berkas SoundFont - - - - Choose patch - - - - - Gain: - Gain: - - - - Apply reverb (if supported) - Aktifkan gema (jika didukung) - - - - Room size: - Ukuran ruangan: - - - - Damping: - - - - - Width: - Lebar: - - - - - Level: - Tingkat: - - - - Apply chorus (if supported) - - - - - Voices: - - - - - Speed: - Kecepatan: - - - - Depth: - Kedalaman: - - - - SoundFont Files (*.sf2 *.sf3) - - - - - SfxrInstrument - - - Wave - - - - - StereoEnhancerControlDialog - - - WIDTH - - - - - Width: - Lebar: - - - - StereoEnhancerControls - - - Width - Lebar - - - - StereoMatrixControlDialog - - - Left to Left Vol: - Vol Kiri ke Kiri: - - - - Left to Right Vol: - Vol Kiri ke Kanan: - - - - Right to Left Vol: - Vol Kanan ke Kiri: - - - - Right to Right Vol: - Vol Kanan ke Kanan: - - - - StereoMatrixControls - - - Left to Left - Kiri ke Kiri - - - - Left to Right - Kiri ke Kanan - - - - Right to Left - Kanan ke Kiri - - - - Right to Right - Kanan ke Kanan - - - - VestigeInstrument - - - Loading plugin - Memuat plugin - - - - Please wait while loading the VST plugin... - - - - - Vibed - - - String %1 volume - Volume string %1 - - - - String %1 stiffness - - - - - Pick %1 position - - - - - Pickup %1 position - - - - - String %1 panning - - - - - String %1 detune - - - - - String %1 fuzziness - - - - - String %1 length - - - - - Impulse %1 - Impuls %1 - - - - String %1 - - - - - VibedView - - - String volume: - - - - - String stiffness: - - - - - Pick position: - Posisi petik: - - - - Pickup position: - Posisi pickup: - - - - String panning: - - - - - String detune: - - - - - String fuzziness: - - - - - String length: - - - - - Impulse - - - - - Octave - Oktaf - - - - Impulse Editor - Editor Impuls - - - - Enable waveform - Aktifkan gelombang grafik - - - - Enable/disable string - - - - - String - Deretan - - - - - Sine wave - Gelombang sinus - - - - - Triangle wave - Gelombang segitiga - - - - - Saw wave - Gelombang gergaji - - - - - Square wave - Gelombang kotak - - - - - White noise - Kebisingan putih - - - - - User-defined wave - - - - - - Smooth waveform - Gelombang halus - - - - - Normalize waveform - - - - - VoiceObject - - - Voice %1 pulse width - Lebar nadi Suara %1 - - - - Voice %1 attack - Serangan suara %1 - - - - Voice %1 decay - Kerusakan suara %1 - - - - Voice %1 sustain - Penopang suara %1 - - - - Voice %1 release - Pelepasan suara %1 - - - - Voice %1 coarse detuning - Detuning kasar suara %1 - - - - Voice %1 wave shape - Bentuk gelombang suara %1 - - - - Voice %1 sync - Sinkron suara %1 - - - - Voice %1 ring modulate - Modulasi nada suara %1 - - - - Voice %1 filtered - Suara %1 difilter - - - - Voice %1 test - Tes suara %1 - - - - WaveShaperControlDialog - - - INPUT - MASUKAN - - - - Input gain: - Gain masukan: - - - - OUTPUT - KELUARAN - - - - Output gain: - Gait keluaran: - - + Output gain: + + + + + Reset wavegraph - - + + Smooth wavegraph - - + + Increase wavegraph amplitude by 1 dB - - + + Decrease wavegraph amplitude by 1 dB - + Clip input - Klip masukan + - + Clip input signal to 0 dB - WaveShaperControls + lmms::gui::XpressiveView - - Input gain - Gain masukan + + Draw your own waveform here by dragging your mouse on this graph. + - - Output gain - Gain keluaran + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + - + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + + + + \ No newline at end of file diff --git a/data/locale/it.ts b/data/locale/it.ts index 104a3bdbc..db7f5c7bc 100644 --- a/data/locale/it.ts +++ b/data/locale/it.ts @@ -1,4 +1,4 @@ - + AboutDialog @@ -69,811 +69,44 @@ If you're interested in translating LMMS in another language or want to imp - AmplifierControlDialog + AboutJuceDialog - - VOL - VOL + + About JUCE + Informazioni su JUCE - - Volume: - Volume: + + <b>About JUCE</b> + <b>Informazioni su JUCE</b> - - PAN - PAN + + This program uses JUCE version 3.x.x. + Questo programma utilizza JUCE versione 3.x.x. - - Panning: - Panoramica: - - - - LEFT - SX - - - - Left gain: - Guadagno a sinistra: - - - - RIGHT - DX - - - - Right gain: - Guadagno a destra: - - - - AmplifierControls - - - Volume - Volume - - - - Panning - Panoramica - - - - Left gain - Guadagno a sinistra - - - - Right gain - Guadagno a destra - - - - AudioAlsaSetupWidget - - - DEVICE - PERIFERICA - - - - CHANNELS - CANALI - - - - AudioFileProcessorView - - - Open sample - Apri campione - - - - Reverse sample - Inverti campione - - - - Disable loop - Disabilità ripetizione ciclica - - - - Enable loop - Abilita ripetizione ciclica - - - - Enable ping-pong loop - Abilita ripetizione ciclica ping-pong - - - - Continue sample playback across notes - Continua riproduzione campione attraverso le note - - - - Amplify: - Amplifica: - - - - Start point: - Punto iniziale: - - - - End point: - Punto finale: - - - - Loopback point: - Punto di ripresa: - - - - AudioFileProcessorWaveView - - - Sample length: - Lunghezza campione: - - - - AudioJack - - - JACK client restarted - Client JACK riavviato - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS è stato respinto da JACK per qualche motivo. Pertanto il backend JACK di LMMS è stato riavviato. Sarà necessario effettuare nuovamente le connessioni manuali. - - - - JACK server down - Server JACK fuori uso - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - Sembra che il server JACK sia stato arrestato e l'avvio di una nuova istanza non è riuscito. Pertanto LMMS non è in grado di procedere. È necessario salvare il progetto e riavviare JACK e LMMS. - - - - Client name - Nome Client - - - - Channels - Canali - - - - AudioOss - - - Device - Dispositivo - - - - Channels - Canali - - - - AudioPortAudio::setupWidget - - - Backend - Backend - - - - Device - Dispositivo - - - - AudioPulseAudio - - - Device - Dispositivo - - - - Channels - Canali - - - - AudioSdl::setupWidget - - - Device - Dispositivo - - - - AudioSndio - - - Device - Dispositivo - - - - Channels - Canali - - - - AudioSoundIo::setupWidget - - - Backend - Backend - - - - Device - Dispositivo - - - - AutomatableModel - - - &Reset (%1%2) - &Reimposta (%1%2) - - - - &Copy value (%1%2) - &Copia valore (%1%2) - - - - &Paste value (%1%2) - &Incolla valore (%1%2) - - - - &Paste value - &Incolla valore - - - - Edit song-global automation - Modifica automazione globale della canzone - - - - Remove song-global automation - Rimuovi automazione globale della canzone - - - - Remove all linked controls - Rimuovi tutti i controlli collegati - - - - Connected to %1 - Connesso a %1 - - - - Connected to controller - Connesso al controller - - - - Edit connection... - Modifica connessione... - - - - Remove connection - Rimuovi connessione - - - - Connect to controller... - Connetti al controller... - - - - AutomationEditor - - - Edit Value + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. - - New outValue - - - - - New inValue - - - - - Please open an automation clip with the context menu of a control! - È necessario aprire uno schema di automazione con il menu contestuale di un controllo! + + This program uses JUCE version + Questo programma utilizza una versione di JUCE - AutomationEditorWindow + AudioDeviceSetupWidget - - Play/pause current clip (Space) - Riproduce/sospende lo schema corrente (Spazio) - - - - Stop playing of current clip (Space) - Arresta la riproduzione dello schema corrente (Spazio) - - - - Edit actions - Modifica attività - - - - Draw mode (Shift+D) - Modalità disegno (Shift+D) - - - - Erase mode (Shift+E) - Modalità cancellazione (Shift+E) - - - - Draw outValues mode (Shift+C) - - - - - Flip vertically - Capovolgi verticalmente - - - - Flip horizontally - Capovolgi orizzontalmente - - - - Interpolation controls - Controlli interpolazione - - - - Discrete progression - Progressione discontinua - - - - Linear progression - Progressione lineare - - - - Cubic Hermite progression - Progressione cubica di Hermite - - - - Tension value for spline - Valore tensione delle curve - - - - Tension: - Tensione: - - - - Zoom controls - Opzioni ingrandimento - - - - Horizontal zooming - Ingrandimento orizzontale - - - - Vertical zooming - Ingrandimento verticale - - - - Quantization controls - Controlli quantizzazione - - - - Quantization - Quantizzazione - - - - - Automation Editor - no clip - Editor automazione - nessuno schema - - - - - Automation Editor - %1 - Editor automazione - %1 - - - - Model is already connected to this clip. - Modello già collegato a questo schema. - - - - AutomationClip - - - Drag a control while pressing <%1> - Trascina un controllo tenendo premuto <%1> - - - - AutomationClipView - - - Open in Automation editor - Apri nell'editor Automazione - - - - Clear - Libera area - - - - Reset name - Reimposta nome - - - - Change name - Rinomina - - - - Set/clear record - Imposta/cancella registrazione - - - - Flip Vertically (Visible) - Capovolgi verticalmente (visibile) - - - - Flip Horizontally (Visible) - Capovolgi orizzontalmente (visibile) - - - - %1 Connections - %1 connessioni - - - - Disconnect "%1" - Disconnetti "%1" - - - - Model is already connected to this clip. - Modello già collegato a questo schema. - - - - AutomationTrack - - - Automation track - Traccia automazione - - - - PatternEditor - - - Beat+Bassline Editor - Editor Beat+Bassline - - - - Play/pause current beat/bassline (Space) - Riproduce/sospende il beat/bassline corrente (Spazio) - - - - Stop playback of current beat/bassline (Space) - Arresta il beat/bassline corrente (Spazio) - - - - Beat selector - Selettore Beat - - - - Track and step actions - Attività tracce e passaggi - - - - Add beat/bassline - Aggiungi beat/bassline - - - - Clone beat/bassline clip - - - - - Add sample-track - Aggiungi traccia campione - - - - Add automation-track - Aggiungi una traccia automazione - - - - Remove steps - Rimuovi passaggi - - - - Add steps - Aggiungi passaggi - - - - Clone Steps - Clona passaggi - - - - PatternClipView - - - Open in Beat+Bassline-Editor - Apri nell'editor Beat+Bassline - - - - Reset name - Reimposta nome - - - - Change name - Rinomina - - - - PatternTrack - - - Beat/Bassline %1 - Beat/Bassline %1 - - - - Clone of %1 - Clone di %1 - - - - BassBoosterControlDialog - - - FREQ - FREQ - - - - Frequency: - Frequenza: - - - - GAIN - GUAD - - - - Gain: - Guadagno: - - - - RATIO - RAPP - - - - Ratio: - Rapporto: - - - - BassBoosterControls - - - Frequency - Frequenza - - - - Gain - Guadagno - - - - Ratio - Rapporto dinamico - - - - BitcrushControlDialog - - - IN - IN - - - - OUT - OUT - - - - - GAIN - GUAD - - - - Input gain: - Guadagno in ingresso: - - - - NOISE - RUMORE - - - - Input noise: - Rumore in ingresso: - - - - Output gain: - Guadagno in uscita: - - - - CLIP - CLIP - - - - Output clip: - Clip in uscita:: - - - - Rate enabled - Valore abilitato - - - - Enable sample-rate crushing - Abilità riduzione frequenza di campionamento - - - - Depth enabled - Risoluzione abilitata - - - - Enable bit-depth crushing - Abilità riduzione bit di quantizzazione - - - - FREQ - FREQ - - - - Sample rate: - Frequenza di campionamento: - - - - STEREO - STEREO - - - - Stereo difference: - Differenza stereo: - - - - QUANT - QUANT - - - - Levels: - Livelli di quantizzazione: - - - - BitcrushControls - - - Input gain - Guadagno in ingresso - - - - Input noise - Rumore in ingresso - - - - Output gain - Guadagno in uscita - - - - Output clip - Clip in uscita - - - - Sample rate - Frequenza di campionamento - - - - Stereo difference - Differenza stereo - - - - Levels - Livelli - - - - Rate enabled - Valore abilitato - - - - Depth enabled - Risoluzione abilitata + + [System Default] + [Sistema predefinito] @@ -899,124 +132,124 @@ If you're interested in translating LMMS in another language or want to imp Licenza estesa qui - + Artwork Materiale grafico - + Using KDE Oxygen icon set, designed by Oxygen Team. Uso del set di icone di KDE Oxygen, progettato da Oxygen Team. - + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. Contiene alcune manopole, sfondi e altri piccoli disegni dei progetti Calf Studio Gear, OpenAV e OpenOctave. - + VST is a trademark of Steinberg Media Technologies GmbH. VST è un marchio registrato di Steinberg Media Technologies GmbH. - + Special thanks to António Saraiva for a few extra icons and artwork! Un ringraziamento speciale ad Antonio Saraiva per qualche icona e lavori grafici in più! - + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. Il logo LV2 è stato disegnato da Thorsten Wilms, basato su un concetto di Peter Shorthose. - + MIDI Keyboard designed by Thorsten Wilms. Tastiera MIDI disegnata da Thorsten Wilms. - + Carla, Carla-Control and Patchbay icons designed by DoosC. Icone Carla, Carla-Control e Patchbay disegnate da DoosC. - + Features Caratteristiche - + AU/AudioUnit: AU/AudioUnit: - + LADSPA: LADSPA: - - - - - - - - + + + + + + + + TextLabel TextLabel - + VST2: VST2: - + DSSI: DSSI: - + LV2: LV2: - + VST3: VST3: - + OSC OSC - + Host URLs: URLs host: - + Valid commands: Comandi validi: - + valid osc commands here comandi osc validi qui - + Example: Esempio: - + License Licenza - + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -1301,51 +534,51 @@ POSSIBILITY OF SUCH DAMAGES. - + OSC Bridge Version Versione ponte OSC - + Plugin Version Versione plugin - + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> <br>Versione %1<br>Carla è un plugin audio host completo%2.<br><br>Copyright (C) 2011-2019 falkTX<br> - - + + (Engine not running) (Motore non in funzione) - + Everything! (Including LRDF) Tutto! (Incluso LRDF) - + Everything! (Including CustomData/Chunks) Tutto! (Compresi dati personalizzati/blocchi) - + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> Circa 110&#37; completo (usando estensioni personalizzate)<br/>Funzionalità/estensioni implementate:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - - - + + + Using Juce host Tramite l'host Juce - + About 85% complete (missing vst bank/presets and some minor stuff) Completo a circa 85% (banco vst mancante/preselezioni e alcune cose minori) @@ -1378,563 +611,600 @@ POSSIBILITY OF SUCH DAMAGES. Caricamento... - + + Save + Salva + + + + Clear + Rimuovi + + + + Ctrl+L + Ctrl+L + + + + Auto-Scroll + Scorrimento automatico + + + Buffer Size: Dimensione buffer: - + Sample Rate: Frequenza campionamento: - + ? Xruns ? Xruns - + DSP Load: %p% Carico DSP: %p% - + &File &File - + &Engine &Motore - + &Plugin &Plugin - + Macros (all plugins) Macro (tutti i plugin) - + &Canvas - + &Canvas - + Zoom Ingrandimento - + &Settings &Impostazioni - + &Help &Aiuto - - toolBar - Barra strumenti + + Tool Bar + Barra degli strumenti - + Disk Disco - - + + Home Principale - + Transport Trasporto - + Playback Controls Controlli riproduzione - + Time Information Informazioni tempo - + Frame: Periodo - + 000'000'000 000'000'000 - + Time: Tempo: - + 00:00:00 00:00:00 - + BBT: BBT: - + 000|00|0000 000|00|0000 - + Settings Impostazioni - + BPM BPM - + Use JACK Transport Usa trasporto JACK - + Use Ableton Link Usa collegamento Ableton - + &New &Nuovo - + Ctrl+N Ctrl+N - + &Open... &Apri... - - + + Open... Apri... - + Ctrl+O Ctrl+O - + &Save &Salva - + Ctrl+S Ctrl+S - + Save &As... Salva &come... - - + + Save As... Salva come... - + Ctrl+Shift+S Ctrl+Shift+S - + &Quit &Esci - + Ctrl+Q Ctrl+Q - + &Start &Partenza - + F5 F5 - + St&op Arrest&a - + F6 F6 - + &Add Plugin... &Aggiungi plug-in... - + Ctrl+A Ctrl+A - + &Remove All &Rimuovi tutto - + Enable Abilita - + Disable Disabilita - + 0% Wet (Bypass) 0% bagnato (bypass) - + 100% Wet 100% bagnato - + 0% Volume (Mute) 0% Volume (silenziato) - + 100% Volume 100% Volume - + Center Balance Bilanciamento al centro - + &Play &Riproduci - + Ctrl+Shift+P Ctrl+Shift+P - + &Stop &Arresta - + Ctrl+Shift+X Ctrl+Shift+X - + &Backwards &Indietro - + Ctrl+Shift+B Ctrl+Shift+B - + &Forwards &Avanti - + Ctrl+Shift+F Ctrl+Shift+F - + &Arrange &Organizza - + Ctrl+G Ctrl+G - - + + &Refresh &Aggiorna - + Ctrl+R Ctrl+R - + Save &Image... Salva &immagine... - + Auto-Fit Adatta-automatico - + Zoom In Ingrandisci - + Ctrl++ Ctrl++ - + Zoom Out Riduci - + Ctrl+- Ctrl+- - + Zoom 100% Ingrandimento 100% - + Ctrl+1 Ctrl+1 - + Show &Toolbar Mostra &barra strumenti - + &Configure Carla &Configura Carla - + &About &A riguardo - + About &JUCE Riguardo a &JUCE - + About &Qt Riguardo a &Qt - + Show Canvas &Meters - + Mostra Canvas &Misuratori - + Show Canvas &Keyboard - + Mostra Canvas &Tastiera - + Show Internal Mostra interno - + Show External Mostra esterno - + Show Time Panel Mostra pannello temporale - + Show &Side Panel Mostra &pannello laterale - + + Ctrl+P + Ctrl+P + + + &Connect... &Connetti... - + Compact Slots Comprimi alloggiamenti - + Expand Slots Espandi alloggiamenti - + Perform secret 1 Esegui segreto 1 - + Perform secret 2 Esegui segreto 2 - + Perform secret 3 Esegui segreto 3 - + Perform secret 4 Esegui segreto 4 - + Perform secret 5 Esegui segreto 5 - + Add &JACK Application... Aggiungi applicazione &JACK... - + &Configure driver... &Configura driver... - + Panic Panico - + Open custom driver panel... Apri pannello driver personalizzato... + + + Save Image... (2x zoom) + Salva immagine... (2x zoom) + + + + Save Image... (4x zoom) + Salva immagine... (4x zoom) + + + + Copy as Image to Clipboard + Copia come immagine su Appunti + + + + Ctrl+Shift+C + Ctrl+Shift+C + CarlaHostWindow - + Export as... Esporta come... - - - - + + + + Error Errore - + Failed to load project Impossibile caricare il progetto - + Failed to save project Impossibile salvare il progetto - + Quit Esci - + Are you sure you want to quit Carla? Sei sicuro di voler uscire da Carla? - + Could not connect to Audio backend '%1', possible reasons: %2 Impossibile connettersi al back-end Audio '%1', possibili motivi: 2% - + Could not connect to Audio backend '%1' Impossibile connettersi al backend audio '%1' - + Warning Avviso - + There are still some plugins loaded, you need to remove them to stop the engine. Do you want to do this now? Ci sono ancora alcuni plugin caricati, è necessario rimuoverli per arrestare il motore. Vuoi farlo adesso? - - CarlaInstrumentView - - - Show GUI - Mostra GUI - - CarlaSettingsW @@ -1950,7 +1220,7 @@ Vuoi farlo adesso? canvas - + canvas @@ -1989,19 +1259,19 @@ Vuoi farlo adesso? - + Main Principale - + Canvas - + Canvas - + Engine Motore @@ -2022,1488 +1292,590 @@ Vuoi farlo adesso? - + Experimental Sperimentale - + <b>Main</b> <b>Principale</b> - + Paths Percorsi - + Default project folder: Cartella progetto predefinita: - + Interface Interfaccia - + + Use "Classic" as default rack skin + + + + Interface refresh interval: Intervallo di aggiornamento interfaccia: - - + + ms ms - + Show console output in Logs tab (needs engine restart) Mostra l'uscita della console nella scheda Log (necessita di riavvio del motore) - + Show a confirmation dialog before quitting Visualizza messaggio di conferma prima di uscire - - + + Theme Tema - + Use Carla "PRO" theme (needs restart) Usa il tema "PRO" di Carla (necessita di riavvio) - + Color scheme: Combinazione colori: - + Black Nero - + System Sistema - + Enable experimental features Abilita funzionalità sperimentali - + <b>Canvas</b> - + <b>Canvas</b> - + Bezier Lines Linee di Bezier - + Theme: Tema: - + Size: Grandezza: - + 775x600 775x600 - + 1550x1200 1550x1200 - + 3100x2400 3100x2400 - + 4650x3600 4650x3600 - + 6200x4800 6200x4800 - + + 12400x9600 + 12400x9600 + + + Options Opzioni - + Auto-hide groups with no ports Nascondi automaticamente i gruppi senza porte - + Auto-select items on hover Selezione automatica elementi al passaggio del mouse - + Basic eye-candy (group shadows) Attraente-base (ombre di gruppo) - + Render Hints Suggerimenti rendering - + Anti-Aliasing - Anti aliasing + Anti-Aliasing - + Full canvas repaints (slower, but prevents drawing issues) - + <b>Engine</b> <b>Motore</b> - - + + Core Nucleo - + Single Client Client singolo - + Multiple Clients Clients multipli - - + + Continuous Rack Rack continuo - - + + Patchbay Patchbay - + Audio driver: Driver audio: - + Process mode: Modalità processo: - - - - + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog Numero massimo di parametri da consentire nella finestra di dialogo integrata "Modifica" - + Max Parameters: Parametri massimi: - + ... ... - + Reset Xrun counter after project load Ripristina contatore Xrun dopo il caricamento del progetto - + Plugin UIs UIs plugin - - + + How much time to wait for OSC GUIs to ping back the host Tempo di attesa che le GUI OSC eseguano il ping dell'host - + UI Bridge Timeout: Sospensione bridge UI: - + Use OSC-GUI bridges when possible, this way separating the UI from DSP code Usare i bridge OSC-GUI quando possibile, questo modo separa l'interfaccia utente dal codice DSP - + Use UI bridges instead of direct handling when possible Utilizzare le UI bridge anziché la gestione diretta, quando possibile - + Make plugin UIs always-on-top Rendi le UIs dei plugin sempre in primo piano - + Make plugin UIs appear on top of Carla (needs restart) Fai comparire le UIs del plugin sopra Carla (necessita di riavvio) - + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS NOTA: le UI del plugin-bridge non possono essere gestite da Carla su macOS - - + + Restart the engine to load the new settings Riavvia il motore per caricare le nuove impostazioni - + <b>OSC</b> <b>OSC</b> - + Enable OSC Abilita OSC - + Enable TCP port Abilita porta TCP - - + + Use specific port: Usa porta specifica: - + Overridden by CARLA_OSC_TCP_PORT env var Sostituito da CARLA_OSC_TCP_PORT env var - - + + Use randomly assigned port Usa porta assegnata in modo casuale - + Enable UDP port Abilita porta UDP - + Overridden by CARLA_OSC_UDP_PORT env var Sostituito da CARLA_OSC_UDP_PORT env var - + DSSI UIs require OSC UDP port enabled Le UI DSSI richiedono la porta UDP OSC abilitata - + <b>File Paths</b> <b>Percorsi file</b> - + Audio Audio - + MIDI MIDI - + Used for the "audiofile" plugin Utilizzato per il plugin "fileaudio" - + Used for the "midifile" plugin Utilizzato per il plugin "midifile" - - + + Add... Aggiungi... - - + + Remove Rimuovi - - + + Change... Cambia... - + <b>Plugin Paths</b> <b>Percorsi plugin</b> - + LADSPA LADSPA - + DSSI DSSI - + LV2 LV2 - + VST2 VST2 - + VST3 VST3 - + SF2/3 SF2/3 - + SFZ SFZ - + + JSFX + JSFX + + + + CLAP + CLAP + + + Restart Carla to find new plugins Riavvia Carla per trovare nuovi plugin - + <b>Wine</b> <b>Wine</b> - + Executable Eseguibile - + Path to 'wine' binary: Percorso per binario 'wine': - + Prefix Prefisso - + Auto-detect Wine prefix based on plugin filename Rilevamento automatico del prefisso Wine in base al nome del file del plug-in - + Fallback: Alternativa: - + Note: WINEPREFIX env var is preferred over this fallback Nota: WINEPREFIX env var è preferito rispetto a questa alternativa - + Realtime Priority Priorità in tempo reale - + Base priority: Priorità di base: - + WineServer priority: Priorità WineServer: - + These options are not available for Carla as plugin Queste opzioni non sono disponibili per Carla come plugin - + <b>Experimental</b> <b>Sperimentale</b> - + Experimental options! Likely to be unstable! Opzioni sperimentali! Probabilmente instabile! - + Enable plugin bridges Abilita i bridges plugin - + Enable Wine bridges Abilita i bridges Wine - + Enable jack applications Abilita applicazioni jack - + Export single plugins to LV2 Esporta plugins singoli in LV2 - + + Use system/desktop-theme icons (needs restart) + + + + Load Carla backend in global namespace (NOT RECOMMENDED) Carica il backend di Carla nello spazio globale dei nomi (NON CONSIGLIATO) - + Fancy eye-candy (fade-in/out groups, glow connections) Attraente (gruppi di dissolvenza in apertura/chiusura, connessioni luminose) - + Use OpenGL for rendering (needs restart) Usa OpenGL per il rendering (necessita di riavvio) - + High Quality Anti-Aliasing (OpenGL only) Antialiasing di alta qualità (solo OpenGL) - + Render Ardour-style "Inline Displays" Renderizza in stile-Ardour : "Visualizza in linea" - + Force mono plugins as stereo by running 2 instances at the same time. This mode is not available for VST plugins. Forza i plugins mono come stereo eseguendo 2 istanze contemporaneamente. Questa modalità non è disponibile per i plugins VST. - + Force mono plugins as stereo Forza i plugins mono come stereo - - Prevent plugins from doing bad stuff (needs restart) - Impedisci ai plugins di causare errori (necessita di riavvio) + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + - - Whenever possible, run the plugins in bridge mode. - Quando possibile, esegui i plugins in modalità bridge. + + Prevent unsafe calls from plugins (needs restart) + Evita chiamate non sicure dai plugin (richiede il riavvio) - + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + Run plugins in bridge mode when possible Esegui i plugin in modalità bridge quando possibile - - - - + + + + Add Path Aggiungi percorso - - CompressorControlDialog - - - Threshold: - - - - - Volume at which the compression begins to take place - - - - - Ratio: - Rapporto: - - - - How far the compressor must turn the volume down after crossing the threshold - - - - - Attack: - Attacco: - - - - Speed at which the compressor starts to compress the audio - - - - - Release: - Rilascio: - - - - Speed at which the compressor ceases to compress the audio - - - - - Knee: - - - - - Smooth out the gain reduction curve around the threshold - - - - - Range: - - - - - Maximum gain reduction - - - - - Lookahead Length: - - - - - How long the compressor has to react to the sidechain signal ahead of time - - - - - Hold: - Mantenimento: - - - - Delay between attack and release stages - - - - - RMS Size: - - - - - Size of the RMS buffer - - - - - Input Balance: - - - - - Bias the input audio to the left/right or mid/side - - - - - Output Balance: - - - - - Bias the output audio to the left/right or mid/side - - - - - Stereo Balance: - - - - - Bias the sidechain signal to the left/right or mid/side - - - - - Stereo Link Blend: - - - - - Blend between unlinked/maximum/average/minimum stereo linking modes - - - - - Tilt Gain: - - - - - Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. - - - - - Tilt Frequency: - - - - - Center frequency of sidechain tilt filter - - - - - Mix: - - - - - Balance between wet and dry signals - - - - - Auto Attack: - - - - - Automatically control attack value depending on crest factor - - - - - Auto Release: - - - - - Automatically control release value depending on crest factor - - - - - Output gain - Guadagno in uscita - - - - - Gain - Guadagno - - - - Output volume - - - - - Input gain - Guadagno in ingresso - - - - Input volume - - - - - Root Mean Square - - - - - Use RMS of the input - - - - - Peak - - - - - Use absolute value of the input - - - - - Left/Right - - - - - Compress left and right audio - - - - - Mid/Side - - - - - Compress mid and side audio - - - - - Compressor - - - - - Compress the audio - - - - - Limiter - - - - - Set Ratio to infinity (is not guaranteed to limit audio volume) - - - - - Unlinked - - - - - Compress each channel separately - - - - - Maximum - - - - - Compress based on the loudest channel - - - - - Average - - - - - Compress based on the averaged channel volume - - - - - Minimum - - - - - Compress based on the quietest channel - - - - - Blend - - - - - Blend between stereo linking modes - - - - - Auto Makeup Gain - - - - - Automatically change makeup gain depending on threshold, knee, and ratio settings - - - - - - Soft Clip - - - - - Play the delta signal - - - - - Use the compressor's output as the sidechain input - - - - - Lookahead Enabled - - - - - Enable Lookahead, which introduces 20 milliseconds of latency - - - - - CompressorControls - - - Threshold - - - - - Ratio - Rapporto dinamico - - - - Attack - Attacco - - - - Release - Rilascio - - - - Knee - - - - - Hold - Mantenimento - - - - Range - - - - - RMS Size - - - - - Mid/Side - - - - - Peak Mode - - - - - Lookahead Length - - - - - Input Balance - - - - - Output Balance - - - - - Limiter - - - - - Output Gain - Guadagno output - - - - Input Gain - Guadagno input - - - - Blend - - - - - Stereo Balance - - - - - Auto Makeup Gain - - - - - Audition - - - - - Feedback - Feedback - - - - Auto Attack - - - - - Auto Release - - - - - Lookahead - - - - - Tilt - - - - - Tilt Frequency - - - - - Stereo Link - - - - - Mix - Mix - - - - Controller - - - Controller %1 - Controller %1 - - - - ControllerConnectionDialog - - - Connection Settings - Impostazioni connessione - - - - MIDI CONTROLLER - CONTROLLER MIDI - - - - Input channel - Canale di ingresso - - - - CHANNEL - CANALE - - - - Input controller - Controller di ingresso - - - - CONTROLLER - CONTROLLER - - - - - Auto Detect - Rilevamento automatico - - - - MIDI-devices to receive MIDI-events from - Le periferiche MIDI ricevono eventi MIDI da - - - - USER CONTROLLER - CONTROLLER PERSONALIZZATO - - - - MAPPING FUNCTION - FUNZIONE DI MAPPATURA - - - - OK - OK - - - - Cancel - Annulla - - - - LMMS - LMMS - - - - Cycle Detected. - Ciclo rilevato. - - - - ControllerRackView - - - Controller Rack - Rack di Controller - - - - Add - Aggiungi - - - - Confirm Delete - Conferma eliminazione - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Confermi l'eliminazione? Ci sono collegamenti associati a questo controller: non sarà possibile ripristinarli. - - - - ControllerView - - - Controls - Controlli - - - - Rename controller - Rinomina controller - - - - Enter the new name for this controller - Inserire nuovo nome per questo controller - - - - LFO - LFO - - - - &Remove this controller - &Rimuovi questo controller - - - - Re&name this controller - Ri&nomina questo controller - - - - CrossoverEQControlDialog - - - Band 1/2 crossover: - Punto di separazione 1/2: - - - - Band 2/3 crossover: - Punto di separazione 2/3: - - - - Band 3/4 crossover: - Punto di separazione 3/4: - - - - Band 1 gain - Guadagno banda 1 - - - - Band 1 gain: - Guadagno banda 1: - - - - Band 2 gain - Guadagno banda 2 - - - - Band 2 gain: - Guadagno banda 2: - - - - Band 3 gain - Guadagno banda 3 - - - - Band 3 gain: - Guadagno banda 3: - - - - Band 4 gain - Guadagno banda 4 - - - - Band 4 gain: - Guadagno banda 4: - - - - Band 1 mute - Muto banda 1 - - - - Mute band 1 - Muto banda 1 - - - - Band 2 mute - Muto banda 2 - - - - Mute band 2 - Muto banda 2 - - - - Band 3 mute - Muto banda 3 - - - - Mute band 3 - Muto banda 3 - - - - Band 4 mute - Muto banda 4 - - - - Mute band 4 - Muto banda 4 - - - - DelayControls - - - Delay samples - Campioni di delay - - - - Feedback - Feedback - - - - LFO frequency - Frequenza LFO - - - - LFO amount - Ampiezza LFO - - - - Output gain - Guadagno in uscita - - - - DelayControlsDialog - - - DELAY - TEMPO - - - - Delay time - Tempo di ritardo - - - - FDBK - FDBK - - - - Feedback amount - Quantità di feedback - - - - RATE - TEMPO - - - - LFO frequency - Frequenza LFO - - - - AMNT - Q.TÀ - - - - LFO amount - Ampiezza LFO - - - - Out gain - Guadagno in uscita - - - - Gain - Guadagno - - Dialog - - - Add JACK Application - Aggiungi applicazione JACK - - - - Note: Features not implemented yet are greyed out - Nota: le funzionalità non ancora implementate sono disattivate - - - - Application - Applicazione - - - - Name: - Nome: - - - - Application: - Applicazione: - - - - From template - Dal modello - - - - Custom - Personalizzato - - - - Template: - Modello: - - - - Command: - Comando: - - - - Setup - Configurazione - - - - Session Manager: - Gestore sessioni: - - - - None - Nessuna - - - - Audio inputs: - Ingressi audio: - - - - MIDI inputs: - Ingressi MIDI: - - - - Audio outputs: - Uscite audio: - - - - MIDI outputs: - Uscite MIDI: - - - - Take control of main application window - Prendi il controllo della finestra principale dell'applicazione - - - - Workarounds - Soluzioni alternative - - - - Wait for external application start (Advanced, for Debug only) - Attendi l'avvio di un'applicazione esterna (avanzato, solo per debug) - - - - Capture only the first X11 Window - Cattura solo la prima finestra X11 - - - - Use previous client output buffer as input for the next client - Usa il buffer di uscita del client precedente come ingresso per il client successivo - - - - Simulate 16 JACK MIDI outputs, with MIDI channel as port index - Simula 16 uscite MIDI JACK, con canale MIDI come indice di porta - - - - Error here - Errore qui - Carla Control - Connect @@ -3529,28 +1901,6 @@ Questa modalità non è disponibile per i plugins VST. TCP Port: Porta TCP: - - - Reported host - Host segnalato - - - - Automatic - Automatico - - - - Custom: - Personalizzato: - - - - In some networks (like USB connections), the remote system cannot reach the local network. You can specify here which hostname or IP to make the remote Carla connect to. -If you are unsure, leave it as 'Automatic'. - In alcune reti (come le connessioni USB), il sistema remoto non può raggiungere la rete locale. È possibile specificare qui a quale nome host o IP a cui connettere Carla in remoto. -Se non sei sicuro, lascialo su "Automatico". - Set value @@ -3605,948 +1955,6 @@ Se non sei sicuro, lascialo su "Automatico". Riavvia il motore per caricare le nuove impostazioni - - DualFilterControlDialog - - - - FREQ - FREQ - - - - - Cutoff frequency - Frequenza di taglio - - - - - RESO - RISO - - - - - Resonance - Risonanza - - - - - GAIN - GUAD - - - - - Gain - Guadagno - - - - MIX - MIX - - - - Mix - Mix - - - - Filter 1 enabled - Filtro 1 abilitato - - - - Filter 2 enabled - Filtro 2 abilitato - - - - Enable/disable filter 1 - Abilita/disabilita filtro 1 - - - - Enable/disable filter 2 - Abilita/disabilita filtro 2 - - - - DualFilterControls - - - Filter 1 enabled - Filtro 1 abilitato - - - - Filter 1 type - Filtro di tipo 1 - - - - Cutoff frequency 1 - Frequenza di taglio 1 - - - - Q/Resonance 1 - Risonanza Filtro 1 - - - - Gain 1 - Guadagno Filtro 1 - - - - Mix - Mix - - - - Filter 2 enabled - Abilita Filtro 2 - - - - Filter 2 type - Tipo del Filtro 2 - - - - Cutoff frequency 2 - Frequenza di taglio 2 - - - - Q/Resonance 2 - Risonanza Filtro 2 - - - - Gain 2 - Guadagno Filtro 2 - - - - - Low-pass - Passa-basso - - - - - Hi-pass - Passa-alto - - - - - Band-pass csg - Passa-banda csg - - - - - Band-pass czpg - Passa-banda czpg - - - - - Notch - Notch - - - - - All-pass - Passa-tutto - - - - - Moog - Moog - - - - - 2x Low-pass - Passa-basso 2x - - - - - RC Low-pass 12 dB/oct - Passa-basso RC 12 dB/ott - - - - - RC Band-pass 12 dB/oct - Passa-banda RC 12 dB/ott - - - - - RC High-pass 12 dB/oct - Passa-alto RC 12 dB/ott - - - - - RC Low-pass 24 dB/oct - Passa-basso RC 24 dB/ott - - - - - RC Band-pass 24 dB/oct - Passa-banda RC 24 dB/ott - - - - - RC High-pass 24 dB/oct - Passa-alto RC 24 dB/ott - - - - - Vocal Formant - Formante Vocale - - - - - 2x Moog - 2x Moog - - - - - SV Low-pass - Passa-basso SV - - - - - SV Band-pass - Passa-banda SV - - - - - SV High-pass - Passa-alto SV - - - - - SV Notch - Notch SV - - - - - Fast Formant - Formante veloce - - - - - Tripole - Tre poli - - - - Editor - - - Transport controls - Controlli trasporto - - - - Play (Space) - Play (Spazio) - - - - Stop (Space) - Fermo (Spazio) - - - - Record - Registra - - - - Record while playing - Registra in play - - - - Toggle Step Recording - Attiva/disattiva registrazione a passi - - - - Effect - - - Effect enabled - Effetto attivo - - - - Wet/Dry mix - Bilanciamento Wet/Dry - - - - Gate - Gate - - - - Decay - Decadimento - - - - EffectChain - - - Effects enabled - Effetti abilitati - - - - EffectRackView - - - EFFECTS CHAIN - CATENA DI EFFETTI - - - - Add effect - Aggiungi effetto - - - - EffectSelectDialog - - - Add effect - Aggiungi effetto - - - - - Name - Nome - - - - Type - Tipo - - - - Description - Descrizione - - - - Author - Autore - - - - EffectView - - - On/Off - On/Off - - - - W/D - W/D - - - - Wet Level: - Livello del segnale modificato: - - - - DECAY - DECAY - - - - Time: - Tempo: - - - - GATE - GATE - - - - Gate: - Gate: - - - - Controls - Controlli - - - - Move &up - Sposta verso l'&alto - - - - Move &down - Sposta verso il &basso - - - - &Remove this plugin - &Elimina questo plugin - - - - EnvelopeAndLfoParameters - - - Env pre-delay - Pre-ritardo inv - - - - Env attack - Attacco inv - - - - Env hold - Mantenimento inv - - - - Env decay - Decadimento inv - - - - Env sustain - Sostegno inv - - - - Env release - Rilascio inv - - - - Env mod amount - Quantità mod inv - - - - LFO pre-delay - Ritardo iniziale LFO - - - - LFO attack - Attacco LFO - - - - LFO frequency - Frequenza LFO - - - - LFO mod amount - Quantità mod LFO - - - - LFO wave shape - Forma d'onda LFO - - - - LFO frequency x 100 - Frequenza LFO x 100 - - - - Modulate env amount - Modula quantità inv - - - - EnvelopeAndLfoView - - - - DEL - RIT - - - - - Pre-delay: - Ritardo iniziale: - - - - - ATT - ATT - - - - - Attack: - Attacco: - - - - HOLD - MANT - - - - Hold: - Mantenimento: - - - - DEC - DEC - - - - Decay: - Decadimento: - - - - SUST - SOST - - - - Sustain: - Sostegno: - - - - REL - RIL - - - - Release: - Rilascio: - - - - - AMT - Q.TÀ - - - - - Modulation amount: - Quantità di modulazione: - - - - SPD - VEL - - - - Frequency: - Frequenza: - - - - FREQ x 100 - FREQ x 100 - - - - Multiply LFO frequency by 100 - moltiplica frequenza dell'LFO per 100 - - - - MODULATE ENV AMOUNT - MODULA QUANTITA' INVILUPPO - - - - Control envelope amount by this LFO - controlla la quantità di inviluppo con questo LFO - - - - ms/LFO: - ms/LFO: - - - - Hint - Suggerimento - - - - Drag and drop a sample into this window. - Trascina e rilascia un campione in questa finestra. - - - - EqControls - - - Input gain - Guadagno in input - - - - Output gain - Guadagno in output - - - - Low-shelf gain - Guadagno basse frequenze - - - - Peak 1 gain - Guadagno picco 1 - - - - Peak 2 gain - Guadagno picco 2 - - - - Peak 3 gain - Guadagno Picco 3 - - - - Peak 4 gain - Guadagno picco 4 - - - - High-shelf gain - Guadagno alte frequenze - - - - HP res - Ris Passa Alto - - - - Low-shelf res - Ris basse frequenze - - - - Peak 1 BW - LB Picco 1 - - - - Peak 2 BW - LB Picco 2 - - - - Peak 3 BW - LB Picco 3 - - - - Peak 4 BW - LB Picco 4 - - - - High-shelf res - Ris alte frequenze - - - - LP res - Ris Passa Basso - - - - HP freq - Freq Passa Alto - - - - Low-shelf freq - Freq basse frequenze - - - - Peak 1 freq - Frequenza picco 1 - - - - Peak 2 freq - Frequenza picco 2 - - - - Peak 3 freq - Frequenza picco 3 - - - - Peak 4 freq - Frequenza picco 4 - - - - High-shelf freq - Freq alte frequenze - - - - LP freq - Freq Passa Basso - - - - HP active - Attiva Passa Alto - - - - Low-shelf active - Attiva basse frequenze - - - - Peak 1 active - Attiva picco 1 - - - - Peak 2 active - Attiva picco 2 - - - - Peak 3 active - Attiva picco 3 - - - - Peak 4 active - Attiva picco 4 - - - - High-shelf active - Attiva alte frequenze - - - - LP active - Attiva Passa Basso - - - - LP 12 - Passa Basso 12 dB - - - - LP 24 - Passa Basso 24 dB - - - - LP 48 - Passa Basso 48 dB - - - - HP 12 - Passa Alto 12 dB - - - - HP 24 - Passa Alto 24 dB - - - - HP 48 - Passa Alto 48 dB - - - - Low-pass type - Tipo di passa basso - - - - High-pass type - Tipo di passa alto - - - - Analyse IN - Analizza Input - - - - Analyse OUT - Analizza Output - - - - EqControlsDialog - - - HP - PA - - - - Low-shelf - Basse frequenze (Low-shelf) - - - - Peak 1 - Picco 1 - - - - Peak 2 - Picco 2 - - - - Peak 3 - Picco 3 - - - - Peak 4 - Picco 4 - - - - High-shelf - Alte frequenze (High-shelf) - - - - LP - PB - - - - Input gain - Guadagno in input - - - - - - Gain - Guadagno - - - - Output gain - Guadagno in output - - - - Bandwidth: - Larghezza di banda: - - - - Octave - Ottave - - - - Resonance : - Risonanza: - - - - Frequency: - Frequenza: - - - - LP group - Gruppo PB - - - - HP group - Gruppo PA - - - - EqHandle - - - Reso: - Risonanza: - - - - BW: - Largh: - - - - - Freq: - Freq: - - ExportProjectDialog @@ -4730,3082 +2138,664 @@ Se non sei sicuro, lascialo su "Automatico". Sinc migliore (lento) - - Oversampling: - Sovracampionamento: - - - - 1x (None) - 1x (Nessuna) - - - - 2x - 2x - - - - 4x - 4x - - - - 8x - 8x - - - + Start Inizia - + Cancel Annulla - - - Could not open file - Non è stato possibile aprire il file - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Impossibile scrivere sul file %1. -Si prega di controllare i permessi di scrittura sul file e la cartella che lo contiene, e poi riprovare! - - - - Export project to %1 - Esporta il progetto in %1 - - - - ( Fastest - biggest ) - ( Più veloce - più grande ) - - - - ( Slowest - smallest ) - ( Più lento - più piccolo ) - - - - Error - Errore - - - - Error while determining file-encoder device. Please try to choose a different output format. - Si è verificato un errore nel tentativo di determinare il dispositivo per la codifica del file. Si prega di selezionare un formato differente. - - - - Rendering: %1% - Renderizzazione: %1% - - - - Fader - - - Set value - Imposta valore - - - - Please enter a new value between %1 and %2: - Inserire un valore compreso tra %1 e %2: - - - - FileBrowser - - - User content - - - - - Factory content - - - - - Browser - Browser - - - - Search - Cerca - - - - Refresh list - Aggiorna lista - - - - FileBrowserTreeWidget - - - Send to active instrument-track - Sostituisci questo strumento alla traccia attiva - - - - Open containing folder - Apri cartella contenente - - - - Song Editor - Mostra/nascondi Editor brani - - - - BB Editor - - - - - Send to new AudioFileProcessor instance - - - - - Send to new instrument track - - - - - (%2Enter) - - - - - Send to new sample track (Shift + Enter) - - - - - Loading sample - Caricamento campione - - - - Please wait, loading sample for preview... - Attendere, stiamo caricando il file per l'anteprima... - - - - Error - Errore - - - - %1 does not appear to be a valid %2 file - %1 non sembra essere un file %2 valido - - - - --- Factory files --- - --- File di fabbrica --- - - - - FlangerControls - - - Delay samples - Campioni di delay - - - - LFO frequency - Frequenza LFO - - - - Seconds - Secondi - - - - Stereo phase - - - - - Regen - Regen - - - - Noise - Rumore - - - - Invert - Inverti - - - - FlangerControlsDialog - - - DELAY - RIT. - - - - Delay time: - Tempo di ritardo: - - - - RATE - FREQ. - - - - Period: - Periodo: - - - - AMNT - Q.TÀ - - - - Amount: - Quantità: - - - - PHASE - - - - - Phase: - - - - - FDBK - FDBK - - - - Feedback amount: - Quantità di feedback: - - - - NOISE - RUMORE - - - - White noise amount: - Quantità di rumore bianco: - - - - Invert - INVERTI - - - - FreeBoyInstrument - - - Sweep time - Tempo di sweep - - - - Sweep direction - Direzione sweep - - - - Sweep rate shift amount - Durata sweep - - - - - Wave pattern duty cycle - Pattern del duty cycle - - - - Channel 1 volume - Volume del canale 1 - - - - - - Volume sweep direction - Direzione sweep del volume - - - - - - Length of each step in sweep - Lunghezza di ogni passo nello sweep - - - - Channel 2 volume - Volume del canale 2 - - - - Channel 3 volume - Volume del canale 3 - - - - Channel 4 volume - Volume del canale 4 - - - - Shift Register width - Ampiezza spostamento del registro - - - - Right output level - Volume uscita destra - - - - Left output level - Volume uscita sinistra - - - - Channel 1 to SO2 (Left) - Canale 1 a SO2 (sinistra) - - - - Channel 2 to SO2 (Left) - Canale 2 a SO2 (sinistra) - - - - Channel 3 to SO2 (Left) - Canale 3 a SO2 (sinistra) - - - - Channel 4 to SO2 (Left) - Canale 4 a SO2 (sinistra) - - - - Channel 1 to SO1 (Right) - Canale 1 a SO1 (destra) - - - - Channel 2 to SO1 (Right) - Canale 2 a SO1 (destra) - - - - Channel 3 to SO1 (Right) - Canale 3 a SO1 (destra) - - - - Channel 4 to SO1 (Right) - Canale 4 a SO1 (destra) - - - - Treble - Alti - - - - Bass - Bassi - - - - FreeBoyInstrumentView - - - Sweep time: - Tempo di sweep: - - - - Sweep time - Tempo di sweep - - - - Sweep rate shift amount: - Velocità sweep: - - - - Sweep rate shift amount - Durata sweep - - - - - Wave pattern duty cycle: - Pattern del duty cycle: - - - - - Wave pattern duty cycle - Pattern del duty cycle - - - - Square channel 1 volume: - Volume canale onda quadra 1: - - - - Square channel 1 volume - Volume canale onda quadra 1 - - - - - - Length of each step in sweep: - Lunghezza di ogni passo nello sweep: - - - - - - Length of each step in sweep - Lunghezza di ogni passo nello sweep - - - - Square channel 2 volume: - Volume canale onda quadra 2: - - - - Square channel 2 volume - Volume canale onda quadra 2 - - - - Wave pattern channel volume: - Volume canale pattern: - - - - Wave pattern channel volume - Volume canale pattern - - - - Noise channel volume: - Volume canale rumore: - - - - Noise channel volume - Volume canale rumore - - - - SO1 volume (Right): - Volume SO1 (Destra): - - - - SO1 volume (Right) - Volume SO1 (Destra) - - - - SO2 volume (Left): - Volume SO2 (Sinistra): - - - - SO2 volume (Left) - Volume SO2 (Sinistra) - - - - Treble: - Alti: - - - - Treble - Alti - - - - Bass: - Bassi: - - - - Bass - Bassi - - - - Sweep direction - Direzione sweep - - - - - - - - Volume sweep direction - Direzione sweep del volume - - - - Shift register width - Sposta la larghezza del registro - - - - Channel 1 to SO1 (Right) - Canale 1 a SO1 (destra) - - - - Channel 2 to SO1 (Right) - Canale 2 a SO1 (destra) - - - - Channel 3 to SO1 (Right) - Canale 3 a SO1 (destra) - - - - Channel 4 to SO1 (Right) - Canale 4 a SO1 (destra) - - - - Channel 1 to SO2 (Left) - Canale 1 a SO2 (sinistra) - - - - Channel 2 to SO2 (Left) - Canale 2 a SO2 (sinistra) - - - - Channel 3 to SO2 (Left) - Canale 3 a SO2 (sinistra) - - - - Channel 4 to SO2 (Left) - Canale 4 a SO2 (sinistra) - - - - Wave pattern graph - Grafico del modello d'onda - - - - MixerChannelView - - - Channel send amount - Quantità di segnale inviata dal canale - - - - Move &left - Sposta a &sinistra - - - - Move &right - Sposta a $destra - - - - Rename &channel - Rinomina &canale - - - - R&emove channel - R&imuovi canale - - - - Remove &unused channels - Rimuovi canali in&utilizzati - - - - Set channel color - - - - - Remove channel color - - - - - Pick random channel color - - - - - MixerChannelLcdSpinBox - - - Assign to: - Assegna a: - - - - New mixer Channel - Nuovo canale FX - - - - Mixer - - - Master - Principale - - - - - - Channel %1 - FX %1 - - - - Volume - Volume - - - - Mute - Silenziato - - - - Solo - Solo - - - - MixerView - - - Mixer - Mixer FX - - - - Fader %1 - Volume FX %1 - - - - Mute - Silenziato - - - - Mute this mixer channel - Silenzia questo canale FX - - - - Solo - Solo - - - - Solo mixer channel - Canale solo FX - - - - MixerRoute - - - - Amount to send from channel %1 to channel %2 - Quantità da mandare dal canale %1 al canale %2 - - - - GigInstrument - - - Bank - Banco - - - - Patch - Patch - - - - Gain - Guadagno - - - - GigInstrumentView - - - - Open GIG file - Apri file GIG - - - - Choose patch - Scegli patch - - - - Gain: - Guadagno: - - - - GIG Files (*.gig) - Files GIG (*.gig) - - - - GuiApplication - - - Working directory - Cartella di lavoro - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - La cartella di lavoro di LMMS %1 non esiste: Crearla ora? Questa cartella può essere cambiata in un secondo momento dal menu Modifica -> Impostazioni. - - - - Preparing UI - Caricamento interfaccia - - - - Preparing song editor - Caricamento song editor - - - - Preparing mixer - Caricamento mixer - - - - Preparing controller rack - Caricamento rack controller - - - - Preparing project notes - Caricamento note progetto - - - - Preparing beat/bassline editor - Caricamento editor beat/bassline - - - - Preparing piano roll - Caricamento Piano Roll - - - - Preparing automation editor - Caricamento editor di automazione - - - - InstrumentFunctionArpeggio - - - Arpeggio - Arpeggio - - - - Arpeggio type - Tipo arpeggio - - - - Arpeggio range - Estensione arpeggio - - - - Note repeats - - - - - Cycle steps - Note cicliche - - - - Skip rate - Frequanza salto - - - - Miss rate - Tasso mancante - - - - Arpeggio time - Tempo arpeggio - - - - Arpeggio gate - Ingresso arpeggio - - - - Arpeggio direction - Direzione arpeggio - - - - Arpeggio mode - Modo arpeggio - - - - Up - Su - - - - Down - Giù - - - - Up and down - Su e giù - - - - Down and up - Giù e su - - - - Random - Casuale - - - - Free - Libero - - - - Sort - Ordinamento - - - - Sync - Sincronizzato - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - ARPEGGIO - - - - RANGE - ESTENSIONE - - - - Arpeggio range: - Estenzione arpeggio: - - - - octave(s) - ottava(e) - - - - REP - - - - - Note repeats: - - - - - time(s) - - - - - CYCLE - CICLO - - - - Cycle notes: - Note cicliche: - - - - note(s) - nota(e) - - - - SKIP - SALTA - - - - Skip rate: - Frequanza salto: - - - - - - % - % - - - - MISS - MANCANTE - - - - Miss rate: - Tasso mancante: - - - - TIME - TEMPO - - - - Arpeggio time: - Tempo arpeggio: - - - - ms - ms - - - - GATE - INGRESSO - - - - Arpeggio gate: - Ingresso arpeggio: - - - - Chord: - Tipo di arpeggio: - - - - Direction: - Direzione: - - - - Mode: - Modo: - InstrumentFunctionNoteStacking - + octave ottava - - + + Major Maggiore - + Majb5 Majb5 - + minor minore - + minb5 minb5 - + sus2 sus2 - + sus4 sus4 - + aug aug - + augsus4 augsus4 - + tri triade - + 6 6 - + 6sus4 6sus4 - + 6add9 6add9 - + m6 m6 - + m6add9 m6add9 - + 7 7 - + 7sus4 7sus4 - + 7#5 7#5 - + 7b5 7b5 - + 7#9 7#9 - + 7b9 7b9 - + 7#5#9 7#5#9 - + 7#5b9 7#5b9 - + 7b5b9 7b5b9 - + 7add11 7add11 - + 7add13 7add13 - + 7#11 7#11 - + Maj7 Maj7 - + Maj7b5 Maj7b5 - + Maj7#5 Maj7#5 - + Maj7#11 Maj7#11 - + Maj7add13 Maj7add13 - + m7 m7 - + m7b5 m7b5 - + m7b9 m7b9 - + m7add11 m7add11 - + m7add13 m7add13 - + m-Maj7 m-Maj7 - + m-Maj7add11 m-Maj7add11 - + m-Maj7add13 m-Maj7add13 - + 9 9 - + 9sus4 9sus4 - + add9 add9 - + 9#5 9#5 - + 9b5 9b5 - + 9#11 9#11 - + 9b13 9b13 - + Maj9 Maj9 - + Maj9sus4 Maj9sus4 - + Maj9#5 Maj9#5 - + Maj9#11 Maj9#11 - + m9 m9 - + madd9 madd9 - + m9b5 m9b5 - + m9-Maj7 m9-Maj7 - + 11 11 - + 11b9 11b9 - + Maj11 Maj11 - + m11 m11 - + m-Maj11 m-Maj11 - + 13 13 - + 13#9 13#9 - + 13b9 13b9 - + 13b5b9 13b5b9 - + Maj13 Maj13 - + m13 m13 - + m-Maj13 m-Maj13 - + Harmonic minor Minore armonica - + Melodic minor Minore melodica - + Whole tone Toni interi - + Diminished Diminuita - + Major pentatonic Pentatonica maggiore - + Minor pentatonic Pentatonica minore - + Jap in sen Jap in sen - + Major bebop Bebop maggiore - + Dominant bebop Bebop dominante - + Blues Blues - + Arabic Araba - + Enigmatic Enigmatica - + Neopolitan Napoletana - + Neopolitan minor Napoletana minore - + Hungarian minor Ungherese minore - + Dorian Dorica - + Phrygian Frigia - + Lydian Lidia - + Mixolydian Misolidia - + Aeolian Eolia - + Locrian Locria - + Minor Minore - + Chromatic Cromatica - + Half-Whole Diminished Diminuita semitono-tono - + 5 Quinta - + Phrygian dominant Frigia dominante - + Persian Persiana - - - Chords - Accordi - - - - Chord type - Tipo di accordo - - - - Chord range - Ampiezza dell'accordo - - - - InstrumentFunctionNoteStackingView - - - STACKING - ACCORDI - - - - Chord: - Tipo di accordo: - - - - RANGE - AMPIEZZA - - - - Chord range: - Ampiezza degli accordi: - - - - octave(s) - ottava(e) - - - - InstrumentMidiIOView - - - ENABLE MIDI INPUT - ABILITA INGRESSO MIDI - - - - ENABLE MIDI OUTPUT - ABILITA USCITA MIDI - - - - - CHAN - This string must be be short, its width must be less than * width of LCD spin-box of two digits - - - - - - VELOC - This string must be be short, its width must be less than * width of LCD spin-box of three digits - - - - - PROG - This string must be be short, its width must be less than the * width of LCD spin-box of three digits - - - - - NOTE - This string must be be short, its width must be less than * width of LCD spin-box of three digits - NOTA - - - - MIDI devices to receive MIDI events from - Periferica MIDI da cui ricevere segnali MIDi - - - - MIDI devices to send MIDI events to - Periferica MIDI a cui mandare segnali MIDI - - - - CUSTOM BASE VELOCITY - VELOCITY BASE PERSONALIZZATA - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. - Specifica la base di normalizzazione della velocity per strumenti MIDI al 100% della velocity della nota. - - - - BASE VELOCITY - VELOCITY BASE - - - - InstrumentTuningView - - - MASTER PITCH - TRASPORTO - - - - Enables the use of master pitch - Abilita l'uso del trasporto principale - InstrumentSoundShaping - + VOLUME VOLUME - + Volume Volume - + CUTOFF CUTOFF - - + Cutoff frequency Frequenza di taglio - + RESO RISO - + Resonance Risonanza - - - Envelopes/LFOs - Envelope/LFO - - - - Filter type - Tipo di filtro - - - - Q/Resonance - Q/Risonanza - - - - Low-pass - Passa-basso - - - - Hi-pass - Passa-alto - - - - Band-pass csg - Passa-banda csg - - - - Band-pass czpg - Passa-banda czpg - - - - Notch - Notch - - - - All-pass - Passa-tutto - - - - Moog - Moog - - - - 2x Low-pass - Passa-basso 2x - - - - RC Low-pass 12 dB/oct - Passa-basso RC 12 dB/ott - - - - RC Band-pass 12 dB/oct - Passa-banda RC 12 dB/ott - - - - RC High-pass 12 dB/oct - Passa-alto RC 12 dB/ott - - - - RC Low-pass 24 dB/oct - Passa-basso RC 24 dB/ott - - - - RC Band-pass 24 dB/oct - Passa-banda RC 24 dB/ott - - - - RC High-pass 24 dB/oct - Passa-alto RC 24 dB/ott - - - - Vocal Formant - Formante Vocale - - - - 2x Moog - 2x Moog - - - - SV Low-pass - Passa-basso SV - - - - SV Band-pass - Passa-banda SV - - - - SV High-pass - Passa-alto SV - - - - SV Notch - Notch SV - - - - Fast Formant - Formante veloce - - - - Tripole - Tre poli - - InstrumentSoundShapingView + JackAppDialog - - TARGET - OBIETTIVO + + Add JACK Application + Aggiungi applicazione JACK - - FILTER - FILTRO + + Note: Features not implemented yet are greyed out + Nota: le funzionalità non ancora implementate sono disattivate - - FREQ - FREQ + + Application + Applicazione - - Cutoff frequency: - Frequenza di taglio: + + Name: + Nome: - - Hz - Hz + + Application: + Applicazione: - - Q/RESO - Q/RISO + + From template + Dal modello - - Q/Resonance: - Q/Risonanza: + + Custom + Personalizza - - Envelopes, LFOs and filters are not supported by the current instrument. - Gli inviluppi, gli LFO e i filtri non sono supportati dallo strumento corrente. - - - - InstrumentTrack - - - - unnamed_track - traccia_senza_nome + + Template: + Modello: - - Base note - Nota base + + Command: + Comando: - - First note + + Setup - - Last note - Ultima nota - - - - Volume - Volume - - - - Panning - Panning - - - - Pitch - Altezza - - - - Pitch range - Estenzione dell'altezza - - - - Mixer channel - Canale FX - - - - Master pitch - Altezza principale - - - - Enable/Disable MIDI CC + + Session Manager: - - CC Controller %1 + + None - - - Default preset - Impostazioni predefinite - - - - InstrumentTrackView - - - Volume - Volume + + Audio inputs: + Audio ingresso: - - Volume: - Volume: + + MIDI inputs: + MIDI ingresso: - - VOL - VOL + + Audio outputs: + Audio uscita: - - Panning - Panning + + MIDI outputs: + MIDI uscita: - - Panning: - Panning: + + Take control of main application window + Prendi il controllo della principale finestra di applicazione - - PAN - PAN + + Workarounds + Soluzioni alternative - - MIDI - MIDI + + Wait for external application start (Advanced, for Debug only) + Attendi l'avvio di un'applicazione esterna (avanzato, solo per debug) - - Input - Ingresso - - - - Output - Uscita - - - - Open/Close MIDI CC Rack + + Capture only the first X11 Window - - Channel %1: %2 - FX %1: %2 - - - - InstrumentTrackWindow - - - GENERAL SETTINGS - IMPOSTAZIONI GENERALI + + Use previous client output buffer as input for the next client + - - Volume - Volume + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + Simula 16 MIDI JACK uscite, con canale MIDI come indice di porta - - Volume: - Volume: + + Error here + Errore qui - - VOL - VOL - - - - Panning - Panning - - - - Panning: - Panning: - - - - PAN - PAN - - - - Pitch - Altezza - - - - Pitch: - Altezza: - - - - cents - centesimi - - - - PITCH - ALTEZZA - - - - Pitch range (semitones) - Ampiezza dell'altezza (in semitoni) - - - - RANGE - AMPIEZZA - - - - Mixer channel - Canale FX - - - - CHANNEL - FX - - - - Save current instrument track settings in a preset file - Salva le impostazioni di questa traccia in un file preset - - - - SAVE - SALVA - - - - Envelope, filter & LFO - Inviluppo, filtro e LFO - - - - Chord stacking & arpeggio - Accordi e arpeggi - - - - Effects - Effetti - - - - MIDI - MIDI - - - - Miscellaneous - Varie - - - - Save preset - Salva il preset - - - - XML preset file (*.xpf) - File di preset XML (*.xpf) - - - - Plugin - Plugin - - - - JackApplicationW - - + NSM applications cannot use abstract or absolute paths - Le applicazioni NSM non possono utilizzare percorsi astratti o assoluti + Le applicazioni NSM non possono usare percorsi astratti o assoluti - + NSM applications cannot use CLI arguments Le applicazioni NSM non possono usare argomenti CLI - + You need to save the current Carla project before NSM can be used - È necessario salvare l'attuale progetto Carla prima di poter utilizzare NSM + È necessario salvare l'attuale progetto di Carla prima di poter utilizzare NSM JuceAboutW - - About JUCE - Informazioni su JUCE - - - - <b>About JUCE</b> - <b>Informazioni su JUCE</b> - - - - This program uses JUCE version 3.x.x. - Questo programma utilizza JUCE versione 3.x.x. - - - - JUCE (Jules' Utility Class Extensions) is an all-encompassing C++ class library for developing cross-platform software. - -It contains pretty much everything you're likely to need to create most applications, and is particularly well-suited for building highly-customised GUIs, and for handling graphics and sound. - -JUCE is licensed under the GNU Public Licence version 2.0. -One module (juce_core) is permissively licensed under the ISC. - -Copyright (C) 2017 ROLI Ltd. - JUCE (Jules 'Utility Class Extensions) è una libreria di classi C ++ onnicomprensiva per lo sviluppo di software multipiattaforma. - -Contiene praticamente tutto il necessario per creare la maggior parte delle applicazioni ed è particolarmente adatto per la creazione di GUI altamente personalizzate e per la gestione di grafica e audio. - -JUCE è concesso in licenza con GNU Public License versione 2.0. -Un modulo (juce_core) è autorizzato in base all'ISC. - -Copyright (C) 2017 ROLI Ltd. - - - + This program uses JUCE version %1. Questo programma utilizza la versione JUCE % 1. - - Knob - - - Set linear - Modalità lineare - - - - Set logarithmic - Modalità logaritmica - - - - - Set value - Imposta valore - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - Inserire un nuovo valore tra -96.0 dBFS e 6.0 dBFS: - - - - Please enter a new value between %1 and %2: - Inserire un valore compreso tra %1 e %2: - - - - LadspaControl - - - Link channels - Abbina i canali - - - - LadspaControlDialog - - - Link Channels - Canali abbinati - - - - Channel - Canale - - - - LadspaControlView - - - Link channels - Abbina i canali - - - - Value: - Valore: - - - - LadspaEffect - - - Unknown LADSPA plugin %1 requested. - Il plugin LADSPA %1 richiesto è sconosciuto. - - - - LcdFloatSpinBox - - - Set value - Imposta valore - - - - Please enter a new value between %1 and %2: - Inserire un valore compreso tra %1 e %2: - - - - LcdSpinBox - - - Set value - Imposta valore - - - - Please enter a new value between %1 and %2: - Inserire un valore compreso tra %1 e %2: - - - - LeftRightNav - - - - - Previous - Precedente - - - - - - Next - Successivo - - - - Previous (%1) - Precedente (%1) - - - - Next (%1) - Successivo (%1) - - - - LfoController - - - LFO Controller - Controller dell'LFO - - - - Base value - Valore di base - - - - Oscillator speed - Velocità dell'oscillatore - - - - Oscillator amount - Quantità di oscillatore - - - - Oscillator phase - Fase dell'oscillatore - - - - Oscillator waveform - Forma d'onda dell'oscillatore - - - - Frequency Multiplier - Moltiplicatore della frequenza - - - - LfoControllerDialog - - - LFO - LFO - - - - BASE - BASE - - - - Base: - Base: - - - - FREQ - FREQ - - - - LFO frequency: - Frequenza LFO: - - - - AMNT - Q.TÀ - - - - Modulation amount: - Quantità di modulazione: - - - - PHS - FASE - - - - Phase offset: - Scostamento della fase: - - - - degrees - gradi - - - - Sine wave - Onda sinusoidale - - - - Triangle wave - Onda triangolare - - - - Saw wave - Onda a dente di sega - - - - Square wave - Onda quadra - - - - Moog saw wave - Onda Moog - - - - Exponential wave - Onda esponenziale - - - - White noise - Rumore bianco - - - - User-defined shape. -Double click to pick a file. - Forma personalizzata. -Fai doppio click per scegliere un file. - - - - Mutliply modulation frequency by 1 - Moltiplica la frequenza di modulazione per 1 - - - - Mutliply modulation frequency by 100 - Moltiplica la frequenza di modulazione per 100 - - - - Divide modulation frequency by 100 - Dividi la frequenza di modulazione per 100 - - - - Engine - - - Generating wavetables - Generazione di tabelle d'onda - - - - Initializing data structures - Inizializzazione strutture dati - - - - Opening audio and midi devices - Accesso ai dispositivi audio e midi - - - - Launching mixer threads - Avviamento threads del mixer - - - - MainWindow - - - Configuration file - File di configurazione - - - - Error while parsing configuration file at line %1:%2: %3 - Si è riscontrato un errore nell'analisi del file di configurazione alle linee %1:%2: %3 - - - - Could not open file - Non è stato possibile aprire il file - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Impossibile scrivere sul file %1. -Si prega di controllare i permessi di scrittura sul file e la cartella che lo contiene, e poi riprovare! - - - - Project recovery - Recupero del progetto - - - - There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - E' stato trovato un file di riserva. Questo accade se la sessione precedente non è stata chiusa in modo appropriato o un'altra istanza di LMMS è già in esecuzione. Recuperare il progetto di questa sessione? - - - - - Recover - Recupera - - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - Recupera il file. Non usare instanze multiple di LMMS quando effettui il recupero. - - - - - Discard - Elimina - - - - Launch a default session and delete the restored files. This is not reversible. - Avvia una sessione predefinita ed elimina i file ripristinati. Questo azione non è reversibile. - - - - Version %1 - Versione %1 - - - - Preparing plugin browser - Caricamento plugin del browser - - - - Preparing file browsers - Caricamento file del browser - - - - My Projects - I miei Progetti - - - - My Samples - I miei Campioni - - - - My Presets - I miei Modelli - - - - My Home - Percorsi di Lavoro - - - - Root directory - Percorso principale - - - - Volumes - Volumi - - - - My Computer - Computer - - - - &File - &File - - - - &New - &Nuovo - - - - &Open... - &Apri... - - - - Loading background picture - Caricamento immagine di sfondo - - - - &Save - &Salva - - - - Save &As... - Salva &come... - - - - Save as New &Version - Salva come nuova &versione - - - - Save as default template - Salva come modello predefinito - - - - Import... - Importa... - - - - E&xport... - E&sporta... - - - - E&xport Tracks... - E&sporta tracce... - - - - Export &MIDI... - Esporta &MIDI... - - - - &Quit - &Esci - - - - &Edit - &Modifica - - - - Undo - Annulla - - - - Redo - Ripeti - - - - Settings - Impostazioni - - - - &View - &Visualizza - - - - &Tools - S&trumenti - - - - &Help - &Aiuto - - - - Online Help - Aiuto Online - - - - Help - Aiuto - - - - About - Informazioni su - - - - Create new project - Crea nuovo progetto - - - - Create new project from template - Crea nuovo progetto da modello - - - - Open existing project - Apri progetto esistente - - - - Recently opened projects - Progetti aperti di recente - - - - Save current project - Salva questo progetto - - - - Export current project - Esporta questo progetto - - - - Metronome - Metronomo - - - - - Song Editor - Mostra/nascondi Editor brani - - - - - Beat+Bassline Editor - Editor Beat+Bassline - - - - - Piano Roll - Mostra/nascondi il Piano-Roll - - - - - Automation Editor - Mostra/nascondi Editor automazione - - - - - Mixer - Mostra/nascondi mixer effetti - - - - Show/hide controller rack - Mostra/nascondi il rack di controller - - - - Show/hide project notes - Mostra/nascondi note del progetto - - - - Untitled - Senza_nome - - - - Recover session. Please save your work! - Sessione di recupero. Salva al più presto! - - - - LMMS %1 - LMMS %1 - - - - Recovered project not saved - Progetto recuperato non salvato - - - - This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? - Il progetto è stato recuperato dalla sessione precedente. Attualmente non è stato salvato. Vuoi salvarlo adesso per evitare di perderlo? - - - - Project not saved - Progetto non salvato - - - - The current project was modified since last saving. Do you want to save it now? - Questo progetto è stato modificato dopo l'ultimo salvataggio. Vuoi salvarlo adesso? - - - - Open Project - Apri Progetto - - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - - Save Project - Salva Progetto - - - - LMMS Project - Progetto LMMS - - - - LMMS Project Template - Modello di Progetto LMMS - - - - Save project template - Salva come modello di progetto - - - - Overwrite default template? - Sovrascrivere il progetto default? - - - - This will overwrite your current default template. - In questo modo verrà modificato il tuo progetto di default corrente. - - - - Help not available - Aiuto non disponibile - - - - Currently there's no help available in LMMS. -Please visit http://lmms.sf.net/wiki for documentation on LMMS. - Al momento non è disponibile alcun aiuto in LMMS. -Visitare http://lmms.sf.net/wiki per la documentazione di LMMS. - - - - Controller Rack - Mostra/nascondi il rack di controller - - - - Project Notes - Mostra/nascondi le note del progetto - - - - Fullscreen - - - - - Volume as dBFS - Volume in dBFS - - - - Smooth scroll - Scorrimento morbido - - - - Enable note labels in piano roll - Abilita l'etichetta delle note nel piano roll - - - - MIDI File (*.mid) - File MIDI (*.mid) - - - - - untitled - senza_nome - - - - - Select file for project-export... - Scegliere il file per l'esportazione del progetto... - - - - Select directory for writing exported tracks... - Seleziona una directory per le tracce esportate... - - - - Save project - Salva progetto - - - - Project saved - Progeto salvato - - - - The project %1 is now saved. - Il progetto %1 è stato salvato. - - - - Project NOT saved. - Il progetto NON è stato salvato. - - - - The project %1 was not saved! - Il progetto %1 non è stato salvato! - - - - Import file - Importa file - - - - MIDI sequences - Sequenze MIDI - - - - Hydrogen projects - Progetti Hydrogen - - - - All file types - Tutti i tipi di file - - - - MeterDialog - - - - Meter Numerator - Numeratore della misura - - - - Meter numerator - Numeratore misura - - - - - Meter Denominator - Denominatore della misura - - - - Meter denominator - Denominatore misura - - - - TIME SIG - TEMPO - - - - MeterModel - - - Numerator - Numeratore - - - - Denominator - Denominatore - - - - MidiCCRackView - - - - MIDI CC Rack - %1 - - - - - MIDI CC Knobs: - - - - - CC %1 - - - - - MidiController - - - MIDI Controller - Controller MIDI - - - - unnamed_midi_controller - controller_midi_senza_nome - - - - MidiImport - - - - Setup incomplete - Impostazioni incomplete - - - - You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. - Non hai impostato un soundfont predefinito nella finestra di dialogo delle impostazioni (Modifica-> Impostazioni). Pertanto, nessun suono verrà riprodotto dopo aver importato questo file MIDI. È necessario scaricare un General MIDI, specificarlo nella finestra di dialogo delle impostazioni e riprovare. - - - - You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - Non hai compilato LMMS con il supporto per SoundFont2 Player, che viene usato per aggiungere suoni predefiniti ai file MIDI importati. Quindi, nessun suono verrà riprodotto dopo aver aperto questo file MIDI. - - - - MIDI Time Signature Numerator - Numeratore indicazione del tempo MIDI - - - - MIDI Time Signature Denominator - Denominatore indicazione del tempo MIDI - - - - Numerator - Numeratore - - - - Denominator - Denominatore - - - - Track - Traccia - - - - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - Il server JACK è down - - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - Il server JACK sembra spento. - - MidiPatternW @@ -8011,2731 +3001,370 @@ Visitare http://lmms.sf.net/wiki per la documentazione di LMMS. &Esci - + + Esc + Esc + + + &Insert Mode &Modo Inserimento - + F F - + &Velocity Mode &Modo Velocity - + D Re - + Select All Seleziona tutto - + A La - - MidiPort - - - Input channel - Canale di ingresso - - - - Output channel - Canale di uscita - - - - Input controller - Controller in entrata - - - - Output controller - Controller in uscita - - - - Fixed input velocity - Velocity fissa in ingresso - - - - Fixed output velocity - Velocity fissa in uscita - - - - Fixed output note - Nota fissa in uscita - - - - Output MIDI program - Programma MIDI in uscita - - - - Base velocity - Velocity base - - - - Receive MIDI-events - Ricevi eventi MIDI - - - - Send MIDI-events - Invia eventi MIDI - - - - MidiSetupWidget - - - Device - Dispositivo - - - - MonstroInstrument - - - Osc 1 volume - Volume osc 1 - - - - Osc 1 panning - Bilanciamento osc 1 - - - - Osc 1 coarse detune - Intonazione al semitono osc 1 - - - - Osc 1 fine detune left - Intonazione precisa osc 1 sinistro - - - - Osc 1 fine detune right - Intonazione precisa osc 1 destro - - - - Osc 1 stereo phase offset - Spostamento di fase osc 1 - - - - Osc 1 pulse width - Larghezza impulso osc 1 - - - - Osc 1 sync send on rise - Manda sync alla salita osc 1 - - - - Osc 1 sync send on fall - Manda sync alla discesa osc 1 - - - - Osc 2 volume - Volume osc 2 - - - - Osc 2 panning - Bilanciamento osc 2 - - - - Osc 2 coarse detune - Intonazione al semitono osc 2 - - - - Osc 2 fine detune left - Intonazione precisa osc 2 sinistro - - - - Osc 2 fine detune right - Intonazione precisa osc 2 destro - - - - Osc 2 stereo phase offset - Spostamento di fase osc 2 - - - - Osc 2 waveform - Forma d'onda osc 2 - - - - Osc 2 sync hard - Sync hard osc 2 - - - - Osc 2 sync reverse - Sync inverso osc 2 - - - - Osc 3 volume - Volume osc 3 - - - - Osc 3 panning - Bilanciamento osc 3 - - - - Osc 3 coarse detune - Intonazione al semitono osc 3 - - - - Osc 3 Stereo phase offset - Osc 3 Spostamento di fase stereo - - - - Osc 3 sub-oscillator mix - Missaggio sub-oscillatori di Osc 3 - - - - Osc 3 waveform 1 - Forma d'onda 1 osc 3 - - - - Osc 3 waveform 2 - Forma d'onda 2 osc 3 - - - - Osc 3 sync hard - Sync hard osc 3 - - - - Osc 3 Sync reverse - Sync inverso osc 3 - - - - LFO 1 waveform - Forma d'onda LFO 1 - - - - LFO 1 attack - Attacco LFO 1 - - - - LFO 1 rate - Periodo LFO 1 - - - - LFO 1 phase - Fase LFO 1 - - - - LFO 2 waveform - Forma d'onda LFO 2 - - - - LFO 2 attack - Attacco LFO 2 - - - - LFO 2 rate - Periodo LFO 2 - - - - LFO 2 phase - Fase LFO 2 - - - - Env 1 pre-delay - Pre-ritardo inv 1 - - - - Env 1 attack - Attacco inv 1 - - - - Env 1 hold - Mantenimento inv 1 - - - - Env 1 decay - Decadimento inv 1 - - - - Env 1 sustain - Sostegno inv 1 - - - - Env 1 release - Rilascio inv 1 - - - - Env 1 slope - Curvatura inv 1 - - - - Env 2 pre-delay - Pre-ritardo inv 2 - - - - Env 2 attack - Attacco inv 2 - - - - Env 2 hold - Mantenimento inv 2 - - - - Env 2 decay - Decadimento inv 2 - - - - Env 2 sustain - Sostegno inv 2 - - - - Env 2 release - Rilascio inv 2 - - - - Env 2 slope - Curvatura inv 2 - - - - Osc 2+3 modulation - Modulazione osc 2+3 - - - - Selected view - Seleziona vista - - - - Osc 1 - Vol env 1 - Osc 1 - Vol inv 1 - - - - Osc 1 - Vol env 2 - Osc 1 - Vol inv 2 - - - - Osc 1 - Vol LFO 1 - Osc 1 - Vol LFO 1 - - - - Osc 1 - Vol LFO 2 - Osc 1 - Vol LFO 2 - - - - Osc 2 - Vol env 1 - Osc 2 - Vol inv 1 - - - - Osc 2 - Vol env 2 - Osc 2 - Vol inv 2 - - - - Osc 2 - Vol LFO 1 - Osc 2 - Vol LFO 1 - - - - Osc 2 - Vol LFO 2 - Osc 2 - Vol LFO 2 - - - - Osc 3 - Vol env 1 - Osc 3 - Vol inv 1 - - - - Osc 3 - Vol env 2 - Osc 3 - Vol inv 2 - - - - Osc 3 - Vol LFO 1 - Osc 3 - Vol LFO 1 - - - - Osc 3 - Vol LFO 2 - Osc 3 - Vol LFO 2 - - - - Osc 1 - Phs env 1 - Osc 1 - Fas inv 1 - - - - Osc 1 - Phs env 2 - Osc 1 - Fas inv 2 - - - - Osc 1 - Phs LFO 1 - Osc 1 - Fas LFO 1 - - - - Osc 1 - Phs LFO 2 - Osc 1 - Fas LFO 2 - - - - Osc 2 - Phs env 1 - Osc 2 - Fas inv 1 - - - - Osc 2 - Phs env 2 - Osc 2 - Fas inv 2 - - - - Osc 2 - Phs LFO 1 - Osc 2 - Fas LFO 1 - - - - Osc 2 - Phs LFO 2 - Osc 2 - Fas LFO 2 - - - - Osc 3 - Phs env 1 - Osc 3 - Fas inv 1 - - - - Osc 3 - Phs env 2 - Osc 3 - Fas inv 2 - - - - Osc 3 - Phs LFO 1 - Osc 3 - Fas LFO 1 - - - - Osc 3 - Phs LFO 2 - Osc 3 - Fas LFO 2 - - - - Osc 1 - Pit env 1 - Osc 1 - Alt inv 1 - - - - Osc 1 - Pit env 2 - Osc 1 - Alt inv 2 - - - - Osc 1 - Pit LFO 1 - Osc 1 - Alt LFO 1 - - - - Osc 1 - Pit LFO 2 - Osc 1 - Alt LFO 2 - - - - Osc 2 - Pit env 1 - Osc 2 - Alt inv 1 - - - - Osc 2 - Pit env 2 - Osc 2 - Alt inv 2 - - - - Osc 2 - Pit LFO 1 - Osc 2 - Alt LFO 1 - - - - Osc 2 - Pit LFO 2 - Osc 2 - Alt LFO 2 - - - - Osc 3 - Pit env 1 - Osc 3 - Alt inv 1 - - - - Osc 3 - Pit env 2 - Osc 3 - Alt inv 2 - - - - Osc 3 - Pit LFO 1 - Osc 3 - Alt LFO 1 - - - - Osc 3 - Pit LFO 2 - Osc 3 - Alt LFO 2 - - - - Osc 1 - PW env 1 - Osc 1 - LI inv 1 - - - - Osc 1 - PW env 2 - Osc 1 - LI inv 2 - - - - Osc 1 - PW LFO 1 - Osc 1 - LI LFO 1 - - - - Osc 1 - PW LFO 2 - Osc 1 - LI LFO 2 - - - - Osc 3 - Sub env 1 - Osc 3 - Sub inv 1 - - - - Osc 3 - Sub env 2 - Osc 3 - Sub inv 2 - - - - Osc 3 - Sub LFO 1 - Osc 3 - Sub LFO 1 - - - - Osc 3 - Sub LFO 2 - Osc 3 - Sub LFO 2 - - - - - Sine wave - Onda sinusoidale - - - - Bandlimited Triangle wave - Onda triangolare limitata - - - - Bandlimited Saw wave - Onda a dente di sega limitata - - - - Bandlimited Ramp wave - Onda a rampa limitata - - - - Bandlimited Square wave - Onda quadra limitata - - - - Bandlimited Moog saw wave - Onda Moog limitata - - - - - Soft square wave - Onda quadra morbida - - - - Absolute sine wave - Onda sinusoidale assoluta - - - - - Exponential wave - Onda esponenziale - - - - White noise - Rumore bianco - - - - Digital Triangle wave - Onda triangolare digitale - - - - Digital Saw wave - Onda a dente di sega digitale - - - - Digital Ramp wave - Onda a rampa digitale - - - - Digital Square wave - Onda quadra digitale - - - - Digital Moog saw wave - Onda Moog digitale - - - - Triangle wave - Onda triangolare - - - - Saw wave - Onda a dente di sega - - - - Ramp wave - Onda a rampa - - - - Square wave - Onda quadra - - - - Moog saw wave - Onda Moog - - - - Abs. sine wave - Sinusoide Ass. - - - - Random - Casuale - - - - Random smooth - Casuale morbida - - - - MonstroView - - - Operators view - Vista operatori - - - - Matrix view - Vista Matrice - - - - - - Volume - Volume - - - - - - Panning - Bilanciamento - - - - - - Coarse detune - Intonazione grezza - - - - - - semitones - semitoni - - - - - Fine tune left - Intonazione precisa sinistra - - - - - - - cents - centesimi - - - - - Fine tune right - Intonazione precisa destra - - - - - - Stereo phase offset - Spostamento di fase stereo - - - - - - - - deg - gradi - - - - Pulse width - Larghezza impulso - - - - Send sync on pulse rise - Manda sincro alle salite - - - - Send sync on pulse fall - Manda sincro alle discese - - - - Hard sync oscillator 2 - Sincro Duro oscillatore 2 - - - - Reverse sync oscillator 2 - Sincro Inverso oscillatore 2 - - - - Sub-osc mix - Missaggio Sub-osc - - - - Hard sync oscillator 3 - Sincro Duro oscillatore 3 - - - - Reverse sync oscillator 3 - Sincro Inverso oscillatore 3 - - - - - - - Attack - Attacco - - - - - Rate - Periodo - - - - - Phase - Fase - - - - - Pre-delay - Pre-ritardo - - - - - Hold - Mantenimento - - - - - Decay - Decadimento - - - - - Sustain - Sostegno - - - - - Release - Rilascio - - - - - Slope - Curvatura - - - - Mix osc 2 with osc 3 - Somma osc 2 e osc 3 - - - - Modulate amplitude of osc 3 by osc 2 - Modula ampiezza di osc 3 con osc 2 - - - - Modulate frequency of osc 3 by osc 2 - Modula frequenza di osc 3 con osc 2 - - - - Modulate phase of osc 3 by osc 2 - Modula fase di osc 3 con osc 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Modulation amount - Quantità di modulazione: - - - - MultitapEchoControlDialog - - - Length - Lunghezza - - - - Step length: - Durata degli step: - - - - Dry - Dry - - - - Dry gain: - Guadagno senza effetto: - - - - Stages - Fasi - - - - Low-pass stages: - Fasi del passa-basso: - - - - Swap inputs - Scambia input - - - - Swap left and right input channels for reflections - Scambia i canali destro e sinistro per le ripetizioni - - - - NesInstrument - - - Channel 1 coarse detune - Intonazione al semitono canale 1 - - - - Channel 1 volume - Volume del canale 1 - - - - Channel 1 envelope length - Lunghezza inviluppo canale 1 - - - - Channel 1 duty cycle - Duty cycle canale 1 - - - - Channel 1 sweep amount - Larghezza glissando canale 1 - - - - Channel 1 sweep rate - Velocità glissando canale 1 - - - - Channel 2 Coarse detune - Intonazione grezza Canale 2 - - - - Channel 2 Volume - Volume Canale 2 - - - - Channel 2 envelope length - Lunghezza inviluppo canale 2 - - - - Channel 2 duty cycle - Duty cycle canale 2 - - - - Channel 2 sweep amount - Larghezza glissando canale 2 - - - - Channel 2 sweep rate - Velocità glissando canale 2 - - - - Channel 3 coarse detune - Intonazione al semitono canale 3 - - - - Channel 3 volume - Volume del canale 3 - - - - Channel 4 volume - Volume del canale 4 - - - - Channel 4 envelope length - Lunghezza inviluppo canale 4 - - - - Channel 4 noise frequency - Frequenza rumore canale 4 - - - - Channel 4 noise frequency sweep - Glissando rumore canale 4 - - - - Master volume - Volume principale - - - - Vibrato - Vibrato - - - - NesInstrumentView - - - - - - Volume - Volume - - - - - - Coarse detune - Intonazione grezza - - - - - - Envelope length - Lunghezza inviluppo - - - - Enable channel 1 - Abilita canale 1 - - - - Enable envelope 1 - Abilita inviluppo 1 - - - - Enable envelope 1 loop - Abilita ripetizione inviluppo 1 - - - - Enable sweep 1 - Abilita glissando 1 - - - - - Sweep amount - Profondità glissando - - - - - Sweep rate - Durata glissando - - - - - 12.5% Duty cycle - 12.5% del periodo - - - - - 25% Duty cycle - 25% del periodo - - - - - 50% Duty cycle - 50% del periodo - - - - - 75% Duty cycle - 75% del periodo - - - - Enable channel 2 - Abilita canale 2 - - - - Enable envelope 2 - Abilita inviluppo 2 - - - - Enable envelope 2 loop - Abilita ripetizione inviluppo 2 - - - - Enable sweep 2 - Abilita glissando 2 - - - - Enable channel 3 - Abilita canale 3 - - - - Noise Frequency - Frequenza rumore - - - - Frequency sweep - Glissando - - - - Enable channel 4 - Abilita canale 4 - - - - Enable envelope 4 - Abilita inviluppo 4 - - - - Enable envelope 4 loop - Abilita ripetizione inviluppo 4 - - - - Quantize noise frequency when using note frequency - Quantizza la frequenza del rumore, se relativa alla nota - - - - Use note frequency for noise - La frequenza del rumore è relativa alla nota suonata - - - - Noise mode - Modalità rumore - - - - Master volume - Volume principale - - - - Vibrato - Vibrato - - - - OpulenzInstrument - - - Patch - Programma - - - - Op 1 attack - Attacco op 1 - - - - Op 1 decay - Decadimento op 1 - - - - Op 1 sustain - Sostegno op 1 - - - - Op 1 release - Rilascio op 1 - - - - Op 1 level - Livello op 1 - - - - Op 1 level scaling - Scala livello op 1 - - - - Op 1 frequency multiplier - Moltiplicatore frequenza op 1 - - - - Op 1 feedback - Feedback op 1 - - - - Op 1 key scaling rate - Velocità op 1 dipende da nota - - - - Op 1 percussive envelope - Inviluppo percussivo op 1 - - - - Op 1 tremolo - Tremolo op 1 - - - - Op 1 vibrato - Vibrato op 1 - - - - Op 1 waveform - Forma d'onda op 1 - - - - Op 2 attack - Attacco op 2 - - - - Op 2 decay - Decadimento op 2 - - - - Op 2 sustain - Sostegno Op 2 - - - - Op 2 release - Rilascio op 2 - - - - Op 2 level - Livello op 2 - - - - Op 2 level scaling - Scala livello op 2 - - - - Op 2 frequency multiplier - Moltiplicatore frequenza op 2 - - - - Op 2 key scaling rate - Velocità op 2 dipende da nota - - - - Op 2 percussive envelope - Inviluppo percussivo op 2 - - - - Op 2 tremolo - Tremolo op 2 - - - - Op 2 vibrato - Vibrato op 2 - - - - Op 2 waveform - Forma d'onda op 2 - - - - FM - FM - - - - Vibrato depth - Profondità vibrato - - - - Tremolo depth - Profondità tremolo - - - - OpulenzInstrumentView - - - - Attack - Attacco - - - - - Decay - Decadimento - - - - - Release - Rilascio - - - - - Frequency multiplier - Moltiplicatore della frequenza - - - - OscillatorObject - - - Osc %1 waveform - Forma d'onda osc %1 - - - - Osc %1 harmonic - Armoniche Osc %1 - - - - - Osc %1 volume - Volume osc %1 - - - - - Osc %1 panning - Panning osc %1 - - - - - Osc %1 fine detuning left - Intonazione precisa osc %1 sinistra - - - - Osc %1 coarse detuning - Intonazione osc %1 - - - - Osc %1 fine detuning right - Intonazione precisa osc %1 destra - - - - Osc %1 phase-offset - Scostamento fase osc %1 - - - - Osc %1 stereo phase-detuning - Intonazione fase stereo osc %1 - - - - Osc %1 wave shape - Forma d'onda Osc %1 - - - - Modulation type %1 - Modulazione di tipo %1 - - - - Oscilloscope - - - Oscilloscope - Oscilloscopio - - - - Click to enable - Clicca per abilitare - - PatchesDialog + Qsynth: Channel Preset Qsynth: Preset Canale + Bank selector Selezione banco + Bank Banco + Program selector Selezione programma + Patch Programma + Name Nome + OK OK + Cancel Annulla - - PatmanView - - - Open patch - Apri patch - - - - Loop - Ripetizione - - - - Loop mode - Modalità ripetizione - - - - Tune - Intonazione - - - - Tune mode - Modalità intonazione - - - - No file selected - Nessun file selezionato - - - - Open patch file - Apri file di patch - - - - Patch-Files (*.pat) - File di patch (*.pat) - - - - MidiClipView - - - Open in piano-roll - Apri nel piano-roll - - - - Set as ghost in piano-roll - Imposta come fantasma in piano-roll - - - - Clear all notes - Cancella tutte le note - - - - Reset name - Reimposta il nome - - - - Change name - Cambia nome - - - - Add steps - Aggiungi note - - - - Remove steps - Elimina note - - - - Clone Steps - Clona gli step - - - - PeakController - - - Peak Controller - Controller dei picchi - - - - Peak Controller Bug - Bug del controller dei picchi - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - A causa di un bug nelle versioni precedenti di LMMS, i controller dei picchi potrebbero non essere connessi come dovuto. Assicurati che i controller dei picchi siano connessi e salva questo file di nuovo. Ci scusiamo per gli inconvenienti causati. - - - - PeakControllerDialog - - - PEAK - PICCO - - - - LFO Controller - Controller dell'LFO - - - - PeakControllerEffectControlDialog - - - BASE - BASE - - - - Base: - Base: - - - - AMNT - Q.TÀ - - - - Modulation amount: - Quantità di modulazione: - - - - MULT - MOLT - - - - Amount multiplicator: - Moltiplicatore di quantità: - - - - ATCK - ATCC - - - - Attack: - Attacco: - - - - DCAY - DCAD - - - - Release: - Rilascio: - - - - TRSH - SOGLIA - - - - Treshold: - Soglia: - - - - Mute output - Silenzia l'output - - - - Absolute value - Valore assoluto - - - - PeakControllerEffectControls - - - Base value - Valore di base - - - - Modulation amount - Quantità di modulazione - - - - Attack - Attacco - - - - Release - Rilascio - - - - Treshold - Soglia - - - - Mute output - Silenzia l'output - - - - Absolute value - Valore assoluto - - - - Amount multiplicator - Moltiplicatore di quantità - - - - PianoRoll - - - Note Velocity - Volume Note - - - - Note Panning - Panning Note - - - - Mark/unmark current semitone - Evidenza (o togli evidenziazione) questo semitono - - - - Mark/unmark all corresponding octave semitones - Evidenza (o togli evidenziazione) i semitoni alle altre ottave - - - - Mark current scale - Evidenza la scala corrente - - - - Mark current chord - Evidenza l'accordo corrente - - - - Unmark all - Togli tutte le evidenziazioni - - - - Select all notes on this key - Seleziona tutte le note in questo tasto - - - - Note lock - Note lock - - - - Last note - Ultima nota - - - - No key - - - - - No scale - - Scale - - - - No chord - - Accordi - - - - Nudge - - - - - Snap - - - - - Velocity: %1% - Velocity: %1% - - - - Panning: %1% left - Bilanciamento: %1% a sinistra - - - - Panning: %1% right - Bilanciamento: %1% a destra - - - - Panning: center - Bilanciamento: centrato - - - - Glue notes failed - - - - - Please select notes to glue first. - - - - - Please open a clip by double-clicking on it! - Aprire un pattern con un doppio-click sul pattern stesso! - - - - - Please enter a new value between %1 and %2: - Inserire un valore compreso tra %1 e %2: - - - - PianoRollWindow - - - Play/pause current clip (Space) - Riproduci/metti in pausa il beat/bassline selezionato (Spazio) - - - - Record notes from MIDI-device/channel-piano - Registra note da una periferica/canale piano MIDI - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - Registra note da una periferica MIDI/canale piano mentre la traccia o la BB track è in riproduzione - - - - Record notes from MIDI-device/channel-piano, one step at the time - Registra note da dispositivo-MIDI/canale-piano, un passo alla volta - - - - Stop playing of current clip (Space) - Riproduci/metti in pausa il beat/bassline selezionato (Spazio) - - - - Edit actions - Modalità di modifica - - - - Draw mode (Shift+D) - Modalità disegno (Shift+D) - - - - Erase mode (Shift+E) - Modalità cancella (Shift+E) - - - - Select mode (Shift+S) - Modalità selezione (Shift+S) - - - - Pitch Bend mode (Shift+T) - Modalità intonazione (Shift+T) - - - - Quantize - Quantizza - - - - Quantize positions - - - - - Quantize lengths - - - - - File actions - - - - - Import clip - - - - - - Export clip - - - - - Copy paste controls - Controlli di copia-incolla - - - - Cut (%1+X) - Taglia (%1+X) - - - - Copy (%1+C) - Copia (%1+C) - - - - Paste (%1+V) - Incolla (%1+V) - - - - Timeline controls - Controlla griglia - - - - Glue - - - - - Knife - - - - - Fill - - - - - Cut overlaps - - - - - Min length as last - - - - - Max length as last - - - - - Zoom and note controls - Controlli di zoom e note - - - - Horizontal zooming - Zoom orizzontale - - - - Vertical zooming - Zoom verticale - - - - Quantization - Quantizzazione - - - - Note length - Lunghezza nota - - - - Key - - - - - Scale - Scala - - - - Chord - Accordo - - - - Snap mode - - - - - Clear ghost notes - Cancella note fantasma - - - - - Piano-Roll - %1 - Piano-Roll - %1 - - - - - Piano-Roll - no clip - Piano-Roll - nessun pattern - - - - - XML clip file (*.xpt *.xptz) - - - - - Export clip success - - - - - Clip saved to %1 - - - - - Import clip. - - - - - You are about to import a clip, this will overwrite your current clip. Do you want to continue? - - - - - Open clip - - - - - Import clip success - - - - - Imported clip %1! - - - - - PianoView - - - Base note - Nota base - - - - First note - - - - - Last note - Ultima nota - - - - Plugin - - - Plugin not found - Plugin non trovato - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - Il plugin "%1" non è stato trovato o non è stato possibile caricarlo! -Motivo: "%2" - - - - Error while loading plugin - Errore nel caricamento del plugin - - - - Failed to load plugin "%1"! - Non è stato possibile caricare il plugin "%1"! - - PluginBrowser - - Instrument Plugins - Plugin Strumentali - - - - Instrument browser - Browser strumenti - - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - È possibile trascinare uno strumento nel Song-Editor, nel Beat+Bassline Editor o direttamente in un canale esistente. - - - + no description nessuna descrizione - + A native amplifier plugin Un plugin di amplificazione nativo - + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track Semplice sampler con varie impostazioni, per usare suoni (come percussioni) in una traccia strumentale - + Boost your bass the fast and simple way Potenzia il tuo basso in modo veloce e semplice - + Customizable wavetable synthesizer Sintetizzatore wavetable configurabile - + An oversampling bitcrusher Un riduttore di bit con oversampling - + Carla Patchbay Instrument Strumento Patchbay Carla - + Carla Rack Instrument Strutmento Rack Carla - + A dynamic range compressor. - + A 4-band Crossover Equalizer Un equalizzatore Crossover a 4 bande - + A native delay plugin Un plugin di ritardi eco nativo - + A Dual filter plugin Un plugin di duplice filtraggio - + plugin for processing dynamics in a flexible way Un versatile processore di dynamic - + A native eq plugin Un plugin di equalizzazione nativo - + A native flanger plugin Un plugin di flager nativo - + Emulation of GameBoy (TM) APU Emulatore di GameBoy™ APU - + Player for GIG files Riproduttore di file GIG - + Filter for importing Hydrogen files into LMMS Strumento per l'importazione di file Hydrogen dentro LMMS - + Versatile drum synthesizer Sintetizzatore di percussioni versatile - + List installed LADSPA plugins Elenca i plugin LADSPA installati - + plugin for using arbitrary LADSPA-effects inside LMMS. Plugin per usare qualsiasi effetto LADSPA in LMMS. - + Incomplete monophonic imitation TB-303 - Imitazione monofonica del TB-303 incompleta + - + plugin for using arbitrary LV2-effects inside LMMS. - + Plugin per usare qualsiasi effetto LV2 in LMMS. - + plugin for using arbitrary LV2 instruments inside LMMS. - + Plugin per usare qualsiasi strumento LV2 in LMMS. - + Filter for exporting MIDI-files from LMMS Filtro per esportare file MIDI da LMMS - + Filter for importing MIDI-files into LMMS Filtro per importare file MIDI in LMMS - + Monstrous 3-oscillator synth with modulation matrix Sintetizzatore mostruoso con 3 oscillatori e matrice di modulazione - + A multitap echo delay plugin Un plugin di ritardo eco multitap - + A NES-like synthesizer Un sintetizzatore che imita i suoni del Nintendo Entertainment System - + 2-operator FM Synth Sintetizzatore FM a 2 operatori - + Additive Synthesizer for organ-like sounds Sintetizzatore additivo per suoni tipo organo - + GUS-compatible patch instrument strumento compatibile con GUS - + Plugin for controlling knobs with sound peaks Plugin per controllare le manopole con picchi di suono - + Reverb algorithm by Sean Costello Algoritmo di Riverbero di Sean Costello - + Player for SoundFont files Riproduttore di file SounFont - + LMMS port of sfxr Port di sfxr su LMMS - + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Emulazione di MOS6581 and MOS8580 SID. Questo chip era utilizzato nel Commode 64. - + A graphical spectrum analyzer. Un analizzatore di spettro grafico. - + Plugin for enhancing stereo separation of a stereo input file Plugin per migliorare la separazione stereo di un file - + Plugin for freely manipulating stereo output Plugin per manipolare liberamente un'uscita stereo - + Tuneful things to bang on Oggetti dotati di intonazione su cui picchiare - + Three powerful oscillators you can modulate in several ways Tre potenti oscillatori modulabili in vari modi - + A stereo field visualizer. Un visualizzatore del campo stereo. - + VST-host for using VST(i)-plugins within LMMS Host VST per usare i plugin VST con LMMS - + Vibrating string modeler Modulatore di corde vibranti - + plugin for using arbitrary VST effects inside LMMS. - Plugin per usare effetti VST arbitrari dentro LMMS. + Plugin per usare qualsiasi effetto VST in LMMS. - + 4-oscillator modulatable wavetable synth Sintetizzatore wavetable con 4 oscillatori modulabili - + plugin for waveshaping Plugin per la modifica della forma d'onda - + Mathematical expression parser Analisi sintattica dell'espressione - + Embedded ZynAddSubFX ZynAddSubFX incorporato - - - PluginDatabaseW - - Carla - Add New - Carla - Aggiungi nuovo - - - - Format - Formato - - - - Internal - Interno - - - - LADSPA - LADSPA - - - - DSSI - DSSI - - - - LV2 - LV2 - - - - VST2 - VST2 - - - - VST3 - VST3 - - - - AU - AU - - - - Sound Kits - Kits audio - - - - Type - Tipo - - - - Effects - Effetti - - - - Instruments - Strumenti - - - - MIDI Plugins - Plugins MIDI - - - - Other/Misc - Altro/misc - - - - Architecture - Architettura - - - - Native - Nativo - - - - Bridged - Collegato - - - - Bridged (Wine) - Congiunto (Wine) - - - - Requirements - Requisiti - - - - With Custom GUI - Con GUI personalizzata - - - - With CV Ports - Con porte CV - - - - Real-time safe only - Solo sicurezza in tempo reale - - - - Stereo only - Solo stereo - - - - With Inline Display - Con display in linea - - - - Favorites only - Solo Preferiti - - - - (Number of Plugins go here) - (Numero di plugin vai qui) - - - - &Add Plugin - &Aggiungi plugin - - - - Cancel - Annulla - - - - Refresh - Aggiorna - - - - Reset filters - Ripristina filtri - - - - - - - - - - - - - - - - - - - TextLabel - Etichetta testo - - - - Format: - Formato: - - - - Architecture: - Architettura: - - - - Type: - Tipo: - - - - MIDI Ins: - Ins MIDI: - - - - Audio Ins: - Ins Audio: - - - - CV Outs: - Uscite CV: - - - - MIDI Outs: - Uscite MIDI: - - - - Parameter Ins: - Ins Parametri: - - - - Parameter Outs: - Uscite parametri: - - - - Audio Outs: - Uscite audio: - - - - CV Ins: - Ins CV: - - - - UniqueID: + + An all-pass filter allowing for extremely high orders. - - Has Inline Display: - Ha un Display in linea: + + Granular pitch shifter + Pitch shifter granulare - - Has Custom GUI: - Ha una GUI personalizzata: - - - - Is Synth: + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. - - Is Bridged: - + + Basic Slicer + Basic Slicer - - Information - Informazioni - - - - Name - Nome - - - - Label/URI - - - - - Maker - Creatore - - - - Binary/Filename - Binario/Nome file - - - - Focus Text Search - Ricerca testo mirato - - - - Ctrl+F - Ctrl+F + + Tap to the beat + Tocca a ritmo @@ -10833,36 +3462,41 @@ Questo chip era utilizzato nel Commode 64. + Send Notes + Invia Note + + + Send Bank/Program Changes Invia banco/Modifiche programma - + Send Control Changes Invia modifiche al controllo - + Send Channel Pressure Invia pressione canale - + Send Note Aftertouch Invia nota Aftertouch - + Send Pitchbend Invia Pitchbend - + Send All Sound/Notes Off Invia tutti i suoni/Note disattivate - + Plugin Name @@ -10871,57 +3505,57 @@ Nome Plugin - + Program: Programma: - + MIDI Program: Programma MIDI: - + Save State Salva Stato - + Load State Carica Stato - + Information Informazioni - + Label/URI: Etichetta/URI: - + Name: Nome: - + Type: Tipo: - + Maker: Creatore: - + Copyright: Copyright: - + Unique ID: ID univoco: @@ -10929,16 +3563,457 @@ Nome Plugin PluginFactory - + Plugin not found. Plugin non trovato. - + LMMS plugin %1 does not have a plugin descriptor named %2! Il plugin LMMS %1 non ha una descrizione chiamata %2! + + PluginListDialog + + + Carla - Add New + Carla - Aggiungi nuovo + + + + Requirements + Requisiti + + + + With Custom GUI + Con GUI personalizzata + + + + With CV Ports + Con CV Porte + + + + Real-time safe only + Solo in tempo reale sicuro + + + + Stereo only + Solo Stereo + + + + With Inline Display + Con Display Inline + + + + Favorites only + Solo Preferiti + + + + (Number of Plugins go here) + (Numero di Plugin va qui) + + + + &Add Plugin + &Aggiungi Plugin + + + + Cancel + Cancella + + + + Refresh + Aggiorna + + + + Reset filters + Ripristina i filtri + + + + + + + + + + + + + + + + + + + TextLabel + Etichetta di testo + + + + Format: + Formato: + + + + Architecture: + Architettura: + + + + Type: + Tipo: + + + + MIDI Ins: + MIDI ingresso: + + + + Audio Ins: + Audio ingresso: + + + + CV Outs: + CV uscita: + + + + MIDI Outs: + MIDI uscita: + + + + Parameter Ins: + Parametri ingresso: + + + + Parameter Outs: + Parametri uscita: + + + + Audio Outs: + Audio uscita: + + + + CV Ins: + CV ingresso: + + + + UniqueID: + ID univoco: + + + + Has Inline Display: + Ha Display Inline: + + + + Has Custom GUI: + Ha GUI personalizzata: + + + + Is Synth: + E' Synth: + + + + Is Bridged: + E' Bridged: + + + + Information + Informazioni + + + + Name + Nome + + + + Label/Id/URI + Etichetta/Id/URI + + + + Maker + Creatore + + + + Binary/Filename + Binario/Nome di file + + + + Format + Formato + + + + Internal + Interno + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + VST2 + VST2 + + + + VST3 + VST3 + + + + CLAP + CLAP + + + + AU + AU + + + + JSFX + JSFX + + + + Sound Kits + Sound Kits + + + + Type + Tipo + + + + Effects + Effetti + + + + Instruments + Strumenti + + + + MIDI Plugins + MIDI Plugins + + + + Other/Misc + Altro/Misc + + + + Category + Categoria + + + + All + Tutto + + + + Delay + Delay + + + + Distortion + Distorsione + + + + Dynamics + Dinamica + + + + EQ + EQ + + + + Filter + Filtro + + + + Modulator + Modulatore + + + + Synth + Synth + + + + Utility + Utilità + + + + + Other + Altro + + + + Architecture + Architettura + + + + + Native + Nativo + + + + Bridged + Bridged + + + + Bridged (Wine) + Bridged (Wine) + + + + Focus Text Search + Focalizza la ricerca testuale + + + + Ctrl+F + Ctrl+F + + + + Bridged (32bit) + Bridged (32bit) + + + + Discovering internal plugins... + Scoprendo plugin interni... + + + + Discovering LADSPA plugins... + Scoprendo LADSPA plugin... + + + + Discovering DSSI plugins... + Scoprendo DSSI plugin... + + + + Discovering LV2 plugins... + Scoprendo LV2 plugin... + + + + Discovering VST2 plugins... + Scoprendo VST2 plugin... + + + + Discovering VST3 plugins... + Scoprendo VST3 plugin... + + + + Discovering CLAP plugins... + Scoprendo CLAP plugin... + + + + Discovering AU plugins... + Scoprendo AU plugin... + + + + Discovering JSFX plugins... + Scoprendo JSFX plugin... + + + + Discovering SF2 kits... + Scoprendo SF2 kits... + + + + Discovering SFZ kits... + Scoprendo SFZ kits... + + + + Unknown + Sconosciuto + + + + + + + Yes + + + + + + + + No + No + + PluginParameter @@ -10953,156 +4028,59 @@ Nome Plugin + TextLabel + Etichetta di testo + + + ... ... - PluginRefreshW + PluginRefreshDialog - - Carla - Refresh - Carla - Aggiorna + + Plugin Refresh + Aggiornamento del plugin - - Search for new... - Cerca nuovo... + + Search for: + Cerca: - - LADSPA - LADSPA + + All plugins, ignoring cache + Tutti i plugin, ignorando cache - - DSSI - DSSI + + Updated plugins only + Solo plugin aggiornati - - LV2 - LV2 + + Check previously invalid plugins + Controlla i plugin precedentemente non validi - - VST2 - VST2 - - - - VST3 - VST3 - - - - AU - AU - - - - SF2/3 - SF2/3 - - - - SFZ - SFZ - - - - Native - Nativo - - - - POSIX 32bit - POSIX 32bit - - - - POSIX 64bit - POSIX 64bit - - - - Windows 32bit - Windows 32bit - - - - Windows 64bit - Windows 64bit - - - - Available tools: - Strumenti disponibili: - - - - python3-rdflib (LADSPA-RDF support) - python3-rdflib (supporto LADSPA-RDF) - - - - carla-discovery-win64 - carla-discovery-win64 - - - - carla-discovery-native - carla-discovery-nativo - - - - carla-discovery-posix32 - carla-discovery-posix32 - - - - carla-discovery-posix64 - carla-discovery-posix64 - - - - carla-discovery-win32 - carla-discovery-win32 - - - - Options: - Opzioni: - - - - Carla will run small processing checks when scanning the plugins (to make sure they won't crash). -You can disable these checks to get a faster scanning time (at your own risk). - Carla eseguirà piccoli controlli di elaborazione durante la scansione dei plugin (per assicurarsi che non si arrestino). -È possibile disabilitare questi controlli per ottenere un tempo di scansione più rapido (a proprio rischio). - - - - Run processing checks while scanning - Esegui controlli di elaborazione durante la scansione - - - + Press 'Scan' to begin the search - Premere 'Scansiona' per avviare la ricerca + Premi 'Scansione' per iniziare la ricerca - + Scan - Scansiona + Scansione - + >> Skip - >> Ignora + >> Salta - + Close Chiudi @@ -11116,53 +4094,53 @@ You can disable these checks to get a faster scanning time (at your own risk). Frame - + Frame - + Enable Abilita - + On/Off On/Off - + - + PluginName - + Nome del plugin - + MIDI MIDI - + AUDIO IN INGRESSO AUDIO - + AUDIO OUT USCITA AUDIO - + GUI GUI - + Edit Modifica - + Remove Rimuovi @@ -11177,5175 +4155,14606 @@ You can disable these checks to get a faster scanning time (at your own risk).Preselezione: - - ProjectNotes - - - Project Notes - Mostra/nascondi le note del progetto - - - - Enter project notes here - Scrivi gli appunti per il progetto - - - - Edit Actions - Modifica azioni - - - - &Undo - &Annulla operazione - - - - %1+Z - %1+Z - - - - &Redo - &Ripeti operazione - - - - %1+Y - %1+Y - - - - &Copy - &Copia - - - - %1+C - %1+C - - - - Cu&t - &Taglia - - - - %1+X - %1+X - - - - &Paste - &Incolla - - - - %1+V - %1+V - - - - Format Actions - Opzioni di formattazione - - - - &Bold - &Grassetto - - - - %1+B - %1+B - - - - &Italic - Cors&ivo - - - - %1+I - %1+I - - - - &Underline - &Sottolineato - - - - %1+U - %1+U - - - - &Left - &Sinistra - - - - %1+L - %1+L - - - - C&enter - C&entro - - - - %1+E - %1+E - - - - &Right - Dest&ra - - - - %1+R - %1+R - - - - &Justify - &Giustifica - - - - %1+J - %1+J - - - - &Color... - &Colore... - - ProjectRenderer - + WAV (*.wav) WAV (*.wav) - + FLAC (*.flac) FLAC (*.flac) - + OGG (*.ogg) OGG (*.ogg) - + MP3 (*.mp3) MP3 (*.mp3) - QObject + QGroupBox - - Reload Plugin - - - - - Show GUI - Mostra GUI - - - - Help - Aiuto - - - - QWidget - - - - - - Name: - Nome: - - - - URI: - - - - - - - Maker: - Autore: - - - - - - Copyright: - Copyright: - - - - - Requires Real Time: - Richiede Real Time: - - - - - - - - - Yes - - - - - - - - - - No - No - - - - - Real Time Capable: - Abilitato al Real Time: - - - - - In Place Broken: - In Place Broken: - - - - - Channels In: - Canali in ingresso: - - - - - Channels Out: - Canali in uscita: - - - - File: %1 - File: %1 - - - - File: - File: - - - - RecentProjectsMenu - - - &Recently Opened Projects - Progetti &Recenti - - - - RenameDialog - - - Rename... - Rinomina... - - - - ReverbSCControlDialog - - - Input - Ingresso - - - - Input gain: - Guadagno in Input: - - - - Size - Grandezza - - - - Size: - Grandezza: - - - - Color - Colore - - - - Color: - Colore: - - - - Output - Uscita - - - - Output gain: - Guadagno in output: - - - - ReverbSCControls - - - Input gain - Guadagno in input - - - - Size - Grandezza - - - - Color - Colore - - - - Output gain - Guadagno in output - - - - SaControls - - - Pause - Pausa - - - - Reference freeze - Blocca riferimento - - - - Waterfall - A cascata - - - - Averaging - Mediamente - - - - Stereo - Stereofonico - - - - Peak hold - Tenuta del picco - - - - Logarithmic frequency - Frequenza logaritmica - - - - Logarithmic amplitude - Ampiezza logaritmica - - - - Frequency range - Intervallo di frequenza - - - - Amplitude range - Gamma di ampiezza - - - - FFT block size - Dimensione blocco FFT - - - - FFT window type - Tipo di finestra FFT - - - - Peak envelope resolution - Risoluzione inviluppo di picco - - - - Spectrum display resolution - Risoluzione visualizzatore dello spettro - - - - Peak decay multiplier - Moltiplicatore decadimento di picco - - - - Averaging weight - Peso medio - - - - Waterfall history size - Dimensioni cronologia cascata - - - - Waterfall gamma correction - Correzione gamma a cascata - - - - FFT window overlap - Sovrapposizione finestra FFT - - - - FFT zero padding - - - - - - Full (auto) - Completo (automatico) - - - - - - Audible - Udibile - - - - Bass - Bassi - - - - Mids - Medi - - - - High - Alto - - - - Extended - Esteso - - - - Loud - Forte - - - - Silent - Silenzioso - - - - (High time res.) - (Alta ris. temporale.) - - - - (High freq. res.) - (Ris, alta freq.) - - - - Rectangular (Off) - Rettangolare (disattivato) - - - - - Blackman-Harris (Default) - Blackman-Harris (predefinito) - - - - Hamming - Hamming - - - - Hanning - Hanning - - - - SaControlsDialog - - - Pause - Pausa - - - - Pause data acquisition - Sospendi acquisizione dati - - - - Reference freeze - Blocca riferimento - - - - Freeze current input as a reference / disable falloff in peak-hold mode. - Blocca ingresso corrente come un riferimento/disabilita la caduta in modalità Tenuta-Picco. - - - - Waterfall - A cascata - - - - Display real-time spectrogram - Visualizza spettrogramma in tempo reale - - - - Averaging - Mediamente - - - - Enable exponential moving average - Abilita movimento medio esponenziale - - - - Stereo - Stereofonico - - - - Display stereo channels separately - Visualizza canali stereo separatamente - - - - Peak hold - Tenuta del picco - - - - Display envelope of peak values - Visualizza inviluppo dei valori di picco - - - - Logarithmic frequency - Frequenza logaritmica - - - - Switch between logarithmic and linear frequency scale - Passa dalla scala della frequenza logaritmica a quella lineare - - - - - Frequency range - Intervallo di frequenza - - - - Logarithmic amplitude - Ampiezza logaritmica - - - - Switch between logarithmic and linear amplitude scale - Scambia tra scala logaritmica e ad ampiezza lineare - - - - - Amplitude range - Gamma di ampiezza - - - - Envelope res. - Ris. inviluppo - - - - Increase envelope resolution for better details, decrease for better GUI performance. - Aumenta la risoluzione dell'inviluppo per maggiori dettagli, diminuisci per migliori prestazioni della GUI. - - - - - Draw at most - Disegna al massimo - - - - envelope points per pixel - punti di inviluppo per pixel - - - - Spectrum res. - Ris. spettro - - - - Increase spectrum resolution for better details, decrease for better GUI performance. - Aumenta la risoluzione dello spettro per maggiori dettagli, diminuisci per migliori prestazioni della GUI. - - - - spectrum points per pixel - punti di spettro per pixel - - - - Falloff factor - Fattore di decadimento - - - - Decrease to make peaks fall faster. - Diminuisci per far cadere più rapidamente i picchi. - - - - Multiply buffered value by - Moltiplica il valore bufferizzato per - - - - Averaging weight - Peso medio - - - - Decrease to make averaging slower and smoother. - Riduci per rendere la media più lenta e uniforme. - - - - New sample contributes - Nuovo campione contribuisce - - - - Waterfall height - Altezza cascata - - - - Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. - Aumenta per scorrere più lentamente, diminuisci per vedere meglio le transizioni veloci. Avvertenza: utilizzo medio della CPU. - - - - Keep - Mantieni - - - - lines - linee - - - - Waterfall gamma - Gamma cascata - - - - Decrease to see very weak signals, increase to get better contrast. - Diminuisci per vedere segnali molto deboli, aumenta per ottenere un migliore contrasto. - - - - Gamma value: - Valore gamma: - - - - Window overlap - Sovrapposizione della finestra - - - - Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. - Aumenta per evitare che manchino transizioni veloci nei pressi dei bordi delle finestre FFT. Avvertenza: utilizzo elevato della CPU. - - - - Each sample processed - Ogni campione elaborato - - - - times - - - - - Zero padding - - - - - Increase to get smoother-looking spectrum. Warning: high CPU usage. - Aumenta per ottenere uno spettro più uniforme. Avvertenza: elevato utilizzo della CPU. - - - - Processing buffer is - Il buffer di elaborazione è - - - - steps larger than input block - passi più grandi del blocco di entrata - - - - Advanced settings - Impostazioni avanzate - - - - Access advanced settings - Accesso impostazioni avanzate - - - - - FFT block size - Dimensione blocco FFT - - - - - FFT window type - Tipo finestra FFT - - - - SampleBuffer - - - Fail to open file - Impossibile aprire il file - - - - Audio files are limited to %1 MB in size and %2 minutes of playing time - I file audio hanno un limite di %1 MB in grandezza e %2 minuti in durata - - - - Open audio file - Apri file audio - - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - Tutti i file audio (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - - Wave-Files (*.wav) - File wave (*.wav) - - - - OGG-Files (*.ogg) - File OGG (*.ogg) - - - - DrumSynth-Files (*.ds) - File DrumSynth (*.ds) - - - - FLAC-Files (*.flac) - File FLAC (*.flac) - - - - SPEEX-Files (*.spx) - File SPEEX (*.spx) - - - - VOC-Files (*.voc) - File VOC (*.voc) - - - - AIFF-Files (*.aif *.aiff) - File AIFF (*.aif *.aiff) - - - - AU-Files (*.au) - File AU (*.au) - - - - RAW-Files (*.raw) - File RAW (*.raw) - - - - SampleClipView - - - Double-click to open sample - Fare doppio-click per aprire un campione - - - - Delete (middle mousebutton) - Elimina (tasto centrale del mouse) - - - - Delete selection (middle mousebutton) - - - - - Cut - Taglia - - - - Cut selection - - - - - Copy - Copia - - - - Copy selection - - - - - Paste - Incolla - - - - Mute/unmute (<%1> + middle click) - Attiva/disattiva la modalità muta (<%1> + tasto centrale) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Reverse sample - Inverti campione - - - - Set clip color - - - - - Use track color - - - - - SampleTrack - - - Volume - Volume - - - - Panning - Bilanciamento - - - - Mixer channel - Canale FX - - - - - Sample track - Traccia di campione - - - - SampleTrackView - - - Track volume - Volume della traccia - - - - Channel volume: - Volume del canale: - - - - VOL - VOL - - - - Panning - Bilanciamento - - - - Panning: - Bilanciamento: - - - - PAN - BIL - - - - Channel %1: %2 - FX %1: %2 - - - - SampleTrackWindow - - - GENERAL SETTINGS - IMPOSTAZIONI GENERALI - - - - Sample volume - Volume campione - - - - Volume: - Volume: - - - - VOL - VOL - - - - Panning - Bilanciamento - - - - Panning: - Bilanciamento: - - - - PAN - BIL - - - - Mixer channel - Canale FX - - - - CHANNEL - FX - - - - SaveOptionsWidget - - - Discard MIDI connections - Scarta le connessioni MIDI - - - - Save As Project Bundle (with resources) - - - - - SetupDialog - - - Reset to default value - Ritorna alle impostazioni predefinite - - - - Use built-in NaN handler - Usa il gestore NaN integrato - - - - Settings - Impostazioni - - - - - General - Generale - - - - Graphical user interface (GUI) - Interfaccia utente grafica (GUI) - - - - Display volume as dBFS - Mostra il volume in dBFS - - - - Enable tooltips - Abilita i suggerimenti - - - - Enable master oscilloscope by default - - - - - Enable all note labels in piano roll - - - - - Enable compact track buttons - - - - - Enable one instrument-track-window mode - - - - - Show sidebar on the right-hand side - - - - - Let sample previews continue when mouse is released - - - - - Mute automation tracks during solo - - - - - Show warning when deleting tracks - - - - - Projects - Progetti - - - - Compress project files by default - - - - - Create a backup file when saving a project - - - - - Reopen last project on startup - - - - - Language - Lingua - - - - - Performance - Prestazioni - - - - Autosave - Salvataggio automatico - - - - Enable autosave - Abilita salvataggio automatico - - - - Allow autosave while playing - Consenti salvataggio automatico durante la riproduzione - - - - User interface (UI) effects vs. performance - Effetti dell'interfaccia utente (UI) vs. prestazioni - - - - Smooth scroll in song editor - - - - - Display playback cursor in AudioFileProcessor - - - - - Plugins - Plugin - - - - VST plugins embedding: - Incorporamento dei plug-in VST: - - - - No embedding - Nessun incorporamento - - - - Embed using Qt API - Incorpora utilizzando l'API Qt - - - - Embed using native Win32 API - Incorpora utilizzando l'API Win32 nativa - - - - Embed using XEmbed protocol - Incorpora utilizzando il protocollo XEmbed - - - - Keep plugin windows on top when not embedded - Mantieni le finestre dei plugin in primo piano quando non sono incorporate - - - - Sync VST plugins to host playback - Sincronizza i plugin VST alla riproduzione del programma - - - - Keep effects running even without input - Lascia gli effetti attivi anche senza input - - - - - Audio - Audio - - - - Audio interface - Interfaccia audio - - - - HQ mode for output audio device - Modalità HQ per il dispositivo audio di uscita - - - - Buffer size - Dimensione buffer - - - - - MIDI - MIDI - - - - MIDI interface - Interfaccia MIDI - - - - Automatically assign MIDI controller to selected track - - - - - LMMS working directory - Directory di lavoro di LMMS - - - - VST plugins directory - - - - - LADSPA plugins directories - - - - - SF2 directory - Directory dei SoundFont - - - - Default SF2 - - - - - GIG directory - Directory di GIG - - - - Theme directory - - - - - Background artwork - Grafica dello sfondo - - - - Some changes require restarting. - Alcune modifiche richiedono il riavvio. - - - - Autosave interval: %1 - Intervallo salvataggio automatico: %1 - - - - Choose the LMMS working directory - Scegli la cartella di lavoro di LMMS - - - - Choose your VST plugins directory - Scegli la tua cartella dei plugins VST - - - - Choose your LADSPA plugins directory - Scegli la tua cartella dei plugins LADSPA - - - - Choose your default SF2 - Scegli il tuo SF2 predefinito - - - - Choose your theme directory - Scegli la tua cartella dei temi - - - - Choose your background picture - Scegli la tua immagine di sfondo - - - - - Paths - Percorsi - - - - OK - OK - - - - Cancel - Annulla - - - - Frames: %1 -Latency: %2 ms - Frames: %1 -Latenza: %2 ms - - - - Choose your GIG directory - Selezione la directory di GIG - - - - Choose your SF2 directory - Seleziona la directory dei SoundFont - - - - minutes - minuti - - - - minute - minuto - - - - Disabled - Disabilitato - - - - SidInstrument - - - Cutoff frequency - Frequenza di taglio - - - - Resonance - Risonanza - - - - Filter type - Tipo di filtro - - - - Voice 3 off - Voce 3 spenta - - - - Volume - Volume - - - - Chip model - Modello di chip - - - - SidInstrumentView - - - Volume: - Volume: - - - - Resonance: - Risonanza: - - - - - Cutoff frequency: - Frequenza di taglio: - - - - High-pass filter - Filtro passa-alto - - - - Band-pass filter - Filtro passa-banda - - - - Low-pass filter - Filtro passa-basso - - - - Voice 3 off - Voce 3 disattivata - - - - MOS6581 SID - MOS6581 SID - - - - MOS8580 SID - MOS8580 SID - - - - - Attack: - Attacco: - - - - - Decay: - Decadimento: - - - - Sustain: - Sostegno: - - - - - Release: - Rilascio: - - - - Pulse Width: - Ampiezza pulse: - - - - Coarse: - Approssimativo: - - - - Pulse wave - Onda a impulso - - - - Triangle wave - Onda triangolare - - - - Saw wave - Onda a dente di sega - - - - Noise - Rumore - - - - Sync - Sincronizzato - - - - Ring modulation - Modulazione ad anello - - - - Filtered - Filtrato - - - - Test - Test - - - - Pulse width: - Ampiezza impulso: - - - - SideBarWidget - - - Close - Chiudi - - - - Song - - - Tempo - Tempo - - - - Master volume - Volume principale - - - - Master pitch - Altezza principale - - - - Aborting project load - - - - - Project file contains local paths to plugins, which could be used to run malicious code. - - - - - Can't load project: Project file contains local paths to plugins. - - - - - LMMS Error report - Informazioni sull'errore di LMMS - - - - (repeated %1 times) - - - - - The following errors occurred while loading: - Si sono verificati i seguenti errori durante il caricamento: - - - - SongEditor - - - Could not open file - Non è stato possibile aprire il file - - - - Could not open file %1. You probably have no permissions to read this file. - Please make sure to have at least read permissions to the file and try again. - Impossibile aprire il file %1. Probabilmente non disponi dei permessi necessari alla sua lettura. -Assicurati di avere almeno i permessi di lettura del file e prova di nuovo. - - - - Operation denied - - - - - A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. - - - - - - - Error - Errore - - - - Couldn't create bundle folder. - - - - - Couldn't create resources folder. - - - - - Failed to copy resources. - - - - - Could not write file - Impossibile scrivere il file - - - - Could not open %1 for writing. You probably are not permitted towrite to this file. Please make sure you have write-access to the file and try again. - - - - - This %1 was created with LMMS %2 - - - - - Error in file - Errore nel file - - - - The file %1 seems to contain errors and therefore can't be loaded. - Il file %1 sembra contenere errori, quindi non può essere caricato. - - - - Version difference - Differenza di versione - - - - template - modello - - - - project - progetto - - - - Tempo - Tempo - - - - TEMPO - TEMPO - - - - Tempo in BPM - Tempo in BPM - - - - High quality mode - Modalità ad alta qualità - - - - - - Master volume - Volume principale - - - - - - Master pitch - Altezza principale - - - - Value: %1% - Valore: %1% - - - - Value: %1 semitones - Valore: %1 semitoni - - - - SongEditorWindow - - - Song-Editor - Song-Editor - - - - Play song (Space) - Riproduci il brano (Spazio) - - - - Record samples from Audio-device - Registra campioni da una periferica audio - - - - Record samples from Audio-device while playing song or BB track - Registra campioni da una periferica audio mentre il brano o una traccia BB sono in riproduzione - - - - Stop song (Space) - Ferma la riproduzione del brano (Spazio) - - - - Track actions - Azioni sulle tracce - - - - Add beat/bassline - Aggiungi beat/bassline - - - - Add sample-track - Aggiungi traccia di campione - - - - Add automation-track - Aggiungi una traccia di automazione - - - - Edit actions - Modalità di modifica - - - - Draw mode - Modalità disegno - - - - Knife mode (split sample clips) - - - - - Edit mode (select and move) - Modalità modifica (seleziona e sposta) - - - - Timeline controls - Controlla griglia - - - - Bar insert controls - - - - - Insert bar - - - - - Remove bar - - - - - Zoom controls - Opzioni di zoom - - - - Horizontal zooming - Zoom orizzontale - - - - Snap controls - Controlli aggancio - - - - - Clip snapping size - Dimensione aggancio della clip - - - - Toggle proportional snap on/off - Attiva/disattiva aggancio proporzionale - - - - Base snapping size - Dimensione aggancio di base - - - - StepRecorderWidget - - - Hint - Suggerimento - - - - Move recording curser using <Left/Right> arrows - Sposta cursore di registrazione usando le frecce <Sinistra/Destra> - - - - SubWindow - - - Close - Chiudi - - - - Maximize - Massimizza - - - - Restore - Apri - - - - TabWidget - - - + + Settings for %1 Impostazioni per %1 - TemplatesMenu + QObject - - New from template - Nuovo da modello + + Reload Plugin + Ricarica Plugin + + + + Show GUI + Mostra GUI + + + + Help + Aiuto + + + + LADSPA plugins + LADSPA plugins + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + Il progetto contiene %1 LADSPA plugin che potrebbero non essere stati ripristinati correttamente! Si prega di controllare il progetto. + + + + URI: + URI: + + + + Project: + Progetto: + + + + Maker: + Creatore: + + + + Homepage: + Pagina iniziale: + + + + License: + Licenza: + + + + File: %1 + File: %1 + + + + failed to load description + Impossibile caricare la descrizione + + + + Open audio file + Apri audio file + + + + Error loading sample + Errore di caricamento del sample + + + + %1 (unsupported) + %1 (non supportato) - TempoSyncKnob + QWidget - - - Tempo Sync - Sync del tempo + + + Name: + Nome: - - No Sync - Non in Sync + + Maker: + Autore: - - Eight beats - Otto battiti + + Copyright: + Copyright: - - Whole note - Un intero + + Requires Real Time: + Richiede Real Time: - - Half note - Una metà + + + + Yes + - - Quarter note - Quarto + + + + No + No - - 8th note - Ottavo + + Real Time Capable: + Abilitato al Real Time: - - 16th note - Sedicesimo + + In Place Broken: + In Place Broken: - - 32nd note - Trentaduesimo + + Channels In: + Canali in ingresso: - - Custom... - Personalizzato... + + Channels Out: + Canali in uscita: - - Custom - Personalizzato + + File: %1 + File: %1 - - Synced to Eight Beats - In sync con otto battiti - - - - Synced to Whole Note - In sync con un intero - - - - Synced to Half Note - In sync con un mezzo - - - - Synced to Quarter Note - In sync con quarti - - - - Synced to 8th Note - In sync con ottavi - - - - Synced to 16th Note - In sync con 16simi - - - - Synced to 32nd Note - In sync con 32simi + + File: + File: - TimeDisplayWidget + XYControllerW - - Time units - Unità di tempo + + XY Controller + XY Controller - - MIN - MIN + + X Controls: + X Controlli: - - SEC - SEC + + Y Controls: + Y Controlli: - - MSEC - MSEC + + Smooth + Ammorbidire - - BAR - BAR + + &Settings + &Impostazioni - - BEAT - BATT + + Channels + Canali - - TICK - TICK + + &File + &File + + + + Show MIDI &Keyboard + Mostra MIDI &Tastiera + + + + (All) + (Tutto) + + + + 1 + 1 + + + + 2 + 2 + + + + 3 + 3 + + + + 4 + 4 + + + + 5 + 5 + + + + 6 + 6 + + + + 7 + 7 + + + + 8 + 8 + + + + 9 + 9 + + + + 10 + 10 + + + + 11 + 11 + + + + 12 + 12 + + + + 13 + 13 + + + + 14 + 14 + + + + 15 + 15 + + + + 16 + 16 + + + + &Quit + &Esci + + + + Esc + Esc + + + + (None) + (Nessuno) - TimeLineWidget + lmms::AmplifierControls - - Auto scrolling - Scorrimento automatico - - - - Loop points - Punti di ripetizione ciclica - - - - After stopping go back to beginning - - - - - After stopping go back to position at which playing was started - Una volta fermata la riproduzione, torna alla posizione da cui si è partiti - - - - After stopping keep position - Una volta fermata la riproduzione, mantieni la posizione - - - - Hint - Suggerimento - - - - Press <%1> to disable magnetic loop points. - Premi <%1> per disabilitare i punti di loop magnetici. - - - - Track - - - Mute - Muto - - - - Solo - Solo - - - - TrackContainer - - - Couldn't import file - Non è stato possibile importare il file - - - - Couldn't find a filter for importing file %1. -You should convert this file into a format supported by LMMS using another software. - Non è stato possibile trovare un filtro per importare il file %1. -È necessario convertire questo file in un formato supportato da LMMS usando un altro programma. - - - - Couldn't open file - Non è stato possibile aprire il file - - - - Couldn't open file %1 for reading. -Please make sure you have read-permission to the file and the directory containing the file and try again! - Non è stato possibile aprire il file %1 in lettura. -Assicurarsi di avere i permessi in lettura per il file e per la directory che lo contiene e riprovare! - - - - Loading project... - Caricamento del progetto... - - - - - Cancel - Annulla - - - - - Please wait... - Attendere... - - - - Loading cancelled - Caricamento annullato - - - - Project loading was cancelled. - Il caricamento del progetto è stato annullato. - - - - Loading Track %1 (%2/Total %3) - Caricamento Traccia %1 (%2/Totale %3) - - - - Importing MIDI-file... - Importazione del file MIDI... - - - - Clip - - - Mute - Muto - - - - ClipView - - - Current position - Posizione attuale - - - - Current length - Lunghezza attuale - - - - - %1:%2 (%3:%4 to %5:%6) - %1:%2 (da %3:%4 a %5:%6) - - - - Press <%1> and drag to make a copy. - Premere <%1>, cliccare e trascinare per copiare. - - - - Press <%1> for free resizing. - Premere <%1> per ridimensionare liberamente. - - - - Hint - Suggerimento - - - - Delete (middle mousebutton) - Elimina (tasto centrale del mouse) - - - - Delete selection (middle mousebutton) - - - - - Cut - Taglia - - - - Cut selection - - - - - Merge Selection - - - - - Copy - Copia - - - - Copy selection - - - - - Paste - Incolla - - - - Mute/unmute (<%1> + middle click) - Attiva/disattiva la modalità muta (<%1> + tasto centrale) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Set clip color - - - - - Use track color - - - - - TrackContentWidget - - - Paste - Incolla - - - - TrackOperationsWidget - - - Press <%1> while clicking on move-grip to begin a new drag'n'drop action. - Premi <%1> mentre fai clic sul controllo per iniziare una nuova azione di trascinamento della selezione. - - - - Actions - Azioni - - - - - Mute - Muto - - - - - Solo - Solo - - - - After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? - - - - - Confirm removal - - - - - Don't ask again - - - - - Clone this track - Clona questa traccia - - - - Remove this track - Elimina questa traccia - - - - Clear this track - Pulisci questa traccia - - - - Channel %1: %2 - FX %1: %2 - - - - Assign to new mixer Channel - Assegna ad un nuovo canale FX - - - - Turn all recording on - Accendi tutti i processi di registrazione - - - - Turn all recording off - Spegni tutti i processi di registrazione - - - - Change color - Cambia colore - - - - Reset color to default - Ripristina colore predefinito - - - - Set random color - - - - - Clear clip colors - - - - - TripleOscillatorView - - - Modulate phase of oscillator 1 by oscillator 2 - Modula la fase dell'oscillatore 1 tramite l'oscillatore 2 - - - - Modulate amplitude of oscillator 1 by oscillator 2 - Modula l'ampiezza dell'oscillatore 1 dall'oscillatore 2 - - - - Mix output of oscillators 1 & 2 - Miscelare l'uscita degli oscillatori 1 e 2 - - - - Synchronize oscillator 1 with oscillator 2 - Sincronizzare l'oscillatore 1 con l'oscillatore 2 - - - - Modulate frequency of oscillator 1 by oscillator 2 - Modula la frequenza dell'oscillatore 1 tramite l'oscillatore 2 - - - - Modulate phase of oscillator 2 by oscillator 3 - Modula la fase dell'oscillatore 2 tramite l'oscillatore 3 - - - - Modulate amplitude of oscillator 2 by oscillator 3 - Modula l'ampiezza dell'oscillatore 2 tramite l'oscillatore 3 - - - - Mix output of oscillators 2 & 3 - Miscela l'uscita degli oscillatori 2 e 3 - - - - Synchronize oscillator 2 with oscillator 3 - Sincronizzare l'oscillatore 2 con l'oscillatore 3 - - - - Modulate frequency of oscillator 2 by oscillator 3 - Modula la frequenza dell'oscillatore 2 tramite l'oscillatore 3 - - - - Osc %1 volume: - Volume osc %1: - - - - Osc %1 panning: - Panning osc %1: - - - - Osc %1 coarse detuning: - Intonazione dell'osc %1: - - - - semitones - semitoni - - - - Osc %1 fine detuning left: - Intonazione precisa osc %1 sinistra: - - - - - cents - centesimi - - - - Osc %1 fine detuning right: - Intonazione precisa dell'osc %1 - destra: - - - - Osc %1 phase-offset: - Scostamento fase dell'osc %1: - - - - - degrees - gradi - - - - Osc %1 stereo phase-detuning: - Intonazione fase stereo dell'osc %1: - - - - Sine wave - Onda sinusoidale - - - - Triangle wave - Onda triangolare - - - - Saw wave - Onda a dente di sega - - - - Square wave - Onda quadra - - - - Moog-like saw wave - Onda a dente di sega tipo Moog - - - - Exponential wave - Onda esponenziale - - - - White noise - Rumore bianco - - - - User-defined wave - Onda definita dall'utente - - - - VecControls - - - Display persistence amount - Visualizza quantità di persistenza - - - - Logarithmic scale - Scala logaritmica - - - - High quality - Alta qualità - - - - VecControlsDialog - - - HQ - HQ - - - - Double the resolution and simulate continuous analog-like trace. - Raddoppia la risoluzione e simula una traccia analogica continua. - - - - Log. scale - Scala log. - - - - Display amplitude on logarithmic scale to better see small values. - Mostra l'ampiezza su scala logaritmica per visualizzare meglio i piccoli valori. - - - - Persist. - Persist. - - - - Trace persistence: higher amount means the trace will stay bright for longer time. - Persistenza della traccia: una quantità maggiore significa che la traccia rimarrà luminosa per un tempo più lungo. - - - - Trace persistence - Persistenza della traccia - - - - VersionedSaveDialog - - - Increment version number - Nuova versione - - - - Decrement version number - Riduci numero versione - - - - Save Options - Opzioni di salvataggio - - - - already exists. Do you want to replace it? - Esiste già. Vuoi sovrascriverlo? - - - - VestigeInstrumentView - - - - Open VST plugin - Apri plug-in VST - - - - Control VST plugin from LMMS host - Controlla il plug-in VST dall'host LMMS - - - - Open VST plugin preset - Apri lo schema del plug-in VST - - - - Previous (-) - Precedente (-) - - - - Save preset - Salva il preset - - - - Next (+) - Successivo (+) - - - - Show/hide GUI - Mostra/nascondi l'interfaccia - - - - Turn off all notes - Disabilita tutte le note - - - - DLL-files (*.dll) - File DLL (*.dll) - - - - EXE-files (*.exe) - File EXE (*.exe) - - - - No VST plugin loaded - Nessun plug-in VST caricato - - - - Preset - Preset - - - - by - da - - - - - VST plugin control - - Controllo del plugin VST - - - - VstEffectControlDialog - - - Show/hide - Mostra/nascondi - - - - Control VST plugin from LMMS host - Controlla il plug-in VST dall'ospite LMMS - - - - Open VST plugin preset - Apri lo schema del plug-in VST - - - - Previous (-) - Precedente (-) - - - - Next (+) - Successivo (+) - - - - Save preset - Salva il preset - - - - - Effect by: - Effetto da: - - - - &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - - - - VstPlugin - - - - The VST plugin %1 could not be loaded. - Non è stato possibile caricare il plugin VST %1. - - - - Open Preset - Apri preset - - - - - Vst Plugin Preset (*.fxp *.fxb) - Preset di plugin VST (*.fxp *.fxb) - - - - : default - : default - - - - Save Preset - Salva Preset - - - - .fxp - .fxp - - - - .FXP - .FXP - - - - .FXB - .FXB - - - - .fxb - .fxb - - - - Loading plugin - Caricamento plugin - - - - Please wait while loading VST plugin... - Sto caricando il plugin VST... - - - - WatsynInstrument - - - Volume A1 - Volume A1 - - - - Volume A2 - Volume A2 - - - - Volume B1 - Volume B1 - - - - Volume B2 - Volume B2 - - - - Panning A1 - Bilanciamento A1 - - - - Panning A2 - Bilanciamento A2 - - - - Panning B1 - Bilanciamento B1 - - - - Panning B2 - Bilanciamento B2 - - - - Freq. multiplier A1 - Moltiplicatore di freq. A1 - - - - Freq. multiplier A2 - Moltiplicatore di freq. A2 - - - - Freq. multiplier B1 - Moltiplicatore di freq. B1 - - - - Freq. multiplier B2 - Moltiplicatore di freq. B2 - - - - Left detune A1 - Intonazione Sinistra A1 - - - - Left detune A2 - Intonazione Sinistra A2 - - - - Left detune B1 - Intonazione Sinistra B1 - - - - Left detune B2 - Intonazione Sinistra B2 - - - - Right detune A1 - Intonazione Destra A1 - - - - Right detune A2 - Intonazione Destra A2 - - - - Right detune B1 - Intonazione Destra B1 - - - - Right detune B2 - Intonazione Destra B2 - - - - A-B Mix - Mix A-B - - - - A-B Mix envelope amount - Quantità di inviluppo Mix A-B - - - - A-B Mix envelope attack - Attacco inviluppo Mix A-B - - - - A-B Mix envelope hold - Mantenimento inviluppo Mix A-B - - - - A-B Mix envelope decay - Decadimento inviluppo Mix A-B - - - - A1-B2 Crosstalk - Scambio A1-B2 - - - - A2-A1 modulation - Modulazione A2-A1 - - - - B2-B1 modulation - Modulazione B2-B1 - - - - Selected graph - Grafico selezionato - - - - WatsynView - - - - - + Volume Volume - - - - + Panning - Bilanciamento + Panning - - - - - Freq. multiplier - Moltiplicatore freq. + + Left gain + Gain a sinistra - - - - - Left detune - Intonazione sinistra - - - - - - - - - - - cents - centesimi - - - - - - - Right detune - Intonazione destra - - - - A-B Mix - Mix A-B - - - - Mix envelope amount - Quantità di inviluppo sul Mix - - - - Mix envelope attack - Attacco inviluppo sul Mix - - - - Mix envelope hold - Mantenimento inviluppo sul Mix - - - - Mix envelope decay - Decadimento inviluppo sul Mix - - - - Crosstalk - Scambio - - - - Select oscillator A1 - Passa all'oscillatore A1 - - - - Select oscillator A2 - Passa all'oscillatore A2 - - - - Select oscillator B1 - Passa all'oscillatore B1 - - - - Select oscillator B2 - Passa all'oscillatore B2 - - - - Mix output of A2 to A1 - Mescola output di A2 a A1 - - - - Modulate amplitude of A1 by output of A2 - Modula l'ampiezza di A1 per l'uscita di A2 - - - - Ring modulate A1 and A2 - Modula anello A1 e A2 - - - - Modulate phase of A1 by output of A2 - Modula fase di A1 per l'uscita di A2 - - - - Mix output of B2 to B1 - Mescola output di B2 a B1 - - - - Modulate amplitude of B1 by output of B2 - Modula ampiezza di B1 per l'uscita di B2 - - - - Ring modulate B1 and B2 - Modula anello B1 e B2 - - - - Modulate phase of B1 by output of B2 - Modula fase di B1 per l'uscita di B2 - - - - - - - Draw your own waveform here by dragging your mouse on this graph. - Cliccando e trascinando il mouse in questo grafico è possibile disegnare una forma d'onda personalizzata. - - - - Load waveform - Carica forma d'onda - - - - Load a waveform from a sample file - Carica una forma d'onda da file di esempio - - - - Phase left - Sposta fase a sinistra - - - - Shift phase by -15 degrees - Fase di spostamento di -15 gradi - - - - Phase right - Sposta fase a destra - - - - Shift phase by +15 degrees - Fase di spostamento di +15 gradi - - - - - Normalize - Normalizza - - - - - Invert - Inverti - - - - - Smooth - Ammorbidisci - - - - - Sine wave - Onda sinusoidale - - - - - - Triangle wave - Onda triangolare - - - - Saw wave - Onda a dente di sega - - - - - Square wave - Onda quadra + + Right gain + Gain a destra - Xpressive + lmms::AudioFileProcessor - - Selected graph - Grafico selezionato + + Amplify + Amplificare - - A1 - A1 + + Start of sample + Inizio del sample - - A2 - A2 + + End of sample + Fine del sample - - A3 - A3 + + Loopback point + Punto di loopback - - W1 smoothing - W1 smoothing + + Reverse sample + Reverse sample - - W2 smoothing - W2 smoothing + + Loop mode + Modalità loop - - W3 smoothing - W3 smoothing + + Stutter + Stutter - - - Panning 1 - Panoramica 1 - - - - Panning 2 - Panoramica 2 - - - - Rel trans - - - - - XpressiveView - - - Draw your own waveform here by dragging your mouse on this graph. - Cliccando e trascinando il mouse in questo grafico è possibile disegnare una forma d'onda personalizzata. - - - - Select oscillator W1 - Seleziona Oscillatore W1 - - - - Select oscillator W2 - Seleziona Oscillatore W2 - - - - Select oscillator W3 - Seleziona Oscillatore W3 - - - - Select output O1 - Seleziona uscita O1 - - - - Select output O2 - Seleziona uscita O2 - - - - Open help window - Apri finestra di aiuto - - - - - Sine wave - Onda sinusoidale - - - - - Moog-saw wave - Onda a dente di sega Moog - - - - - Exponential wave - Onda esponenziale - - - - - Saw wave - Onda a dente di sega - - - - - User-defined wave - Onda definita dall'utente - - - - - Triangle wave - Onda triangolare - - - - - Square wave - Onda quadra - - - - - White noise - Rumore bianco - - - - WaveInterpolate - InterpolazioneOnda - - - - ExpressionValid - - - - - General purpose 1: - Uso Generico 1: - - - - General purpose 2: - Uso Generico 2: - - - - General purpose 3: - Uso Generico 3: - - - - O1 panning: - Bilanciamento O1: - - - - O2 panning: - Bilanciamento O2: - - - - Release transition: - Rilascio transizione: - - - - Smoothness - Morbidezza - - - - ZynAddSubFxInstrument - - - Portamento - Portamento - - - - Filter frequency - Frequenza filtro - - - - Filter resonance - Risonanza filtro - - - - Bandwidth - Larghezza di Banda - - - - FM gain - Guadagno FM - - - - Resonance center frequency - Frequenza centrale di risonanza - - - - Resonance bandwidth - Larghezza banda di risonanza - - - - Forward MIDI control change events - Inoltra eventi di modifica controllo MIDI - - - - ZynAddSubFxView - - - Portamento: - Portamento: - - - - PORT - PORT - - - - Filter frequency: - Frequenza filtro: - - - - FREQ - FREQ - - - - Filter resonance: - Risonanza filtro: - - - - RES - RIS - - - - Bandwidth: - Larghezza di banda: - - - - BW - Largh: - - - - FM gain: - Guadagno FM: - - - - FM GAIN - GUAD FM - - - - Resonance center frequency: - Frequenza Centrale di Risonanza: - - - - RES CF - FC RIS - - - - Resonance bandwidth: - Bandwidth della Risonanza: - - - - RES BW - BW RIS - - - - Forward MIDI control changes - Inoltra modifiche controllo MIDI - - - - Show GUI - Mostra GUI - - - - AudioFileProcessor - Amplify - Amplificazione - - - - Start of sample - Inizio del campione - - - - End of sample - Fine del campione - - - - Loopback point - Punto di LoopBack - - - - Reverse sample - Inverti il campione - - - - Loop mode - Modalità ripetizione - - - - Stutter - Passaggio - - - Interpolation mode - Modalità Interpolazione + Modalità di interpolazione - + None - Nessuna + - + Linear Lineare - + Sinc - Sincronizzata + - - Sample not found: %1 - Campione non trovato: %1 + + Sample not found + Sample non trovato - BitInvader + lmms::AudioJack - - Sample length - Lunghezza campione + + JACK client restarted + + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + + + + + Client name + Nome di client + + + + Channels + Canali - BitInvaderView + lmms::AudioOss - + + Device + Dispositivo + + + + Channels + Canali + + + + lmms::AudioPortAudio::setupWidget + + + Backend + Backend + + + + Device + Dispositivo + + + + lmms::AudioPulseAudio + + + Device + Dispositivo + + + + Channels + Canali + + + + lmms::AudioSdl::setupWidget + + + Playback device + Dispositivo di riproduzione + + + + Input device + Dispositivo di input + + + + lmms::AudioSndio + + + Device + Dispositivo + + + + Channels + Canali + + + + lmms::AudioSoundIo::setupWidget + + + Backend + Backend + + + + Device + Dispositivo + + + + lmms::AutomatableModel + + + &Reset (%1%2) + &Ripristina (%1%2) + + + + &Copy value (%1%2) + &Copia valore (%1%2) + + + + &Paste value (%1%2) + &Incolla valore (%1%2) + + + + &Paste value + &Incolla valore + + + + Edit song-global automation + Modifica automazione globale della canzone + + + + Remove song-global automation + Rimuovi automazione globale della canzone + + + + Remove all linked controls + Rimuovi tutti i controlli collegati + + + + Connected to %1 + Connesso a %1 + + + + Connected to controller + Connesso al controller + + + + Edit connection... + Modifica connessione... + + + + Remove connection + Rimuovi connessione + + + + Connect to controller... + Connesso al controller... + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + Trascina un controllo tenendo premuto <%1> + + + + lmms::AutomationTrack + + + Automation track + Traccia di automazione + + + + lmms::BassBoosterControls + + + Frequency + Frequency + + + + Gain + Gain + + + + Ratio + Ratio + + + + lmms::BitInvader + + Sample length - Lunghezza campione + Lunghezza del sample - - Draw your own waveform here by dragging your mouse on this graph. - Cliccando e trascinando il mouse in questo grafico è possibile disegnare una forma d'onda personalizzata. - - - - - Sine wave - Onda sinusoidale - - - - - Triangle wave - Onda triangolare - - - - - Saw wave - Onda a dente di sega - - - - - Square wave - Onda quadra - - - - - White noise - Rumore bianco - - - - - User-defined wave - Onda definita dall'utente - - - - - Smooth waveform - Spiana forma d'onda - - - + Interpolation Interpolazione - + Normalize Normalizza - DynProcControlDialog + lmms::BitcrushControls - - INPUT - INPUT + + Input gain + Input gain - - Input gain: - Guadagno in Input: + + Input noise + Input rumore - - OUTPUT - OUTPUT + + Output gain + Output gain - - Output gain: - Guadagno in Output: + + Output clip + Output clip - - ATTACK - ATTACCO + + Sample rate + Frequenza di campionamento - - Peak attack time: - Attacco del picco: + + Stereo difference + Differenza di stereo - - RELEASE - RILASCIO + + Levels + Livelli - - Peak release time: - Rilascio del picco: + + Rate enabled + Frequenza abilitata - - - Reset wavegraph - Reimposta la forma d'onda - - - - - Smooth wavegraph - Forma d'onda piana - - - - - Increase wavegraph amplitude by 1 dB - Incrementa l'ampiezza del diagramma d'onda di 1 dB - - - - - Decrease wavegraph amplitude by 1 dB - Decrementa l'ampiezza del diagramma d'onda di 1 dB - - - - Stereo mode: maximum - Modalità stereo: massima - - - - Process based on the maximum of both stereo channels - L'effetto si basa sul valore massimo tra i due canali stereo - - - - Stereo mode: average - Modalità stereo: media - - - - Process based on the average of both stereo channels - L'effetto si basa sul valore medio tra i due canali stereo - - - - Stereo mode: unlinked - Modalità stereo: scollegata - - - - Process each stereo channel independently - L'effetto tratta i due canali stereo indipendentemente + + Depth enabled + Profondità abilitata - DynProcControls + lmms::Clip - - Input gain - Guadagno in input + + Mute + Muto + + + + lmms::CompressorControls + + + Threshold + Threshold - + + Ratio + Ratio + + + + Attack + Attack + + + + Release + Release + + + + Knee + Knee + + + + Hold + Hold + + + + Range + Range + + + + RMS Size + RMS Size + + + + Mid/Side + Mid/Side + + + + Peak Mode + Peak Mode + + + + Lookahead Length + Lunghezza di lookahead + + + + Input Balance + Input bilanciamento + + + + Output Balance + Output bilanciamento + + + + Limiter + Limiter + + + + Output Gain + Output Gain + + + + Input Gain + Input Gain + + + + Blend + Blend + + + + Stereo Balance + Stereo bilanciamento + + + + Auto Makeup Gain + Auto Makeup Gain + + + + Audition + Audition + + + + Feedback + Feedback + + + + Auto Attack + Auto Attack + + + + Auto Release + Auto Release + + + + Lookahead + Lookahead + + + + Tilt + Tilt + + + + Tilt Frequency + Tilt Frequenza + + + + Stereo Link + Stereo Link + + + + Mix + Mix + + + + lmms::Controller + + + Controller %1 + Controller %1 + + + + lmms::DelayControls + + + Delay samples + Delay samples + + + + Feedback + Feedback + + + + LFO frequency + LFO frequenza + + + + LFO amount + LFO quantità + + + Output gain - Guadagno in output + Output gain + + + + lmms::DispersionControls + + + Amount + Quantità - - Attack time - Tempo di Attacco + + Frequency + Frequenza + + + Resonance + Risonanza + + + + Feedback + Feedback + + + + DC Offset Removal + Rimozione di DC Offset + + + + lmms::DualFilterControls + + + Filter 1 enabled + Filtro 1 abilitato + + + + Filter 1 type + Filtro 1 tipo + + + + Cutoff frequency 1 + Frequenza di cutoff 1 + + + + Q/Resonance 1 + Q/Risonanza 1 + + + + Gain 1 + Gain 1 + + + + Mix + Mix + + + + Filter 2 enabled + Filtro 2 abilitato + + + + Filter 2 type + Filtro 2 tipo + + + + Cutoff frequency 2 + Frequenza di cutoff 2 + + + + Q/Resonance 2 + Q/Risonanza 2 + + + + Gain 2 + Gain 2 + + + + + Low-pass + Low-pass + + + + + Hi-pass + Hi-pass + + + + + Band-pass csg + Band-pass csg + + + + + Band-pass czpg + Band-pass czpg + + + + + Notch + Notch + + + + + All-pass + All-pass + + + + + Moog + Moog + + + + + 2x Low-pass + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + RC High-pass 24 dB/oct + + + + + Vocal Formant + Formante della voce + + + + + 2x Moog + 2x Moog + + + + + SV Low-pass + SV Low-pass + + + + + SV Band-pass + SV Band-pass + + + + + SV High-pass + SV High-pass + + + + + SV Notch + SV Notch + + + + + Fast Formant + Formante veloce + + + + + Tripole + Tripole + + + + lmms::DynProcControls - Release time - Tempo di Rilascio + Input gain + Input gain + + + + Output gain + Output gain + Attack time + Tempo di attacco + + + + Release time + Tempo di rilascio + + + Stereo mode Modalità stereo - graphModel + lmms::Effect - - Graph - Grafico + + Effect enabled + Effetto abilitato + + + + Wet/Dry mix + Wet/Dry mix + + + + Gate + Gate + + + + Decay + Decadimento - KickerInstrument + lmms::EffectChain - - Start frequency - Frequenza iniziale + + Effects enabled + Effetti abilitati + + + + lmms::Engine + + + Generating wavetables + Generazione di wavetable - - End frequency - Frequenza finale + + Initializing data structures + Inizializzazione di strutture dati - - Length - Lunghezza + + Opening audio and midi devices + Apertura di audio e dispositivi midi - - Start distortion - Inizio distorsione + + Launching audio engine threads + Avvio dei thread del motore audio + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + Env pre-delay - - End distortion - Fine distorsione + + Env attack + Env attack + + + Env hold + Env hold + + + + Env decay + Env decay + + + + Env sustain + Env sustain + + + + Env release + Env release + + + + Env mod amount + Env mod amount + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + Default preset + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument - Gain - Guadagno + Start frequency + - Envelope slope - Pendenza inviluppo + End frequency + - Noise - Rumore + Length + - Click - Click + Start distortion + - Frequency slope - Pendenza frequenza + End distortion + - Start from note - Inizia dalla nota + Gain + + Envelope slope + + + + + Noise + + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + End to note - Finisci sulla nota + - KickerInstrumentView + lmms::LOMMControls - - Start frequency: - Frequenza iniziale: + + Depth + - - End frequency: - Frequenza finale: + + Time + - - Frequency slope: - Pendenza frequenza: + + Input Volume + - - Gain: - Guadagno: + + Output Volume + - - Envelope length: - Lunghezza inviluppo + + Upward Depth + - - Envelope slope: - Pendenza inviluppo + + Downward Depth + - - Click: - Click: + + High/Mid Split + - - Noise: - Rumore: + + Mid/Low Split + - - Start distortion: - Inizio distorsione: + + Enable High/Mid Split + - - End distortion: - Fine distorsione: + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + - LadspaBrowserView + lmms::LadspaControl - - - Available Effects - Effetti disponibili - - - - - Unavailable Effects - Effetti non disponibili - - - - - Instruments - Strumenti - - - - - Analysis Tools - Strumenti di analisi - - - - - Don't know - Sconosciuto - - - - Type: - Tipo: + + Link channels + - LadspaDescription + lmms::LadspaEffect - - Plugins - Plugin - - - - Description - Descrizione + + Unknown LADSPA plugin %1 requested. + - LadspaPortDialog - - - Ports - Porte - - - - Name - Nome - - - - Rate - Frequenza - - - - Direction - Direzione - - - - Type - Tipo - - - - Min < Default < Max - Minimo < Predefinito < Massimo - - - - Logarithmic - Logaritmico - - - - SR Dependent - Dipendente da SR - - - - Audio - Audio - - - - Control - Controllo - - - - Input - Ingresso - - - - Output - Uscita - - - - Toggled - Abilitato - - - - Integer - Intero - - - - Float - Virgola mobile - - - - - Yes - - - - - Lb302Synth - - - VCF Cutoff Frequency - VCF - frequenza di taglio - - - - VCF Resonance - VCF - Risonanza - - - - VCF Envelope Mod - VCF - modulazione dell'envelope - - - - VCF Envelope Decay - VCF - decadimento dell'envelope - + lmms::Lb302Synth - Distortion - Distorsione + VCF Cutoff Frequency + - Waveform - Forma d'onda + VCF Resonance + - Slide Decay - Decadimento slide + VCF Envelope Mod + - Slide - Slide + VCF Envelope Decay + - Accent - Accento + Distortion + - Dead - Dead + Waveform + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + 24dB/oct Filter - Filtro 24dB/ottava + - Lb302SynthView + lmms::LfoController - - Cutoff Freq: - Freq. di taglio: + + LFO Controller + - - Resonance: - Risonanza: + + Base value + - - Env Mod: - Env Mod: + + Oscillator speed + - - Decay: - Decadimento: + + Oscillator amount + - - 303-es-que, 24dB/octave, 3 pole filter - filtro tripolare "tipo 303", 24dB/ottava + + Oscillator phase + - - Slide Decay: - Decadimento slide: + + Oscillator waveform + - - DIST: - DIST: + + Frequency Multiplier + - - Saw wave - Onda a dente di sega - - - - Click here for a saw-wave. - Cliccando qui si ottiene un'onda a dente di sega. - - - - Triangle wave - Onda triangolare - - - - Click here for a triangle-wave. - Cliccando qui si ottiene un'onda triangolare. - - - - Square wave - Onda quadra - - - - Click here for a square-wave. - Cliccando qui si ottiene un'onda quadra. - - - - Rounded square wave - Onda quadra arrotondata - - - - Click here for a square-wave with a rounded end. - Cliccando qui si ottiene un'onda quadra arrotondata. - - - - Moog wave - Onda moog - - - - Click here for a moog-like wave. - Cliccando qui si ottieme un'onda moog. - - - - Sine wave - Onda sinusoidale - - - - Click for a sine-wave. - Cliccando qui si ottiene una forma d'onda sinusoidale. - - - - - White noise wave - Rumore bianco - - - - Click here for an exponential wave. - Cliccando qui si ha un'onda esponenziale. - - - - Click here for white-noise. - Cliccando qui si ottiene rumore bianco. - - - - Bandlimited saw wave - Onda a dente di sega limitata - - - - Click here for bandlimited saw wave. - Clicca per usare un'onda a dente di sega a banda limitata. - - - - Bandlimited square wave - Onda quadra limitata - - - - Click here for bandlimited square wave. - Clicca per usare un'onda quadra a banda limitata. - - - - Bandlimited triangle wave - Onda triangolare limitata - - - - Click here for bandlimited triangle wave. - Clicca per usare un'onda triangolare a banda limitata. - - - - Bandlimited moog saw wave - Onda Moog limitata - - - - Click here for bandlimited moog saw wave. - Clicca per usare un'onda Moog a banda limitata. + + Sample not found + - MalletsInstrument - - - Hardness - Durezza - - - - Position - Posizione - - - - Vibrato gain - Guadagno del Vibrato - - - - Vibrato frequency - Frequenza del Vibrato - + lmms::MalletsInstrument - Stick mix + Hardness - Modulator - Modulatore + Position + - Crossfade - Crossfade + Vibrato gain + - LFO speed - Velocità dell'LFO + Vibrato frequency + - LFO depth - Profondità del LFO - - - - ADSR - ADSR - - - - Pressure - Pressione - - - - Motion - Moto - - - - Speed - Velocità - - - - Bowed - Bowed - - - - Spread - Apertura - - - - Marimba - Marimba - - - - Vibraphone - Vibraphone - - - - Agogo - Agogo - - - - Wood 1 - Legno 1 - - - - Reso - Reso - - - - Wood 2 - Legno 2 - - - - Beats - Beats - - - - Two fixed - Due fissi - - - - Clump - Clump - - - - Tubular bells - Campane tubolari - - - - Uniform bar - Barra uniforme - - - - Tuned bar - Barra accordata - - - - Glass - Glass - - - - Tibetan bowl - Campana tibetana - - - - MalletsInstrumentView - - - Instrument - Strumento - - - - Spread - Apertura - - - - Spread: - Apertura: - - - - Missing files - File mancanti - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - L'installazione di Stk sembra incompleta. Assicurarsi che sia installato il pacchetto Stk completo! - - - - Hardness - Durezza - - - - Hardness: - Durezza: - - - - Position - Posizione - - - - Position: - Posizione: - - - - Vibrato gain - Guadagno del Vibrato - - - - Vibrato gain: - Guadagno del Vibrato: - - - - Vibrato frequency - Frequenza del Vibrato - - - - Vibrato frequency: - Frequenza del Vibrato: - - - Stick mix - - Stick mix: + + Modulator - - Modulator - Modulatore - - - - Modulator: - Modulatore: - - - + Crossfade - Crossfade + - - Crossfade: - Crossfade: - - - + LFO speed - Velocità dell'LFO + - - LFO speed: - Velocità dell'LFO: - - - + LFO depth - Profondità LFO + - - LFO depth: - Profondità LFO: - - - + ADSR - ADSR + - - ADSR: - ADSR: - - - + Pressure - Pressione + - - Pressure: - Pressione: + + Motion + - + Speed - Velocità + - - Speed: - Velocità: + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + - ManageVSTEffectView + lmms::MeterModel - - - VST parameter control - - Controllo parametri VST + + Numerator + - - VST sync - Sincronizzazione VST - - - - - Automated - Automatizzati - - - - Close - Chiudi + + Denominator + - ManageVestigeInstrumentView + lmms::Microtuner - - - - VST plugin control - - Controllo del plugin VST + + Microtuner + - - VST Sync - Sync VST + + Microtuner on / off + - - - Automated - Automatizzati + + Selected scale + - - Close - Chiudi + + Selected keyboard mapping + - OrganicInstrument + lmms::MidiController - - Distortion - Distorsione + + MIDI Controller + - + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + Volume - Volume + + + + + Mute + + + + + Solo + - OrganicInstrumentView + lmms::MixerRoute - - Distortion: - Distorsione: + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + - - Volume: - Volume: + + Osc 1 panning + - - Randomise - Rendi casuale + + Osc 1 coarse detune + - - - Osc %1 waveform: - Onda osc %1: + + Osc 1 fine detune left + - - Osc %1 volume: - Volume osc %1: + + Osc 1 fine detune right + - - Osc %1 panning: - Panning osc %1: + + Osc 1 stereo phase offset + - + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + Osc %1 stereo detuning - Osc %1 intonazione stereo + - - cents - centesimi + + Osc %1 coarse detuning + - - Osc %1 harmonic: - Osc %1 armoniche: + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + - PatchesDialog + lmms::PatternTrack - - Qsynth: Channel Preset - Qsynth: Preset Canale + + Pattern %1 + - - Bank selector - Selezione banca - - - - Bank - Banco - - - - Program selector - Selezione programma - - - - Patch - Programma - - - - Name - Nome - - - - OK - OK - - - - Cancel - Annulla + + Clone of %1 + - Sf2Instrument + lmms::PeakController - + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain + + + + + Size + + + + + Color + + + + + Output gain + + + + + lmms::SaControls + + + Pause + + + + + Reference freeze + + + + + Waterfall + + + + + Averaging + + + + + Stereo + + + + + Peak hold + + + + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type + + + + + Peak envelope resolution + + + + + Spectrum display resolution + + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + + + + + + + Audible + + + + + Bass + + + + + Mids + + + + + High + + + + + Extended + + + + + Loud + + + + + Silent + + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + + Hanning + + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + + + + + Panning + + + + + Mixer channel + + + + + + Sample track + + + + + lmms::Scale + + + empty + + + + + lmms::Sf2Instrument + + Bank - Banco + - + Patch - Patch + - + Gain - Guadagno + - + Reverb - Riverbero + - + Reverb room size - Dimensioni stanza del riverbero + - + Reverb damping - Smorzamento del riverbero + - + Reverb width - Banda del riverbero + - + Reverb level - Livello di riverbero + - + Chorus - Chorus + - + Chorus voices - Voci del Chorus + - + Chorus level - Livello del Chorus + - + Chorus speed - Velocità del Chorus + - + Chorus depth - Profondità del Chorus + - + A soundfont %1 could not be loaded. - Non è stato possibile caricare un soundfont %1. + - Sf2InstrumentView + lmms::SfxrInstrument - - - Open SoundFont file - Apri un file SoundFont - - - - Choose patch - Scegli patch - - - - Gain: - Guadagno: - - - - Apply reverb (if supported) - Applica il riverbero (se supportato) - - - - Room size: - Dimensioni della stanza: - - - - Damping: - Smorzamento: - - - - Width: - Ampiezza: - - - - - Level: - Livello: - - - - Apply chorus (if supported) - Applica il chorus (se supportato) - - - - Voices: - Voci: - - - - Speed: - Velocità: - - - - Depth: - Risoluzione Bit: - - - - SoundFont Files (*.sf2 *.sf3) - File SoundFont (*.sf2 *.sf3) - - - - SfxrInstrument - - + Wave - Onda + - StereoEnhancerControlDialog + lmms::SidInstrument - - WIDTH - AMPIEZZA + + Cutoff frequency + - - Width: - Ampiezza: + + Resonance + + + + + Filter type + + + + + Voice 3 off + + + + + Volume + + + + + Chip model + - StereoEnhancerControls + lmms::SlicerT - + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + + + + + lmms::Song + + + Tempo + + + + + Master volume + + + + + Master pitch + + + + + Aborting project load + + + + + Project file contains local paths to plugins, which could be used to run malicious code. + + + + + Can't load project: Project file contains local paths to plugins. + + + + + LMMS Error report + + + + + (repeated %1 times) + + + + + The following errors occurred while loading: + + + + + lmms::StereoEnhancerControls + + Width - Ampiezza + - StereoMatrixControlDialog - - - Left to Left Vol: - Volume da Sinistra a Sinistra: - - - - Left to Right Vol: - Volume da Sinistra a Destra: - - - - Right to Left Vol: - Volume da Destra a Sinistra: - - - - Right to Right Vol: - Volume da Destra a Destra: - - - - StereoMatrixControls - - - Left to Left - Da Sinistra a Sinistra - - - - Left to Right - Da Sinistra a Destra - - - - Right to Left - Da Destra a Sinistra - + lmms::StereoMatrixControls + Left to Left + + + + + Left to Right + + + + + Right to Left + + + + Right to Right - Da Destra a Destra + - VestigeInstrument + lmms::Track - + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + + + + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + Loading plugin - Caricamento plugin + - + Please wait while loading the VST plugin... - Attendere il caricamento del plug-in VST... + - Vibed + lmms::Vibed - + String %1 volume - Volume della corda %1 + - + String %1 stiffness - Durezza della corda %1 + - + Pick %1 position - Posizione del plettro %1 + - + Pickup %1 position - Posizione del pickup %1 + - + String %1 panning - Panning corda %1 + - + String %1 detune - De-intonazione corda %1  + - + String %1 fuzziness - + String %1 length - Lunghezza corda %1 + - + Impulse %1 - Impulso %1 + - + String %1 - Corda %1 + - VibedView + lmms::VoiceObject - + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + Apri Preset + + + + + VST Plugin Preset (*.fxp *.fxb) + VST Plugin Preset (*.fxp *.fxb) + + + + : default + + + + + Save Preset + Salva Preset + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + Reimposta il nome + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + Ripristina + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + Ripristina il grafico d'onda + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + Salva le impostazioni della traccia attuale in un file preset + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + Salva il preset + + + + XML preset file (*.xpf) + File di preset XML (*.xpf) + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + Miei Preset + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + Progetti aperti di recente + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + Schermo intero + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + Reimposta il nome + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + Ripristina + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + Reimposta il nome + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + &Progetti Aperti di Recente + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + Ripristina il valore predefinito + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + Ripristina + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + + + + + Draw mode + + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + + + + + + Zoom + + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + + + + + lmms::gui::StepRecorderWidget + + + Hint + + + + + Move recording curser using <Left/Right> arrows + + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + + Close + + + + + Maximize + + + + + Restore + + + + + lmms::gui::TapTempoView + + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + Ripristina + + + + Reset counter and sidebar information + Reimposta il contatore e le informazioni della barra laterale + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + + + + + lmms::gui::TemplatesMenu + + + New from template + + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + + + + + MIN + + + + + SEC + + + + + MSEC + + + + + BAR + + + + + BEAT + + + + + TICK + + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + + + + + After stopping go back to beginning + + + + + After stopping go back to position at which playing was started + + + + + After stopping keep position + + + + + Hint + + + + + Press <%1> to disable magnetic loop points. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + + Paste + + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + + + + + Actions + + + + + + Mute + + + + + + Solo + + + + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + + + + + Confirm removal + + + + + Don't ask again + + + + + Clone this track + + + + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + Ripristina + + + + Pick random + + + + + Reset clip colors + Ripristina i colori della clip + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + + + + + Modulate amplitude of oscillator 1 by oscillator 2 + + + + + Mix output of oscillators 1 & 2 + + + + + Synchronize oscillator 1 with oscillator 2 + + + + + Modulate frequency of oscillator 1 by oscillator 2 + + + + + Modulate phase of oscillator 2 by oscillator 3 + + + + + Modulate amplitude of oscillator 2 by oscillator 3 + + + + + Mix output of oscillators 2 & 3 + + + + + Synchronize oscillator 2 with oscillator 3 + + + + + Modulate frequency of oscillator 2 by oscillator 3 + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + + cents + + + + + Osc %1 fine detuning right: + + + + + Osc %1 phase-offset: + + + + + + degrees + + + + + Osc %1 stereo phase-detuning: + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog-like saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined wave + + + + + Use alias-free wavetable oscillators. + + + + + lmms::gui::VecControlsDialog + + + HQ + + + + + Double the resolution and simulate continuous analog-like trace. + + + + + Log. scale + + + + + Display amplitude on logarithmic scale to better see small values. + + + + + Persist. + + + + + Trace persistence: higher amount means the trace will stay bright for longer time. + + + + + Trace persistence + + + + + lmms::gui::VersionedSaveDialog + + + Increment version number + + + + + Decrement version number + + + + + Save Options + + + + + already exists. Do you want to replace it? + + + + + lmms::gui::VestigeInstrumentView + + + + Open VST plugin + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + Apri VST plugin preset + + + + Previous (-) + + + + + Save preset + Salva il preset + + + + Next (+) + + + + + Show/hide GUI + + + + + Turn off all notes + + + + + DLL-files (*.dll) + + + + + EXE-files (*.exe) + + + + + SO-files (*.so) + + + + + No VST plugin loaded + + + + + Preset + Preset + + + + by + + + + + - VST plugin control + + + + + lmms::gui::VibedView + + + Enable waveform + + + + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + String volume: - Volume corda + - + String stiffness: - Durezza della corda: + - + Pick position: - Posizione del plettro: + - + Pickup position: - Posizione del pickup: + - + String panning: - Panning corda + - + String detune: - De-intonazione corda + - + String fuzziness: - + String length: - Lunghezza corda: + - - Impulse - Impulso - - - - Octave - Ottava - - - + Impulse Editor - Editor dell'impulso + - - Enable waveform - Abilita forma d'onda + + Impulse + - + Enable/disable string - Abilita/disabilita corda + - + + Octave + + + + String - Corda + + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + - - + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + Apri VST plugin preset + + + + Previous (-) + + + + + Next (+) + + + + + Save preset + Salva il preset + + + + + Effect by: + + + + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + + + + + lmms::gui::WatsynView + + + + + + Volume + + + + + + + + Panning + + + + + + + + Freq. multiplier + + + + + + + + Left detune + + + + + + + + + + + + cents + + + + + + + + Right detune + + + + + A-B Mix + + + + + Mix envelope amount + + + + + Mix envelope attack + + + + + Mix envelope hold + + + + + Mix envelope decay + + + + + Crosstalk + + + + + Select oscillator A1 + + + + + Select oscillator A2 + + + + + Select oscillator B1 + + + + + Select oscillator B2 + + + + + Mix output of A2 to A1 + + + + + Modulate amplitude of A1 by output of A2 + + + + + Ring modulate A1 and A2 + + + + + Modulate phase of A1 by output of A2 + + + + + Mix output of B2 to B1 + + + + + Modulate amplitude of B1 by output of B2 + + + + + Ring modulate B1 and B2 + + + + + Modulate phase of B1 by output of B2 + + + + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Load waveform + + + + + Load a waveform from a sample file + + + + + Phase left + + + + + Shift phase by -15 degrees + + + + + Phase right + + + + + Shift phase by +15 degrees + + + + + + Normalize + + + + + + Invert + + + + + + Smooth + + + + + Sine wave - Onda sinusoidale + - - + + + Triangle wave - Onda triangolare + - - + Saw wave - Onda a dente di sega + - - + + Square wave - Onda quadra - - - - - White noise - Rumore bianco - - - - - User-defined wave - Onda definita dall'utente - - - - - Smooth waveform - Spiana forma d'onda - - - - - Normalize waveform - Forma d'onda normale + - VoiceObject + lmms::gui::WaveShaperControlDialog - - Voice %1 pulse width - Ampiezza pulse voce %1 - - - - Voice %1 attack - Attacco voce %1 - - - - Voice %1 decay - Decadimento voce %1 - - - - Voice %1 sustain - Sostegno voce %1 - - - - Voice %1 release - Rilascio voce %1 - - - - Voice %1 coarse detuning - Intonazione voce %1 - - - - Voice %1 wave shape - Forma d'onda voce %1 - - - - Voice %1 sync - Sincronizzazione voce %1 - - - - Voice %1 ring modulate - Modulazione ring voce %1 - - - - Voice %1 filtered - Filtraggio voce %1 - - - - Voice %1 test - Test voce %1 - - - - WaveShaperControlDialog - - + INPUT - INPUT + - + Input gain: - Guadagno in Input: + - + OUTPUT - OUTPUT - - - - Output gain: - Guadagno in output: + - - Reset wavegraph - Reimposta grafico d'onda + Output gain: + + - - Smooth wavegraph - Grafico d'onda piana + Reset wavegraph + Ripristina il grafico d'onda + - - Increase wavegraph amplitude by 1 dB - Incrementa ampiezza grafico d'onda di 1 dB + Smooth wavegraph + + - + Increase wavegraph amplitude by 1 dB + + + + + Decrease wavegraph amplitude by 1 dB - Decrementa ampiezza grafico d'onda di 1 dB + - + Clip input - Taglia input + - + Clip input signal to 0 dB - Segnale ingresso clip a 0 dB + - WaveShaperControls + lmms::gui::XpressiveView - - Input gain - Guadagno in input + + Draw your own waveform here by dragging your mouse on this graph. + - - Output gain - Guadagno in output + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + - + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + + + + \ No newline at end of file diff --git a/data/locale/ja.ts b/data/locale/ja.ts index 84c5c8a6a..fffa83420 100644 --- a/data/locale/ja.ts +++ b/data/locale/ja.ts @@ -1,4 +1,4 @@ - + AboutDialog @@ -70,812 +70,45 @@ LMMSを他の言語に翻訳したり、翻訳を改善することに興味が - AmplifierControlDialog + AboutJuceDialog - - VOL - 音量 - - - - Volume: - 音量: - - - - PAN - パン - - - - Panning: - パン: - - - - LEFT - - - - - Left gain: - 左ゲイン: - - - - RIGHT - - - - - Right gain: - 右ゲイン: - - - - AmplifierControls - - - Volume - 音量 - - - - Panning - パン - - - - Left gain - 左ゲイン - - - - Right gain - 右ゲイン - - - - AudioAlsaSetupWidget - - - DEVICE - デバイス - - - - CHANNELS - チャンネル - - - - AudioFileProcessorView - - - Open sample - サンプルを開く - - - - Reverse sample - サンプルを反転する - - - - Disable loop - ループを無効にする - - - - Enable loop - ループを有効にする - - - - Enable ping-pong loop + + About JUCE - - Continue sample playback across notes - 異なるノートへサンプルの再生を引き継ぐ - - - - Amplify: - 増幅: - - - - Start point: - 開始点: - - - - End point: - 終了点: - - - - Loopback point: - ループバック位置: - - - - AudioFileProcessorWaveView - - - Sample length: - サンプルの長さ: - - - - AudioJack - - - JACK client restarted - JACKクライアントを再起動しました - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS は何らかの理由で JACK からキックされました。そのため、LMMS の JACKバックエンドが再起動されています。あなたは、手動で接続しなおす必要があります。 - - - - JACK server down - JACK サーバーダウン - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - ごめんなさい…JACK サーバーがシャットダウンして、新しいインスタンスの開始に失敗したようです。そのために、LMMS が続行できません。今すぐプロジェクトを保存してJACK と LMMS を再起動してください。 - - - - Client name + + <b>About JUCE</b> - - Channels + + This program uses JUCE version 3.x.x. + + + + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + + + + + This program uses JUCE version - AudioOss + AudioDeviceSetupWidget - - Device + + [System Default] - - - Channels - - - - - AudioPortAudio::setupWidget - - - Backend - - - - - Device - - - - - AudioPulseAudio - - - Device - - - - - Channels - - - - - AudioSdl::setupWidget - - - Device - - - - - AudioSndio - - - Device - - - - - Channels - - - - - AudioSoundIo::setupWidget - - - Backend - - - - - Device - - - - - AutomatableModel - - - &Reset (%1%2) - リセット(&R) (%1%2) - - - - &Copy value (%1%2) - 値をコピー(&C) (%1%2) - - - - &Paste value (%1%2) - 値を貼り付け(&P) (%1%2) - - - - &Paste value - &値を貼り付け - - - - Edit song-global automation - 曲全体のオートメーションを編集 - - - - Remove song-global automation - 曲全体のオートメーションを削除 - - - - Remove all linked controls - リンクされたコントロールを全て削除 - - - - Connected to %1 - %1 に接続済み - - - - Connected to controller - コントローラーに接続済み - - - - Edit connection... - 接続を編集... - - - - Remove connection - 接続を削除 - - - - Connect to controller... - コントローラーに接続... - - - - AutomationEditor - - - Edit Value - - - - - New outValue - - - - - New inValue - - - - - Please open an automation clip with the context menu of a control! - コントロールのコンテキストメニューでオートメーションパターンを開いてください! - - - - AutomationEditorWindow - - - Play/pause current clip (Space) - 現在のパターンの再生/一時停止 (Space) - - - - Stop playing of current clip (Space) - 現在のパターンの再生を停止 (Space) - - - - Edit actions - 編集機能 - - - - Draw mode (Shift+D) - 描画モード (shift+D) - - - - Erase mode (Shift+E) - 消去モード (shift+E) - - - - Draw outValues mode (Shift+C) - - - - - Flip vertically - 左右反転 - - - - Flip horizontally - 上下反転 - - - - Interpolation controls - 補間コントロール - - - - Discrete progression - 離散 - - - - Linear progression - 線形補間 - - - - Cubic Hermite progression - エルミート曲線 - - - - Tension value for spline - スプラインのテンション値 - - - - Tension: - テンション: - - - - Zoom controls - ズーム コントロール - - - - Horizontal zooming - 水平方向にズーム - - - - Vertical zooming - 垂直方向にズーム - - - - Quantization controls - クオンタイゼーション コントロール - - - - Quantization - クオンタイズ - - - - - Automation Editor - no clip - オートメーション エディター - パターンなし - - - - - Automation Editor - %1 - オートメーション エディター - %1 - - - - Model is already connected to this clip. - モデルは、すでにこのパターンに接続されています。 - - - - AutomationClip - - - Drag a control while pressing <%1> - <%1>を押しながらコントロールをドラッグしてください - - - - AutomationClipView - - - Open in Automation editor - オートメーション エディターで開く - - - - Clear - クリア - - - - Reset name - 名前をリセット - - - - Change name - 名前を変更 - - - - Set/clear record - 録音をセット/クリア - - - - Flip Vertically (Visible) - 左右反転 - - - - Flip Horizontally (Visible) - 上下反転 - - - - %1 Connections - %1 個の接続 - - - - Disconnect "%1" - "%1" を切断 - - - - Model is already connected to this clip. - モデルは、すでにこのパターンに接続されています。 - - - - AutomationTrack - - - Automation track - オートメーション トラック - - - - PatternEditor - - - Beat+Bassline Editor - ビート+ベースライン エディター - - - - Play/pause current beat/bassline (Space) - 現在のビート/ベースラインの再生/一時停止 (Space) - - - - Stop playback of current beat/bassline (Space) - 現在のビート/ベースラインの再生を停止 (Space) - - - - Beat selector - ビート セレクター - - - - Track and step actions - トラックとステップアクション - - - - Add beat/bassline - ビート/ベースラインを追加 - - - - Clone beat/bassline clip - - - - - Add sample-track - サンプルトラックを追加 - - - - Add automation-track - オートメーション トラックを追加 - - - - Remove steps - ステップを削除 - - - - Add steps - ステップを追加 - - - - Clone Steps - ステップを複製 - - - - PatternClipView - - - Open in Beat+Bassline-Editor - ビート+ベースライン エディターで開く - - - - Reset name - 名前をリセット - - - - Change name - 名前を変更 - - - - PatternTrack - - - Beat/Bassline %1 - ビート/ベースライン %1 - - - - Clone of %1 - %1の複製 - - - - BassBoosterControlDialog - - - FREQ - 周波数 - - - - Frequency: - 周波数: - - - - GAIN - ゲイン - - - - Gain: - ゲイン: - - - - RATIO - レシオ - - - - Ratio: - レシオ: - - - - BassBoosterControls - - - Frequency - 周波数 - - - - Gain - ゲイン - - - - Ratio - レシオ - - - - BitcrushControlDialog - - - IN - IN - - - - OUT - OUT - - - - - GAIN - ゲイン - - - - Input gain: - 入力ゲイン: - - - - NOISE - ノイズ - - - - Input noise: - 入力ノイズ: - - - - Output gain: - 出力ゲイン: - - - - CLIP - クリップ - - - - Output clip: - 出力クリップ - - - - Rate enabled - Rateが有効です - - - - Enable sample-rate crushing - サンプルレートクラシングを有効にする - - - - Depth enabled - 有効な深度 - - - - Enable bit-depth crushing - ビット深度クラシングを有効にする - - - - FREQ - 周波数 - - - - Sample rate: - サンプルレート: - - - - STEREO - ステレオ - - - - Stereo difference: - 位相 - - - - QUANT - クオンタイズ - - - - Levels: - レベル: - - - - BitcrushControls - - - Input gain - 入力ゲイン - - - - Input noise - 入力ノイズ - - - - Output gain - 出力ゲイン - - - - Output clip - アウトプットクリップ - - - - Sample rate - サンプルレート - - - - Stereo difference - ステレオの相違 - - - - Levels - レベル - - - - Rate enabled - Rateが有効です - - - - Depth enabled - 有効な深度 - CarlaAboutW @@ -900,124 +133,124 @@ LMMSを他の言語に翻訳したり、翻訳を改善することに興味が - + Artwork - + アートワーク - + Using KDE Oxygen icon set, designed by Oxygen Team. - + OxygenチームがデザインしたKDE Oxygenアイコンセットを使用<br> - + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. - + VST is a trademark of Steinberg Media Technologies GmbH. - + Special thanks to António Saraiva for a few extra icons and artwork! - + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. - + MIDI Keyboard designed by Thorsten Wilms. - + Carla, Carla-Control and Patchbay icons designed by DoosC. - + Features - + AU/AudioUnit: - + LADSPA: - - - - - - - - + + + + + + + + TextLabel - + VST2: - + DSSI: - + LV2: - + VST3: - + OSC - + Host URLs: - + Valid commands: - + valid osc commands here - + Example: - + License ライセンス - + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -1302,50 +535,50 @@ POSSIBILITY OF SUCH DAMAGES. - + OSC Bridge Version - + Plugin Version - + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> - - + + (Engine not running) - + Everything! (Including LRDF) - + Everything! (Including CustomData/Chunks) - + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - - - + + + Using Juce host - + About 85% complete (missing vst bank/presets and some minor stuff) @@ -1378,561 +611,598 @@ POSSIBILITY OF SUCH DAMAGES. - + + Save + + + + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + Buffer Size: - + Sample Rate: - + ? Xruns - + DSP Load: %p% - + &File ファイル(&F) - + &Engine - + &Plugin - + Macros (all plugins) - + &Canvas - + Zoom - + &Settings - + &Help ヘルプ(&H) - - toolBar + + Tool Bar - + Disk - - + + Home ホーム - + Transport - + Playback Controls - + Time Information - + Frame: - + 000'000'000 - + Time: 時間: - + 00:00:00 - + BBT: - + 000|00|0000 - + Settings 設定 - + BPM - + Use JACK Transport - + Use Ableton Link - + &New 新規(&N) - + Ctrl+N - + &Open... 開く(&O)... - - + + Open... - + Ctrl+O - + &Save 保存(&S) - + Ctrl+S - + Save &As... 名前を付けて保存(&A)... - - + + Save As... - + Ctrl+Shift+S - + &Quit 終了(&Q) - + Ctrl+Q - + &Start - + F5 - + St&op - + F6 - + &Add Plugin... - + Ctrl+A - + &Remove All - + Enable - + Disable - + 0% Wet (Bypass) - + 100% Wet - + 0% Volume (Mute) - + 100% Volume - + Center Balance - + &Play - + Ctrl+Shift+P - + &Stop - + Ctrl+Shift+X - + &Backwards - + Ctrl+Shift+B - + &Forwards - + Ctrl+Shift+F - + &Arrange - + Ctrl+G - - + + &Refresh - + Ctrl+R - + Save &Image... - + Auto-Fit - + Zoom In - + Ctrl++ - + Zoom Out - + Ctrl+- - + Zoom 100% - + Ctrl+1 - + Show &Toolbar - + &Configure Carla - + &About - + About &JUCE - + About &Qt - + Show Canvas &Meters - + Show Canvas &Keyboard - + Show Internal - + Show External - + Show Time Panel - + Show &Side Panel - + + Ctrl+P + + + + &Connect... - + Compact Slots - + Expand Slots - + Perform secret 1 - + Perform secret 2 - + Perform secret 3 - + Perform secret 4 - + Perform secret 5 - + Add &JACK Application... - + &Configure driver... - + Panic - + Open custom driver panel... + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + + CarlaHostWindow - + Export as... - - - - + + + + Error エラー - + Failed to load project - + Failed to save project - + Quit - + Are you sure you want to quit Carla? - + Could not connect to Audio backend '%1', possible reasons: %2 - + Could not connect to Audio backend '%1' - + Warning - + There are still some plugins loaded, you need to remove them to stop the engine. Do you want to do this now? - - CarlaInstrumentView - - - Show GUI - GUI を表示 - - CarlaSettingsW @@ -1987,19 +1257,19 @@ Do you want to do this now? - + Main - + Canvas - + Engine @@ -2020,1487 +1290,589 @@ Do you want to do this now? - + Experimental - + <b>Main</b> - + Paths パス - + Default project folder: - + Interface - + + Use "Classic" as default rack skin + + + + Interface refresh interval: - - + + ms - + Show console output in Logs tab (needs engine restart) - + Show a confirmation dialog before quitting - - + + Theme - + Use Carla "PRO" theme (needs restart) - + Color scheme: - + Black - + System - + Enable experimental features - + <b>Canvas</b> - + Bezier Lines - + Theme: - + Size: - + 775x600 - + 1550x1200 - + 3100x2400 - + 4650x3600 - + 6200x4800 - + + 12400x9600 + + + + Options - + Auto-hide groups with no ports - + Auto-select items on hover - + Basic eye-candy (group shadows) - + Render Hints - + Anti-Aliasing - + Full canvas repaints (slower, but prevents drawing issues) - + <b>Engine</b> - - + + Core - + Single Client - + Multiple Clients - - + + Continuous Rack - - + + Patchbay - + Audio driver: - + Process mode: - - - - + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog - + Max Parameters: - + ... - + Reset Xrun counter after project load - + Plugin UIs - - + + How much time to wait for OSC GUIs to ping back the host - + UI Bridge Timeout: - + Use OSC-GUI bridges when possible, this way separating the UI from DSP code - + Use UI bridges instead of direct handling when possible - + Make plugin UIs always-on-top - + Make plugin UIs appear on top of Carla (needs restart) - + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS - - + + Restart the engine to load the new settings - + <b>OSC</b> - + Enable OSC - + Enable TCP port - - + + Use specific port: - + Overridden by CARLA_OSC_TCP_PORT env var - - + + Use randomly assigned port - + Enable UDP port - + Overridden by CARLA_OSC_UDP_PORT env var - + DSSI UIs require OSC UDP port enabled - + <b>File Paths</b> - + Audio オーディオ - + MIDI MIDI - + Used for the "audiofile" plugin - + Used for the "midifile" plugin - - + + Add... - - + + Remove - - + + Change... - + <b>Plugin Paths</b> - + LADSPA - + DSSI - + LV2 - + VST2 - + VST3 - + SF2/3 - + SFZ - + + JSFX + + + + + CLAP + + + + Restart Carla to find new plugins - + <b>Wine</b> - + Executable - + Path to 'wine' binary: - + Prefix - + Auto-detect Wine prefix based on plugin filename - + Fallback: - + Note: WINEPREFIX env var is preferred over this fallback - + Realtime Priority - + Base priority: - + WineServer priority: - + These options are not available for Carla as plugin - + <b>Experimental</b> - + Experimental options! Likely to be unstable! - + Enable plugin bridges - + Enable Wine bridges - + Enable jack applications - + Export single plugins to LV2 - + + Use system/desktop-theme icons (needs restart) + + + + Load Carla backend in global namespace (NOT RECOMMENDED) - + Fancy eye-candy (fade-in/out groups, glow connections) - + Use OpenGL for rendering (needs restart) - + High Quality Anti-Aliasing (OpenGL only) - + Render Ardour-style "Inline Displays" - + Force mono plugins as stereo by running 2 instances at the same time. This mode is not available for VST plugins. - + Force mono plugins as stereo - - Prevent plugins from doing bad stuff (needs restart) + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. - - Whenever possible, run the plugins in bridge mode. + + Prevent unsafe calls from plugins (needs restart) - + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + Run plugins in bridge mode when possible - - - - + + + + Add Path - - CompressorControlDialog - - - Threshold: - - - - - Volume at which the compression begins to take place - - - - - Ratio: - レシオ: - - - - How far the compressor must turn the volume down after crossing the threshold - - - - - Attack: - アタック: - - - - Speed at which the compressor starts to compress the audio - - - - - Release: - リリース: - - - - Speed at which the compressor ceases to compress the audio - - - - - Knee: - - - - - Smooth out the gain reduction curve around the threshold - - - - - Range: - - - - - Maximum gain reduction - - - - - Lookahead Length: - - - - - How long the compressor has to react to the sidechain signal ahead of time - - - - - Hold: - Hold: - - - - Delay between attack and release stages - - - - - RMS Size: - - - - - Size of the RMS buffer - - - - - Input Balance: - - - - - Bias the input audio to the left/right or mid/side - - - - - Output Balance: - - - - - Bias the output audio to the left/right or mid/side - - - - - Stereo Balance: - - - - - Bias the sidechain signal to the left/right or mid/side - - - - - Stereo Link Blend: - - - - - Blend between unlinked/maximum/average/minimum stereo linking modes - - - - - Tilt Gain: - - - - - Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. - - - - - Tilt Frequency: - - - - - Center frequency of sidechain tilt filter - - - - - Mix: - - - - - Balance between wet and dry signals - - - - - Auto Attack: - - - - - Automatically control attack value depending on crest factor - - - - - Auto Release: - - - - - Automatically control release value depending on crest factor - - - - - Output gain - 出力ゲイン - - - - - Gain - ゲイン - - - - Output volume - - - - - Input gain - 入力ゲイン - - - - Input volume - - - - - Root Mean Square - - - - - Use RMS of the input - - - - - Peak - - - - - Use absolute value of the input - - - - - Left/Right - - - - - Compress left and right audio - - - - - Mid/Side - - - - - Compress mid and side audio - - - - - Compressor - - - - - Compress the audio - - - - - Limiter - - - - - Set Ratio to infinity (is not guaranteed to limit audio volume) - - - - - Unlinked - - - - - Compress each channel separately - - - - - Maximum - - - - - Compress based on the loudest channel - - - - - Average - - - - - Compress based on the averaged channel volume - - - - - Minimum - - - - - Compress based on the quietest channel - - - - - Blend - - - - - Blend between stereo linking modes - - - - - Auto Makeup Gain - - - - - Automatically change makeup gain depending on threshold, knee, and ratio settings - - - - - - Soft Clip - - - - - Play the delta signal - - - - - Use the compressor's output as the sidechain input - - - - - Lookahead Enabled - - - - - Enable Lookahead, which introduces 20 milliseconds of latency - - - - - CompressorControls - - - Threshold - - - - - Ratio - レシオ - - - - Attack - アタック - - - - Release - Release - - - - Knee - - - - - Hold - Hold - - - - Range - - - - - RMS Size - - - - - Mid/Side - - - - - Peak Mode - - - - - Lookahead Length - - - - - Input Balance - - - - - Output Balance - - - - - Limiter - - - - - Output Gain - - - - - Input Gain - - - - - Blend - - - - - Stereo Balance - - - - - Auto Makeup Gain - - - - - Audition - - - - - Feedback - フィードバック - - - - Auto Attack - - - - - Auto Release - - - - - Lookahead - - - - - Tilt - - - - - Tilt Frequency - - - - - Stereo Link - - - - - Mix - ミックス - - - - Controller - - - Controller %1 - コントローラー %1 - - - - ControllerConnectionDialog - - - Connection Settings - 接続設定 - - - - MIDI CONTROLLER - MIDI コントローラ - - - - Input channel - 入力チャンネル - - - - CHANNEL - チャンネル - - - - Input controller - 入力コントローラー - - - - CONTROLLER - コントローラー - - - - - Auto Detect - 自動検出 - - - - MIDI-devices to receive MIDI-events from - MIDI イベントを受信するための MIDI デバイス - - - - USER CONTROLLER - ユーザー コントローラー - - - - MAPPING FUNCTION - マッピング機能 - - - - OK - OK - - - - Cancel - キャンセル - - - - LMMS - LMMS - - - - Cycle Detected. - 循環が検出されました。 - - - - ControllerRackView - - - Controller Rack - コントローラー ラック - - - - Add - 追加 - - - - Confirm Delete - 削除の確認 - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - 削除してもよいですか? このコントローラーに関連付けられた接続があります。削除すると元に戻す方法はありません。 - - - - ControllerView - - - Controls - コントロール - - - - Rename controller - コントローラー名の変更 - - - - Enter the new name for this controller - コントローラーの新しい名前を入力してください - - - - LFO - LFO - - - - &Remove this controller - このコントローラーを取り外す (&R) - - - - Re&name this controller - このコントローラー名を変更 (&n) - - - - CrossoverEQControlDialog - - - Band 1/2 crossover: - バンド1/2クロスオーバー: - - - - Band 2/3 crossover: - バンド 2/3 クロスオーバー: - - - - Band 3/4 crossover: - バンド 3/4 クロスオーバー: - - - - Band 1 gain - バンド 1 ゲイン - - - - Band 1 gain: - バンド 1 ゲイン: - - - - Band 2 gain - バンド 2 ゲイン - - - - Band 2 gain: - バンド 2 ゲイン: - - - - Band 3 gain - バンド 3 ゲイン - - - - Band 3 gain: - バンド 3 ゲイン: - - - - Band 4 gain - バンド 4 ゲイン - - - - Band 4 gain: - バンド 4 ゲイン - - - - Band 1 mute - バンド1ミュート - - - - Mute band 1 - バンド1をミュート - - - - Band 2 mute - バンド2 ミュート - - - - Mute band 2 - バンド2をミュート - - - - Band 3 mute - バンド3 ミュート - - - - Mute band 3 - バンド3をミュート - - - - Band 4 mute - バンド4 ミュート - - - - Mute band 4 - バンド4をミュート - - - - DelayControls - - - Delay samples - ディレイサンプル - - - - Feedback - フィードバック - - - - LFO frequency - LFO周波数 - - - - LFO amount - LFOの量 - - - - Output gain - 出力ゲイン - - - - DelayControlsDialog - - - DELAY - ディレイ - - - - Delay time - ディレイ タイム - - - - FDBK - フィードバック - - - - Feedback amount - フィードバック量 - - - - RATE - モジュレーションスピード - - - - LFO frequency - LFO周波数 - - - - AMNT - AMNT - - - - LFO amount - LFOの量 - - - - Out gain - 出力ゲイン - - - - Gain - ゲイン - - Dialog - - - Add JACK Application - - - - - Note: Features not implemented yet are greyed out - - - - - Application - - - - - Name: - - - - - Application: - - - - - From template - - - - - Custom - - - - - Template: - - - - - Command: - - - - - Setup - - - - - Session Manager: - - - - - None - - - - - Audio inputs: - - - - - MIDI inputs: - - - - - Audio outputs: - - - - - MIDI outputs: - - - - - Take control of main application window - - - - - Workarounds - - - - - Wait for external application start (Advanced, for Debug only) - - - - - Capture only the first X11 Window - - - - - Use previous client output buffer as input for the next client - - - - - Simulate 16 JACK MIDI outputs, with MIDI channel as port index - - - - - Error here - - Carla Control - Connect @@ -3526,27 +1898,6 @@ This mode is not available for VST plugins. TCP Port: - - - Reported host - - - - - Automatic - - - - - Custom: - - - - - In some networks (like USB connections), the remote system cannot reach the local network. You can specify here which hostname or IP to make the remote Carla connect to. -If you are unsure, leave it as 'Automatic'. - - Set value @@ -3573,7 +1924,7 @@ If you are unsure, leave it as 'Automatic'. Device: - + デバイス : @@ -3601,948 +1952,6 @@ If you are unsure, leave it as 'Automatic'. - - DualFilterControlDialog - - - - FREQ - 周波数 - - - - - Cutoff frequency - カットオフ周波数 - - - - - RESO - レゾナンス - - - - - Resonance - レゾナンス - - - - - GAIN - ゲイン - - - - - Gain - ゲイン - - - - MIX - ミックス - - - - Mix - ミックス - - - - Filter 1 enabled - フィルタ1が有効です - - - - Filter 2 enabled - フィルタ2が有効です - - - - Enable/disable filter 1 - フィルター 1 を有効化 / 無効化 - - - - Enable/disable filter 2 - フィルター 2 を有効化 / 無効化 - - - - DualFilterControls - - - Filter 1 enabled - フィルタ1は有効です - - - - Filter 1 type - フィルタ1の種類 - - - - Cutoff frequency 1 - カットオフ周波数 1 - - - - Q/Resonance 1 - Q/Resonance 1 - - - - Gain 1 - ゲイン 1 - - - - Mix - ミックス - - - - Filter 2 enabled - フィルタ2は有効 - - - - Filter 2 type - フィルタ2の種類 - - - - Cutoff frequency 2 - カットオフ周波数 2 - - - - Q/Resonance 2 - Q/Resonance 2 - - - - Gain 2 - ゲイン 2 - - - - - Low-pass - ローパス - - - - - Hi-pass - ハイパス - - - - - Band-pass csg - バンドパス csg - - - - - Band-pass czpg - バンドパス czpg - - - - - Notch - Notch - - - - - All-pass - オールパス - - - - - Moog - Moog - - - - - 2x Low-pass - 2x ローパス - - - - - RC Low-pass 12 dB/oct - RC ローパス 12dB/オクターブ - - - - - RC Band-pass 12 dB/oct - RC バンドパス 12dB/オクターブ - - - - - RC High-pass 12 dB/oct - RC ハイパス 12dB/オクターブ - - - - - RC Low-pass 24 dB/oct - RC ローパス 24dB/オクターブ - - - - - RC Band-pass 24 dB/oct - RC バンドパス 24dB/オクターブ - - - - - RC High-pass 24 dB/oct - RC ハイパス 24dB/オクターブ - - - - - Vocal Formant - ボーカル フォルマント - - - - - 2x Moog - 2x Moog - - - - - SV Low-pass - SV ローパス - - - - - SV Band-pass - SV バンドパス - - - - - SV High-pass - SV ハイパス - - - - - SV Notch - SV Notch - - - - - Fast Formant - Fast Formant - - - - - Tripole - Tripole - - - - Editor - - - Transport controls - トランスポートコントロール - - - - Play (Space) - 再生 (Space) - - - - Stop (Space) - 停止 (Space) - - - - Record - 録音 - - - - Record while playing - 再生&録音 - - - - Toggle Step Recording - - - - - Effect - - - Effect enabled - エフェクト有効 - - - - Wet/Dry mix - ウェット/ドライミックス - - - - Gate - ゲート - - - - Decay - ディケイ - - - - EffectChain - - - Effects enabled - エフェクト有効 - - - - EffectRackView - - - EFFECTS CHAIN - エフェクトチェイン - - - - Add effect - エフェクトを追加 - - - - EffectSelectDialog - - - Add effect - エフェクトを追加 - - - - - Name - 名前 - - - - Type - 種類 - - - - Description - 説明 - - - - Author - 製作者 - - - - EffectView - - - On/Off - オン/オフ - - - - W/D - W/D - - - - Wet Level: - ウェット - - - - DECAY - ディケイ - - - - Time: - 時間: - - - - GATE - ゲート - - - - Gate: - ゲート: - - - - Controls - コントロール - - - - Move &up - 一つ上へ(&u) - - - - Move &down - 一つ下へ(&d) - - - - &Remove this plugin - このプラグインを削除(&R) - - - - EnvelopeAndLfoParameters - - - Env pre-delay - Env プリディレイ - - - - Env attack - Env アタック - - - - Env hold - Env ホールド - - - - Env decay - Env ディケイ - - - - Env sustain - Env サステイン - - - - Env release - Env リリース - - - - Env mod amount - エンベロープモッド量 - - - - LFO pre-delay - LFOプレディレイ - - - - LFO attack - LFOアタック - - - - LFO frequency - LFO周波数 - - - - LFO mod amount - LFOモッド量 - - - - LFO wave shape - LFO 波形 - - - - LFO frequency x 100 - LFO周波数 100倍 - - - - Modulate env amount - モデュレート エンベローブ 量 - - - - EnvelopeAndLfoView - - - - DEL - ATT - - - - - Pre-delay: - プレディレイ: - - - - - ATT - ATT - - - - - Attack: - アタック: - - - - HOLD - HOLD - - - - Hold: - Hold: - - - - DEC - DEC - - - - Decay: - ディケイ: - - - - SUST - SUST - - - - Sustain: - サスティン: - - - - REL - REL - - - - Release: - リリース: - - - - - AMT - Hold: - - - - - Modulation amount: - Modulation amount: - - - - SPD - SPD - - - - Frequency: - 周波数: - - - - FREQ x 100 - FREQ x 100 - - - - Multiply LFO frequency by 100 - - - - - MODULATE ENV AMOUNT - モデュレートエンベロープ 量 - - - - Control envelope amount by this LFO - このLFOによるエンベローブ量を調節 - - - - ms/LFO: - ms/LFO: - - - - Hint - ヒント - - - - Drag and drop a sample into this window. - サンプルをこのウィンドウにドラッグ & ドロップしてください。 - - - - EqControls - - - Input gain - 入力ゲイン - - - - Output gain - 出力ゲイン - - - - Low-shelf gain - ローシェルフ ゲイン - - - - Peak 1 gain - ピーク 1 ゲイン - - - - Peak 2 gain - ピーク 2 ゲイン - - - - Peak 3 gain - ピーク 3 ゲイン - - - - Peak 4 gain - ピーク 4 ゲイン - - - - High-shelf gain - ハイシェルフ ゲイン - - - - HP res - HP res - - - - Low-shelf res - ローシェルフ レゾナンス - - - - Peak 1 BW - ピーク 1 BW - - - - Peak 2 BW - ピーク 2 BW - - - - Peak 3 BW - ピーク 3 BW - - - - Peak 4 BW - ピーク 4 BW - - - - High-shelf res - ハイシェルフ レゾナンス - - - - LP res - LP レゾナンス - - - - HP freq - HP 周波数 - - - - Low-shelf freq - ローシェルフ 周波数 - - - - Peak 1 freq - ピーク 1 周波数 - - - - Peak 2 freq - ピーク 2 周波数 - - - - Peak 3 freq - ピーク 3 周波数 - - - - Peak 4 freq - ピーク 4 周波数 - - - - High-shelf freq - ハイシェルフ 周波数 - - - - LP freq - LP 周波数 - - - - HP active - HP オン - - - - Low-shelf active - ローシェルフ ON - - - - Peak 1 active - ピーク 1 ON - - - - Peak 2 active - ピーク 2 ON - - - - Peak 3 active - ピーク 3 ON - - - - Peak 4 active - ピーク 4 ON - - - - High-shelf active - ハイシェルフ ON - - - - LP active - LP ON - - - - LP 12 - LP 12 - - - - LP 24 - LP 24 - - - - LP 48 - LP 48 - - - - HP 12 - HP 12 - - - - HP 24 - HP 24 - - - - HP 48 - HP 48 - - - - Low-pass type - ローパス 種類 - - - - High-pass type - ハイパス 種類 - - - - Analyse IN - 分析 IN - - - - Analyse OUT - 分析 OUT - - - - EqControlsDialog - - - HP - HP - - - - Low-shelf - ローシェルフ - - - - Peak 1 - ピーク 1 - - - - Peak 2 - ピーク 2 - - - - Peak 3 - ピーク 3 - - - - Peak 4 - ピーク 4 - - - - High-shelf - ハイシェルフ - - - - LP - LP - - - - Input gain - 入力ゲイン - - - - - - Gain - ゲイン - - - - Output gain - 出力ゲイン - - - - Bandwidth: - 帯域幅 - - - - Octave - オクターブ - - - - Resonance : - レゾナンス : - - - - Frequency: - 周波数: - - - - LP group - ローパスグループ - - - - HP group - ハイパスグループ - - - - EqHandle - - - Reso: - Reso - - - - BW: - BW : - - - - - Freq: - Freq : - - ExportProjectDialog @@ -4726,2126 +2135,652 @@ If you are unsure, leave it as 'Automatic'. 最高品質 (最低速) - - Oversampling: - オーバーサンプリング : - - - - 1x (None) - 1x (そのまま) - - - - 2x - 2x - - - - 4x - 4x - - - - 8x - 8x - - - + Start 開始 - + Cancel キャンセル - - - Could not open file - ファイルを開けません - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - ファイル %1 を開けません。 -書き込み権限があることを確認してからもう一度試してください。 - - - - Export project to %1 - プロジェクトを %1 にエクスポート - - - - ( Fastest - biggest ) - ( 最速 - 最大 ) - - - - ( Slowest - smallest ) - ( 最低速 - 最小 ) - - - - Error - エラー - - - - Error while determining file-encoder device. Please try to choose a different output format. - ファイルエンコーダーのデバイスを選択する際にエラーが発生しました。違うフォーマットを選択してください。 - - - - Rendering: %1% - レンダリング: %1% - - - - Fader - - - Set value - 値をセット - - - - Please enter a new value between %1 and %2: - %1 と %2 の間の新しい値を入力してください: - - - - FileBrowser - - - User content - - - - - Factory content - - - - - Browser - ブラウザ - - - - Search - 検索 - - - - Refresh list - リストの更新 - - - - FileBrowserTreeWidget - - - Send to active instrument-track - 現在開いているインストゥルメントトラックに上書きする - - - - Open containing folder - - - - - Song Editor - ソング エディター - - - - BB Editor - - - - - Send to new AudioFileProcessor instance - - - - - Send to new instrument track - - - - - (%2Enter) - - - - - Send to new sample track (Shift + Enter) - - - - - Loading sample - サンプルを読み込み中 - - - - Please wait, loading sample for preview... - プレビュー用のサンプルを読み込んでいます... - - - - Error - エラー - - - - %1 does not appear to be a valid %2 file - - - - - --- Factory files --- - --- ファクトリーファイル --- - - - - FlangerControls - - - Delay samples - ディレイサンプル - - - - LFO frequency - LFO周波数 - - - - Seconds - - - - - Stereo phase - - - - - Regen - - - - - Noise - ノイズ - - - - Invert - 反転 - - - - FlangerControlsDialog - - - DELAY - ディレイ - - - - Delay time: - ディレイ時間 : - - - - RATE - モジュレーションスピード - - - - Period: - ピリオド: - - - - AMNT - AMNT - - - - Amount: - アマウント: - - - - PHASE - - - - - Phase: - - - - - FDBK - フィードバック - - - - Feedback amount: - フィードバック 量 : - - - - NOISE - ノイズ - - - - White noise amount: - ホワイトノイズ 量 : - - - - Invert - 反転 - - - - FreeBoyInstrument - - - Sweep time - スイープする時間 - - - - Sweep direction - スイープする方向 - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle - - - - - Channel 1 volume - チャンネル1の音量 - - - - - - Volume sweep direction - 音量のスイープ方向 - - - - - - Length of each step in sweep - - - - - Channel 2 volume - チャンネル2の音量 - - - - Channel 3 volume - チャンネル3の音量 - - - - Channel 4 volume - チャンネル4の音量 - - - - Shift Register width - - - - - Right output level - - - - - Left output level - - - - - Channel 1 to SO2 (Left) - チャンネル 1 を SO2 (左)に - - - - Channel 2 to SO2 (Left) - チャンネル 2 を SO2 (左)に - - - - Channel 3 to SO2 (Left) - チャンネル 3 を SO2 (左)に - - - - Channel 4 to SO2 (Left) - チャンネル 4 を SO2 (左)に - - - - Channel 1 to SO1 (Right) - チャンネル 1 を SO1 (右)に - - - - Channel 2 to SO1 (Right) - チャンネル 2 を SO1 (右)に - - - - Channel 3 to SO1 (Right) - チャンネル 3 を SO1 (右)に - - - - Channel 4 to SO1 (Right) - チャンネル 4 を SO1 (右)に - - - - Treble - 音域 - - - - Bass - ベース - - - - FreeBoyInstrumentView - - - Sweep time: - - - - - Sweep time - スイープする時間 - - - - Sweep rate shift amount: - - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle: - - - - - - Wave pattern duty cycle - - - - - Square channel 1 volume: - - - - - Square channel 1 volume - - - - - - - Length of each step in sweep: - - - - - - - Length of each step in sweep - - - - - Square channel 2 volume: - - - - - Square channel 2 volume - - - - - Wave pattern channel volume: - - - - - Wave pattern channel volume - - - - - Noise channel volume: - - - - - Noise channel volume - - - - - SO1 volume (Right): - - - - - SO1 volume (Right) - - - - - SO2 volume (Left): - - - - - SO2 volume (Left) - - - - - Treble: - 音域: - - - - Treble - 音域 - - - - Bass: - ベース: - - - - Bass - ベース - - - - Sweep direction - スイープする方向 - - - - - - - - Volume sweep direction - 音量のスイープ方向 - - - - Shift register width - - - - - Channel 1 to SO1 (Right) - チャンネル 1 を SO1 (右)に - - - - Channel 2 to SO1 (Right) - チャンネル 2 を SO1 (右)に - - - - Channel 3 to SO1 (Right) - チャンネル 3 を SO1 (右)に - - - - Channel 4 to SO1 (Right) - チャンネル 4 を SO1 (右)に - - - - Channel 1 to SO2 (Left) - チャンネル 1 を SO2 (左)に - - - - Channel 2 to SO2 (Left) - チャンネル 2 を SO2 (左)に - - - - Channel 3 to SO2 (Left) - チャンネル 3 を SO2 (左)に - - - - Channel 4 to SO2 (Left) - チャンネル 4 を SO2 (左)に - - - - Wave pattern graph - - - - - MixerChannelView - - - Channel send amount - - - - - Move &left - 一つ左へ (&l) - - - - Move &right - 一つ右へ (&r) - - - - Rename &channel - チャンネル名を変更 (&c) - - - - R&emove channel - チャンネルを削除 (&e) - - - - Remove &unused channels - 使用していないチャンネルを削除 (&u) - - - - Set channel color - - - - - Remove channel color - - - - - Pick random channel color - - - - - MixerChannelLcdSpinBox - - - Assign to: - - - - - New mixer Channel - - - - - Mixer - - - Master - - - - - - - Channel %1 - FX %1 - - - - Volume - 音量 - - - - Mute - ミュート - - - - Solo - ソロ - - - - MixerView - - - Mixer - エフェクトミキサー - - - - Fader %1 - - - - - Mute - ミュート - - - - Mute this mixer channel - このFXチャンネルをミュート - - - - Solo - ソロ - - - - Solo mixer channel - - - - - MixerRoute - - - - Amount to send from channel %1 to channel %2 - - - - - GigInstrument - - - Bank - バンク - - - - Patch - パッチ - - - - Gain - ゲイン - - - - GigInstrumentView - - - - Open GIG file - GIG ファイルを開く - - - - Choose patch - パッチを選択してください - - - - Gain: - ゲイン: - - - - GIG Files (*.gig) - GIG ファイル (*.gig) - - - - GuiApplication - - - Working directory - 作業ディレクトリ - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - LMMSの作業ディレクトリ %1 は存在しません。作成しますか?編集->セッティング でこのディレクトリを変更できます。 - - - - Preparing UI - UIの準備中 - - - - Preparing song editor - ソング エディター の準備中 - - - - Preparing mixer - ミキサーの準備中 - - - - Preparing controller rack - コントローラー ラック の準備中 - - - - Preparing project notes - プロジェクトノートの準備中 - - - - Preparing beat/bassline editor - ビート/ベースライン エディター の準備中 - - - - Preparing piano roll - ピアノロールの準備中 - - - - Preparing automation editor - オートメーション エディター の準備中 - - - - InstrumentFunctionArpeggio - - - Arpeggio - - - - - Arpeggio type - - - - - Arpeggio range - - - - - Note repeats - - - - - Cycle steps - - - - - Skip rate - Skip rate - - - - Miss rate - Miss rate - - - - Arpeggio time - - - - - Arpeggio gate - - - - - Arpeggio direction - - - - - Arpeggio mode - - - - - Up - - - - - Down - - - - - Up and down - - - - - Down and up - - - - - Random - ランダム - - - - Free - - - - - Sort - ソート - - - - Sync - 同期 - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - アルペジオ - - - - RANGE - RANGE - - - - Arpeggio range: - - - - - octave(s) - オクターブ - - - - REP - - - - - Note repeats: - - - - - time(s) - - - - - CYCLE - - - - - Cycle notes: - - - - - note(s) - ノート - - - - SKIP - スキップ - - - - Skip rate: - - - - - - - % - % - - - - MISS - - - - - Miss rate: - - - - - TIME - - - - - Arpeggio time: - - - - - ms - ms - - - - GATE - ゲート - - - - Arpeggio gate: - - - - - Chord: - コード: - - - - Direction: - 方向: - - - - Mode: - モード: - InstrumentFunctionNoteStacking - + octave オクターブ - - + + Major Major - + Majb5 Majb5 - + minor minor - + minb5 minb5 - + sus2 sus2 - + sus4 sus4 - + aug aug - + augsus4 augsus4 - + tri tri - + 6 6 - + 6sus4 6sus4 - + 6add9 6add9 - + m6 m6 - + m6add9 m6add9 - + 7 7 - + 7sus4 7sus4 - + 7#5 7#5 - + 7b5 7b5 - + 7#9 7#9 - + 7b9 7b9 - + 7#5#9 7#5#9 - + 7#5b9 7#5b9 - + 7b5b9 7b5b9 - + 7add11 7add11 - + 7add13 7add13 - + 7#11 7#11 - + Maj7 Maj7 - + Maj7b5 Maj7b5 - + Maj7#5 Maj7#5 - + Maj7#11 Maj7#11 - + Maj7add13 Maj7add13 - + m7 m7 - + m7b5 m7b5 - + m7b9 m7b9 - + m7add11 m7add11 - + m7add13 m7add13 - + m-Maj7 m-Maj7 - + m-Maj7add11 m-Maj7add11 - + m-Maj7add13 m-Maj7add13 - + 9 9 - + 9sus4 9sus4 - + add9 add9 - + 9#5 9#5 - + 9b5 9b5 - + 9#11 9#11 - + 9b13 9b13 - + Maj9 Maj9 - + Maj9sus4 Maj9sus4 - + Maj9#5 Maj9#5 - + Maj9#11 Maj9#11 - + m9 m9 - + madd9 madd9 - + m9b5 m9b5 - + m9-Maj7 m9-Maj7 - + 11 11 - + 11b9 11b9 - + Maj11 Maj11 - + m11 m11 - + m-Maj11 m-Maj11 - + 13 13 - + 13#9 13#9 - + 13b9 13b9 - + 13b5b9 13b5b9 - + Maj13 Maj13 - + m13 m13 - + m-Maj13 m-Maj13 - + Harmonic minor ハーモニックマイナー - + Melodic minor メロディックマイナー - + Whole tone ホールトーン - + Diminished ディミニッシュ - + Major pentatonic メジャーペンタトニック - + Minor pentatonic マイナーペンタトニック - + Jap in sen Jap in sen - + Major bebop メジャービバップ - + Dominant bebop ドミナントビバップ - + Blues ブルース - + Arabic アラビック - + Enigmatic エニグマティック - + Neopolitan ネオポリタン - + Neopolitan minor ネオポリタンマイナー - + Hungarian minor ハンガリアンマイナー - + Dorian ドリア旋法 - + Phrygian フリギア旋法 - + Lydian 教会旋法 - + Mixolydian ミクソリディア旋法 - + Aeolian エオリア旋法 - + Locrian ロクリアン旋法 - + Minor Minor - + Chromatic クロマティック - + Half-Whole Diminished - + 5 5 - + Phrygian dominant - + Persian - - - Chords - - - - - Chord type - - - - - Chord range - - - - - InstrumentFunctionNoteStackingView - - - STACKING - - - - - Chord: - コード: - - - - RANGE - RANGE - - - - Chord range: - - - - - octave(s) - オクターブ - - - - InstrumentMidiIOView - - - ENABLE MIDI INPUT - MIDI入力を有効にする - - - - ENABLE MIDI OUTPUT - MIDI出力を有効にする - - - - - CHAN - This string must be be short, its width must be less than * width of LCD spin-box of two digits - - - - - - VELOC - This string must be be short, its width must be less than * width of LCD spin-box of three digits - - - - - PROG - This string must be be short, its width must be less than the * width of LCD spin-box of three digits - - - - - NOTE - This string must be be short, its width must be less than * width of LCD spin-box of three digits - - - - - MIDI devices to receive MIDI events from - - - - - MIDI devices to send MIDI events to - - - - - CUSTOM BASE VELOCITY - - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. - - - - - BASE VELOCITY - - - - - InstrumentTuningView - - - MASTER PITCH - - - - - Enables the use of master pitch - マスターピッチの使用を有効化 - InstrumentSoundShaping - + VOLUME 音量 - + Volume 音量 - + CUTOFF Cutoff - - + Cutoff frequency カットオフ周波数 - + RESO レゾナンス - + Resonance レゾナンス - - - Envelopes/LFOs - エンベロープ/LFO - - - - Filter type - フィルターの種類 - - - - Q/Resonance - Q/Resonance - - - - Low-pass - ローパス - - - - Hi-pass - ハイパス - - - - Band-pass csg - バンドパス csg - - - - Band-pass czpg - バンドパス czpg - - - - Notch - Notch - - - - All-pass - オールパス - - - - Moog - Moog - - - - 2x Low-pass - 2x ローパス - - - - RC Low-pass 12 dB/oct - RC ローパス 12dB/オクターブ - - - - RC Band-pass 12 dB/oct - RC バンドパス 12dB/オクターブ - - - - RC High-pass 12 dB/oct - RC ハイパス 12dB/オクターブ - - - - RC Low-pass 24 dB/oct - RC ローパス 24dB/オクターブ - - - - RC Band-pass 24 dB/oct - RC バンドパス 24dB/オクターブ - - - - RC High-pass 24 dB/oct - RC ハイパス 24dB/オクターブ - - - - Vocal Formant - ボーカル フォルマント - - - - 2x Moog - 2x Moog - - - - SV Low-pass - SV ローパス - - - - SV Band-pass - SV バンドパス - - - - SV High-pass - SV ハイパス - - - - SV Notch - SV Notch - - - - Fast Formant - Fast Formant - - - - Tripole - Tripole - - InstrumentSoundShapingView + JackAppDialog - - TARGET - 対象 - - - - FILTER - フィルタ - - - - FREQ - 周波数 - - - - Cutoff frequency: - カットオフ周波数: - - - - Hz - Hz - - - - Q/RESO - レゾナンス - - - - Q/Resonance: - レゾナンス - - - - Envelopes, LFOs and filters are not supported by the current instrument. - エンベロープ、LFOやフィルターなどの操作は現在の楽器プラグインではサポートされていません。 - - - - InstrumentTrack - - - - unnamed_track - 新規トラック - - - - Base note + + Add JACK Application - - First note + + Note: Features not implemented yet are greyed out - - Last note - 最後に使用したノート - - - - Volume - 音量 - - - - Panning - パニング - - - - Pitch - ピッチ - - - - Pitch range - ピッチ範囲 - - - - Mixer channel - FXチャンネル - - - - Master pitch - 主ピッチ - - - - Enable/Disable MIDI CC + + Application - - CC Controller %1 + + Name: - - - Default preset - Default preset - - - - InstrumentTrackView - - - Volume - 音量 - - - - Volume: - 音量: - - - - VOL - 音量 - - - - Panning - パニング - - - - Panning: - パニング: - - - - PAN - パニング - - - - MIDI - MIDI - - - - Input - 入力 - - - - Output - 出力 - - - - Open/Close MIDI CC Rack + + Application: - - Channel %1: %2 - FX %1: %2 - - - - InstrumentTrackWindow - - - GENERAL SETTINGS - 一般設定 - - - - Volume - 音量 - - - - Volume: - 音量: - - - - VOL - 音量 - - - - Panning - パニング - - - - Panning: - パニング: - - - - PAN - パニング - - - - Pitch - ピッチ - - - - Pitch: - ピッチ: - - - - cents - cent - - - - PITCH - ピッチ - - - - Pitch range (semitones) - ピッチ範囲 (半音) - - - - RANGE - RANGE - - - - Mixer channel - FXチャンネル - - - - CHANNEL - FX - - - - Save current instrument track settings in a preset file + + From template - - SAVE - 保存 - - - - Envelope, filter & LFO + + Custom - - Chord stacking & arpeggio + + Template: - - Effects - エフェクト - - - - MIDI - MIDI - - - - Miscellaneous + + Command: - - Save preset - プリセットを保存 + + Setup + - - XML preset file (*.xpf) - XML プリセット ファイル (*.xpf) + + Session Manager: + - - Plugin - プラグイン + + None + - - - JackApplicationW - + + Audio inputs: + + + + + MIDI inputs: + + + + + Audio outputs: + + + + + MIDI outputs: + + + + + Take control of main application window + + + + + Workarounds + + + + + Wait for external application start (Advanced, for Debug only) + + + + + Capture only the first X11 Window + + + + + Use previous client output buffer as input for the next client + + + + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + + + + + Error here + + + + NSM applications cannot use abstract or absolute paths - + NSM applications cannot use CLI arguments - + You need to save the current Carla project before NSM can be used @@ -6853,947 +2788,11 @@ Please make sure you have write permission to the file and the directory contain JuceAboutW - - About JUCE - - - - - <b>About JUCE</b> - - - - - This program uses JUCE version 3.x.x. - - - - - JUCE (Jules' Utility Class Extensions) is an all-encompassing C++ class library for developing cross-platform software. - -It contains pretty much everything you're likely to need to create most applications, and is particularly well-suited for building highly-customised GUIs, and for handling graphics and sound. - -JUCE is licensed under the GNU Public Licence version 2.0. -One module (juce_core) is permissively licensed under the ISC. - -Copyright (C) 2017 ROLI Ltd. - - - - + This program uses JUCE version %1. - - Knob - - - Set linear - - - - - Set logarithmic - - - - - - Set value - 値をセット - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - -96.0 dBFSから 6.0 dBFSの範囲で新しい値を入力してください: - - - - Please enter a new value between %1 and %2: - %1 と %2 の間の新しい値を入力してください: - - - - LadspaControl - - - Link channels - チャンネルをリンクする - - - - LadspaControlDialog - - - Link Channels - チャンネルをリンクする - - - - Channel - チャンネル - - - - LadspaControlView - - - Link channels - チャンネルをリンクする - - - - Value: - - - - - LadspaEffect - - - Unknown LADSPA plugin %1 requested. - 不明な LADSPA プラグイン %1 が要求されました。 - - - - LcdFloatSpinBox - - - Set value - 値をセット - - - - Please enter a new value between %1 and %2: - %1 と %2 の間の新しい値を入力してください: - - - - LcdSpinBox - - - Set value - 値をセット - - - - Please enter a new value between %1 and %2: - %1 と %2 の間の新しい値を入力してください: - - - - LeftRightNav - - - - - Previous - - - - - - - Next - - - - - Previous (%1) - 前 (%1) - - - - Next (%1) - 次 (%1) - - - - LfoController - - - LFO Controller - LFOコントローラ - - - - Base value - - - - - Oscillator speed - - - - - Oscillator amount - - - - - Oscillator phase - - - - - Oscillator waveform - オシレーターの波形 - - - - Frequency Multiplier - - - - - LfoControllerDialog - - - LFO - LFO - - - - BASE - BASE - - - - Base: - - - - - FREQ - 周波数 - - - - LFO frequency: - - - - - AMNT - AMNT - - - - Modulation amount: - Modulation amount: - - - - PHS - PHS - - - - Phase offset: - - - - - degrees - - - - - Sine wave - サイン波 - - - - Triangle wave - 三角波 - - - - Saw wave - のこぎり波 - - - - Square wave - 矩形波 - - - - Moog saw wave - - - - - Exponential wave - - - - - White noise - - - - - User-defined shape. -Double click to pick a file. - - - - - Mutliply modulation frequency by 1 - - - - - Mutliply modulation frequency by 100 - - - - - Divide modulation frequency by 100 - - - - - Engine - - - Generating wavetables - - - - - Initializing data structures - - - - - Opening audio and midi devices - オーディオ・MIDIデバイスを開いています - - - - Launching mixer threads - - - - - MainWindow - - - Configuration file - 設定ファイル - - - - Error while parsing configuration file at line %1:%2: %3 - 設定ファイルの%1行目%2列目でパースエラー: %3 - - - - Could not open file - ファイルを開くことができませんでした - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - ファイル %1 を開けません。 -書き込み権限があることを確認してからもう一度試してください。 - - - - Project recovery - プロジェクトの復元 - - - - There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - - - - - - Recover - 復元 - - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - ファイルを復元します。 LMMSを複数にわたり実行しないでください。 - - - - - Discard - 変更を破棄 - - - - Launch a default session and delete the restored files. This is not reversible. - - - - - Version %1 - バージョン %1 - - - - Preparing plugin browser - プラグインブラウザを準備しています - - - - Preparing file browsers - ファイルブラウザを準備しています - - - - My Projects - マイ プロジェクト - - - - My Samples - マイ サンプル - - - - My Presets - マイ プリセット - - - - My Home - マイ ホーム - - - - Root directory - ルートディレクトリ - - - - Volumes - 音量 - - - - My Computer - マイ コンピュータ - - - - &File - ファイル(&F) - - - - &New - 新規(&N) - - - - &Open... - 開く(&O)... - - - - Loading background picture - - - - - &Save - 保存(&S) - - - - Save &As... - 名前を付けて保存(&A)... - - - - Save as New &Version - 新規保存 (&V) - - - - Save as default template - デフォルトのテンプレートとして保存 - - - - Import... - インポート.... - - - - E&xport... - エクスポート(&x)... - - - - E&xport Tracks... - トラックをエクスポート (&x)... - - - - Export &MIDI... - &MIDI 形式でエクスポート - - - - &Quit - 終了(&Q) - - - - &Edit - 編集(&E) - - - - Undo - 元に戻す - - - - Redo - やり直し - - - - Settings - 設定 - - - - &View - &表示 - - - - &Tools - ツール(&T) - - - - &Help - ヘルプ(&H) - - - - Online Help - オンラインヘルプ - - - - Help - ヘルプ - - - - About - LMMSについて - - - - Create new project - 新規プロジェクト作成 - - - - Create new project from template - テンプレートから新規プロジェクトを作成します - - - - Open existing project - 既存プロジェクトを開く - - - - Recently opened projects - 最近開いたプロジェクト - - - - Save current project - 現在のプロジェクトを保存 - - - - Export current project - 現在のプロジェクトをエクスポート - - - - Metronome - メトロノーム - - - - - Song Editor - ソング エディター - - - - - Beat+Bassline Editor - ビート+ベースライン エディター - - - - - Piano Roll - ピアノロール - - - - - Automation Editor - オートメーション エディター - - - - - Mixer - エフェクトミキサー - - - - Show/hide controller rack - コントローラー ラック の表示/非表示 - - - - Show/hide project notes - プロジェクトノートの表示/非表示 - - - - Untitled - 無題 - - - - Recover session. Please save your work! - 復元されたファイルです。今すぐ保存してください! - - - - LMMS %1 - LMMS %1 - - - - Recovered project not saved - 復元された未保存のプロジェクト - - - - This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? - このプロジェクトは以前のセッションから復元されました。このプロジェクトは現在保存されておらず、保存しないと失われます。保存しますか? - - - - Project not saved - プロジェクトは保存されていません - - - - The current project was modified since last saving. Do you want to save it now? - 現在のプロジェクトは最後に保存してから変更されています。保存しますか? - - - - Open Project - プロジェクトを開く - - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - - Save Project - プロジェクトを保存 - - - - LMMS Project - LMMSのプロジェクト - - - - LMMS Project Template - LMMSのプロジェクトのテンプレート - - - - Save project template - プロジェクトのテンプレートを保存 - - - - Overwrite default template? - デフォルトのテンプレートに上書きしますか? - - - - This will overwrite your current default template. - 現在のデフォルトのテンプレートに上書きします - - - - Help not available - ヘルプはありません - - - - Currently there's no help available in LMMS. -Please visit http://lmms.sf.net/wiki for documentation on LMMS. - 今のところ LMMSののヘルプはありません。 - http://lmms.sf.net/wiki にLMMSのドキュメントがあります。 - - - - Controller Rack - コントローラー ラック - - - - Project Notes - プロジェクトノート - - - - Fullscreen - - - - - Volume as dBFS - 音量を dBFS で表示 - - - - Smooth scroll - 滑らかにスクロール - - - - Enable note labels in piano roll - ピアノロールに音階を表示 - - - - MIDI File (*.mid) - MIDIファイル (*.mid) - - - - - untitled - 無題 - - - - - Select file for project-export... - プロジェクトをエクスポートするファイルを選択してください... - - - - Select directory for writing exported tracks... - エクスポートされたトラックの書き込み先のディレクトリを選択... - - - - Save project - プロジェクトを保存 - - - - Project saved - プロジェクトを保存しました - - - - The project %1 is now saved. - プロジェクト %1 を保存しました。 - - - - Project NOT saved. - プロジェクトは保存されていません。 - - - - The project %1 was not saved! - プロジェクト %1 は保存されませんでした! - - - - Import file - ファイルをインポート - - - - MIDI sequences - MIDIシーケンス - - - - Hydrogen projects - Hydrogenプロジェクト - - - - All file types - すべてのファイル - - - - MeterDialog - - - - Meter Numerator - - - - - Meter numerator - - - - - - Meter Denominator - - - - - Meter denominator - - - - - TIME SIG - 拍子 - - - - MeterModel - - - Numerator - - - - - Denominator - - - - - MidiCCRackView - - - - MIDI CC Rack - %1 - - - - - MIDI CC Knobs: - - - - - CC %1 - - - - - MidiController - - - MIDI Controller - MIDIコントローラ - - - - unnamed_midi_controller - 名称未設定_MIDI_コントローラ - - - - MidiImport - - - - Setup incomplete - セットアップの未完了 - - - - You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. - - - - - You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - - - - - MIDI Time Signature Numerator - - - - - MIDI Time Signature Denominator - - - - - Numerator - - - - - Denominator - - - - - Track - トラック - - - - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - JACK サーバーダウン - - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - JACKサーバーはシャットダウンしたようです。 - - MidiPatternW @@ -7999,2729 +2998,368 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. 終了(&Q) - - &Insert Mode + + Esc + &Insert Mode + + + + F - + &Velocity Mode - + D D - + Select All - + A A - - MidiPort - - - Input channel - 入力チャンネル - - - - Output channel - 出力チャンネル - - - - Input controller - 入力コントローラ - - - - Output controller - 出力コントローラ - - - - Fixed input velocity - 固定入力速度 - - - - Fixed output velocity - 固定出力速度 - - - - Fixed output note - 出力ノートを固定 - - - - Output MIDI program - 出力MIDIプログラム - - - - Base velocity - 基のベロシティ - - - - Receive MIDI-events - MIDIイベントを受信 - - - - Send MIDI-events - MIDIイベントを送信 - - - - MidiSetupWidget - - - Device - - - - - MonstroInstrument - - - Osc 1 volume - オシレーター 1 の音量 - - - - Osc 1 panning - オシレーター 1 のパン - - - - Osc 1 coarse detune - - - - - Osc 1 fine detune left - - - - - Osc 1 fine detune right - - - - - Osc 1 stereo phase offset - - - - - Osc 1 pulse width - - - - - Osc 1 sync send on rise - - - - - Osc 1 sync send on fall - - - - - Osc 2 volume - オシレーター 2 の音量 - - - - Osc 2 panning - オシレーター 2 のパン - - - - Osc 2 coarse detune - - - - - Osc 2 fine detune left - - - - - Osc 2 fine detune right - - - - - Osc 2 stereo phase offset - - - - - Osc 2 waveform - オシレーター 2 の波形 - - - - Osc 2 sync hard - - - - - Osc 2 sync reverse - - - - - Osc 3 volume - オシレーター 3 の音量 - - - - Osc 3 panning - オシレーター 3 のパン - - - - Osc 3 coarse detune - - - - - Osc 3 Stereo phase offset - - - - - Osc 3 sub-oscillator mix - - - - - Osc 3 waveform 1 - オシレーター 3 の波形 1 - - - - Osc 3 waveform 2 - オシレーター 3 の波形 2 - - - - Osc 3 sync hard - - - - - Osc 3 Sync reverse - - - - - LFO 1 waveform - LFO 1 の波形 - - - - LFO 1 attack - LFO 1 のアタック - - - - LFO 1 rate - - - - - LFO 1 phase - - - - - LFO 2 waveform - LFO 2 の波形 - - - - LFO 2 attack - LFO 2 のアタック - - - - LFO 2 rate - - - - - LFO 2 phase - - - - - Env 1 pre-delay - - - - - Env 1 attack - - - - - Env 1 hold - - - - - Env 1 decay - - - - - Env 1 sustain - - - - - Env 1 release - - - - - Env 1 slope - - - - - Env 2 pre-delay - - - - - Env 2 attack - - - - - Env 2 hold - - - - - Env 2 decay - - - - - Env 2 sustain - - - - - Env 2 release - - - - - Env 2 slope - - - - - Osc 2+3 modulation - - - - - Selected view - 選択された表示 - - - - Osc 1 - Vol env 1 - - - - - Osc 1 - Vol env 2 - - - - - Osc 1 - Vol LFO 1 - - - - - Osc 1 - Vol LFO 2 - - - - - Osc 2 - Vol env 1 - - - - - Osc 2 - Vol env 2 - - - - - Osc 2 - Vol LFO 1 - - - - - Osc 2 - Vol LFO 2 - - - - - Osc 3 - Vol env 1 - - - - - Osc 3 - Vol env 2 - - - - - Osc 3 - Vol LFO 1 - - - - - Osc 3 - Vol LFO 2 - - - - - Osc 1 - Phs env 1 - - - - - Osc 1 - Phs env 2 - - - - - Osc 1 - Phs LFO 1 - - - - - Osc 1 - Phs LFO 2 - - - - - Osc 2 - Phs env 1 - - - - - Osc 2 - Phs env 2 - - - - - Osc 2 - Phs LFO 1 - - - - - Osc 2 - Phs LFO 2 - - - - - Osc 3 - Phs env 1 - - - - - Osc 3 - Phs env 2 - - - - - Osc 3 - Phs LFO 1 - - - - - Osc 3 - Phs LFO 2 - - - - - Osc 1 - Pit env 1 - - - - - Osc 1 - Pit env 2 - - - - - Osc 1 - Pit LFO 1 - - - - - Osc 1 - Pit LFO 2 - - - - - Osc 2 - Pit env 1 - - - - - Osc 2 - Pit env 2 - - - - - Osc 2 - Pit LFO 1 - - - - - Osc 2 - Pit LFO 2 - - - - - Osc 3 - Pit env 1 - - - - - Osc 3 - Pit env 2 - - - - - Osc 3 - Pit LFO 1 - - - - - Osc 3 - Pit LFO 2 - - - - - Osc 1 - PW env 1 - - - - - Osc 1 - PW env 2 - - - - - Osc 1 - PW LFO 1 - - - - - Osc 1 - PW LFO 2 - - - - - Osc 3 - Sub env 1 - - - - - Osc 3 - Sub env 2 - - - - - Osc 3 - Sub LFO 1 - - - - - Osc 3 - Sub LFO 2 - - - - - - Sine wave - サイン波 - - - - Bandlimited Triangle wave - - - - - Bandlimited Saw wave - - - - - Bandlimited Ramp wave - - - - - Bandlimited Square wave - - - - - Bandlimited Moog saw wave - - - - - - Soft square wave - - - - - Absolute sine wave - - - - - - Exponential wave - - - - - White noise - - - - - Digital Triangle wave - - - - - Digital Saw wave - - - - - Digital Ramp wave - - - - - Digital Square wave - - - - - Digital Moog saw wave - - - - - Triangle wave - 三角波 - - - - Saw wave - のこぎり波 - - - - Ramp wave - - - - - Square wave - 矩形波 - - - - Moog saw wave - - - - - Abs. sine wave - - - - - Random - ランダム - - - - Random smooth - - - - - MonstroView - - - Operators view - - - - - Matrix view - - - - - - - Volume - 音量 - - - - - - Panning - パニング - - - - - - Coarse detune - Coarse デチューン - - - - - - semitones - - - - - - Fine tune left - - - - - - - - cents - セント - - - - - Fine tune right - - - - - - - Stereo phase offset - ステレオフレーズのオフセット - - - - - - - - deg - - - - - Pulse width - パルス帯域 - - - - Send sync on pulse rise - - - - - Send sync on pulse fall - - - - - Hard sync oscillator 2 - - - - - Reverse sync oscillator 2 - - - - - Sub-osc mix - - - - - Hard sync oscillator 3 - - - - - Reverse sync oscillator 3 - - - - - - - - Attack - アタック - - - - - Rate - レート - - - - - Phase - Phase - - - - - Pre-delay - Pre-delay - - - - - Hold - Hold - - - - - Decay - Decay - - - - - Sustain - Decay - - - - - Release - Release - - - - - Slope - Slope - - - - Mix osc 2 with osc 3 - - - - - Modulate amplitude of osc 3 by osc 2 - - - - - Modulate frequency of osc 3 by osc 2 - - - - - Modulate phase of osc 3 by osc 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Modulation amount - Modulation amount - - - - MultitapEchoControlDialog - - - Length - Length - - - - Step length: - Step length: - - - - Dry - Dry - - - - Dry gain: - - - - - Stages - ステージ - - - - Low-pass stages: - - - - - Swap inputs - - - - - Swap left and right input channels for reflections - - - - - NesInstrument - - - Channel 1 coarse detune - - - - - Channel 1 volume - チャンネル1の音量 - - - - Channel 1 envelope length - - - - - Channel 1 duty cycle - - - - - Channel 1 sweep amount - - - - - Channel 1 sweep rate - - - - - Channel 2 Coarse detune - - - - - Channel 2 Volume - チャンネル 2 の音量 - - - - Channel 2 envelope length - - - - - Channel 2 duty cycle - - - - - Channel 2 sweep amount - - - - - Channel 2 sweep rate - - - - - Channel 3 coarse detune - - - - - Channel 3 volume - チャンネル3の音量 - - - - Channel 4 volume - チャンネル4の音量 - - - - Channel 4 envelope length - - - - - Channel 4 noise frequency - - - - - Channel 4 noise frequency sweep - - - - - Master volume - マスター音量 - - - - Vibrato - ビブラート - - - - NesInstrumentView - - - - - - Volume - 音量 - - - - - - Coarse detune - Coarse デチューン - - - - - - Envelope length - 変化曲線の長さ - - - - Enable channel 1 - チャンネル1を有効 - - - - Enable envelope 1 - 変化曲線1を有効にする - - - - Enable envelope 1 loop - - - - - Enable sweep 1 - - - - - - Sweep amount - - - - - - Sweep rate - - - - - - 12.5% Duty cycle - - - - - - 25% Duty cycle - - - - - - 50% Duty cycle - - - - - - 75% Duty cycle - - - - - Enable channel 2 - チャンネル2を有効にする - - - - Enable envelope 2 - - - - - Enable envelope 2 loop - - - - - Enable sweep 2 - - - - - Enable channel 3 - - - - - Noise Frequency - - - - - Frequency sweep - - - - - Enable channel 4 - - - - - Enable envelope 4 - - - - - Enable envelope 4 loop - - - - - Quantize noise frequency when using note frequency - - - - - Use note frequency for noise - - - - - Noise mode - - - - - Master volume - マスター音量 - - - - Vibrato - ビブラート - - - - OpulenzInstrument - - - Patch - パッチ - - - - Op 1 attack - - - - - Op 1 decay - - - - - Op 1 sustain - - - - - Op 1 release - - - - - Op 1 level - - - - - Op 1 level scaling - - - - - Op 1 frequency multiplier - - - - - Op 1 feedback - - - - - Op 1 key scaling rate - - - - - Op 1 percussive envelope - - - - - Op 1 tremolo - - - - - Op 1 vibrato - - - - - Op 1 waveform - - - - - Op 2 attack - - - - - Op 2 decay - - - - - Op 2 sustain - - - - - Op 2 release - - - - - Op 2 level - - - - - Op 2 level scaling - - - - - Op 2 frequency multiplier - - - - - Op 2 key scaling rate - - - - - Op 2 percussive envelope - - - - - Op 2 tremolo - - - - - Op 2 vibrato - - - - - Op 2 waveform - - - - - FM - - - - - Vibrato depth - - - - - Tremolo depth - - - - - OpulenzInstrumentView - - - - Attack - アタック - - - - - Decay - Decay - - - - - Release - Release - - - - - Frequency multiplier - - - - - OscillatorObject - - - Osc %1 waveform - Osc %1 の波形 - - - - Osc %1 harmonic - - - - - - Osc %1 volume - Osc %1 の音量 - - - - - Osc %1 panning - オシレーター %1 のパン - - - - - Osc %1 fine detuning left - - - - - Osc %1 coarse detuning - - - - - Osc %1 fine detuning right - - - - - Osc %1 phase-offset - - - - - Osc %1 stereo phase-detuning - - - - - Osc %1 wave shape - - - - - Modulation type %1 - - - - - Oscilloscope - - - Oscilloscope - - - - - Click to enable - 有効にするにはここをクリック - - PatchesDialog + Qsynth: Channel Preset + Bank selector + Bank バンク + Program selector + Patch パッチ + Name 名前 + OK OK + Cancel キャンセル - - PatmanView - - - Open patch - - - - - Loop - - - - - Loop mode - - - - - Tune - - - - - Tune mode - - - - - No file selected - ファイルが選択されてません - - - - Open patch file - パッチファイルを開く - - - - Patch-Files (*.pat) - パッチファイル (*.pat) - - - - MidiClipView - - - Open in piano-roll - ピアノロールで開く - - - - Set as ghost in piano-roll - - - - - Clear all notes - すべてのノートをクリア - - - - Reset name - 名前をリセット - - - - Change name - 名前を変更 - - - - Add steps - ステップを追加 - - - - Remove steps - ステップを削除 - - - - Clone Steps - ステップを複製 - - - - PeakController - - - Peak Controller - ピークコントローラー - - - - Peak Controller Bug - ピークコントローラーのバグ - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - - - - - PeakControllerDialog - - - PEAK - PEAK - - - - LFO Controller - LFOコントローラー - - - - PeakControllerEffectControlDialog - - - BASE - BASE - - - - Base: - - - - - AMNT - AMNT - - - - Modulation amount: - Modulation amount: - - - - MULT - MULT - - - - Amount multiplicator: - - - - - ATCK - ATCK - - - - Attack: - アタック: - - - - DCAY - ATCK - - - - Release: - リリース: - - - - TRSH - TRSH - - - - Treshold: - スレショルド: - - - - Mute output - - - - - Absolute value - - - - - PeakControllerEffectControls - - - Base value - - - - - Modulation amount - Modulation amount - - - - Attack - アタック - - - - Release - Release - - - - Treshold - - - - - Mute output - - - - - Absolute value - - - - - Amount multiplicator - - - - - PianoRoll - - - Note Velocity - ノートのベロシティー - - - - Note Panning - ノートのパン - - - - Mark/unmark current semitone - - - - - Mark/unmark all corresponding octave semitones - - - - - Mark current scale - - - - - Mark current chord - - - - - Unmark all - - - - - Select all notes on this key - このキーのすべてのノートを選択 - - - - Note lock - ノートロック - - - - Last note - 最後に使用したノート - - - - No key - - - - - No scale - - - - - No chord - - - - - Nudge - - - - - Snap - - - - - Velocity: %1% - 音量: %1% - - - - Panning: %1% left - パニング: %1%左 - - - - Panning: %1% right - パニング: %1%右 - - - - Panning: center - パニング: 中央 - - - - Glue notes failed - - - - - Please select notes to glue first. - - - - - Please open a clip by double-clicking on it! - パターン上でダブルクリックして、パターンを開いてください! - - - - - Please enter a new value between %1 and %2: - %1 と %2 の間の新しい値を入力してください: - - - - PianoRollWindow - - - Play/pause current clip (Space) - 現在のパターンの再生/一時停止 (Space) - - - - Record notes from MIDI-device/channel-piano - MIDIデバイス/チャンネルピアノからノートを録音する - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - 再生しながらMIDIデバイス/チャンネルピアノからノートを録音する - - - - Record notes from MIDI-device/channel-piano, one step at the time - - - - - Stop playing of current clip (Space) - 現在のパターンの再生を停止 (Space) - - - - Edit actions - 編集機能 - - - - Draw mode (Shift+D) - 描画モード (shift+D) - - - - Erase mode (Shift+E) - 消去モード (shift+E) - - - - Select mode (Shift+S) - 選択モード (Shift+S) - - - - Pitch Bend mode (Shift+T) - - - - - Quantize - クオンタイズ - - - - Quantize positions - - - - - Quantize lengths - - - - - File actions - - - - - Import clip - - - - - - Export clip - - - - - Copy paste controls - コントロールを貼り付け - - - - Cut (%1+X) - - - - - Copy (%1+C) - - - - - Paste (%1+V) - - - - - Timeline controls - タイムラインコントロール - - - - Glue - - - - - Knife - - - - - Fill - - - - - Cut overlaps - - - - - Min length as last - - - - - Max length as last - - - - - Zoom and note controls - - - - - Horizontal zooming - 水平方向にズーム - - - - Vertical zooming - 垂直方向にズーム - - - - Quantization - クオンタイズ - - - - Note length - ノートの長さ - - - - Key - - - - - Scale - - - - - Chord - - - - - Snap mode - - - - - Clear ghost notes - - - - - - Piano-Roll - %1 - ピアノロール - %1 - - - - - Piano-Roll - no clip - ピアノロール - パターン無し - - - - - XML clip file (*.xpt *.xptz) - - - - - Export clip success - - - - - Clip saved to %1 - - - - - Import clip. - - - - - You are about to import a clip, this will overwrite your current clip. Do you want to continue? - - - - - Open clip - - - - - Import clip success - - - - - Imported clip %1! - - - - - PianoView - - - Base note - - - - - First note - - - - - Last note - 最後に使用したノート - - - - Plugin - - - Plugin not found - プラグインが見つかりません - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - プラグイン "%1" は見つからないか読み込みができません! -原因: "%2" - - - - Error while loading plugin - プラグイン読み込み中のエラー - - - - Failed to load plugin "%1"! - プラグイン "%1" の読み込みに失敗しました! - - PluginBrowser - - Instrument Plugins - 楽器プラグイン - - - - Instrument browser - 楽器ブラウザ - - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - 楽器をソング エディターやビート+ベースライン エディターまたは存在する楽器トラックにドラッグしてください。 - - - + no description 説明なし - + A native amplifier plugin ネイティブのアンププラグイン - + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track - + Boost your bass the fast and simple way - + Customizable wavetable synthesizer カスタマイズ可能なウェーブテーブルシンセサイザーです - + An oversampling bitcrusher - + Carla Patchbay Instrument - + Carla Rack Instrument - + A dynamic range compressor. - + A 4-band Crossover Equalizer 4バンドのクロスオーバーイコライザー - + A native delay plugin ネイティブのディレイプラグイン - + A Dual filter plugin ネイティブのデュアルフィルタープラグイン - + plugin for processing dynamics in a flexible way - + A native eq plugin ネイティブのEQプラグイン - + A native flanger plugin ネイティブのフランジャープラグイン - + Emulation of GameBoy (TM) APU GameBoy (TM) のAPUを再現します - + Player for GIG files GIG ファイル用プレイヤー - + Filter for importing Hydrogen files into LMMS - + Versatile drum synthesizer 多彩なドラムシンセサイザーです - + List installed LADSPA plugins インストールされている LADSPA プラグインの一覧 - + plugin for using arbitrary LADSPA-effects inside LMMS. 任意の LADSPA エフェクトを LMMS で使用するためのプラグイン。 - + Incomplete monophonic imitation TB-303 - + plugin for using arbitrary LV2-effects inside LMMS. - + plugin for using arbitrary LV2 instruments inside LMMS. - + Filter for exporting MIDI-files from LMMS - + Filter for importing MIDI-files into LMMS - + Monstrous 3-oscillator synth with modulation matrix - + A multitap echo delay plugin - + A NES-like synthesizer ファミコン似のシンセサイザーです - + 2-operator FM Synth - + Additive Synthesizer for organ-like sounds - + GUS-compatible patch instrument - + Plugin for controlling knobs with sound peaks サウンドのピークをつまみでコントロールするプラグイン - + Reverb algorithm by Sean Costello Sean Costello による リバーブのアルゴリズム - + Player for SoundFont files サウンドフォント ファイル用プレイヤー - + LMMS port of sfxr - + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. - + A graphical spectrum analyzer. - + Plugin for enhancing stereo separation of a stereo input file ステレオの入力ファイルに対するステレオ感を強化するプラグイン - + Plugin for freely manipulating stereo output ステレオ出力を自由に操作するプラグイン - + Tuneful things to bang on - + Three powerful oscillators you can modulate in several ways - + A stereo field visualizer. - + VST-host for using VST(i)-plugins within LMMS - + Vibrating string modeler - + plugin for using arbitrary VST effects inside LMMS. - + 4-oscillator modulatable wavetable synth - + plugin for waveshaping - + Mathematical expression parser - + Embedded ZynAddSubFX 埋め込みされた ZynAddSubFX です - - - PluginDatabaseW - - Carla - Add New + + An all-pass filter allowing for extremely high orders. - - Format + + Granular pitch shifter - - Internal + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. - - LADSPA + + Basic Slicer - - DSSI - - - - - LV2 - - - - - VST2 - - - - - VST3 - - - - - AU - - - - - Sound Kits - - - - - Type - 種類 - - - - Effects - エフェクト - - - - Instruments - 楽器 - - - - MIDI Plugins - - - - - Other/Misc - - - - - Architecture - - - - - Native - - - - - Bridged - - - - - Bridged (Wine) - - - - - Requirements - - - - - With Custom GUI - - - - - With CV Ports - - - - - Real-time safe only - - - - - Stereo only - - - - - With Inline Display - - - - - Favorites only - - - - - (Number of Plugins go here) - - - - - &Add Plugin - - - - - Cancel - キャンセル - - - - Refresh - - - - - Reset filters - - - - - - - - - - - - - - - - - - - - TextLabel - - - - - Format: - - - - - Architecture: - - - - - Type: - 種類: - - - - MIDI Ins: - - - - - Audio Ins: - - - - - CV Outs: - - - - - MIDI Outs: - - - - - Parameter Ins: - - - - - Parameter Outs: - - - - - Audio Outs: - - - - - CV Ins: - - - - - UniqueID: - - - - - Has Inline Display: - - - - - Has Custom GUI: - - - - - Is Synth: - - - - - Is Bridged: - - - - - Information - - - - - Name - 名前 - - - - Label/URI - - - - - Maker - - - - - Binary/Filename - - - - - Focus Text Search - - - - - Ctrl+F + + Tap to the beat @@ -10820,93 +3458,98 @@ This chip was used in the Commodore 64 computer. - Send Bank/Program Changes + Send Notes - Send Control Changes + Send Bank/Program Changes - Send Channel Pressure + Send Control Changes - Send Note Aftertouch + Send Channel Pressure - Send Pitchbend + Send Note Aftertouch + Send Pitchbend + + + + Send All Sound/Notes Off - + Plugin Name - + Program: - + MIDI Program: - + Save State - + Load State - + Information - + Label/URI: - + Name: - + Type: 種類: - + Maker: - + Copyright: - + Unique ID: @@ -10914,16 +3557,457 @@ Plugin Name PluginFactory - + Plugin not found. プラグインが見つかりませんでした - + LMMS plugin %1 does not have a plugin descriptor named %2! + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + PluginParameter @@ -10938,157 +4022,61 @@ Plugin Name + TextLabel + + + + ... - PluginRefreshW + PluginRefreshDialog - - Carla - Refresh + + Plugin Refresh - - Search for new... + + Search for: - - LADSPA + + All plugins, ignoring cache - - DSSI + + Updated plugins only - - LV2 + + Check previously invalid plugins - - VST2 - - - - - VST3 - - - - - AU - - - - - SF2/3 - - - - - SFZ - - - - - Native - - - - - POSIX 32bit - - - - - POSIX 64bit - - - - - Windows 32bit - - - - - Windows 64bit - - - - - Available tools: - - - - - python3-rdflib (LADSPA-RDF support) - - - - - carla-discovery-win64 - - - - - carla-discovery-native - - - - - carla-discovery-posix32 - - - - - carla-discovery-posix64 - - - - - carla-discovery-win32 - - - - - Options: - - - - - Carla will run small processing checks when scanning the plugins (to make sure they won't crash). -You can disable these checks to get a faster scanning time (at your own risk). - - - - - Run processing checks while scanning - - - - + Press 'Scan' to begin the search - + Scan - + >> Skip - + Close - 閉じる + @@ -11103,50 +4091,50 @@ You can disable these checks to get a faster scanning time (at your own risk). - + Enable - + On/Off オン/オフ - + - + PluginName - + MIDI MIDI - + AUDIO IN - + AUDIO OUT - + GUI - + Edit - + Remove @@ -11161,2286 +4149,13561 @@ You can disable these checks to get a faster scanning time (at your own risk). - - ProjectNotes - - - Project Notes - プロジェクトノート - - - - Enter project notes here - ここにプロジェクトノートを入力 - - - - Edit Actions - 編集機能 - - - - &Undo - 元に戻す(&U) - - - - %1+Z - %1+Z - - - - &Redo - やり直し(&R) - - - - %1+Y - %1+Y - - - - &Copy - コピー(&C) - - - - %1+C - %1+C - - - - Cu&t - 切り取り(&t) - - - - %1+X - %1+X - - - - &Paste - 貼り付け(&P) - - - - %1+V - %1+V - - - - Format Actions - フォーマット機能 - - - - &Bold - 太字(&B) - - - - %1+B - %1+B - - - - &Italic - 斜体(&I) - - - - %1+I - %1+I - - - - &Underline - 下線(&U) - - - - %1+U - %1+U - - - - &Left - 左揃え(&L) - - - - %1+L - %1+L - - - - C&enter - 中央揃え(&e) - - - - %1+E - %1+E - - - - &Right - 右揃え(&R) - - - - %1+R - %1+R - - - - &Justify - 両端揃え(&J) - - - - %1+J - %1+J - - - - &Color... - 文字色(&C)... - - ProjectRenderer - + WAV (*.wav) WAV (*.wav) - + FLAC (*.flac) FLAC (*.flac) - + OGG (*.ogg) OGG (*.ogg) - + MP3 (*.mp3) MP3 (*.mp3) + + QGroupBox + + + + Settings for %1 + + + QObject - + Reload Plugin - + Show GUI GUI を表示 - + Help ヘルプ + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + QWidget - - - - + + Name: 名前: - - URI: - - - - - - + Maker: 作成者: - - - + Copyright: 著作権表示: - - + Requires Real Time: - - - - - - + + + Yes はい - - - - - - + + + No いいえ - - + Real Time Capable: - - + In Place Broken: - - + Channels In: 入力チャンネル: - - + Channels Out: 出力チャンネル: - + File: %1 ファイル: %1 - + File: ファイル: - RecentProjectsMenu + XYControllerW - - &Recently Opened Projects - 最近開いたプロジェクト (&R) + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + - RenameDialog + lmms::AmplifierControls - - Rename... - 名前の変更... + + Volume + + + + + Panning + + + + + Left gain + + + + + Right gain + - ReverbSCControlDialog + lmms::AudioFileProcessor - - Input - 入力 - - - - Input gain: - 入力ゲイン: - - - - Size + + Amplify - - Size: + + Start of sample - - Color + + End of sample - - Color: + + Loopback point - - Output - 出力 + + Reverse sample + - - Output gain: - 出力ゲイン: + + Loop mode + + + + + Stutter + + + + + Interpolation mode + + + + + None + + + + + Linear + + + + + Sinc + + + + + Sample not found + - ReverbSCControls + lmms::AudioJack - + + JACK client restarted + + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + + + + + Client name + + + + + Channels + + + + + lmms::AudioOss + + + Device + + + + + Channels + + + + + lmms::AudioPortAudio::setupWidget + + + Backend + + + + + Device + + + + + lmms::AudioPulseAudio + + + Device + + + + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + + + + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + + Gain + + + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + Input gain - 入力ゲイン - - - - Size - - Color + + Input noise + + + Output gain + + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + + + + + Output gain + + + + + Attack time + + + + + Release time + + + + + Stereo mode + + + + + lmms::Effect + + + Effect enabled + + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + + + + + Denominator + + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + Input gain + + + + + Size + + + + + Color + + + + Output gain - 出力ゲイン + - SaControls + lmms::SaControls - + Pause - + Reference freeze - + Waterfall - + Averaging - - - Stereo - ステレオ - - - - Peak hold - - - Logarithmic frequency + Stereo - Logarithmic amplitude + Peak hold + + + + + Logarithmic frequency - Frequency range - - - - - Amplitude range - - - - - FFT block size + Logarithmic amplitude - FFT window type + Frequency range + + + + + Amplitude range + + + + + FFT block size - Peak envelope resolution - - - - - Spectrum display resolution - - - - - Peak decay multiplier + FFT window type - Averaging weight + Peak envelope resolution - Waterfall history size + Spectrum display resolution - Waterfall gamma correction + Peak decay multiplier - FFT window overlap + Averaging weight + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + FFT zero padding - - + + Full (auto) - - + + Audible - + Bass - ベース + - + Mids - + High - + Extended - + Loud - + Silent - + (High time res.) - + (High freq. res.) - + Rectangular (Off) - + Blackman-Harris (Default) - + Hamming - + Hanning - SaControlsDialog + lmms::SampleClip - - Pause - - - - - Pause data acquisition - - - - - Reference freeze - - - - - Freeze current input as a reference / disable falloff in peak-hold mode. - - - - - Waterfall - - - - - Display real-time spectrogram - - - - - Averaging - - - - - Enable exponential moving average - - - - - Stereo - ステレオ - - - - Display stereo channels separately - - - - - Peak hold - - - - - Display envelope of peak values - - - - - Logarithmic frequency - - - - - Switch between logarithmic and linear frequency scale - - - - - - Frequency range - - - - - Logarithmic amplitude - - - - - Switch between logarithmic and linear amplitude scale - - - - - - Amplitude range - - - - - Envelope res. - - - - - Increase envelope resolution for better details, decrease for better GUI performance. - - - - - - Draw at most - - - - - envelope points per pixel - - - - - Spectrum res. - - - - - Increase spectrum resolution for better details, decrease for better GUI performance. - - - - - spectrum points per pixel - - - - - Falloff factor - - - - - Decrease to make peaks fall faster. - - - - - Multiply buffered value by - - - - - Averaging weight - - - - - Decrease to make averaging slower and smoother. - - - - - New sample contributes - - - - - Waterfall height - - - - - Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. - - - - - Keep - - - - - lines - - - - - Waterfall gamma - - - - - Decrease to see very weak signals, increase to get better contrast. - - - - - Gamma value: - - - - - Window overlap - - - - - Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. - - - - - Each sample processed - - - - - times - - - - - Zero padding - - - - - Increase to get smoother-looking spectrum. Warning: high CPU usage. - - - - - Processing buffer is - - - - - steps larger than input block - - - - - Advanced settings - - - - - Access advanced settings - - - - - - FFT block size - - - - - - FFT window type + + Sample not found - SampleBuffer + lmms::SampleTrack - - Fail to open file - - - - - Audio files are limited to %1 MB in size and %2 minutes of playing time - オーディオファイルのサイズは %1 MB、再生時間は %2 分に制限されています - - - - Open audio file - オーディオファイルを開く - - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - すべてのオーディオファイル (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - - Wave-Files (*.wav) - WAV ファイル (*.wav) - - - - OGG-Files (*.ogg) - OGG ファイル (*.ogg) - - - - DrumSynth-Files (*.ds) - DrumSynth ファイル (*.ds) - - - - FLAC-Files (*.flac) - FLAC ファイル (*.flac) - - - - SPEEX-Files (*.spx) - SPEEX ファイル (*.spx) - - - - VOC-Files (*.voc) - VOC ファイル (*.voc) - - - - AIFF-Files (*.aif *.aiff) - AIFF ファイル (*.aif *.aiff) - - - - AU-Files (*.au) - AU ファイル (*.au) - - - - RAW-Files (*.raw) - RAW ファイル (*.raw) - - - - SampleClipView - - - Double-click to open sample - ダブルクリックしてサンプルを開く - - - - Delete (middle mousebutton) - 削除 (マウス中ボタン) - - - - Delete selection (middle mousebutton) - - - - - Cut - 切り取り - - - - Cut selection - - - - - Copy - コピー - - - - Copy selection - - - - - Paste - 貼り付け - - - - Mute/unmute (<%1> + middle click) - ミュート/ミュート解除 (<%1> + 中ボタンクリック) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Reverse sample - サンプルを反転する - - - - Set clip color - - - - - Use track color - - - - - SampleTrack - - + Volume - 音量 + - + Panning - パニング + - + Mixer channel - FXチャンネル + - - + + Sample track - サンプルトラック - - - - SampleTrackView - - - Track volume - トラック音量 - - - - Channel volume: - チャンネル音量: - - - - VOL - 音量 - - - - Panning - パニング - - - - Panning: - パニング: - - - - PAN - パニング - - - - Channel %1: %2 - FX %1: %2 - - - - SampleTrackWindow - - - GENERAL SETTINGS - 一般設定 - - - - Sample volume - - - - - Volume: - 音量: - - - - VOL - 音量 - - - - Panning - パン - - - - Panning: - パン: - - - - PAN - パン - - - - Mixer channel - FXチャンネル - - - - CHANNEL - FX - - - - SaveOptionsWidget - - - Discard MIDI connections - - - - - Save As Project Bundle (with resources) - SetupDialog + lmms::Scale - - Reset to default value - 規定値にリセット - - - - Use built-in NaN handler + + empty - - - Settings - 設定 - - - - - General - - - - - Graphical user interface (GUI) - - - - - Display volume as dBFS - 音量を dBFS で表示する - - - - Enable tooltips - ツールチップを有効にする - - - - Enable master oscilloscope by default - - - - - Enable all note labels in piano roll - - - - - Enable compact track buttons - - - - - Enable one instrument-track-window mode - - - - - Show sidebar on the right-hand side - - - - - Let sample previews continue when mouse is released - - - - - Mute automation tracks during solo - - - - - Show warning when deleting tracks - - - - - Projects - - - - - Compress project files by default - - - - - Create a backup file when saving a project - - - - - Reopen last project on startup - - - - - Language - - - - - - Performance - - - - - Autosave - - - - - Enable autosave - - - - - Allow autosave while playing - - - - - User interface (UI) effects vs. performance - - - - - Smooth scroll in song editor - - - - - Display playback cursor in AudioFileProcessor - - - - - Plugins - プラグイン - - - - VST plugins embedding: - - - - - No embedding - - - - - Embed using Qt API - Qt API を使用した埋め込み - - - - Embed using native Win32 API - ネイティブのWin32 APIを使用した埋め込み - - - - Embed using XEmbed protocol - - - - - Keep plugin windows on top when not embedded - - - - - Sync VST plugins to host playback - - - - - Keep effects running even without input - - - - - - Audio - オーディオ - - - - Audio interface - - - - - HQ mode for output audio device - - - - - Buffer size - - - - - - MIDI - MIDI - - - - MIDI interface - - - - - Automatically assign MIDI controller to selected track - - - - - LMMS working directory - LMMSの作業ディレクトリ - - - - VST plugins directory - - - - - LADSPA plugins directories - - - - - SF2 directory - SF2のディレクトリ - - - - Default SF2 - - - - - GIG directory - GIGのディレクトリ - - - - Theme directory - - - - - Background artwork - 背景アートワーク - - - - Some changes require restarting. - - - - - Autosave interval: %1 - - - - - Choose the LMMS working directory - - - - - Choose your VST plugins directory - - - - - Choose your LADSPA plugins directory - - - - - Choose your default SF2 - - - - - Choose your theme directory - - - - - Choose your background picture - - - - - - Paths - パス - - - - OK - OK - - - - Cancel - キャンセル - - - - Frames: %1 -Latency: %2 ms - フレーム: %1 -レイテンシ: %2 ms - - - - Choose your GIG directory - GIGのディレクトリを選択してください - - - - Choose your SF2 directory - SF2のディレクトリを選択してください - - - - minutes - - - - - minute - - - - - Disabled - 無効 - - SidInstrument + lmms::Sf2Instrument - + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + Cutoff frequency - カットオフ周波数 + - + Resonance - レゾナンス + + + + + Filter type + - Filter type - フィルターの種類 - - - Voice 3 off - + Volume - 音量 + - + Chip model - チップモデル - - - - SidInstrumentView - - - Volume: - 音量: - - - - Resonance: - レゾナンス: - - - - - Cutoff frequency: - カットオフ周波数: - - - - High-pass filter - - - - - Band-pass filter - - - - - Low-pass filter - - - - - Voice 3 off - - - - - MOS6581 SID - MOS6581 SID - - - - MOS8580 SID - MOS8580 SID - - - - - Attack: - アタック: - - - - - Decay: - ディケイ: - - - - Sustain: - サスティン: - - - - - Release: - リリース: - - - - Pulse Width: - - - - - Coarse: - - - - - Pulse wave - - - - - Triangle wave - 三角波 - - - - Saw wave - のこぎり波 - - - - Noise - ノイズ - - - - Sync - 同期 - - - - Ring modulation - - - - - Filtered - - - - - Test - テスト - - - - Pulse width: - SideBarWidget + lmms::SlicerT - - Close - 閉じる + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + - Song + lmms::Song - + Tempo - テンポ + - + Master volume - マスター音量 + - + Master pitch - 主ピッチ - - - - Aborting project load + Aborting project load + + + + Project file contains local paths to plugins, which could be used to run malicious code. - + Can't load project: Project file contains local paths to plugins. - + LMMS Error report - LMMS エラー報告 + - + (repeated %1 times) - + The following errors occurred while loading: - SongEditor + lmms::StereoEnhancerControls - - Could not open file - ファイルを開くことができませんでした - - - - Could not open file %1. You probably have no permissions to read this file. - Please make sure to have at least read permissions to the file and try again. - ファイルを読み込む権限がないため %1 を開くことができませんでした。 -ファイルを読み込みむ権限を付与してから再試行して下さい。 - - - - Operation denied - - - - - A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. - - - - - - - Error - エラー - - - - Couldn't create bundle folder. - - - - - Couldn't create resources folder. - - - - - Failed to copy resources. - - - - - Could not write file - ファイルに書き込むことができませんでした - - - - Could not open %1 for writing. You probably are not permitted towrite to this file. Please make sure you have write-access to the file and try again. - - - - - This %1 was created with LMMS %2 - - - - - Error in file - ファイルエラー - - - - The file %1 seems to contain errors and therefore can't be loaded. - ファイル %1 はエラーを含んでいるようで、読み込めません。 - - - - Version difference - バージョンの相違 - - - - template - テンプレート - - - - project - プロジェクト - - - - Tempo - テンポ - - - - TEMPO - テンポ - - - - Tempo in BPM - - - - - High quality mode - 高品質モード - - - - - - Master volume - マスター音量 - - - - - - Master pitch - 主ピッチ - - - - Value: %1% - 値: %1% - - - - Value: %1 semitones + + Width - SongEditorWindow + lmms::StereoMatrixControls - - Song-Editor - ソング エディター - - - - Play song (Space) - 曲を再生 (Space) - - - - Record samples from Audio-device - オーディオデバイスからサンプルを録音 - - - - Record samples from Audio-device while playing song or BB track + + Left to Left - - Stop song (Space) - 曲を停止 (Space) + + Left to Right + - + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + + + + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + Track actions - - Add beat/bassline - ビート/ベースラインを追加 + + Add pattern-track + - + Add sample-track - サンプルトラックを追加 + - + Add automation-track - オートメーション トラックを追加 + - + Edit actions - 編集機能 + - + Draw mode - 描画モード + - + Knife mode (split sample clips) - + Edit mode (select and move) - 編集モード (選択と移動) + - + Timeline controls - タイムラインコントロール + - + Bar insert controls - + Insert bar - + Remove bar - + Zoom controls - ズームコントロール + + - Horizontal zooming - 水平方向にズーム + Zoom + - + Snap controls - - + + Clip snapping size - + Toggle proportional snap on/off - + Base snapping size - StepRecorderWidget + lmms::gui::StepRecorderWidget - + Hint - ヒント + - + Move recording curser using <Left/Right> arrows - SubWindow + lmms::gui::StereoEnhancerControlDialog - + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + Close - 閉じる + - + Maximize - 最大化 + - + Restore - 復元 + - TabWidget + lmms::gui::TapTempoView - - - Settings for %1 - %1の設定 + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + - TemplatesMenu + lmms::gui::TemplatesMenu - + New from template - テンプレートから新規プロジェクト作成 + - TempoSyncKnob + lmms::gui::TempoSyncBarModelEditor - - + + Tempo Sync - テンポの同期 + - + No Sync - 非同期 + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + No Sync + + + + Eight beats - 8ビート + - + Whole note - 全音符 + - + Half note - 2分音符 + - + Quarter note - 4分音符 + - + 8th note - 8分音符 - - - - 16th note - 16分音符 + + 16th note + + + + 32nd note - 32分音符 + - + Custom... - カスタム... + - + Custom - カスタム - - - - Synced to Eight Beats - 8ビートに同期 + - Synced to Whole Note - 全音符に同期 + Synced to Eight Beats + - Synced to Half Note - 2分音符に同期 + Synced to Whole Note + - Synced to Quarter Note - 4分音符に同期 + Synced to Half Note + - Synced to 8th Note - 8分音符に同期 + Synced to Quarter Note + - Synced to 16th Note - 16分音符に同期 + Synced to 8th Note + + Synced to 16th Note + + + + Synced to 32nd Note - 32分音符に同期 + - TimeDisplayWidget + lmms::gui::TimeDisplayWidget - + Time units - - - MIN - - - SEC - + MIN + - MSEC - ミリ秒 + SEC + - - BAR - 小節 + + MSEC + - BEAT - + BAR + + BEAT + + + + TICK - ティック + - TimeLineWidget + lmms::gui::TimeLineWidget - + Auto scrolling - 自動でスクロール + - + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + Loop points - ループポイント + - + After stopping go back to beginning - + After stopping go back to position at which playing was started - 停止後は再生を開始した地点へ戻る + - + After stopping keep position - 停止後はその地点のままにする + - + Hint - ヒント + - + Press <%1> to disable magnetic loop points. - <%1> を押してマグネチックループポイントを無効にします。 - - - - Track - - - Mute - ミュート - - - - Solo - ソロ - - - - TrackContainer - - - Couldn't import file - ファイルをインポートすることができませんでした - - - - Couldn't find a filter for importing file %1. -You should convert this file into a format supported by LMMS using another software. - インポート中のファイル %1 のフィルターが見つかりませんでした。 -他のソフトウェアで、このファイルをLMMSがサポートしてる形式に変換してください。 - - - - Couldn't open file - ファイルを開くことができませんでした - - - - Couldn't open file %1 for reading. -Please make sure you have read-permission to the file and the directory containing the file and try again! - ファイル %1 を読み込み用に開くことができませんでした。 -ファイルとファイルのディレクトリが読み込み可能かチェックしてから再度開いてください! - - - - Loading project... - プロジェクトを読み込んでいます... - - - - - Cancel - キャンセル - - - - - Please wait... - お待ちください... - - - - Loading cancelled - 読み込みがキャンセルされました - - - - Project loading was cancelled. - プロジェクトの読み込みはキャンセルされました。 - - - - Loading Track %1 (%2/Total %3) - トラックの読み込み中 %1 (%2/Total %3) - - - - Importing MIDI-file... - MIDIファイルをインポートしています... - - - - Clip - - - Mute - ミュート - - - - ClipView - - - Current position - 現在位置 - - - - Current length - 現在の長さ - - - - - %1:%2 (%3:%4 to %5:%6) - %1:%2 (%3:%4 から %5:%6) - - - - Press <%1> and drag to make a copy. - コピーするには<%1>を押しながらドラッグしてください。 - - - - Press <%1> for free resizing. - フリーズ解除には<%1>を押してください。 - - - - Hint - ヒント - - - - Delete (middle mousebutton) - 削除 (マウス中ボタン) - - - - Delete selection (middle mousebutton) - - Cut - 切り取り - - - - Cut selection + + Set loop begin here - - Merge Selection + + Set loop end here - - Copy - コピー - - - - Copy selection + + Loop edit mode (hold shift) - + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + Paste - 貼り付け - - - - Mute/unmute (<%1> + middle click) - ミュート/ミュート解除 (<%1> + 中ボタンクリック) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Set clip color - - - - - Use track color - TrackContentWidget + lmms::gui::TrackOperationsWidget - - Paste - 貼り付け - - - - TrackOperationsWidget - - + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. @@ -13453,257 +17716,249 @@ Please make sure you have read-permission to the file and the directory containi Mute - ミュート + Solo - ソロ + - + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? - + Confirm removal - + Don't ask again - + Clone this track - このトラックを複製 - - - - Remove this track - このトラックを削除 - - - - Clear this track - このトラックをクリア - - - - Channel %1: %2 - FX %1: %2 - - - - Assign to new mixer Channel - 新規FXチャンネルにアサインする - - - - Turn all recording on - すべての録音をオンにする - - - - Turn all recording off - すべての録音をオフにする - - - - Change color - 色を変更 - - - - Reset color to default - 色をデフォルトにリセット - - - - Set random color - - Clear clip colors + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors - TripleOscillatorView + lmms::gui::TripleOscillatorView - + Modulate phase of oscillator 1 by oscillator 2 - + Modulate amplitude of oscillator 1 by oscillator 2 - + Mix output of oscillators 1 & 2 - + Synchronize oscillator 1 with oscillator 2 - オシレーター 1と2 を同期 - - - - Modulate frequency of oscillator 1 by oscillator 2 + Modulate frequency of oscillator 1 by oscillator 2 + + + + Modulate phase of oscillator 2 by oscillator 3 - + Modulate amplitude of oscillator 2 by oscillator 3 - + Mix output of oscillators 2 & 3 - + Synchronize oscillator 2 with oscillator 3 - オシレーター 2と3 を同期 + - + Modulate frequency of oscillator 2 by oscillator 3 - + Osc %1 volume: - Osc %1 の音量: + - + Osc %1 panning: - オシレーター %1 パニング: + - - Osc %1 coarse detuning: - オシレータ―の %1 コースデチューン: - - - - semitones - 半音 - - - - Osc %1 fine detuning left: - オシレーター %1 のファインデチューン 左: - - - + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + cents - cent + - + Osc %1 fine detuning right: - オシレーター %1 のファインデチューン 右: + - + Osc %1 phase-offset: - オシレーター %1 のオフセットフェーズ : + - - + + degrees - 度数 + - + Osc %1 stereo phase-detuning: - オシレーター %1 のステレオ フェーズデチューン : + - + Sine wave - サイン波 + - + Triangle wave - 三角波 + - + Saw wave - のこぎり波 + - + Square wave - 矩形波 + - + Moog-like saw wave - + Exponential wave - + White noise - + User-defined wave - ユーザー定義波形 - - - - VecControls - - - Display persistence amount - - Logarithmic scale - - - - - High quality + + Use alias-free wavetable oscillators. - VecControlsDialog + lmms::gui::VecControlsDialog - + HQ - + Double the resolution and simulate continuous analog-like trace. @@ -13718,2618 +17973,782 @@ Please make sure you have read-permission to the file and the directory containi - + Persist. - + Trace persistence: higher amount means the trace will stay bright for longer time. - + Trace persistence - VersionedSaveDialog - - - Increment version number - バージョン番号を大きくする - + lmms::gui::VersionedSaveDialog - Decrement version number - バージョン番号を小さくする + Increment version number + - + + Decrement version number + + + + Save Options - + already exists. Do you want to replace it? - すでに存在しています。置き換えますか? + - VestigeInstrumentView + lmms::gui::VestigeInstrumentView - - + + Open VST plugin - VSTプラグインを開く + - + Control VST plugin from LMMS host - + Open VST plugin preset - VSTプラグインのプリセットを開く + - + Previous (-) - 前 (-) + - + Save preset - プリセットを保存 + - + Next (+) - 次 (+) + - + Show/hide GUI - GUIを表示/非表示 + - + Turn off all notes - すべてのノートをオフ + - + DLL-files (*.dll) - DLL ファイル (*.dll) + - + EXE-files (*.exe) - EXE ファイル (*.exe) + + + + + SO-files (*.so) + + + + + No VST plugin loaded + - No VST plugin loaded - VSTプラグインは読み込まれていません + Preset + - Preset - プリセット - - - by - + - VST plugin control - - VST プラグイン コントロール + - VstEffectControlDialog + lmms::gui::VibedView - - Show/hide - 表示/非表示 + + Enable waveform + - + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + + + + Control VST plugin from LMMS host - + Open VST plugin preset - VSTプラグインのプリセットを開く + - + Previous (-) - 前 (-) + - + Next (+) - 次 (+) + - + Save preset - プリセットを保存 + - - + + Effect by: - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + - VstPlugin + lmms::gui::WatsynView - - - The VST plugin %1 could not be loaded. - VSTプラグイン %1 は読み込めません。 - - - - Open Preset - プリセットを開く - - - - - Vst Plugin Preset (*.fxp *.fxb) - Vstプラグインプリセット (*.fxp *.fxb) - - - - : default - : デフォルト - - - - Save Preset - プリセットを保存 - - - - .fxp - .fxp - - - - .FXP - .FXP - - - - .FXB - .FXB - - - - .fxb - .fxb - - - - Loading plugin - プラグインを読み込み中 - - - - Please wait while loading VST plugin... - VSTプラグインの読み込みの間お待ちください... - - - - WatsynInstrument - - - Volume A1 - 音量 A1 - - - - Volume A2 - 音量 A2 - - - - Volume B1 - 音量 B1 - - - - Volume B2 - 音量B2 - - - - Panning A1 - パニングA1 - - - - Panning A2 - パニングA2 - - - - Panning B1 - パニングB1 - - - - Panning B2 - パニングB2 - - - - Freq. multiplier A1 + + + + + Volume - - Freq. multiplier A2 - - - - - Freq. multiplier B1 - - - - - Freq. multiplier B2 - - - - - Left detune A1 - - - - - Left detune A2 - - - - - Left detune B1 - - - - - Left detune B2 - - - - - Right detune A1 - - - - - Right detune A2 - - - - - Right detune B1 - - - - - Right detune B2 - - - - - A-B Mix - - - - - A-B Mix envelope amount - - - - - A-B Mix envelope attack - - - - - A-B Mix envelope hold - - - - - A-B Mix envelope decay - - - - - A1-B2 Crosstalk - - - - - A2-A1 modulation - - - - - B2-B1 modulation - - - - - Selected graph - 選択されたグラフ - - - - WatsynView - + + - - - Volume - 音量 + Panning + + + - - - Panning - パニング - - - - - - Freq. multiplier - - - - + + + + Left detune + + + + + + - - - - - - cents - セント + - - - - + + + + Right detune - + A-B Mix - + Mix envelope amount - + Mix envelope attack - + Mix envelope hold - + Mix envelope decay - + Crosstalk - + Select oscillator A1 - + Select oscillator A2 - + Select oscillator B1 - + Select oscillator B2 - + Mix output of A2 to A1 - + Modulate amplitude of A1 by output of A2 - + Ring modulate A1 and A2 - + Modulate phase of A1 by output of A2 - + Mix output of B2 to B1 - + Modulate amplitude of B1 by output of B2 - + Ring modulate B1 and B2 - + Modulate phase of B1 by output of B2 - - - - + + + + Draw your own waveform here by dragging your mouse on this graph. - グラフの上でマウスをドラッグして波形を描きます。 + - + Load waveform - 波形の読み込み + - + Load a waveform from a sample file - 波形をサンプルファイルから取り込む + - + Phase left - + Shift phase by -15 degrees - + Phase right - + Shift phase by +15 degrees + + + + Normalize + + - Normalize - ノーマライズ - - - - Invert - 反転 + - - + + Smooth - - + + Sine wave - サイン波 + - - - + + + Triangle wave - 三角波 + - + Saw wave - のこぎり波 + - - + + Square wave - 矩形波 - - - - Xpressive - - - Selected graph - 選択されたグラフ - - - - A1 - - - - - A2 - - - - - A3 - - - - - W1 smoothing - - - - - W2 smoothing - - - - - W3 smoothing - - - - - Panning 1 - パン 1 - - - - Panning 2 - パン 2 - - - - Rel trans - XpressiveView + lmms::gui::WaveShaperControlDialog - + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Clip input + + + + + Clip input signal to 0 dB + + + + + lmms::gui::XpressiveView + + Draw your own waveform here by dragging your mouse on this graph. - グラフの上でマウスをドラッグして波形を描きます。 + - + Select oscillator W1 - + Select oscillator W2 - + Select oscillator W3 - + Select output O1 - + Select output O2 - + Open help window - - + + Sine wave - サイン波 + - - + + Moog-saw wave - - + + Exponential wave - - - - Saw wave - のこぎり波 - - - - - User-defined wave - ユーザー定義波形 - - - - - Triangle wave - 三角波 - - - Square wave - 矩形波 - - - - - White noise + + Saw wave - - WaveInterpolate + + + User-defined wave + + + + + + Triangle wave + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + ExpressionValid - + General purpose 1: - + General purpose 2: - + General purpose 3: - + O1 panning: - オシレーター 1 のパン: + - + O2 panning: - オシレーター 2 のパン + - + Release transition: - + Smoothness - ZynAddSubFxInstrument + lmms::gui::ZynAddSubFxView - - Portamento - - - - - Filter frequency - - - - - Filter resonance - - - - - Bandwidth - - - - - FM gain - - - - - Resonance center frequency - - - - - Resonance bandwidth - - - - - Forward MIDI control change events - - - - - ZynAddSubFxView - - + Portamento: - + PORT - + Filter frequency: - + FREQ - 周波数 - - - - Filter resonance: + Filter resonance: + + + + RES - + Bandwidth: - + BW - + FM gain: - + FM GAIN - + Resonance center frequency: - + RES CF - + Resonance bandwidth: - + RES BW - + Forward MIDI control changes - + Show GUI - GUI を表示 - - - - AudioFileProcessor - - - Amplify - - - - - Start of sample - サンプルの開始位置 - - - - End of sample - サンプルの終了位置 - - - - Loopback point - - - - - Reverse sample - サンプルをリバース - - - - Loop mode - - - - - Stutter - - - - - Interpolation mode - - - - - None - - - - - Linear - - - - - Sinc - - - - - Sample not found: %1 - サンプルが見つかりませんでした: %1 - - - - BitInvader - - - Sample length - サンプルの長さ - - - - BitInvaderView - - - Sample length - サンプルの長さ - - - - Draw your own waveform here by dragging your mouse on this graph. - グラフの上でマウスをドラッグして波形を描きます。 - - - - - Sine wave - サイン波 - - - - - Triangle wave - 三角波 - - - - - Saw wave - のこぎり波 - - - - - Square wave - 矩形波 - - - - - White noise - - - - - - User-defined wave - ユーザー定義波形 - - - - - Smooth waveform - - - - - Interpolation - - - - - Normalize - ノーマライズ - - - - DynProcControlDialog - - - INPUT - 入力 - - - - Input gain: - 入力ゲイン: - - - - OUTPUT - 出力 - - - - Output gain: - 出力ゲイン: - - - - ATTACK - - - - - Peak attack time: - - - - - RELEASE - - - - - Peak release time: - - - - - - Reset wavegraph - 波形をリセット - - - - - Smooth wavegraph - - - - - - Increase wavegraph amplitude by 1 dB - - - - - - Decrease wavegraph amplitude by 1 dB - - - - - Stereo mode: maximum - - - - - Process based on the maximum of both stereo channels - - - - - Stereo mode: average - - - - - Process based on the average of both stereo channels - - - - - Stereo mode: unlinked - - - - - Process each stereo channel independently - - DynProcControls - - - Input gain - 入力ゲイン - - - - Output gain - 出力ゲイン - - - - Attack time - - - - - Release time - - - - - Stereo mode - ステレオモード - - - - graphModel - - - Graph - グラフ - - - - KickerInstrument - - - Start frequency - - - - - End frequency - - - - - Length - 長さ - - - - Start distortion - - - - - End distortion - - - - - Gain - ゲイン - - - - Envelope slope - - - - - Noise - ノイズ - - - - Click - - - - - Frequency slope - - - - - Start from note - - - - - End to note - - - - - KickerInstrumentView - - - Start frequency: - - - - - End frequency: - - - - - Frequency slope: - - - - - Gain: - ゲイン: - - - - Envelope length: - - - - - Envelope slope: - - - - - Click: - - - - - Noise: - ノイズ: - - - - Start distortion: - - - - - End distortion: - - - - - LadspaBrowserView - - - - Available Effects - 利用可能なエフェクト - - - - - Unavailable Effects - 利用不可なエフェクト - - - - - Instruments - 楽器 - - - - - Analysis Tools - 解析ツール - - - - - Don't know - 不明なツール - - - - Type: - 種類: - - - - LadspaDescription - - - Plugins - プラグイン - - - - Description - 説明 - - - - LadspaPortDialog - - - Ports - - - - - Name - 名前 - - - - Rate - レート - - - - Direction - 向き - - - - Type - 種類 - - - - Min < Default < Max - 最小 < デフォルト < 最大 - - - - Logarithmic - - - - - SR Dependent - - - - - Audio - オーディオ - - - - Control - コントロール - - - - Input - 入力 - - - - Output - 出力 - - - - Toggled - - - - - Integer - 整数 - - - - Float - フロート - - - - - Yes - はい - - - - Lb302Synth - - - VCF Cutoff Frequency - VCF カットオフ周波数 - - - - VCF Resonance - VCF レゾナンス - - - - VCF Envelope Mod - - - - - VCF Envelope Decay - - - - - Distortion - ディストーション - - - - Waveform - 波形 - - - - Slide Decay - スライドディケイ - - - - Slide - スライド - - - - Accent - アクセント - - - - Dead - デッド - - - - 24dB/oct Filter - 24dB/オクターブフィルター - - - - Lb302SynthView - - - Cutoff Freq: - カットオフ周波数: - - - - Resonance: - レゾナンス: - - - - Env Mod: - - - - - Decay: - ディケイ: - - - - 303-es-que, 24dB/octave, 3 pole filter - - - - - Slide Decay: - - - - - DIST: - - - - - Saw wave - のこぎり波 - - - - Click here for a saw-wave. - - - - - Triangle wave - 三角波 - - - - Click here for a triangle-wave. - クリックして三角波を使用します。 - - - - Square wave - 矩形波 - - - - Click here for a square-wave. - クリックして矩形波を使用します。 - - - - Rounded square wave - - - - - Click here for a square-wave with a rounded end. - - - - - Moog wave - Moog - - - - Click here for a moog-like wave. - クリックしてMoog波を使用します。 - - - - Sine wave - サイン波 - - - - Click for a sine-wave. - クリックしてサイン波を使用します。 - - - - - White noise wave - ホワイトノイズ波 - - - - Click here for an exponential wave. - - - - - Click here for white-noise. - クリックしてホワイトノイズを使用します。 - - - - Bandlimited saw wave - - - - - Click here for bandlimited saw wave. - - - - - Bandlimited square wave - - - - - Click here for bandlimited square wave. - - - - - Bandlimited triangle wave - - - - - Click here for bandlimited triangle wave. - - - - - Bandlimited moog saw wave - - - - - Click here for bandlimited moog saw wave. - - - - - MalletsInstrument - - - Hardness - - - - - Position - 位置 - - - - Vibrato gain - - - - - Vibrato frequency - - - - - Stick mix - - - - - Modulator - - - - - Crossfade - - - - - LFO speed - LFO speed - - - - LFO depth - - - - - ADSR - ADSR - - - - Pressure - - - - - Motion - - - - - Speed - 速さ - - - - Bowed - - - - - Spread - - - - - Marimba - マリンバ - - - - Vibraphone - ビブラフォン - - - - Agogo - アゴゴ - - - - Wood 1 - - - - - Reso - - - - - Wood 2 - - - - - Beats - - - - - Two fixed - - - - - Clump - - - - - Tubular bells - - - - - Uniform bar - - - - - Tuned bar - - - - - Glass - - - - - Tibetan bowl - - - - - MalletsInstrumentView - - - Instrument - 楽器 - - - - Spread - - - - - Spread: - - - - - Missing files - ファイルがありません - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - Stkのインストールが未完了のようです。Stkパッケージがすべてインストールされていることを確認してください! - - - - Hardness - - - - - Hardness: - - - - - Position - 位置 - - - - Position: - 位置: - - - - Vibrato gain - - - - - Vibrato gain: - - - - - Vibrato frequency - - - - - Vibrato frequency: - - - - - Stick mix - - - - - Stick mix: - - - - - Modulator - - - - - Modulator: - - - - - Crossfade - - - - - Crossfade: - - - - - LFO speed - LFO speed - - - - LFO speed: - LFO speed: - - - - LFO depth - - - - - LFO depth: - - - - - ADSR - ADSR - - - - ADSR: - ADSR: - - - - Pressure - - - - - Pressure: - - - - - Speed - 速さ - - - - Speed: - 速さ: - - - - ManageVSTEffectView - - - - VST parameter control - - VST パラメータ コントロール - - - - VST sync - VSTを同期 - - - - - Automated - オートメーション済 - - - - Close - 閉じる - - - - ManageVestigeInstrumentView - - - - - VST plugin control - - VST プラグイン コントロール - - - - VST Sync - VST同期 - - - - - Automated - オートメーション済 - - - - Close - 閉じる - - - - OrganicInstrument - - - Distortion - ディストーション - - - - Volume - 音量 - - - - OrganicInstrumentView - - - Distortion: - - - - - Volume: - 音量: - - - - Randomise - - - - - - Osc %1 waveform: - Osc %1 の波形: - - - - Osc %1 volume: - Osc %1 の音量: - - - - Osc %1 panning: - オシレーター %1 パニング: - - - - Osc %1 stereo detuning - - - - - cents - cent - - - - Osc %1 harmonic: - - - - - PatchesDialog - - - Qsynth: Channel Preset - - - - - Bank selector - - - - - Bank - バンク - - - - Program selector - - - - - Patch - パッチ - - - - Name - 名前 - - - - OK - OK - - - - Cancel - キャンセル - - - - Sf2Instrument - - - Bank - バンク - - - - Patch - パッチ - - - - Gain - ゲイン - - - - Reverb - リバーブ - - - - Reverb room size - ルームサイズ - - - - Reverb damping - 残響 - - - - Reverb width - - - - - Reverb level - リバーブのレベル - - - - Chorus - コーラス - - - - Chorus voices - - - - - Chorus level - - - - - Chorus speed - - - - - Chorus depth - - - - - A soundfont %1 could not be loaded. - サウンドフォント %1 を読み込めませんでした。 - - - - Sf2InstrumentView - - - - Open SoundFont file - サウンドフォント ファイルを開く - - - - Choose patch - パッチを選択してください - - - - Gain: - ゲイン: - - - - Apply reverb (if supported) - リバーブを適用 (可能であれば) - - - - Room size: - - - - - Damping: - - - - - Width: - - - - - - Level: - - - - - Apply chorus (if supported) - コーラスを適用 (可能であれば) - - - - Voices: - - - - - Speed: - 速さ: - - - - Depth: - ビット深度: - - - - SoundFont Files (*.sf2 *.sf3) - サウンドフォントファイル (*.sf2 *.sf3) - - - - SfxrInstrument - - - Wave - - - - - StereoEnhancerControlDialog - - - WIDTH - - - - - Width: - - - - - StereoEnhancerControls - - - Width - - - - - StereoMatrixControlDialog - - - Left to Left Vol: - 左から左の音量: - - - - Left to Right Vol: - 左から右の音量: - - - - Right to Left Vol: - 右から左の音量: - - - - Right to Right Vol: - 右から右の音量: - - - - StereoMatrixControls - - - Left to Left - 左から左 - - - - Left to Right - 左から右 - - - - Right to Left - 右から左 - - - - Right to Right - 右から右 - - - - VestigeInstrument - - - Loading plugin - プラグインを読み込んでいます - - - - Please wait while loading the VST plugin... - VSTプラグインの読み込みの間はお待ちください... - - - - Vibed - - - String %1 volume - ストリング %1 の音量 - - - - String %1 stiffness - - - - - Pick %1 position - - - - - Pickup %1 position - - - - - String %1 panning - - - - - String %1 detune - - - - - String %1 fuzziness - - - - - String %1 length - - - - - Impulse %1 - インパルス %1 - - - - String %1 - - - - - VibedView - - - String volume: - - - - - String stiffness: - - - - - Pick position: - - - - - Pickup position: - - - - - String panning: - - - - - String detune: - - - - - String fuzziness: - - - - - String length: - - - - - Impulse - - - - - Octave - オクターブ - - - - Impulse Editor - - - - - Enable waveform - 波形を有効 - - - - Enable/disable string - - - - - String - - - - - - Sine wave - サイン波 - - - - - Triangle wave - 三角波 - - - - - Saw wave - のこぎり波 - - - - - Square wave - 矩形波 - - - - - White noise - - - - - - User-defined wave - ユーザー定義波形 - - - - - Smooth waveform - - - - - - Normalize waveform - 波形をノーマライズ - - - - VoiceObject - - - Voice %1 pulse width - ボイス %1 のパルス幅 - - - - Voice %1 attack - - - - - Voice %1 decay - - - - - Voice %1 sustain - - - - - Voice %1 release - - - - - Voice %1 coarse detuning - - - - - Voice %1 wave shape - - - - - Voice %1 sync - ボイス %1 の同期 - - - - Voice %1 ring modulate - - - - - Voice %1 filtered - - - - - Voice %1 test - - - - - WaveShaperControlDialog - - - INPUT - 入力 - - - - Input gain: - 入力ゲイン: - - - - OUTPUT - 出力 - - - - Output gain: - 出力ゲイン: - - - - - Reset wavegraph - 波形をリセット - - - - - Smooth wavegraph - - - - - - Increase wavegraph amplitude by 1 dB - - - - - - Decrease wavegraph amplitude by 1 dB - - - - - Clip input - 入力信号をクリップ - - - - Clip input signal to 0 dB - 入力信号を0 dBでクリップさせる - - - - WaveShaperControls - - - Input gain - 入力ゲイン - - - - Output gain - 出力ゲイン - - - + \ No newline at end of file diff --git a/data/locale/ko.ts b/data/locale/ko.ts index 036c73231..b45bfb769 100644 --- a/data/locale/ko.ts +++ b/data/locale/ko.ts @@ -1,4 +1,4 @@ - + AboutDialog @@ -24,12 +24,12 @@ LMMS - easy music production for everyone. - LMMS - 누구나 쉽게 할 수 있는 음악 제작. + LMMS - 누구나 쉽게 음악을 제작할 수 있습니다. Copyright © %1. - Copyright © %1. + 저작권 © %1. @@ -62,8 +62,8 @@ If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! 송현진 (Hyunjin Song) <tteu.ingog@gmail.com> 방성범 (Bang Seongbeom) <bangseongbeom@gmail.com> - -LMMS를 다른 언어로 번역하고 싶다거나 기존 번역을 개선하고 싶다면 저희를 도와주세요! LMMS 관리자와의 연락을 통해 참여하실 수 있습니다. +이정희 (Junghee Lee) <daemul72@gmail.com> +LMMS를 다른 언어로 번역하고 싶다거나 기존 번역을 개선하고 싶다면 저희를 도와주세요! LMMS 관리자에게 연락하기만 하면 됩니다! @@ -72,810 +72,43 @@ LMMS를 다른 언어로 번역하고 싶다거나 기존 번역을 개선하고 - AmplifierControlDialog + AboutJuceDialog - - VOL - 음량 + + About JUCE + JUCE 정보 - - Volume: - 음량: + + <b>About JUCE</b> + <b>JUCE 정보</b> - - PAN - 패닝 + + This program uses JUCE version 3.x.x. + 이 프로그램은 JUCE 버전 3.x.x를 사용합니다. - - Panning: - 패닝: + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + - - LEFT - 왼쪽 - - - - Left gain: - 왼쪽 이득: - - - - RIGHT - 오른쪽 - - - - Right gain: - 오른쪽 이득: + + This program uses JUCE version + 이 프로그램은 JUCE 버전을 사용합니다. - AmplifierControls + AudioDeviceSetupWidget - - Volume - 음량 - - - - Panning - 패닝 - - - - Left gain - 왼쪽 이득 - - - - Right gain - 오른쪽 이득 - - - - AudioAlsaSetupWidget - - - DEVICE - 장치 - - - - CHANNELS - 채널 - - - - AudioFileProcessorView - - - Open sample - 샘플 파일 열기 - - - - Reverse sample - 샘플 역으로 - - - - Disable loop - 반복 비활성화 - - - - Enable loop - 반복 활성화 - - - - Enable ping-pong loop - - - - - Continue sample playback across notes - 샘플을 여러 음표에 걸쳐 계속 재생 - - - - Amplify: - 증폭: - - - - Start point: - 시작점: - - - - End point: - 끝점: - - - - Loopback point: - 루프 시작점: - - - - AudioFileProcessorWaveView - - - Sample length: - 샘플 길이: - - - - AudioJack - - - JACK client restarted - JACK 클라이언트 다시 시작됨 - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - 알 수 없는 이유로 인해 LMMS와 JACK과의 연결이 끊겼습니다. LMMS의 JACK 드라이버를 다시 시작합니다. 수동으로 연결을 시도할 수도 있습니다. - - - - JACK server down - JACK 서버 다운됨 - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - JACK 서버가 종료된 것 같습니다. 더 이상 작업을 진행할 수 없습니다. 프로젝트를 저장한 뒤 JACK과 LMMS를 다시 시작하세요. - - - - Client name - - - - - Channels - - - - - AudioOss - - - Device - - - - - Channels - - - - - AudioPortAudio::setupWidget - - - Backend - - - - - Device - - - - - AudioPulseAudio - - - Device - - - - - Channels - - - - - AudioSdl::setupWidget - - - Device - - - - - AudioSndio - - - Device - - - - - Channels - - - - - AudioSoundIo::setupWidget - - - Backend - - - - - Device - - - - - AutomatableModel - - - &Reset (%1%2) - 초기화 (%1%2)(&R) - - - - &Copy value (%1%2) - 값 복사 (%1%2)(&C) - - - - &Paste value (%1%2) - 값 붙여넣기 (%1%2)(&P) - - - - &Paste value - 값 붙여넣기(&P) - - - - Edit song-global automation - 전역 오토메이션 편집 - - - - Remove song-global automation - 전역 오토메이션 제거 - - - - Remove all linked controls - 연결 제거 - - - - Connected to %1 - %1에 연결됨 - - - - Connected to controller - 컨트롤러에 연결됨 - - - - Edit connection... - 연결 편집... - - - - Remove connection - 연결 제거 - - - - Connect to controller... - 컨트롤러에 연결... - - - - AutomationEditor - - - Edit Value - - - - - New outValue - - - - - New inValue - - - - - Please open an automation clip with the context menu of a control! - 컨트롤의 컨텍스트 메뉴에서 오토메이션 패턴을 여시기 바랍니다! - - - - AutomationEditorWindow - - - Play/pause current clip (Space) - 현재 패턴 재생/일시정지 (Space) - - - - Stop playing of current clip (Space) - 현재 패턴 정지 (Space) - - - - Edit actions - 편집 동작 - - - - Draw mode (Shift+D) - 그리기 모드 (Shift+D) - - - - Erase mode (Shift+E) - 지우기 모드 (Shift+E) - - - - Draw outValues mode (Shift+C) - - - - - Flip vertically - 상하 반전 - - - - Flip horizontally - 좌우 반전 - - - - Interpolation controls - - - - - Discrete progression - 이산적 진행 - - - - Linear progression - 선형 진행 - - - - Cubic Hermite progression - 3차 에르미트 진행 - - - - Tension value for spline - - - - - Tension: - - - - - Zoom controls - - - - - Horizontal zooming - 수평 줌 - - - - Vertical zooming - 수직 줌 - - - - Quantization controls - - - - - Quantization - - - - - - Automation Editor - no clip - 오토메이션 편집기 - 패턴 없음 - - - - - Automation Editor - %1 - 오토메이션 편집기 - %1 - - - - Model is already connected to this clip. - 대상이 이미 패턴에 연결되어 있습니다. - - - - AutomationClip - - - Drag a control while pressing <%1> - <%1> 키를 누른 채로 드래그 - - - - AutomationClipView - - - Open in Automation editor - 오토메이션 편집기에서 열기 - - - - Clear - 지우기 - - - - Reset name - 이름 초기화 - - - - Change name - 이름 바꾸기 - - - - Set/clear record - 녹음 설정/해제 - - - - Flip Vertically (Visible) - 상하 반전 - - - - Flip Horizontally (Visible) - 좌우 반전 - - - - %1 Connections - %1개의 연결 - - - - Disconnect "%1" - "%1" 연결 해제 - - - - Model is already connected to this clip. - 대상이 이미 패턴과 연결되어 있습니다. - - - - AutomationTrack - - - Automation track - 오토메이션 트랙 - - - - PatternEditor - - - Beat+Bassline Editor - 비트/베이스 라인 편집기 - - - - Play/pause current beat/bassline (Space) - 현재 비트/베이스 라인 재생/일시정지 (Space) - - - - Stop playback of current beat/bassline (Space) - 현재 비트/베이스 라인 정지 (Space) - - - - Beat selector - 비트 선택기 - - - - Track and step actions - - - - - Add beat/bassline - 비트/베이스 라인 추가 - - - - Clone beat/bassline clip - - - - - Add sample-track - 샘플 트랙 추가 - - - - Add automation-track - 오토메이션 트랙 추가 - - - - Remove steps - - - - - Add steps - - - - - Clone Steps - - - - - PatternClipView - - - Open in Beat+Bassline-Editor - 비트/베이스 라인 편집기에서 열기 - - - - Reset name - 이름 초기화 - - - - Change name - 이름 바꾸기 - - - - PatternTrack - - - Beat/Bassline %1 - 비트/베이스 라인 %1 - - - - Clone of %1 - %1의 복제 - - - - BassBoosterControlDialog - - - FREQ - 주파수 - - - - Frequency: - 주파수: - - - - GAIN - 이득 - - - - Gain: - 이득: - - - - RATIO - 비율 - - - - Ratio: - 비율: - - - - BassBoosterControls - - - Frequency - 주파수 - - - - Gain - 이득 - - - - Ratio - 비율 - - - - BitcrushControlDialog - - - IN - 입력 - - - - OUT - 출력 - - - - - GAIN - 이득 - - - - Input gain: - 입력 이득: - - - - NOISE - 잡음 - - - - Input noise: - 입력 잡음: - - - - Output gain: - 출력 이득: - - - - CLIP - 클리핑 - - - - Output clip: - 출력 클리핑: - - - - Rate enabled - - - - - Enable sample-rate crushing - - - - - Depth enabled - - - - - Enable bit-depth crushing - - - - - FREQ - 주파수 - - - - Sample rate: - 샘플 레이트: - - - - STEREO - 스테레오 - - - - Stereo difference: - 좌우 차이: - - - - QUANT - - - - - Levels: - - - - - BitcrushControls - - - Input gain - 입력 이득 - - - - Input noise - - - - - Output gain - 출력 이득 - - - - Output clip - 출력 클리핑 - - - - Sample rate - 샘플 레이트 - - - - Stereo difference - 좌우 차이 - - - - Levels - - - - - Rate enabled - - - - - Depth enabled + + [System Default] @@ -884,7 +117,7 @@ LMMS를 다른 언어로 번역하고 싶다거나 기존 번역을 개선하고 About Carla - + Carla 정보 @@ -894,132 +127,132 @@ LMMS를 다른 언어로 번역하고 싶다거나 기존 번역을 개선하고 About text here - + 텍스트에 대한 정보 Extended licensing here - + 여기에서 확장된 라이선싱 - + Artwork - + 아트워크 - + Using KDE Oxygen icon set, designed by Oxygen Team. - + Oxygen Team이 디자인한 KDE Oxygen 아이콘 세트를 사용합니다. - + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. - + Calf Studio Gear, OpenAV 및 OpenOctave 프로젝트의 노브, 배경 및 기타 작은 아트워크가 포함되어 있습니다. - + VST is a trademark of Steinberg Media Technologies GmbH. - + VST는 Steinberg Media Technologies GmbH의 상표입니다. - + Special thanks to António Saraiva for a few extra icons and artwork! - + 몇 가지 추가 아이콘과 아트워크를 제공한 António Saraiva에게 특별한 감사를 드립니다! - + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. - + LV2 로고는 Peter Shorthose의 컨셉을 바탕으로 Thorsten Wilms가 디자인했습니다. - + MIDI Keyboard designed by Thorsten Wilms. - - - - - Carla, Carla-Control and Patchbay icons designed by DoosC. - + Thorsten Wilms가 디자인한 MIDI 키보드. + Carla, Carla-Control and Patchbay icons designed by DoosC. + DoosC에서 디자인한 Carla, Carla-Control 및 Patchbay 아이콘입니다. + + + Features - + 기능 - + AU/AudioUnit: - + AU/AudioUnit: - + LADSPA: - + LADSPA: - - - - - - - - + + + + + + + + TextLabel - + TextLabel - + VST2: - + VST2: - + DSSI: - + DSSI: - + LV2: - + LV2: - + VST3: - - - - - OSC - - - - - Host URLs: - - - - - Valid commands: - + VST3: + OSC + OSC + + + + Host URLs: + 호스트 URL: + + + + Valid commands: + 올바른 명령: + + + valid osc commands here - + 여기에서 올바른 osc 명령 - + Example: - + 예시: - + License 라이선스 - + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -1301,55 +534,335 @@ POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS - + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + - + OSC Bridge Version - + OSC Bridge 버전 - + Plugin Version - + 플러그인 버전 - + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> - + <br>버전 %1<br>Carla는 모든 기능을 갖춘 오디오 플러그인 호스트%2입니다.<br><br>Copyright (C) 2011-2019 falkTX<br> - - + + (Engine not running) - + (엔진이 실행되지 않음) - + Everything! (Including LRDF) - + 모든 것! (LRDF 포함) - + Everything! (Including CustomData/Chunks) - + 모든 것! (사용자지정데이터/청크 포함) - + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - + 약 110&#37; 완료 (사용자 지정 확장 사용중)<br/>구현된 기능/확장:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - - - + + + Using Juce host - + Juce 호스트 사용 중 - + About 85% complete (missing vst bank/presets and some minor stuff) - + 약 85% 완료 (vst 뱅크/프리셋 및 일부 마이너 스터프 누락) @@ -1357,582 +870,621 @@ POSSIBILITY OF SUCH DAMAGES. MainWindow - + 기본 창 Rack - + Patchbay - + Patchbay Logs - + 로그 Loading... + 불러오는 중... + + + + Save + 저장하기 + + + + Clear + 지우기 + + + + Ctrl+L - + + Auto-Scroll + + + + Buffer Size: - + 버퍼 크기: - + Sample Rate: - + 샘플 레이트: - + ? Xruns - + ? Xruns - + DSP Load: %p% - + DSP 불러오기: %p% - + &File 파일(&F) - + &Engine - + 엔진(&E) - + &Plugin - + 플러그인(&P) - + Macros (all plugins) - + 매크로 (모든 플러그인) - + &Canvas - + 캔버스(&C) - + Zoom - + 확대/축소 - + &Settings - + 설정(&S) - + &Help 도움말(&H) - - toolBar + + Tool Bar - + Disk - + 디스크 - - + + Home - + - + Transport - + 트랜스포트 - + Playback Controls - + 플레이백 컨트롤 - + Time Information - + 시간 정보 - + Frame: - + 프레임: - + 000'000'000 - + 000'000'000 - + Time: - + 시간: - + 00:00:00 - + 00:00:00 - + BBT: - + BBT: - + 000|00|0000 - + 000|00|0000 - + Settings 설정 - + BPM - + BPM - + Use JACK Transport - + JACK 트랜스포트 사용하기 - + Use Ableton Link - + Ableton 링크 사용하기 - + &New 새로 만들기(&N) - + Ctrl+N - + Ctrl+N - + &Open... 열기(&O)... - - + + Open... - + 열기... - + Ctrl+O - + Ctrl+O - + &Save 저장(&S) - + Ctrl+S - + Ctrl+S - + Save &As... 다른 이름으로 저장(&A)... - - + + Save As... - + 다른 이름으로 저장하기... - + Ctrl+Shift+S - + Ctrl+Shift+S - + &Quit - 끝내기(&Q) + 종료(&Q) - + Ctrl+Q - + Ctrl+Q - + &Start - + 시작(&S) - + F5 - - - - - St&op - - - - - F6 - - - - - &Add Plugin... - - - - - Ctrl+A - - - - - &Remove All - - - - - Enable - - - - - Disable - - - - - 0% Wet (Bypass) - - - - - 100% Wet - - - - - 0% Volume (Mute) - - - - - 100% Volume - - - - - Center Balance - - - - - &Play - - - - - Ctrl+Shift+P - - - - - &Stop - - - - - Ctrl+Shift+X - - - - - &Backwards - - - - - Ctrl+Shift+B - - - - - &Forwards - - - - - Ctrl+Shift+F - - - - - &Arrange - - - - - Ctrl+G - - - - - - &Refresh - - - - - Ctrl+R - - - - - Save &Image... - + F5 - Auto-Fit - + St&op + 중지(&O) - - Zoom In - + + F6 + F6 - Ctrl++ - + &Add Plugin... + 플러그인 추가(&A)... - - Zoom Out - + + Ctrl+A + Ctrl+A - - Ctrl+- - + + &Remove All + 모두 제거(&R) - - Zoom 100% - + + Enable + 활성화 - - Ctrl+1 - + + Disable + 비활성화 - - Show &Toolbar - + + 0% Wet (Bypass) + 0% 웨트 (바이패스) - - &Configure Carla - + + 100% Wet + 100% 웨트 - - &About - + + 0% Volume (Mute) + 0% 볼륨 (음소거) - - About &JUCE - + + 100% Volume + 100% 볼륨 - - About &Qt - + + Center Balance + 중앙 밸런스 - - Show Canvas &Meters - + + &Play + 연주(&P) - - Show Canvas &Keyboard - + + Ctrl+Shift+P + Ctrl+Shift+P - - Show Internal - + + &Stop + 중지(&S) - - Show External - + + Ctrl+Shift+X + Ctrl+Shift+X - - Show Time Panel - - - - - Show &Side Panel - + + &Backwards + 반대방향(&B) - &Connect... - + Ctrl+Shift+B + Ctrl+Shift+B - - Compact Slots - + + &Forwards + 정방향(&F) - - Expand Slots - + + Ctrl+Shift+F + Ctrl+Shift+F + + + + &Arrange + 편곡(&A) - Perform secret 1 - + Ctrl+G + Ctrl+G - - Perform secret 2 - - - - - Perform secret 3 - + + + &Refresh + 새로고침(&R) + Ctrl+R + Ctrl+R + + + + Save &Image... + 이미지 저장(&I)... + + + + Auto-Fit + 자동-맞춤 + + + + Zoom In + 확대 + + + + Ctrl++ + Ctrl++ + + + + Zoom Out + 축소 + + + + Ctrl+- + Ctrl+- + + + + Zoom 100% + 100% 확대/축소 + + + + Ctrl+1 + Ctrl+1 + + + + Show &Toolbar + 도구모음 표시(&T) + + + + &Configure Carla + Carla 구성(&C) + + + + &About + 정보(&A) + + + + About &JUCE + JUCE 정보(&J) + + + + About &Qt + Qt 정보(&Q) + + + + Show Canvas &Meters + 캔버스 미터 표시(&M) + + + + Show Canvas &Keyboard + 캔버스 키보드 표시(&K) + + + + Show Internal + 내부 표시하기 + + + + Show External + 외부 표시하기 + + + + Show Time Panel + 시간 패널 표시하기 + + + + Show &Side Panel + 측면 패널 표시(&S) + + + + Ctrl+P + + + + + &Connect... + 연결(&C)... + + + + Compact Slots + 콤팩트 슬롯 + + + + Expand Slots + 슬롯 확장 + + + + Perform secret 1 + 시크릿 1 연주하기 + + + + Perform secret 2 + 시크릿 2 연주하기 + + + + Perform secret 3 + 시크릿 3 연주하기 + + + Perform secret 4 - + 시크릿 4 연주하기 - + Perform secret 5 - + 시크릿 5 연주하기 - + Add &JACK Application... - + JACK 응용프로그램 추가(&J)... - + &Configure driver... - + 드라이버 구성(&C)... - + Panic + 패닉 + + + + Open custom driver panel... + 사용자 지정 드라이버 패널 열기... + + + + Save Image... (2x zoom) - - Open custom driver panel... + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C CarlaHostWindow - + Export as... - + 다른 이름으로 내보내기... - - - - + + + + Error 오류 - + Failed to load project - + 프로젝트를 불러오지 못했습니다 - + Failed to save project - + 프로젝트를 저장하지 못했습니다 - + Quit - + 종료 - + Are you sure you want to quit Carla? - + Carla를 종료하시겠습니까? - + Could not connect to Audio backend '%1', possible reasons: %2 - + 오디오 백엔드 '%1'에 연결할 수 없습니다. 가능한 이유: +%2 - + Could not connect to Audio backend '%1' - + 오디오 백엔드 '%1'에 연결할 수 없습니다 - + Warning - + 경고 - + There are still some plugins loaded, you need to remove them to stop the engine. Do you want to do this now? - - - - - CarlaInstrumentView - - - Show GUI - GUI 표시 + 아직 일부 플러그인이 불려와 있으므로, 엔진을 중지하려면 해당 플러그인을 제거해야 합니다. +지금 이 작업을 하시겠습니까? @@ -1945,1624 +1497,706 @@ Do you want to do this now? main - + 기본 canvas - + 캔버스 engine - + 엔진 osc - + osc file-paths - + 파일 경로 plugin-paths - + 플러그인 경로 wine - + wine experimental - + 실험적 Widget - + 위젯 - + Main - + 기본 - + Canvas - + 캔버스 - + Engine - + 엔진 File Paths - + 파일 경로 Plugin Paths - + 플러그인 경로 Wine - + Wine - + Experimental - + 실험적 - + <b>Main</b> - + <b>기본</b> - + Paths 경로 - + Default project folder: - + 기본 프로젝트 폴더: - + Interface + 인터페이스 + + + + Use "Classic" as default rack skin - + Interface refresh interval: - - - - - - ms - + 인터페이스 새로고침 간격: + + ms + ms + + + Show console output in Logs tab (needs engine restart) - - - - - Show a confirmation dialog before quitting - - - - - - Theme - + 로그 탭에 콘솔 출력 표시하기 (엔진 시작해야 함) - Use Carla "PRO" theme (needs restart) - + Show a confirmation dialog before quitting + 종료 전에 확인 대화상자 표시하기 + + Theme + 테마 + + + + Use Carla "PRO" theme (needs restart) + Carla "PRO" 테마 사용하기 (다시 시작해야 함) + + + Color scheme: - + 색상 구성표: - + Black - + 검정 - + System - + 시스템 - + Enable experimental features - + 실험적 기능 활성화 - + <b>Canvas</b> - + <b>캔버스</b> - + Bezier Lines - + 베지어 라인 - + Theme: - + 테마: - + Size: - + 크기: - + 775x600 - + 775x600 - + 1550x1200 - - - - - 3100x2400 - - - - - 4650x3600 - - - - - 6200x4800 - + 1550x1200 + 3100x2400 + 3100x2400 + + + + 4650x3600 + 4650x3600 + + + + 6200x4800 + 6200x4800 + + + + 12400x9600 + + + + Options - + 옵션 - + Auto-hide groups with no ports - + 포트가 없는 그룹 자동 숨김 - + Auto-select items on hover - + 마우스 오버 시 항목 자동 선택하기 - + Basic eye-candy (group shadows) - + Basic eye-candy (그룹 섀도우) - + Render Hints - + 렌더 힌트 - + Anti-Aliasing - + 앤티앨리어싱 - + Full canvas repaints (slower, but prevents drawing issues) - + 전체 캔버스 다시 그리기 (느리지만 그리기 문제 방지) - + <b>Engine</b> - + <b>엔진</b> - - + + Core - + 코어 - + Single Client - + 단일 클라이언트 - + Multiple Clients - + 여러 클라이언트 - - + + Continuous Rack - + Continuous Rack - - + + Patchbay - + Patchbay - + Audio driver: - + 오디오 드라이버: - + Process mode: - + 프로세스 모드: - - - - + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog - + 내장된 '편집' 대화상자에서 허용할 매개변수의 최대 개수 - + Max Parameters: - + 최대 매개변수: - + ... - + ... - + Reset Xrun counter after project load - + 프로젝트 불러온 후 Xrun 카운터 재설정 - + Plugin UIs - - - - - - How much time to wait for OSC GUIs to ping back the host - - - - - UI Bridge Timeout: - - - - - Use OSC-GUI bridges when possible, this way separating the UI from DSP code - - - - - Use UI bridges instead of direct handling when possible - - - - - Make plugin UIs always-on-top - - - - - Make plugin UIs appear on top of Carla (needs restart) - + 플러그인 UI + + How much time to wait for OSC GUIs to ping back the host + OSC GUI가 호스트를 ping back할 때까지 기다려야 하는 시간 + + + + UI Bridge Timeout: + UI 브리지 시간초과: + + + + Use OSC-GUI bridges when possible, this way separating the UI from DSP code + 가능한 경우 OSC-GUI 브리지를 사용하여, DSP 코드에서 UI를 분리합니다 + + + + Use UI bridges instead of direct handling when possible + 가능한 경우 직접 취급하지 않고 UI 브리지 사용하기 + + + + Make plugin UIs always-on-top + 플러그인 UI를 항상 위에 표시 + + + + Make plugin UIs appear on top of Carla (needs restart) + Carla 상단에 플러그인 UI 표시 (다시 시작해야 함) + + + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS - + 참고: 플러그인 브리지 UI는 macOS의 Carla에서 관리할 수 없습니다 - - + + Restart the engine to load the new settings - + 새 설정을 불러오려면 엔진을 다시 시작합니다 - + <b>OSC</b> - + <b>OSC</b> - + Enable OSC - + OSC 활성화 - + Enable TCP port - + TCP 포트 활성화 - - + + Use specific port: - + 특정 포트 사용: - + Overridden by CARLA_OSC_TCP_PORT env var - + CARLA_OSC_TCP_PORT env var에 의해 재정의됨 - - + + Use randomly assigned port - + 무작위로 할당된 포트 사용하기 - + Enable UDP port - + UDP 포트 활성화 - + Overridden by CARLA_OSC_UDP_PORT env var - + CARLA_OSC_UDP_PORT env var에 의해 재정의됨 - + DSSI UIs require OSC UDP port enabled - + DSSI UI에는 OSC UDP 포트가 활성화되어 있어야 합니다 - + <b>File Paths</b> - + <b>파일 경로</b> - + Audio 오디오 - + MIDI MIDI - + Used for the "audiofile" plugin - + "오디오파일" 플러그인에 사용됨 - + Used for the "midifile" plugin - + "미디파일" 플러그인에 사용됨 - - + + Add... - + 추가하기... - - + + Remove - + 제거하기 - - + + Change... - + 변경하기... - + <b>Plugin Paths</b> - + <b>플러그인 경로</b> - + LADSPA - + LADSPA - + DSSI - + DSSI - + LV2 - + LV2 - + VST2 - + VST2 - + VST3 - + VST3 - + SF2/3 - + SF2/3 - + SFZ + SFZ + + + + JSFX - + + CLAP + + + + Restart Carla to find new plugins - + 새 플러그인을 찾기위해 Carla 다시 시작 - + <b>Wine</b> - + <b>Wine</b> - + Executable - + 실행 가능 - + Path to 'wine' binary: - + 'wine' 바이너리 경로: - + Prefix - + 접두사 - + Auto-detect Wine prefix based on plugin filename - + 플러그인 파일 이름을 기반으로 Wine 접두사 자동 감지 - + Fallback: - + 폴백: - + Note: WINEPREFIX env var is preferred over this fallback - + 참고: WINEPREFIX env var는 이 폴백보다 선호됩니다 - + Realtime Priority - + 실시간 우선순위 - + Base priority: - + 기본 우선순위: - + WineServer priority: - + WineServer 우선순위: - + These options are not available for Carla as plugin - + 이 옵션은 Carla를 플러그인으로 사용할 수 없습니다 - + <b>Experimental</b> - + <b>실험적</b> - + Experimental options! Likely to be unstable! - + 실험적인 옵션입니다! 불안정할 가능성이 있습니다! - + Enable plugin bridges - + 플러그인 브리지 활성화 - + Enable Wine bridges - + Wine 브리지 활성화 - + Enable jack applications - + JACK 응용프로그램 활성화 - + Export single plugins to LV2 + 단일 플러그인을 LV2로 내보내기 + + + + Use system/desktop-theme icons (needs restart) - + Load Carla backend in global namespace (NOT RECOMMENDED) - + 전역 네임스페이스에 Carla 백엔드 불러오기 (권장하지 않음) - + Fancy eye-candy (fade-in/out groups, glow connections) - + Fancy eye-candy (페이드-인/아웃 그룹, 글로 연결) - + Use OpenGL for rendering (needs restart) - + 렌더링에 OpenGL 사용하기 (다시 시작해야 함) - + High Quality Anti-Aliasing (OpenGL only) - + 고화질 앤티앨리어싱 (OpenGL만 해당) - + Render Ardour-style "Inline Displays" - + Render Ardour 스타일의 "인라인 디스플레이" - + Force mono plugins as stereo by running 2 instances at the same time. This mode is not available for VST plugins. - + 동시에 2개의 인스턴스를 실행하여 모노 플러그인을 스테레오로 강제 실행합니다. +이 모드는 VST 플러그인에 사용할 수 없습니다. - + Force mono plugins as stereo + 모노 플러그인을 스테레오로 강제 적용 + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. - - Prevent plugins from doing bad stuff (needs restart) + + Prevent unsafe calls from plugins (needs restart) - - Whenever possible, run the plugins in bridge mode. + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. - + Run plugins in bridge mode when possible - + 가능한 경우 브리지 모드에서 플러그인 실행 - - - - + + + + Add Path - - - - - CompressorControlDialog - - - Threshold: - - - - - Volume at which the compression begins to take place - - - - - Ratio: - 비율: - - - - How far the compressor must turn the volume down after crossing the threshold - - - - - Attack: - - - - - Speed at which the compressor starts to compress the audio - - - - - Release: - - - - - Speed at which the compressor ceases to compress the audio - - - - - Knee: - - - - - Smooth out the gain reduction curve around the threshold - - - - - Range: - - - - - Maximum gain reduction - - - - - Lookahead Length: - - - - - How long the compressor has to react to the sidechain signal ahead of time - - - - - Hold: - - - - - Delay between attack and release stages - - - - - RMS Size: - - - - - Size of the RMS buffer - - - - - Input Balance: - - - - - Bias the input audio to the left/right or mid/side - - - - - Output Balance: - - - - - Bias the output audio to the left/right or mid/side - - - - - Stereo Balance: - - - - - Bias the sidechain signal to the left/right or mid/side - - - - - Stereo Link Blend: - - - - - Blend between unlinked/maximum/average/minimum stereo linking modes - - - - - Tilt Gain: - - - - - Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. - - - - - Tilt Frequency: - - - - - Center frequency of sidechain tilt filter - - - - - Mix: - - - - - Balance between wet and dry signals - - - - - Auto Attack: - - - - - Automatically control attack value depending on crest factor - - - - - Auto Release: - - - - - Automatically control release value depending on crest factor - - - - - Output gain - 출력 이득 - - - - - Gain - 이득 - - - - Output volume - - - - - Input gain - 입력 이득 - - - - Input volume - - - - - Root Mean Square - - - - - Use RMS of the input - - - - - Peak - - - - - Use absolute value of the input - - - - - Left/Right - - - - - Compress left and right audio - - - - - Mid/Side - - - - - Compress mid and side audio - - - - - Compressor - - - - - Compress the audio - - - - - Limiter - - - - - Set Ratio to infinity (is not guaranteed to limit audio volume) - - - - - Unlinked - - - - - Compress each channel separately - - - - - Maximum - - - - - Compress based on the loudest channel - - - - - Average - - - - - Compress based on the averaged channel volume - - - - - Minimum - - - - - Compress based on the quietest channel - - - - - Blend - - - - - Blend between stereo linking modes - - - - - Auto Makeup Gain - - - - - Automatically change makeup gain depending on threshold, knee, and ratio settings - - - - - - Soft Clip - - - - - Play the delta signal - - - - - Use the compressor's output as the sidechain input - - - - - Lookahead Enabled - - - - - Enable Lookahead, which introduces 20 milliseconds of latency - - - - - CompressorControls - - - Threshold - - - - - Ratio - 비율 - - - - Attack - - - - - Release - - - - - Knee - - - - - Hold - - - - - Range - - - - - RMS Size - - - - - Mid/Side - - - - - Peak Mode - - - - - Lookahead Length - - - - - Input Balance - - - - - Output Balance - - - - - Limiter - - - - - Output Gain - 출력 이득 - - - - Input Gain - 입력 이득 - - - - Blend - - - - - Stereo Balance - - - - - Auto Makeup Gain - - - - - Audition - - - - - Feedback - 피드백 - - - - Auto Attack - - - - - Auto Release - - - - - Lookahead - - - - - Tilt - - - - - Tilt Frequency - - - - - Stereo Link - - - - - Mix - - - - - Controller - - - Controller %1 - 컨트롤러 %1 - - - - ControllerConnectionDialog - - - Connection Settings - 연결 설정 - - - - MIDI CONTROLLER - MIDI 컨트롤러 - - - - Input channel - 입력 채널 - - - - CHANNEL - 채널 - - - - Input controller - 입력 컨트롤러 - - - - CONTROLLER - 컨트롤러 - - - - - Auto Detect - 자동 감지 - - - - MIDI-devices to receive MIDI-events from - - - - - USER CONTROLLER - 사용자 지정 컨트롤러 - - - - MAPPING FUNCTION - 매핑 함수 - - - - OK - 확인 - - - - Cancel - 취소 - - - - LMMS - LMMS - - - - Cycle Detected. - 순환 연결이 감지되었습니다. - - - - ControllerRackView - - - Controller Rack - 컨트롤러 랙 - - - - Add - 추가 - - - - Confirm Delete - 삭제 확인 - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - 정말 삭제하시겠습니까? 이 컨트롤러와의 연결이 존재합니다. 이 동작은 취소할 수 없습니다. - - - - ControllerView - - - Controls - 컨트롤 - - - - Rename controller - 컨트롤러 이름 바꾸기 - - - - Enter the new name for this controller - 컨트롤러의 새 이름을 입력하세요 - - - - LFO - LFO - - - - &Remove this controller - 컨트롤러 제거(&R) - - - - Re&name this controller - 컨트롤러 이름 바꾸기(&N) - - - - CrossoverEQControlDialog - - - Band 1/2 crossover: - 대역 1/2 분할 주파수: - - - - Band 2/3 crossover: - 대역 2/3 분할 주파수: - - - - Band 3/4 crossover: - 대역 3/4 분할 주파수: - - - - Band 1 gain - 대역 1 이득 - - - - Band 1 gain: - 대역 1 이득: - - - - Band 2 gain - 대역 2 이득 - - - - Band 2 gain: - 대역 2 이득: - - - - Band 3 gain - 대역 3 이득 - - - - Band 3 gain: - 대역 3 이득: - - - - Band 4 gain - 대역 4 이득 - - - - Band 4 gain: - 대역 4 이득: - - - - Band 1 mute - 대역 1 음소거 - - - - Mute band 1 - 대역 1 음소거 - - - - Band 2 mute - 대역 2 음소거 - - - - Mute band 2 - 대역 2 음소거 - - - - Band 3 mute - 대역 3 음소거 - - - - Mute band 3 - 대역 3 음소거 - - - - Band 4 mute - 대역 4 음소거 - - - - Mute band 4 - 대역 4 음소거 - - - - DelayControls - - - Delay samples - - - - - Feedback - 피드백 - - - - LFO frequency - LFO 주파수 - - - - LFO amount - - - - - Output gain - 출력 이득 - - - - DelayControlsDialog - - - DELAY - 지연 - - - - Delay time - - - - - FDBK - 피드백 - - - - Feedback amount - - - - - RATE - - - - - LFO frequency - LFO 주파수 - - - - AMNT - - - - - LFO amount - - - - - Out gain - 출력 이득 - - - - Gain - 이득 + 경로 추가하기 Dialog - - - Add JACK Application - - - - - Note: Features not implemented yet are greyed out - - - - - Application - - - - - Name: - - - - - Application: - - - - - From template - - - - - Custom - - - - - Template: - - - - - Command: - - - - - Setup - - - - - Session Manager: - - - - - None - 없음 - - - - Audio inputs: - - - - - MIDI inputs: - - - - - Audio outputs: - - - - - MIDI outputs: - - - - - Take control of main application window - - - - - Workarounds - - - - - Wait for external application start (Advanced, for Debug only) - - - - - Capture only the first X11 Window - - - - - Use previous client output buffer as input for the next client - - - - - Simulate 16 JACK MIDI outputs, with MIDI channel as port index - - - - - Error here - - Carla Control - Connect - + Carla 컨트롤 - 연결하기 Remote setup - + 원격 셋업 UDP Port: - + UDP 포트: Remote host: - + 원격 호스트: TCP Port: - - - - - Reported host - - - - - Automatic - - - - - Custom: - - - - - In some networks (like USB connections), the remote system cannot reach the local network. You can specify here which hostname or IP to make the remote Carla connect to. -If you are unsure, leave it as 'Automatic'. - + TCP 포트: Set value - 값 설정 + 값 지정하기 TextLabel - + TextLabel Scale Points - + 스케일 포인트 @@ -3570,17 +2204,17 @@ If you are unsure, leave it as 'Automatic'. Driver Settings - + 드라이버 설정 Device: - + 디바이스: Buffer size: - + 버퍼 크기: @@ -3590,959 +2224,17 @@ If you are unsure, leave it as 'Automatic'. Triple buffer - + 트리플 버퍼 Show Driver Control Panel - + 드라이버 제어판 표시하기 Restart the engine to load the new settings - - - - - DualFilterControlDialog - - - - FREQ - 주파수 - - - - - Cutoff frequency - 차단 주파수 - - - - - RESO - 공명 - - - - - Resonance - 공명 - - - - - GAIN - 이득 - - - - - Gain - 이득 - - - - MIX - - - - - Mix - - - - - Filter 1 enabled - 필터 1 활성화됨 - - - - Filter 2 enabled - 필터 2 활성화됨 - - - - Enable/disable filter 1 - 필터 1 활성화/비활성화 - - - - Enable/disable filter 2 - 필터 2 활성화/비활성화 - - - - DualFilterControls - - - Filter 1 enabled - 필터 1 활성화됨 - - - - Filter 1 type - 필터 1 종류 - - - - Cutoff frequency 1 - 필터 1 차단 주파수 - - - - Q/Resonance 1 - 필터 1 Q/공명 - - - - Gain 1 - 이득 1 - - - - Mix - - - - - Filter 2 enabled - 필터 2 활성화됨 - - - - Filter 2 type - 필터 2 종류 - - - - Cutoff frequency 2 - 필터 2 차단 주파수 - - - - Q/Resonance 2 - Q/공명 2 - - - - Gain 2 - 이득 2 - - - - - Low-pass - 저역 통과 - - - - - Hi-pass - 고역 통과 - - - - - Band-pass csg - 대역 통과 csg - - - - - Band-pass czpg - 대역 통과 czpg - - - - - Notch - 노치 - - - - - All-pass - 전역 통과 - - - - - Moog - Moog - - - - - 2x Low-pass - 2x 저역 통과 - - - - - RC Low-pass 12 dB/oct - RC 저역 통과 12 dB/oct - - - - - RC Band-pass 12 dB/oct - RC 대역 통과 12 dB/oct - - - - - RC High-pass 12 dB/oct - RC 고역 통과 12 dB/oct - - - - - RC Low-pass 24 dB/oct - RC 저역 통과 24 dB/oct - - - - - RC Band-pass 24 dB/oct - RC 대역 통과 24 dB/oct - - - - - RC High-pass 24 dB/oct - RC 고역 통과 24 dB/oct - - - - - Vocal Formant - - - - - - 2x Moog - 2x Moog - - - - - SV Low-pass - SV 저역 통과 - - - - - SV Band-pass - SV 대역 통과 - - - - - SV High-pass - SV 고역 통과 - - - - - SV Notch - SV 노치 - - - - - Fast Formant - - - - - - Tripole - - - - - Editor - - - Transport controls - - - - - Play (Space) - 재생 (Space) - - - - Stop (Space) - 정지 (Space) - - - - Record - 녹음 - - - - Record while playing - 재생하면서 녹음 - - - - Toggle Step Recording - - - - - Effect - - - Effect enabled - 효과 활성화됨 - - - - Wet/Dry mix - - - - - Gate - 게이트 - - - - Decay - - - - - EffectChain - - - Effects enabled - 효과 활성화됨 - - - - EffectRackView - - - EFFECTS CHAIN - 효과 체인 - - - - Add effect - 효과 추가 - - - - EffectSelectDialog - - - Add effect - 효과 추가 - - - - - Name - 이름 - - - - Type - 형태 - - - - Description - 요약 - - - - Author - 개발자 - - - - EffectView - - - On/Off - 켬/끔 - - - - W/D - - - - - Wet Level: - - - - - DECAY - - - - - Time: - - - - - GATE - 게이트 - - - - Gate: - 게이트: - - - - Controls - 컨트롤 - - - - Move &up - 위로 이동(&U) - - - - Move &down - 아래로 이동(&D) - - - - &Remove this plugin - 플러그인 제거(&R) - - - - EnvelopeAndLfoParameters - - - Env pre-delay - - - - - Env attack - - - - - Env hold - - - - - Env decay - - - - - Env sustain - - - - - Env release - - - - - Env mod amount - - - - - LFO pre-delay - - - - - LFO attack - - - - - LFO frequency - LFO 주파수 - - - - LFO mod amount - - - - - LFO wave shape - - - - - LFO frequency x 100 - LFO 주파수 x 100 - - - - Modulate env amount - - - - - EnvelopeAndLfoView - - - - DEL - - - - - - Pre-delay: - - - - - - ATT - - - - - - Attack: - - - - - HOLD - - - - - Hold: - - - - - DEC - 감쇠 - - - - Decay: - 감쇠: - - - - SUST - - - - - Sustain: - - - - - REL - - - - - Release: - - - - - - AMT - - - - - - Modulation amount: - - - - - SPD - 속도 - - - - Frequency: - 주파수: - - - - FREQ x 100 - 주파수 x 100 - - - - Multiply LFO frequency by 100 - - - - - MODULATE ENV AMOUNT - - - - - Control envelope amount by this LFO - - - - - ms/LFO: - ms/LFO: - - - - Hint - - - - - Drag and drop a sample into this window. - - - - - EqControls - - - Input gain - 입력 이득 - - - - Output gain - 출력 이득 - - - - Low-shelf gain - - - - - Peak 1 gain - 피크 1 이득 - - - - Peak 2 gain - 피크 2 이득 - - - - Peak 3 gain - 피크 3 이득 - - - - Peak 4 gain - 피크 4 이득 - - - - High-shelf gain - - - - - HP res - 고역 필터 공명 - - - - Low-shelf res - - - - - Peak 1 BW - 피크 1 대역폭 - - - - Peak 2 BW - 피크 2 대역폭 - - - - Peak 3 BW - 피크 3 대역폭 - - - - Peak 4 BW - 피크 4 대역폭 - - - - High-shelf res - - - - - LP res - 저역 필터 공명 - - - - HP freq - 고역 필터 주파수 - - - - Low-shelf freq - - - - - Peak 1 freq - 피크 1 주파수 - - - - Peak 2 freq - 피크 2 주파수 - - - - Peak 3 freq - 피크 3 주파수 - - - - Peak 4 freq - 피크 4 주파수 - - - - High-shelf freq - - - - - LP freq - 저역 필터 주파수 - - - - HP active - - - - - Low-shelf active - - - - - Peak 1 active - 피크 1 활성화 - - - - Peak 2 active - 피크 2 활성화 - - - - Peak 3 active - 피크 3 활성화 - - - - Peak 4 active - 피크 4 활성화 - - - - High-shelf active - - - - - LP active - - - - - LP 12 - LP 12 - - - - LP 24 - LP 24 - - - - LP 48 - LP 48 - - - - HP 12 - HP 12 - - - - HP 24 - HP 24 - - - - HP 48 - HP 48 - - - - Low-pass type - 저역 통과 필터 유형 - - - - High-pass type - 고역 통과 필터 유형 - - - - Analyse IN - 입력 신호 분석 - - - - Analyse OUT - 출력 신호 분석 - - - - EqControlsDialog - - - HP - - - - - Low-shelf - - - - - Peak 1 - 피크 1 - - - - Peak 2 - 피크 2 - - - - Peak 3 - 피크 3 - - - - Peak 4 - 피크 4 - - - - High-shelf - - - - - LP - - - - - Input gain - 입력 이득 - - - - - - Gain - 이득 - - - - Output gain - 출력 이득 - - - - Bandwidth: - 대역폭: - - - - Octave - 옥타브 - - - - Resonance : - 공명 : - - - - Frequency: - 주파수: - - - - LP group - - - - - HP group - - - - - EqHandle - - - Reso: - 공명: - - - - BW: - 대역폭: - - - - - Freq: - 주파수: + 새 설정을 불러오려면 엔진을 다시 시작합니다 @@ -4555,22 +2247,22 @@ If you are unsure, leave it as 'Automatic'. Export as loop (remove extra bar) - 루프 곡처럼 내보내기 (추가적 마디 제거) + 루프로 내보내기 (후반부 마디 제거) Export between loop markers - 반복 마커 사이 구간만 내보내기 + 루프 마킹도구 사이에서 내보내기 Render Looped Section: - + 렌더 루프된 섹션: time(s) - + 시간 @@ -4585,7 +2277,7 @@ If you are unsure, leave it as 'Automatic'. Sampling rate: - 샘플 레이트: + 샘플링 레이트: @@ -4655,7 +2347,7 @@ If you are unsure, leave it as 'Automatic'. Compression level: - 압축률: + 압축 수준: @@ -4710,2144 +2402,670 @@ If you are unsure, leave it as 'Automatic'. Zero order hold - + 0차 홀드 Sinc worst (fastest) - 최저 품질 sinc (가장 빠름) + Sinc 최저 (가장 빠름) Sinc medium (recommended) - 보통 품질 sinc (추천) + Sinc 중간 (권장됨) Sinc best (slowest) - 최고 품질 sinc (가장 느림) + Sinc 최고 (가장 느림) - - Oversampling: - 오버샘플링: - - - - 1x (None) - 1x (사용하지 않음) - - - - 2x - 2x - - - - 4x - 4x - - - - 8x - 8x - - - + Start 시작 - + Cancel 취소 - - - Could not open file - 파일을 열 수 없음 - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - 파일 %1을(를) 쓰기 위하여 열 수 없습니다. -경로에 파일이 존재하고 파일에 쓸 수 있는 권한이 있는지 확인 후 다시 시도하시기 바랍니다! - - - - Export project to %1 - %1(으)로 프로젝트 내보내기 - - - - ( Fastest - biggest ) - ( 가장 빠르게 - 용량 가장 큼 ) - - - - ( Slowest - smallest ) - ( 가장 느리게 - 용량 가장 작음 ) - - - - Error - 오류 - - - - Error while determining file-encoder device. Please try to choose a different output format. - 파일 인코더를 결정하는 중 오류가 발생하였습니다. 다른 포맷을 선택하여 다시 시도해 보세요. - - - - Rendering: %1% - 렌더링: %1% - - - - Fader - - - Set value - 값 설정 - - - - Please enter a new value between %1 and %2: - %1부터 %2까지의 값을 입력하세요: - - - - FileBrowser - - - User content - - - - - Factory content - - - - - Browser - 탐색기 - - - - Search - 검색 - - - - Refresh list - 목록 새로고침 - - - - FileBrowserTreeWidget - - - Send to active instrument-track - 활성화된 악기 트랙에서 열기 - - - - Open containing folder - - - - - Song Editor - 노래 편집기 - - - - BB Editor - - - - - Send to new AudioFileProcessor instance - - - - - Send to new instrument track - - - - - (%2Enter) - - - - - Send to new sample track (Shift + Enter) - - - - - Loading sample - 샘플을 로딩하는 중 - - - - Please wait, loading sample for preview... - 미리보기를 위하여 샘플을 로딩하는 중입니다. 잠시 기다려 주세요... - - - - Error - 오류 - - - - %1 does not appear to be a valid %2 file - - - - - --- Factory files --- - - - - - FlangerControls - - - Delay samples - - - - - LFO frequency - LFO 주파수 - - - - Seconds - - - - - Stereo phase - - - - - Regen - - - - - Noise - 잡음 - - - - Invert - 파형 반전 - - - - FlangerControlsDialog - - - DELAY - 지연 - - - - Delay time: - 지연 시간: - - - - RATE - - - - - Period: - - - - - AMNT - - - - - Amount: - - - - - PHASE - - - - - Phase: - - - - - FDBK - 피드백 - - - - Feedback amount: - - - - - NOISE - 잡음 - - - - White noise amount: - - - - - Invert - 파형 반전 - - - - FreeBoyInstrument - - - Sweep time - - - - - Sweep direction - - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle - - - - - Channel 1 volume - - - - - - - Volume sweep direction - - - - - - - Length of each step in sweep - - - - - Channel 2 volume - - - - - Channel 3 volume - - - - - Channel 4 volume - - - - - Shift Register width - - - - - Right output level - - - - - Left output level - - - - - Channel 1 to SO2 (Left) - - - - - Channel 2 to SO2 (Left) - - - - - Channel 3 to SO2 (Left) - - - - - Channel 4 to SO2 (Left) - - - - - Channel 1 to SO1 (Right) - - - - - Channel 2 to SO1 (Right) - - - - - Channel 3 to SO1 (Right) - - - - - Channel 4 to SO1 (Right) - - - - - Treble - - - - - Bass - - - - - FreeBoyInstrumentView - - - Sweep time: - - - - - Sweep time - - - - - Sweep rate shift amount: - - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle: - - - - - - Wave pattern duty cycle - - - - - Square channel 1 volume: - - - - - Square channel 1 volume - - - - - - - Length of each step in sweep: - - - - - - - Length of each step in sweep - - - - - Square channel 2 volume: - - - - - Square channel 2 volume - - - - - Wave pattern channel volume: - - - - - Wave pattern channel volume - - - - - Noise channel volume: - - - - - Noise channel volume - - - - - SO1 volume (Right): - - - - - SO1 volume (Right) - - - - - SO2 volume (Left): - - - - - SO2 volume (Left) - - - - - Treble: - - - - - Treble - - - - - Bass: - - - - - Bass - - - - - Sweep direction - - - - - - - - - Volume sweep direction - - - - - Shift register width - - - - - Channel 1 to SO1 (Right) - - - - - Channel 2 to SO1 (Right) - - - - - Channel 3 to SO1 (Right) - - - - - Channel 4 to SO1 (Right) - - - - - Channel 1 to SO2 (Left) - - - - - Channel 2 to SO2 (Left) - - - - - Channel 3 to SO2 (Left) - - - - - Channel 4 to SO2 (Left) - - - - - Wave pattern graph - - - - - MixerChannelView - - - Channel send amount - - - - - Move &left - 왼쪽으로 이동(&L) - - - - Move &right - 오른쪽으로 이동(&R) - - - - Rename &channel - 채널 이름 바꾸기(&C) - - - - R&emove channel - 채널 제거(&R) - - - - Remove &unused channels - 사용하지 않는 채널 제거(&U) - - - - Set channel color - - - - - Remove channel color - - - - - Pick random channel color - - - - - MixerChannelLcdSpinBox - - - Assign to: - 채널 할당: - - - - New mixer Channel - 새 FX 채널 - - - - Mixer - - - Master - 마스터 - - - - - - Channel %1 - FX %1 - - - - Volume - 음량 - - - - Mute - 음소거 - - - - Solo - 독주 - - - - MixerView - - - Mixer - FX-믹서 - - - - Fader %1 - FX 페이더 %1 - - - - Mute - 음소거 - - - - Mute this mixer channel - 이 채널 음소거 - - - - Solo - 독주 - - - - Solo mixer channel - 이 채널 독주 - - - - MixerRoute - - - - Amount to send from channel %1 to channel %2 - 채널 %1에서 채널 %2(으)로 보낼 양 - - - - GigInstrument - - - Bank - 뱅크 - - - - Patch - 패치 - - - - Gain - 이득 - - - - GigInstrumentView - - - - Open GIG file - GIG 파일 열기 - - - - Choose patch - 패치 선택 - - - - Gain: - 이득: - - - - GIG Files (*.gig) - GIG 파일 (*.gig) - - - - GuiApplication - - - Working directory - 작업 경로 - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - LMMS 작업 경로 %1이(가) 존재하지 않습니다. 지금 만드시겠습니까? 나중에 편집 -> 설정에서 변경할 수 있습니다. - - - - Preparing UI - UI 준비 - - - - Preparing song editor - 노래 편집기 준비 - - - - Preparing mixer - 믹서 준비 - - - - Preparing controller rack - 컨트롤러 랙 준비 - - - - Preparing project notes - 프로젝트 노트 준비 - - - - Preparing beat/bassline editor - 비트/베이스 라인 편집기 준비 - - - - Preparing piano roll - 피아노 롤 준비 - - - - Preparing automation editor - 오토메이션 편집기 준비 - - - - InstrumentFunctionArpeggio - - - Arpeggio - 아르페지오 - - - - Arpeggio type - 아르페지오 형태 - - - - Arpeggio range - 아르페지오 범위 - - - - Note repeats - - - - - Cycle steps - - - - - Skip rate - - - - - Miss rate - - - - - Arpeggio time - 아르페지오 시간 - - - - Arpeggio gate - 아르페지오 게이트 - - - - Arpeggio direction - 아르페지오 방향 - - - - Arpeggio mode - 아르페지오 모드 - - - - Up - 위로 - - - - Down - 아래로 - - - - Up and down - 위 다음 아래 - - - - Down and up - 아래 다음 위 - - - - Random - 무작위 - - - - Free - 자유 - - - - Sort - 정렬 - - - - Sync - 동기화 - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - 아르페지오 - - - - RANGE - 범위 - - - - Arpeggio range: - 아르페지오 범위: - - - - octave(s) - 옥타브 - - - - REP - - - - - Note repeats: - - - - - time(s) - - - - - CYCLE - - - - - Cycle notes: - - - - - note(s) - - - - - SKIP - - - - - Skip rate: - - - - - - - % - % - - - - MISS - - - - - Miss rate: - - - - - TIME - 시간 - - - - Arpeggio time: - 아르페지오 시간: - - - - ms - ms - - - - GATE - 게이트 - - - - Arpeggio gate: - 아르페지오 게이트: - - - - Chord: - 코드: - - - - Direction: - 방향: - - - - Mode: - 모드: - InstrumentFunctionNoteStacking - + octave 옥타브 - - - - Major - - - - - Majb5 - - - - - minor - - - - - minb5 - - - - - sus2 - - - - - sus4 - - - - - aug - - - augsus4 - + + Major + 장조 - tri - + Majb5 + Majb5 + + + + minor + 단조 + minb5 + minb5 + + + + sus2 + sus2 + + + + sus4 + sus4 + + + + aug + aug + + + + augsus4 + augsus4 + + + + tri + tri + + + 6 6 - + 6sus4 6sus4 - + 6add9 6add9 - + m6 - + m6 - + m6add9 - + m6add9 - + 7 7 - + 7sus4 7sus4 - + 7#5 7#5 - + 7b5 7b5 - + 7#9 7#9 - + 7b9 7b9 - + 7#5#9 7#5#9 - + 7#5b9 7#5b9 - + 7b5b9 7b5b9 - + 7add11 7add11 - + 7add13 7add13 - + 7#11 7#11 - - - Maj7 - - - - - Maj7b5 - - - - - Maj7#5 - - - - - Maj7#11 - - - - - Maj7add13 - - - - - m7 - - - - - m7b5 - - - m7b9 - + Maj7 + Maj7 - m7add11 - + Maj7b5 + Maj7b5 - m7add13 - + Maj7#5 + Maj7#5 - m-Maj7 - + Maj7#11 + Maj7#11 - m-Maj7add11 - + Maj7add13 + Maj7add13 - m-Maj7add13 - + m7 + m7 + + + + m7b5 + m7b5 + m7b9 + m7b9 + + + + m7add11 + m7add11 + + + + m7add13 + m7add13 + + + + m-Maj7 + m-Maj7 + + + + m-Maj7add11 + m-Maj7add11 + + + + m-Maj7add13 + m-Maj7add13 + + + 9 9 - + 9sus4 9sus4 - + add9 add9 - + 9#5 9#5 - + 9b5 9b5 - + 9#11 9#11 - + 9b13 9b13 - - - Maj9 - - - - - Maj9sus4 - - - - - Maj9#5 - - - - - Maj9#11 - - - - - m9 - - - - - madd9 - - - - - m9b5 - - - m9-Maj7 - + Maj9 + Maj9 + + + + Maj9sus4 + Maj9sus4 + Maj9#5 + Maj9#5 + + + + Maj9#11 + Maj9#11 + + + + m9 + m9 + + + + madd9 + madd9 + + + + m9b5 + m9b5 + + + + m9-Maj7 + m9-Maj7 + + + 11 11 - + 11b9 11b9 - + Maj11 - + Maj11 - + m11 - + m11 - + m-Maj11 - + m-Maj11 - + 13 13 - + 13#9 13#9 - + 13b9 13b9 - + 13b5b9 13b5b9 - - - Maj13 - - - - - m13 - - - - - m-Maj13 - - - - - Harmonic minor - 화성 단음계 - - - - Melodic minor - 가락 단음계 - - Whole tone - + Maj13 + Maj13 - Diminished - + m13 + m13 - Major pentatonic - - - - - Minor pentatonic - - - - - Jap in sen - + m-Maj13 + m-Maj13 - Major bebop - + Harmonic minor + 하모닉 단음계 - Dominant bebop - + Melodic minor + 가락 단조 - Blues - + Whole tone + 온음 - Arabic - + Diminished + - Enigmatic - + Major pentatonic + 장조 5음 - Neopolitan - + Minor pentatonic + 단조 5음 - Neopolitan minor - + Jap in sen + 일본 음계 - Hungarian minor - + Major bebop + 장조 비밥 - Dorian - + Dominant bebop + 딸림음 비밥 - Phrygian - + Blues + 블루스 - Lydian - + Arabic + 아라비아풍 - Mixolydian - + Enigmatic + 수수께끼 - Aeolian - + Neopolitan + 네오폴리탄 - Locrian - + Neopolitan minor + 네오폴리탄 단조 - Minor - + Hungarian minor + 헝가리 단조 - Chromatic - + Dorian + 도리아 선법 - Half-Whole Diminished - + Phrygian + 프리지안 + + + + Lydian + 리디아 선법 + Mixolydian + 믹솔리디아 선법 + + + + Aeolian + 에올리아 선법 + + + + Locrian + 로크리아 선법 + + + + Minor + 단조 + + + + Chromatic + 반음 + + + + Half-Whole Diminished + 반음 감 + + + 5 5 - + Phrygian dominant - + 프리지안 딸림음 - + Persian - - - - - Chords - 코드 - - - - Chord type - 코드 종류 - - - - Chord range - 코드 범위 - - - - InstrumentFunctionNoteStackingView - - - STACKING - 코드 쌓기 - - - - Chord: - 코드: - - - - RANGE - 범위 - - - - Chord range: - 코드 범위: - - - - octave(s) - 옥타브 - - - - InstrumentMidiIOView - - - ENABLE MIDI INPUT - MIDI 입력 활성화 - - - - ENABLE MIDI OUTPUT - MIDI 출력 활성화 - - - - - CHAN - This string must be be short, its width must be less than * width of LCD spin-box of two digits - - - - - - VELOC - This string must be be short, its width must be less than * width of LCD spin-box of three digits - - - - - PROG - This string must be be short, its width must be less than the * width of LCD spin-box of three digits - - - - - NOTE - This string must be be short, its width must be less than * width of LCD spin-box of three digits - - - - - MIDI devices to receive MIDI events from - - - - - MIDI devices to send MIDI events to - - - - - CUSTOM BASE VELOCITY - 사용자 지정 기준 벨로시티 - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. - 100% 음표 벨로시티에 해당하는 MIDI 벨로시티를 지정합니다. - - - - BASE VELOCITY - 기준 벨로시티 - - - - InstrumentTuningView - - - MASTER PITCH - 마스터 피치 - - - - Enables the use of master pitch - 마스터 피치 사용 + 페르시안 InstrumentSoundShaping - + VOLUME - 음량 + 볼륨 - + Volume - 음량 + 볼륨 - + CUTOFF 컷오프 - - + Cutoff frequency 차단 주파수 - + RESO 공명 - + Resonance 공명 - - - Envelopes/LFOs - 엔벨로프/LFO - - - - Filter type - 필터 종류 - - - - Q/Resonance - Q/공명 - - - - Low-pass - 저역 통과 - - - - Hi-pass - 고역 통과 - - - - Band-pass csg - 대역 통과 csg - - - - Band-pass czpg - 대역 통과 czpg - - - - Notch - 노치 - - - - All-pass - 전역 통과 - - - - Moog - Moog - - - - 2x Low-pass - 2x 저역 통과 - - - - RC Low-pass 12 dB/oct - RC 저역 통과 12 dB/oct - - - - RC Band-pass 12 dB/oct - RC 대역 통과 12 dB/oct - - - - RC High-pass 12 dB/oct - RC 고역 통과 12 dB/oct - - - - RC Low-pass 24 dB/oct - RC 저역 통과 24 dB/oct - - - - RC Band-pass 24 dB/oct - RC 대역 통과 24 dB/oct - - - - RC High-pass 24 dB/oct - RC 고역 통과 24 dB/oct - - - - Vocal Formant - - - - - 2x Moog - 2x Moog - - - - SV Low-pass - SV 저역 통과 - - - - SV Band-pass - SV 대역 통과 - - - - SV High-pass - SV 고역 통과 - - - - SV Notch - SV 노치 - - - - Fast Formant - - - - - Tripole - - - InstrumentSoundShapingView + JackAppDialog - - TARGET - 대상 - - - - FILTER - 필터 - - - - FREQ - 주파수 - - - - Cutoff frequency: - 차단 주파수: - - - - Hz - Hz - - - - Q/RESO - Q/공명 - - - - Q/Resonance: - Q/공명: - - - - Envelopes, LFOs and filters are not supported by the current instrument. - 이 악기는 엔벨로프, LFO, 필터를 지원하지 않습니다. - - - - InstrumentTrack - - - - unnamed_track - 이름 없는 트랙 - - - - Base note - 기준 음 - - - - First note + + Add JACK Application - - Last note - 마지막 박자 - - - - Volume - 음량 - - - - Panning - 패닝 - - - - Pitch - 피치 - - - - Pitch range - 피치 범위 - - - - Mixer channel - FX 채널 - - - - Master pitch - 마스터 피치 - - - - Enable/Disable MIDI CC + + Note: Features not implemented yet are greyed out - - CC Controller %1 + + Application - - - Default preset - 기본 프리셋 - - - - InstrumentTrackView - - - Volume - 음량 - - - - Volume: - 음량: - - - - VOL - 음량 - - - - Panning - 패닝 - - - - Panning: - 패닝: - - - - PAN - 패닝 - - - - MIDI - MIDI - - - - Input - 입력 - - - - Output - 출력 - - - - Open/Close MIDI CC Rack + + Name: - - Channel %1: %2 - FX %1: %2 - - - - InstrumentTrackWindow - - - GENERAL SETTINGS - 일반 설정 + + Application: + - - Volume - 음량 + + From template + - - Volume: - 음량: + + Custom + - - VOL - 음량 + + Template: + - - Panning - 패닝 + + Command: + - - Panning: - 패닝: + + Setup + 셋업 - - PAN - 패닝 + + Session Manager: + - - Pitch - 피치 + + None + - - Pitch: - 피치: + + Audio inputs: + - - cents - 센트 + + MIDI inputs: + - - PITCH - 피치 + + Audio outputs: + - - Pitch range (semitones) - 피치 범위(반음) + + MIDI outputs: + - - RANGE - 범위 + + Take control of main application window + - - Mixer channel - FX 채널 + + Workarounds + - - CHANNEL - FX + + Wait for external application start (Advanced, for Debug only) + - - Save current instrument track settings in a preset file - 프리셋 파일에 현재 악기 트랙의 설정 저장 + + Capture only the first X11 Window + - - SAVE - 저장 + + Use previous client output buffer as input for the next client + - - Envelope, filter & LFO - 엔벨로프, 필터 & LFO + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + - - Chord stacking & arpeggio - 코드 쌓기 & 아르페지오 + + Error here + - - Effects - 효과 - - - - MIDI - MIDI - - - - Miscellaneous - 기타 - - - - Save preset - 프리셋 저장 - - - - XML preset file (*.xpf) - XML 프리셋 파일 (*.xpf) - - - - Plugin - 플러그인 - - - - JackApplicationW - - + NSM applications cannot use abstract or absolute paths - + NSM applications cannot use CLI arguments - + You need to save the current Carla project before NSM can be used @@ -6855,945 +3073,9 @@ Please make sure you have write permission to the file and the directory contain JuceAboutW - - About JUCE - - - - - <b>About JUCE</b> - - - - - This program uses JUCE version 3.x.x. - - - - - JUCE (Jules' Utility Class Extensions) is an all-encompassing C++ class library for developing cross-platform software. - -It contains pretty much everything you're likely to need to create most applications, and is particularly well-suited for building highly-customised GUIs, and for handling graphics and sound. - -JUCE is licensed under the GNU Public Licence version 2.0. -One module (juce_core) is permissively licensed under the ISC. - -Copyright (C) 2017 ROLI Ltd. - - - - + This program uses JUCE version %1. - - - - - Knob - - - Set linear - 선형으로 설정 - - - - Set logarithmic - 로그스케일로 설정 - - - - - Set value - 값 설정 - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - -96.0 dBFS부터 6.0 dBFS까지의 값을 입력하세요: - - - - Please enter a new value between %1 and %2: - %1부터 %2까지의 값을 입력하세요: - - - - LadspaControl - - - Link channels - 채널 링크 - - - - LadspaControlDialog - - - Link Channels - 채널 링크 - - - - Channel - 채널 - - - - LadspaControlView - - - Link channels - 채널 링크 - - - - Value: - 값: - - - - LadspaEffect - - - Unknown LADSPA plugin %1 requested. - 알 수 없는 LADSPA 플러그인 %1이(가) 요청되었습니다. - - - - LcdFloatSpinBox - - - Set value - 값 설정 - - - - Please enter a new value between %1 and %2: - %1부터 %2까지의 값을 입력하세요: - - - - LcdSpinBox - - - Set value - 값 설정 - - - - Please enter a new value between %1 and %2: - %1부터 %2까지의 값을 입력하세요: - - - - LeftRightNav - - - - - Previous - 이전 - - - - - - Next - 다음 - - - - Previous (%1) - 이전 (%1) - - - - Next (%1) - 다음 (%1) - - - - LfoController - - - LFO Controller - LFO 컨트롤러 - - - - Base value - 기준 값 - - - - Oscillator speed - - - - - Oscillator amount - - - - - Oscillator phase - 오실레이터 위상 - - - - Oscillator waveform - 오실레이터 파형 - - - - Frequency Multiplier - - - - - LfoControllerDialog - - - LFO - LFO - - - - BASE - 기준 - - - - Base: - 기준: - - - - FREQ - 주파수 - - - - LFO frequency: - - - - - AMNT - - - - - Modulation amount: - - - - - PHS - 위상 - - - - Phase offset: - 위상: - - - - degrees - - - - - Sine wave - 사인파 - - - - Triangle wave - 삼각파 - - - - Saw wave - 톱니파 - - - - Square wave - 사각파 - - - - Moog saw wave - Moog 톱니파 - - - - Exponential wave - 지수형 파형 - - - - White noise - 화이트 노이즈 - - - - User-defined shape. -Double click to pick a file. - 사용자 지정 파형 -더블클릭하여 파일을 선택하세요. - - - - Mutliply modulation frequency by 1 - 변조 주파수 값을 그대로 사용 - - - - Mutliply modulation frequency by 100 - - - - - Divide modulation frequency by 100 - - - - - Engine - - - Generating wavetables - - - - - Initializing data structures - 자료 구조 초기화 중 - - - - Opening audio and midi devices - 오디오 장치와 MIDI 장치를 여는 중 - - - - Launching mixer threads - 믹서 스레드를 시작하는 중 - - - - MainWindow - - - Configuration file - 설정 파일 - - - - Error while parsing configuration file at line %1:%2: %3 - 설정 파일 분석 중 오류 발생 (행 %1:%2: %3) - - - - Could not open file - 파일을 열 수 없음 - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - 파일 %1을(를) 쓰기 위하여 열 수 없습니다. -경로에 파일이 존재하고 파일에 쓸 수 있는 권한이 있는지 확인 후 다시 시도하시기 바랍니다! - - - - Project recovery - 프로젝트 복구 - - - - There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - 복구 파일이 존재합니다. 이전에 LMMS가 비정상 종료되었거나 여러 개의 LMMS 인스턴스가 동시에 실행 중인 것 같습니다. 복구 파일로부터 프로젝트를 복구하시겠습니까? - - - - - Recover - 복구 - - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - 파일을 복구합니다. 다른 LMMS 인스턴스가 실행 중이지 않은 상태에서 선택하시기 바랍니다. - - - - - Discard - 저장하지 않음 - - - - Launch a default session and delete the restored files. This is not reversible. - 복구 파일을 삭제하고 기본 프로젝트를 불러옵니다. 이 동작은 되돌릴 수 없습니다. - - - - Version %1 - 버전 %1 - - - - Preparing plugin browser - 플러그인 탐색기 준비 - - - - Preparing file browsers - 파일 탐색기 준비 - - - - My Projects - 내 프로젝트 - - - - My Samples - 내 샘플 - - - - My Presets - 내 사전 설정 - - - - My Home - 내 홈 디렉터리 - - - - Root directory - 최상위 디렉토리 - - - - Volumes - 음량 - - - - My Computer - 내 컴퓨터 - - - - &File - 파일(&F) - - - - &New - 새로 만들기(&N) - - - - &Open... - 열기(&O)... - - - - Loading background picture - - - - - &Save - 저장(&S) - - - - Save &As... - 다른 이름으로 저장(&A)... - - - - Save as New &Version - 새로운 버전으로 저장(&V) - - - - Save as default template - 기본 템플릿으로 저장 - - - - Import... - 가져오기... - - - - E&xport... - 내보내기(&X)... - - - - E&xport Tracks... - 트랙 내보내기(&X)... - - - - Export &MIDI... - MIDI 내보내기(&M)... - - - - &Quit - 끝내기(&Q) - - - - &Edit - 편집(&E) - - - - Undo - 실행 취소 - - - - Redo - 다시 실행 - - - - Settings - 설정 - - - - &View - 보기(&V) - - - - &Tools - 도구(&T) - - - - &Help - 도움말(&H) - - - - Online Help - 온라인 도움말 - - - - Help - 도움말 - - - - About - 정보 - - - - Create new project - 새 프로젝트 생성 - - - - Create new project from template - 템플릿에서 새 프로젝트 생성 - - - - Open existing project - 기존 프로젝트 열기 - - - - Recently opened projects - 최근에 사용한 프로젝트 - - - - Save current project - 현재 프로젝트 저장 - - - - Export current project - 현재 프로젝트 내보내기 - - - - Metronome - 메트로놈 - - - - - Song Editor - 노래 편집기 - - - - - Beat+Bassline Editor - 비트/베이스 라인 편집기 - - - - - Piano Roll - 피아노 롤 - - - - - Automation Editor - 오토메이션 편집기 - - - - - Mixer - FX 믹서 - - - - Show/hide controller rack - 컨트롤러 랙 보이기/숨기기 - - - - Show/hide project notes - 프로젝트 노트 보이기/숨기기 - - - - Untitled - 제목 없음 - - - - Recover session. Please save your work! - 복구 세션입니다. 프로젝트 파일을 저장해 주세요! - - - - LMMS %1 - LMMS %1 - - - - Recovered project not saved - 복구된 프로젝트가 저장되지 않음 - - - - This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? - 이 프로젝트는 이전 세션으로부터 복구되었지만 아직 저장되지 않았습니다. 저장하지 않을 경우 지금까지의 작업을 잃게 될 것입니다. 지금 저장하시겠습니까? - - - - Project not saved - 프로젝트 저장되지 않음 - - - - The current project was modified since last saving. Do you want to save it now? - 이 프로젝트는 마지막 저장 이후 수정되었습니다. 지금 저장하시겠습니까? - - - - Open Project - 프로젝트 열기 - - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - - Save Project - 프로젝트 저장 - - - - LMMS Project - LMMS 프로젝트 - - - - LMMS Project Template - LMMS 프로젝트 템플릿 - - - - Save project template - 프로젝트 템플릿 저장 - - - - Overwrite default template? - 기본 템플릿을 덮어쓰시겠습니까? - - - - This will overwrite your current default template. - 이 작업은 현재의 기본 템플릿을 덮어씁니다. - - - - Help not available - 도움말 사용 불가 - - - - Currently there's no help available in LMMS. -Please visit http://lmms.sf.net/wiki for documentation on LMMS. - - - - - Controller Rack - 컨트롤러 랙 - - - - Project Notes - 프로젝트 노트 - - - - Fullscreen - - - - - Volume as dBFS - 음량을 dBFS 단위로 표시 - - - - Smooth scroll - 부드러운 스크롤 - - - - Enable note labels in piano roll - 피아노 롤에 음표 라벨 표시 - - - - MIDI File (*.mid) - MIDI 파일(*.mid) - - - - - untitled - 제목 없음 - - - - - Select file for project-export... - 프로젝트를 내보낼 파일 선택... - - - - Select directory for writing exported tracks... - 내보낼 트랙 파일들을 저장할 경로 선택... - - - - Save project - 프로젝트 저장 - - - - Project saved - 프로젝트 저장됨 - - - - The project %1 is now saved. - 프로젝트 %1이 저장되었습니다. - - - - Project NOT saved. - 프로젝트가 저장되지 않았습니다. - - - - The project %1 was not saved! - 프로젝트 %1이 저장되지 않았습니다! - - - - Import file - 파일 가져오기 - - - - MIDI sequences - MIDI 시퀀스 - - - - Hydrogen projects - Hydrogen 프로젝트 - - - - All file types - 모든 파일 - - - - MeterDialog - - - - Meter Numerator - 박자표 분자 - - - - Meter numerator - 박자표 분자 - - - - - Meter Denominator - 박자표 분모 - - - - Meter denominator - 박자표 분모 - - - - TIME SIG - 박자 - - - - MeterModel - - - Numerator - 분자 - - - - Denominator - 분모 - - - - MidiCCRackView - - - - MIDI CC Rack - %1 - - - - - MIDI CC Knobs: - - - - - CC %1 - - - - - MidiController - - - MIDI Controller - MIDI 컨트롤러 - - - - unnamed_midi_controller - 이름 없는 MIDI 컨트롤러 - - - - MidiImport - - - - Setup incomplete - 설정 불완전 - - - - You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. - - - - - You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - LMMS가 SoundFont2 플레이어 지원 없이 컴파일되었습니다. MIDI 파일에서 가져온 트랙은 기본적으로 SoundFont2 플레이어로 재생되므로 MIDI 파일을 가져온 뒤 재생하면 아무 소리도 재생되지 않을 것입니다. - - - - MIDI Time Signature Numerator - - - - - MIDI Time Signature Denominator - - - - - Numerator - 분자 - - - - Denominator - 분모 - - - - Track - 트랙 - - - - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - JAK 서버 종료 - - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - JACK 서버가 종료된 것 같습니다. + 이 프로그램은 JUCE 버전 %1을(를) 사용합니다. @@ -7801,71 +3083,71 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MIDI Pattern - + MIDI 패턴 Time Signature: - + 박자표: 1/4 - + 1/4 2/4 - + 2/4 3/4 - + 3/4 4/4 - + 4/4 5/4 - + 5/4 6/4 - + 6/4 Measures: - + 소절: 1 - + 1 2 - + 2 3 - + 3 4 - + 4 @@ -7885,7 +3167,7 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. 8 - + 8 @@ -7895,7 +3177,7 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. 10 - + 10 @@ -7905,7 +3187,7 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. 12 - + 12 @@ -7915,75 +3197,75 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. 14 - + 14 15 - + 15 16 - + 16 Default Length: - + 기본 길이: 1/16 - + 1/16 1/15 - + 1/15 1/12 - + 1/12 1/9 - + 1/9 1/8 - + 1/8 1/6 - + 1/6 1/3 - + 1/3 1/2 - + 1/2 Quantize: - + 퀀타이즈: @@ -7998,2732 +3280,372 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. &Quit - 끝내기(&Q) + 종료(&Q) - - &Insert Mode + + Esc - F - + &Insert Mode + 삽입 모드(&I) - - &Velocity Mode - + + F + F - D - + &Velocity Mode + 벨로시티 모드(&V) - - Select All - + + D + D + Select All + 모두 선택하기 + + + A - - - - - MidiPort - - - Input channel - 입력 채널 - - - - Output channel - 출력 채널 - - - - Input controller - 입력 컨트롤러 - - - - Output controller - 출력 컨트롤러 - - - - Fixed input velocity - 입력 벨로시티 고정값 - - - - Fixed output velocity - 출력 벨로시티 고정값 - - - - Fixed output note - 출력 음높이 고정값 - - - - Output MIDI program - 출력 MIDI 프로그램 - - - - Base velocity - 기준 벨로시티 - - - - Receive MIDI-events - MIDI 이벤트 받기 - - - - Send MIDI-events - MIDI 이벤트 보내기 - - - - MidiSetupWidget - - - Device - - - - - MonstroInstrument - - - Osc 1 volume - 오실레이터 1 음량 - - - - Osc 1 panning - 오실레이터 1 패닝 - - - - Osc 1 coarse detune - - - - - Osc 1 fine detune left - - - - - Osc 1 fine detune right - - - - - Osc 1 stereo phase offset - - - - - Osc 1 pulse width - - - - - Osc 1 sync send on rise - - - - - Osc 1 sync send on fall - - - - - Osc 2 volume - 오실레이터 2 음량 - - - - Osc 2 panning - 오실레이터 2 패닝 - - - - Osc 2 coarse detune - - - - - Osc 2 fine detune left - - - - - Osc 2 fine detune right - - - - - Osc 2 stereo phase offset - - - - - Osc 2 waveform - - - - - Osc 2 sync hard - - - - - Osc 2 sync reverse - - - - - Osc 3 volume - 오실레이터 3 음량 - - - - Osc 3 panning - 오실레이터 3 패닝 - - - - Osc 3 coarse detune - - - - - Osc 3 Stereo phase offset - - - - - Osc 3 sub-oscillator mix - - - - - Osc 3 waveform 1 - - - - - Osc 3 waveform 2 - - - - - Osc 3 sync hard - - - - - Osc 3 Sync reverse - - - - - LFO 1 waveform - LFO 1 파형 - - - - LFO 1 attack - - - - - LFO 1 rate - - - - - LFO 1 phase - LFO 1 위상 - - - - LFO 2 waveform - LFO 2 파형 - - - - LFO 2 attack - - - - - LFO 2 rate - - - - - LFO 2 phase - LFO 2 위상 - - - - Env 1 pre-delay - - - - - Env 1 attack - - - - - Env 1 hold - - - - - Env 1 decay - - - - - Env 1 sustain - - - - - Env 1 release - - - - - Env 1 slope - - - - - Env 2 pre-delay - - - - - Env 2 attack - - - - - Env 2 hold - - - - - Env 2 decay - - - - - Env 2 sustain - - - - - Env 2 release - - - - - Env 2 slope - - - - - Osc 2+3 modulation - - - - - Selected view - - - - - Osc 1 - Vol env 1 - - - - - Osc 1 - Vol env 2 - - - - - Osc 1 - Vol LFO 1 - - - - - Osc 1 - Vol LFO 2 - - - - - Osc 2 - Vol env 1 - - - - - Osc 2 - Vol env 2 - - - - - Osc 2 - Vol LFO 1 - - - - - Osc 2 - Vol LFO 2 - - - - - Osc 3 - Vol env 1 - - - - - Osc 3 - Vol env 2 - - - - - Osc 3 - Vol LFO 1 - - - - - Osc 3 - Vol LFO 2 - - - - - Osc 1 - Phs env 1 - - - - - Osc 1 - Phs env 2 - - - - - Osc 1 - Phs LFO 1 - - - - - Osc 1 - Phs LFO 2 - - - - - Osc 2 - Phs env 1 - - - - - Osc 2 - Phs env 2 - - - - - Osc 2 - Phs LFO 1 - - - - - Osc 2 - Phs LFO 2 - - - - - Osc 3 - Phs env 1 - - - - - Osc 3 - Phs env 2 - - - - - Osc 3 - Phs LFO 1 - - - - - Osc 3 - Phs LFO 2 - - - - - Osc 1 - Pit env 1 - - - - - Osc 1 - Pit env 2 - - - - - Osc 1 - Pit LFO 1 - - - - - Osc 1 - Pit LFO 2 - - - - - Osc 2 - Pit env 1 - - - - - Osc 2 - Pit env 2 - - - - - Osc 2 - Pit LFO 1 - - - - - Osc 2 - Pit LFO 2 - - - - - Osc 3 - Pit env 1 - - - - - Osc 3 - Pit env 2 - - - - - Osc 3 - Pit LFO 1 - - - - - Osc 3 - Pit LFO 2 - - - - - Osc 1 - PW env 1 - - - - - Osc 1 - PW env 2 - - - - - Osc 1 - PW LFO 1 - - - - - Osc 1 - PW LFO 2 - - - - - Osc 3 - Sub env 1 - - - - - Osc 3 - Sub env 2 - - - - - Osc 3 - Sub LFO 1 - - - - - Osc 3 - Sub LFO 2 - - - - - - Sine wave - 사인파 - - - - Bandlimited Triangle wave - 대역 제한 삼각파 - - - - Bandlimited Saw wave - 대역 제한 톱니파 - - - - Bandlimited Ramp wave - 대역 제한 역톱니파 - - - - Bandlimited Square wave - 대역 제한 사각파 - - - - Bandlimited Moog saw wave - 대역 제한 Moog 톱니파 - - - - - Soft square wave - - - - - Absolute sine wave - - - - - - Exponential wave - 지수형 파형 - - - - White noise - 화이트 노이즈 - - - - Digital Triangle wave - 삼각파 - - - - Digital Saw wave - 톱니파 - - - - Digital Ramp wave - 역톱니파 - - - - Digital Square wave - 사각파 - - - - Digital Moog saw wave - Moog 톱니파 - - - - Triangle wave - 삼각파 - - - - Saw wave - 톱니파 - - - - Ramp wave - 역톱니파 - - - - Square wave - 사각파 - - - - Moog saw wave - Moog 톱니파 - - - - Abs. sine wave - - - - - Random - 무작위 - - - - Random smooth - - - - - MonstroView - - - Operators view - - - - - Matrix view - - - - - - - Volume - 음량 - - - - - - Panning - 패닝 - - - - - - Coarse detune - - - - - - - semitones - 반음 - - - - - Fine tune left - - - - - - - - cents - 센트 - - - - - Fine tune right - - - - - - - Stereo phase offset - - - - - - - - - deg - - - - - Pulse width - 펄스 폭 - - - - Send sync on pulse rise - - - - - Send sync on pulse fall - - - - - Hard sync oscillator 2 - - - - - Reverse sync oscillator 2 - - - - - Sub-osc mix - - - - - Hard sync oscillator 3 - - - - - Reverse sync oscillator 3 - - - - - - - - Attack - - - - - - Rate - - - - - - Phase - 위상 - - - - - Pre-delay - - - - - - Hold - - - - - - Decay - - - - - - Sustain - - - - - - Release - - - - - - Slope - - - - - Mix osc 2 with osc 3 - - - - - Modulate amplitude of osc 3 by osc 2 - - - - - Modulate frequency of osc 3 by osc 2 - - - - - Modulate phase of osc 3 by osc 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Modulation amount - - - - - MultitapEchoControlDialog - - - Length - 길이 - - - - Step length: - - - - - Dry - - - - - Dry gain: - - - - - Stages - - - - - Low-pass stages: - - - - - Swap inputs - 좌우 입력 바꾸기 - - - - Swap left and right input channels for reflections - - - - - NesInstrument - - - Channel 1 coarse detune - - - - - Channel 1 volume - - - - - Channel 1 envelope length - - - - - Channel 1 duty cycle - - - - - Channel 1 sweep amount - - - - - Channel 1 sweep rate - - - - - Channel 2 Coarse detune - - - - - Channel 2 Volume - - - - - Channel 2 envelope length - - - - - Channel 2 duty cycle - - - - - Channel 2 sweep amount - - - - - Channel 2 sweep rate - - - - - Channel 3 coarse detune - - - - - Channel 3 volume - - - - - Channel 4 volume - - - - - Channel 4 envelope length - - - - - Channel 4 noise frequency - - - - - Channel 4 noise frequency sweep - - - - - Master volume - 마스터 음량 - - - - Vibrato - 비브라토 - - - - NesInstrumentView - - - - - - Volume - 음량 - - - - - - Coarse detune - - - - - - - Envelope length - - - - - Enable channel 1 - 채널 1 활성화 - - - - Enable envelope 1 - 엔벨로프 1 활성화 - - - - Enable envelope 1 loop - - - - - Enable sweep 1 - - - - - - Sweep amount - - - - - - Sweep rate - - - - - - 12.5% Duty cycle - - - - - - 25% Duty cycle - - - - - - 50% Duty cycle - - - - - - 75% Duty cycle - - - - - Enable channel 2 - 채널 2 활성화 - - - - Enable envelope 2 - 엔벨로프 2 활성화 - - - - Enable envelope 2 loop - - - - - Enable sweep 2 - - - - - Enable channel 3 - 채널 3 활성화 - - - - Noise Frequency - - - - - Frequency sweep - - - - - Enable channel 4 - 채널 4 활성화 - - - - Enable envelope 4 - 엔벨로프 4 활성화 - - - - Enable envelope 4 loop - - - - - Quantize noise frequency when using note frequency - - - - - Use note frequency for noise - - - - - Noise mode - - - - - Master volume - 마스터 음량 - - - - Vibrato - 비브라토 - - - - OpulenzInstrument - - - Patch - 패치 - - - - Op 1 attack - - - - - Op 1 decay - - - - - Op 1 sustain - - - - - Op 1 release - - - - - Op 1 level - - - - - Op 1 level scaling - - - - - Op 1 frequency multiplier - - - - - Op 1 feedback - - - - - Op 1 key scaling rate - - - - - Op 1 percussive envelope - - - - - Op 1 tremolo - - - - - Op 1 vibrato - - - - - Op 1 waveform - - - - - Op 2 attack - - - - - Op 2 decay - - - - - Op 2 sustain - - - - - Op 2 release - - - - - Op 2 level - - - - - Op 2 level scaling - - - - - Op 2 frequency multiplier - - - - - Op 2 key scaling rate - - - - - Op 2 percussive envelope - - - - - Op 2 tremolo - - - - - Op 2 vibrato - - - - - Op 2 waveform - - - - - FM - FM - - - - Vibrato depth - 비브라토 깊이 - - - - Tremolo depth - 트레몰로 깊이 - - - - OpulenzInstrumentView - - - - Attack - - - - - - Decay - - - - - - Release - - - - - - Frequency multiplier - - - - - OscillatorObject - - - Osc %1 waveform - 오실레이터 %1 파형 - - - - Osc %1 harmonic - - - - - - Osc %1 volume - 오실레이터 %1 음량 - - - - - Osc %1 panning - 오실레이터 %1 패닝 - - - - - Osc %1 fine detuning left - - - - - Osc %1 coarse detuning - - - - - Osc %1 fine detuning right - - - - - Osc %1 phase-offset - 오실레이터 %1 위상 - - - - Osc %1 stereo phase-detuning - 오실레이터 %1 좌우 위상차 - - - - Osc %1 wave shape - 오실레이터 %1 파형 - - - - Modulation type %1 - 변조 유형 %1 - - - - Oscilloscope - - - Oscilloscope - 오실로스코프 - - - - Click to enable - 클릭하여 활성화 + A PatchesDialog + Qsynth: Channel Preset - + Qsynth: 채널 프리셋 + Bank selector - + 뱅크 선택기 + Bank 뱅크 + Program selector - + 프로그램 선택기 + Patch 패치 + Name 이름 + OK 확인 + Cancel 취소 - - PatmanView - - - Open patch - - - - - Loop - 루프 - - - - Loop mode - 루프 모드 - - - - Tune - - - - - Tune mode - - - - - No file selected - 파일이 선택되지 않음 - - - - Open patch file - 패치 파일 열기 - - - - Patch-Files (*.pat) - 패치 파일 (*.pat) - - - - MidiClipView - - - Open in piano-roll - 피아노-롤에서 열기 - - - - Set as ghost in piano-roll - - - - - Clear all notes - 전체 음표 지우기 - - - - Reset name - 이름 초기화 - - - - Change name - 이름 바꾸기 - - - - Add steps - - - - - Remove steps - - - - - Clone Steps - - - - - PeakController - - - Peak Controller - 피크 컨트롤러 - - - - Peak Controller Bug - 피크 컨트롤러 버그 - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - 이전 버전 LMMS의 버그로 인해 피크 컨트롤러가 제대로 연결되지 않았을 수 있습니다. 피크 컨트롤러가 제대로 연결되었는지 확인 후 파일을 다시 저장해 주시기 바랍니다. 불편을 드려 죄송합니다. - - - - PeakControllerDialog - - - PEAK - - - - - LFO Controller - LFO 컨트롤러 - - - - PeakControllerEffectControlDialog - - - BASE - 기준 - - - - Base: - 기준: - - - - AMNT - - - - - Modulation amount: - - - - - MULT - - - - - Amount multiplicator: - - - - - ATCK - - - - - Attack: - - - - - DCAY - - - - - Release: - - - - - TRSH - - - - - Treshold: - - - - - Mute output - 출력 음소거 - - - - Absolute value - 절댓값 - - - - PeakControllerEffectControls - - - Base value - 기준 값 - - - - Modulation amount - - - - - Attack - - - - - Release - - - - - Treshold - - - - - Mute output - 출력 음소거 - - - - Absolute value - 절댓값 - - - - Amount multiplicator - - - - - PianoRoll - - - Note Velocity - 음표 벨로시티 - - - - Note Panning - 음표 패닝 - - - - Mark/unmark current semitone - 현재 반음 표시 - - - - Mark/unmark all corresponding octave semitones - - - - - Mark current scale - - - - - Mark current chord - - - - - Unmark all - 모두 표시 해제 - - - - Select all notes on this key - 이 음의 음표 모두 선택 - - - - Note lock - 박자 잠금 - - - - Last note - 마지막 박자 - - - - No key - - - - - No scale - 음계 없음 - - - - No chord - 코드 없음 - - - - Nudge - - - - - Snap - - - - - Velocity: %1% - 벨로시티: %1% - - - - Panning: %1% left - 패닝: %1% 왼쪽 - - - - Panning: %1% right - 패닝: %1% 오른쪽 - - - - Panning: center - 패닝: 가운데 - - - - Glue notes failed - - - - - Please select notes to glue first. - - - - - Please open a clip by double-clicking on it! - 더블클릭하여 패턴을 열어주세요! - - - - - Please enter a new value between %1 and %2: - %1부터 %2까지의 값을 입력하세요: - - - - PianoRollWindow - - - Play/pause current clip (Space) - 현재 패턴 재생/일시정지 (Space) - - - - Record notes from MIDI-device/channel-piano - - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - - - - - Record notes from MIDI-device/channel-piano, one step at the time - - - - - Stop playing of current clip (Space) - 현재 패턴 정지 (Space) - - - - Edit actions - 편집 동작 - - - - Draw mode (Shift+D) - 그리기 모드 (Shift+D) - - - - Erase mode (Shift+E) - 지우기 모드 (Shift+E) - - - - Select mode (Shift+S) - 선택 모드 (Shift+S) - - - - Pitch Bend mode (Shift+T) - - - - - Quantize - - - - - Quantize positions - - - - - Quantize lengths - - - - - File actions - - - - - Import clip - - - - - - Export clip - - - - - Copy paste controls - 복사/붙여넣기 컨트롤 - - - - Cut (%1+X) - 잘라내기 (%1+X) - - - - Copy (%1+C) - 복사 (%1+C) - - - - Paste (%1+V) - 붙여넣기 (%1+V) - - - - Timeline controls - - - - - Glue - - - - - Knife - - - - - Fill - - - - - Cut overlaps - - - - - Min length as last - - - - - Max length as last - - - - - Zoom and note controls - - - - - Horizontal zooming - 수평 줌 - - - - Vertical zooming - 수직 줌 - - - - Quantization - - - - - Note length - 음표 길이 - - - - Key - - - - - Scale - 음계 - - - - Chord - 코드 - - - - Snap mode - - - - - Clear ghost notes - - - - - - Piano-Roll - %1 - 피아노-롤 - %1 - - - - - Piano-Roll - no clip - 피아노-롤 - 패턴 없음 - - - - - XML clip file (*.xpt *.xptz) - - - - - Export clip success - - - - - Clip saved to %1 - - - - - Import clip. - - - - - You are about to import a clip, this will overwrite your current clip. Do you want to continue? - - - - - Open clip - - - - - Import clip success - - - - - Imported clip %1! - - - - - PianoView - - - Base note - 기준 음 - - - - First note - - - - - Last note - 마지막 박자 - - - - Plugin - - - Plugin not found - 플러그인을 찾을 수 없음 - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - 플러그인 "%1"을(를) 찾을 수 없거나 읽어올 수 없습니다. -이유: %2 - - - - Error while loading plugin - 플러그인 로딩 오류 - - - - Failed to load plugin "%1"! - 플러그인 "%1"을(를) 로딩할 수 없습니다! - - PluginBrowser - - Instrument Plugins - 악기 플러그인 - - - - Instrument browser - 악기 탐색기 - - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - 플러그인을 노래 편집기, 비트/베이스 라인 편집기, 이미 존재하는 악기 트랙 중 하나로 드래그하세요. - - - + no description 설명 없음 - + A native amplifier plugin - 내장 증폭기 플러그인 + 기본 내장 앰프 플러그인 - + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track - + 악기 트랙에서 샘플(예: 드럼)을 사용하기 위한 다양한 설정이 있는 간단한 샘플러 - + Boost your bass the fast and simple way - + 빠르고 간단한 방법으로 베이스 강화 - + Customizable wavetable synthesizer - + 사용자 지정 가능한 웨이브테이블 신시사이저 - + An oversampling bitcrusher - + 오버샘플링 비트크러셔 - + Carla Patchbay Instrument - + Carla Patchbay 악기 - + Carla Rack Instrument - + Carla Rack 악기 - + A dynamic range compressor. - + 동적 범위 컴프레서입니다. - + A 4-band Crossover Equalizer - + 4밴드 크로스오버 이퀄라이저 - + A native delay plugin - 내장 딜레이 플러그인 + 기본 내장 딜레이 플러그인 - + A Dual filter plugin - + 이원화된 필터 플러그인 - + plugin for processing dynamics in a flexible way - + 유연한 방식으로 동적 프로세싱을 위한 플러그인 - + A native eq plugin - 내장 EQ 플러그인 + 기본 내장 EQ 플러그인 - + A native flanger plugin - 내장 플랜저 플러그인 + 기본 내장 플랜저 플러그인 - + Emulation of GameBoy (TM) APU GameBoy (TM) APU 에뮬레이션 - + Player for GIG files - GIG 파일 플레이어 + GIG 파일용 재생기 - + Filter for importing Hydrogen files into LMMS - Hydrogen 파일을 LMMS로 읽어오기 위한 필터 + Hydrogen 파일을 LMMS로 읽어오기 위한 필터링 - + Versatile drum synthesizer - + 다용도 드럼 신시사이저 - + List installed LADSPA plugins 설치된 LADSPA 플러그인 목록 - + plugin for using arbitrary LADSPA-effects inside LMMS. - LMMS에서 LADSPA 이펙트를 이용하기 위한 플러그인. + LMMS 내에서 임의의 LADSPA 효과를 사용하기 위한 플러그인입니다. - + Incomplete monophonic imitation TB-303 - + 불완전한 모노포닉 이미테이션 TB-303 - + plugin for using arbitrary LV2-effects inside LMMS. - + LMMS 내에서 임의의 LV2 효과를 사용하기 위한 플러그인입니다. - + plugin for using arbitrary LV2 instruments inside LMMS. - + LMMS 내에서 임의의 LV2 기기를 사용하기 위한 플러그인입니다. - + Filter for exporting MIDI-files from LMMS - MIDI 파일을 LMMS에서 내보내기 위한 필터 + MIDI 파일을 LMMS에서 내보내기 위한 필터링 - + Filter for importing MIDI-files into LMMS - MIDI 파일을 LMMS로 읽어오기 위한 필터 + MIDI 파일을 LMMS로 읽어오기 위한 필터링 - + Monstrous 3-oscillator synth with modulation matrix - + 모듈레이션 매트릭스가 있는 엄청난 3-오실레이터 신시사이저 - + A multitap echo delay plugin - + 멀티탭 에코 딜레이 플러그인 - + A NES-like synthesizer - + NES와 비슷한 신시사이저 - + 2-operator FM Synth - + 2-오퍼레이터 FM 신시사이저 - + Additive Synthesizer for organ-like sounds - + 오르간과 비슷한 소리를 내는 부가적 신시사이저 - + GUS-compatible patch instrument - + GUS 호환 패치 악기 - + Plugin for controlling knobs with sound peaks - + 사운드 피크가 있는 노브를 제어하기 위한 플러그인 - + Reverb algorithm by Sean Costello Sean Costello의 리버브 알고리즘 - + Player for SoundFont files - 사운드폰트 파일 플레이어 + 사운드폰트 파일용 재생기 - + LMMS port of sfxr - + sfxr의 LMMS 포트 - + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. - + MOS6581 및 MOS8580 SID의 에뮬레이션. +이 칩은 Commodore 64 컴퓨터에 사용되었습니다. - + A graphical spectrum analyzer. - + 그래픽 스펙트럼 분석기. - + Plugin for enhancing stereo separation of a stereo input file - + 스테레오 입력 파일의 스테레오 분리를 향상시키기 위한 플러그인 - + Plugin for freely manipulating stereo output - + 스테레오 출력을 자유롭게 조작하기 위한 플러그인 - + Tuneful things to bang on - + 듣기 좋은 것들 - + Three powerful oscillators you can modulate in several ways - + 다양한 방식으로 변조할 수 있는 3개의 강력한 오실레이터 - + A stereo field visualizer. - + 스테레오 필드 시각화 도구. - + VST-host for using VST(i)-plugins within LMMS - LMMS의 VST(i) 플러그인 호스트 + LMMS 내에서 VST(i) 플러그인을 사용하기 위한 VST 호스트 - + Vibrating string modeler - + 진동 스트링 모델러 - + plugin for using arbitrary VST effects inside LMMS. - LMMS에서 VST 이펙트를 이용하기 위한 플러그인. + LMMS 내에서 임의의 VST 효과를 사용하기 위한 플러그인입니다. - + 4-oscillator modulatable wavetable synth - + 4-오실레이터 조절 가능한 웨이브테이블 신시사이저 - + plugin for waveshaping - + 웨이브쉐이핑을 위한 플러그인 - + Mathematical expression parser - 수식 해석기 + 수리적인 익스프레션 파서 - + Embedded ZynAddSubFX - 내장 ZynAddSubFX 플러그인 + ZynAddSubFX 포함됨 - - - PluginDatabaseW - - Carla - Add New + + An all-pass filter allowing for extremely high orders. + 올패스 필터로 매우 높은 오더를 처리할 수 있습니다. + + + + Granular pitch shifter - - Format + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. - - Internal + + Basic Slicer - - LADSPA - - - - - DSSI - - - - - LV2 - - - - - VST2 - - - - - VST3 - - - - - AU - - - - - Sound Kits - - - - - Type - 형태 - - - - Effects - 효과 - - - - Instruments - 악기 - - - - MIDI Plugins - - - - - Other/Misc - - - - - Architecture - - - - - Native - - - - - Bridged - - - - - Bridged (Wine) - - - - - Requirements - - - - - With Custom GUI - - - - - With CV Ports - - - - - Real-time safe only - - - - - Stereo only - - - - - With Inline Display - - - - - Favorites only - - - - - (Number of Plugins go here) - - - - - &Add Plugin - - - - - Cancel - 취소 - - - - Refresh - - - - - Reset filters - - - - - - - - - - - - - - - - - - - - TextLabel - - - - - Format: - - - - - Architecture: - - - - - Type: - 형태: - - - - MIDI Ins: - - - - - Audio Ins: - - - - - CV Outs: - - - - - MIDI Outs: - - - - - Parameter Ins: - - - - - Parameter Outs: - - - - - Audio Outs: - - - - - CV Ins: - - - - - UniqueID: - - - - - Has Inline Display: - - - - - Has Custom GUI: - - - - - Is Synth: - - - - - Is Bridged: - - - - - Information - - - - - Name - 이름 - - - - Label/URI - - - - - Maker - - - - - Binary/Filename - - - - - Focus Text Search - - - - - Ctrl+F + + Tap to the beat @@ -10732,12 +3654,12 @@ This chip was used in the Commodore 64 computer. Plugin Editor - + 플러그인 편집기 Edit - + 편집하기 @@ -10747,43 +3669,43 @@ This chip was used in the Commodore 64 computer. MIDI Control Channel: - + MIDI 컨트롤 채널: N - + N Output dry/wet (100%) - + 출력 드라이/웨트 (100%) Output volume (100%) - + 출력 볼륨 (100%) Balance Left (0%) - + 밸런스 좌측 (0%) Balance Right (0%) - + 밸런스 우측 (0%) Use Balance - + 밸런스 사용하기 Use Panning - + 패닝 사용하기 @@ -10793,304 +3715,656 @@ This chip was used in the Commodore 64 computer. Use Chunks - + 청크 사용하기 Audio: - + 오디오: Fixed-Size Buffer - + 고정 크기 버퍼 Force Stereo (needs reload) - + 스테레오 강제 적용 (다시 불러와야 함) MIDI: - + MIDI: Map Program Changes - + 맵 프로그램 변경 - Send Bank/Program Changes + Send Notes - Send Control Changes - + Send Bank/Program Changes + 뱅크/프로그램 변경사항 전송하기 - Send Channel Pressure - + Send Control Changes + 제어 변경사항 전송하기 - Send Note Aftertouch - + Send Channel Pressure + 채널 누름 전송하기 - Send Pitchbend - + Send Note Aftertouch + 노트 애프터터치 전송하기 - Send All Sound/Notes Off - + Send Pitchbend + 피치밴드 전송하기 - + + Send All Sound/Notes Off + 모든 사운드/노트 끔 전송하기 + + + Plugin Name - + +플러그인 이름 + - + Program: - + 프로그램: - + MIDI Program: - + MIDI 프로그램: - + Save State - + 상태 저장하기 - + Load State - + 상태 불러오기 - + Information - + 정보 - + Label/URI: - + 레이블/URI: - + Name: - + 이름: - + Type: - 형태: + 유형: - + Maker: - + 제작자: - + Copyright: - + 저작권: - + Unique ID: - + 고유 ID: PluginFactory - + Plugin not found. 플러그인을 찾을 수 없습니다. - + LMMS plugin %1 does not have a plugin descriptor named %2! LMMS 플러그인 %1은(는) 이름이 %2인 플러그인 디스크립터를 가지고 있지 않습니다! + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + 필터 재설정 + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + PluginParameter Form - + 형태 Parameter Name - + 매개변수 이름 - ... + TextLabel + + + ... + ... + - PluginRefreshW + PluginRefreshDialog - - Carla - Refresh + + Plugin Refresh - - Search for new... + + Search for: - - LADSPA + + All plugins, ignoring cache - - DSSI + + Updated plugins only - - LV2 + + Check previously invalid plugins - - VST2 - - - - - VST3 - - - - - AU - - - - - SF2/3 - - - - - SFZ - - - - - Native - - - - - POSIX 32bit - - - - - POSIX 64bit - - - - - Windows 32bit - - - - - Windows 64bit - - - - - Available tools: - - - - - python3-rdflib (LADSPA-RDF support) - - - - - carla-discovery-win64 - - - - - carla-discovery-native - - - - - carla-discovery-posix32 - - - - - carla-discovery-posix64 - - - - - carla-discovery-win32 - - - - - Options: - - - - - Carla will run small processing checks when scanning the plugins (to make sure they won't crash). -You can disable these checks to get a faster scanning time (at your own risk). - - - - - Run processing checks while scanning - - - - + Press 'Scan' to begin the search - + Scan - + >> Skip - + Close - 닫기 + @@ -11102,2352 +4376,13644 @@ You can disable these checks to get a faster scanning time (at your own risk). Frame - + 프레임 - + Enable - + 활성화 - + On/Off 켬/끔 - + - + PluginName - + 플러그인이름 - + MIDI MIDI - + AUDIO IN - + 오디오 입력 - + AUDIO OUT - + 오디오 출력 - + GUI - + GUI - + Edit - + 편집하기 - + Remove - + 제거하기 Plugin Name - + 플러그인 이름 Preset: - - - - - ProjectNotes - - - Project Notes - 프로젝트 노트 - - - - Enter project notes here - 여기에 프로젝트 노트를 입력하세요 - - - - Edit Actions - 편집 동작 - - - - &Undo - 실행 취소(&U) - - - - %1+Z - %1+Z - - - - &Redo - 다시 실행(&R) - - - - %1+Y - %1+Y - - - - &Copy - 복사(&C) - - - - %1+C - %1+C - - - - Cu&t - 잘라내기(&T) - - - - %1+X - %1+X - - - - &Paste - 붙여넣기(&P) - - - - %1+V - %1+V - - - - Format Actions - 서식 동작 - - - - &Bold - 굵게(&B) - - - - %1+B - %1+B - - - - &Italic - 기울임꼴(&I) - - - - %1+I - %1+I - - - - &Underline - 밑줄(&U) - - - - %1+U - %1+U - - - - &Left - 왼쪽 정렬(&L) - - - - %1+L - %1+L - - - - C&enter - 가운데 정렬(&E) - - - - %1+E - %1+E - - - - &Right - 오른쪽 정렬(&R) - - - - %1+R - %1+R - - - - &Justify - 양쪽 정렬(&J) - - - - %1+J - %1+J - - - - &Color... - 색(&C)... + 프리셋: ProjectRenderer - + WAV (*.wav) WAV (*.wav) - + FLAC (*.flac) FLAC (*.flac) - + OGG (*.ogg) OGG (*.ogg) - + MP3 (*.mp3) MP3 (*.mp3) + + QGroupBox + + + + Settings for %1 + %1의 설정 + + QObject - + Reload Plugin + 플러그인 다시 불러오기 + + + + Show GUI + GUI 표시하기 + + + + Help + 도움말 + + + + LADSPA plugins - - Show GUI - GUI 표시 + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + - - Help - 도움말 + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + QWidget - - - - + + Name: 이름: - - URI: - - - - - - + Maker: 제작자: - - - + Copyright: 저작권: - - + Requires Real Time: - + 실시간 필요: - - - - - - + + + Yes - - - - - - + + + No 아니오 - - + Real Time Capable: - 실제 시간 가능: + 실시간 가능: - - + In Place Broken: 깨진 곳에 위치: - - + Channels In: - 입력 채널: + 채널 입력: - - + Channels Out: - 출력 채널: + 채널 출력: - + File: %1 파일: %1 - + File: 파일: - RecentProjectsMenu + XYControllerW - - &Recently Opened Projects - 최근에 사용한 프로젝트(&R) - - - - RenameDialog - - - Rename... - 이름 바꾸기... - - - - ReverbSCControlDialog - - - Input - 입력 - - - - Input gain: - 입력 이득: - - - - Size - 크기 - - - - Size: + + XY Controller - - Color - 음색 - - - - Color: + + X Controls: - - Output - 출력 - - - - Output gain: - 출력 이득: - - - - ReverbSCControls - - - Input gain - 입력 이득 - - - - Size - 크기 - - - - Color - 음색 - - - - Output gain - 출력 이득 - - - - SaControls - - - Pause + + Y Controls: - - Reference freeze + + Smooth - - Waterfall + + &Settings + 설정(&S) + + + + Channels - - Averaging + + &File - - Stereo - 스테레오 - - - - Peak hold + + Show MIDI &Keyboard - - Logarithmic frequency + + (All) - - Logarithmic amplitude + + 1 - - Frequency range + + 2 - - Amplitude range + + 3 - - FFT block size + + 4 - - FFT window type + + 5 - - Peak envelope resolution + + 6 - - Spectrum display resolution + + 7 - - Peak decay multiplier + + 8 - - Averaging weight + + 9 - - Waterfall history size + + 10 - - Waterfall gamma correction + + 11 - - FFT window overlap + + 12 - - FFT zero padding + + 13 - - - Full (auto) + + 14 - - - - Audible + + 15 - - Bass + + 16 - - Mids + + &Quit - - High + + Esc - - Extended - - - - - Loud - - - - - Silent - - - - - (High time res.) - - - - - (High freq. res.) - - - - - Rectangular (Off) - - - - - - Blackman-Harris (Default) - - - - - Hamming - - - - - Hanning + + (None) - SaControlsDialog + lmms::AmplifierControls - - Pause - - - - - Pause data acquisition - - - - - Reference freeze - - - - - Freeze current input as a reference / disable falloff in peak-hold mode. - - - - - Waterfall - - - - - Display real-time spectrogram - - - - - Averaging - - - - - Enable exponential moving average - - - - - Stereo - 스테레오 - - - - Display stereo channels separately - - - - - Peak hold - - - - - Display envelope of peak values - - - - - Logarithmic frequency - - - - - Switch between logarithmic and linear frequency scale - - - - - - Frequency range - - - - - Logarithmic amplitude - - - - - Switch between logarithmic and linear amplitude scale - - - - - - Amplitude range - - - - - Envelope res. - - - - - Increase envelope resolution for better details, decrease for better GUI performance. - - - - - - Draw at most - - - - - envelope points per pixel - - - - - Spectrum res. - - - - - Increase spectrum resolution for better details, decrease for better GUI performance. - - - - - spectrum points per pixel - - - - - Falloff factor - - - - - Decrease to make peaks fall faster. - - - - - Multiply buffered value by - - - - - Averaging weight - - - - - Decrease to make averaging slower and smoother. - - - - - New sample contributes - - - - - Waterfall height - - - - - Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. - - - - - Keep - - - - - lines - - - - - Waterfall gamma - - - - - Decrease to see very weak signals, increase to get better contrast. - - - - - Gamma value: - - - - - Window overlap - - - - - Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. - - - - - Each sample processed - - - - - times - - - - - Zero padding - - - - - Increase to get smoother-looking spectrum. Warning: high CPU usage. - - - - - Processing buffer is - - - - - steps larger than input block - - - - - Advanced settings - - - - - Access advanced settings - - - - - - FFT block size - - - - - - FFT window type - - - - - SampleBuffer - - - Fail to open file - 파일을 열 수 없음 - - - - Audio files are limited to %1 MB in size and %2 minutes of playing time - 오디오 파일은 %1MB보다 작고 %2분보다 짧아야 합니다 - - - - Open audio file - 오디오 파일 열기 - - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - 모든 오디오 파일 (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - - Wave-Files (*.wav) - Wave 파일(*.wav) - - - - OGG-Files (*.ogg) - OGG 파일(*.ogg) - - - - DrumSynth-Files (*.ds) - DrumSynth 파일(*.ds) - - - - FLAC-Files (*.flac) - FLAC 파일(*.flac) - - - - SPEEX-Files (*.spx) - SPEEX 파일(*.spx) - - - - VOC-Files (*.voc) - VOC 파일(*.voc) - - - - AIFF-Files (*.aif *.aiff) - AIFF 파일 (*.aif *.aiff) - - - - AU-Files (*.au) - AU 파일 (*.au) - - - - RAW-Files (*.raw) - RAW 파일 (*.raw) - - - - SampleClipView - - - Double-click to open sample - 더블클릭하여 샘플 열기 - - - - Delete (middle mousebutton) - 삭제(마우스 가운데 버튼) - - - - Delete selection (middle mousebutton) - - - - - Cut - 잘라내기 - - - - Cut selection - - - - - Copy - 복사 - - - - Copy selection - - - - - Paste - 붙여넣기 - - - - Mute/unmute (<%1> + middle click) - 음소거/해제 (<%1> + 마우스 가운데 버튼) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Reverse sample - 샘플 역으로 - - - - Set clip color - - - - - Use track color - - - - - SampleTrack - - + Volume - 음량 + 볼륨 - + Panning 패닝 - - Mixer channel - FX 채널 + + Left gain + 좌측 게인 - - + + Right gain + 우측 게인 + + + + lmms::AudioFileProcessor + + + Amplify + 증폭하기 + + + + Start of sample + 샘플의 시작 + + + + End of sample + 샘플의 끝 + + + + Loopback point + 루프백 포인트 + + + + Reverse sample + 리버스 샘플 + + + + Loop mode + 루프 모드 + + + + Stutter + Stutter + + + + Interpolation mode + 인터폴레이션 모드 + + + + None + 없음 + + + + Linear + 리니어 + + + + Sinc + Sinc + + + + Sample not found + + + + + lmms::AudioJack + + + JACK client restarted + JACK 클라이언트 다시 시작됨 + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + LMMS는 알 수 없는 이유로 JACK에 의해 중지되었습니다. 그 결과 LMMS의 JACK 백엔드가 다시 시작되었습니다. 수동 연결을 다시 설정해야 합니다. + + + + JACK server down + JACK 서버 다운 + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + JACK 서버가 종료되어 새 인스턴스 시작에 실패한 것 같습니다. 따라서 LMMS를 진행할 수 없습니다. 사용자의 프로젝트를 저장하고 JACK 및 LMMS를 다시 시작해야 합니다. + + + + Client name + 클라이언트 이름 + + + + Channels + 채널 + + + + lmms::AudioOss + + + Device + 디바이스 + + + + Channels + 채널 + + + + lmms::AudioPortAudio::setupWidget + + + Backend + 백엔드 + + + + Device + 디바이스 + + + + lmms::AudioPulseAudio + + + Device + 디바이스 + + + + Channels + 채널 + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + 디바이스 + + + + Channels + 채널 + + + + lmms::AudioSoundIo::setupWidget + + + Backend + 백엔드 + + + + Device + 디바이스 + + + + lmms::AutomatableModel + + + &Reset (%1%2) + 재설정 (%1%2)(&R) + + + + &Copy value (%1%2) + 값 복사하기 (%1%2)(&C) + + + + &Paste value (%1%2) + 값 붙여넣기 (%1%2)(&P) + + + + &Paste value + 값 붙여넣기(&P) + + + + Edit song-global automation + 노래 전반 오토메이션 편집하기 + + + + Remove song-global automation + 노래 전반 오토메이션 제거하기 + + + + Remove all linked controls + 모든 링크된 컨트롤 제거하기 + + + + Connected to %1 + %1에 연결됨 + + + + Connected to controller + 컨트롤러에 연결됨 + + + + Edit connection... + 연결 편집하기... + + + + Remove connection + 연결 제거하기 + + + + Connect to controller... + 컨트롤러에 연결하기... + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + <%1> 키를 누른 상태에서 컨트롤 드래그 + + + + lmms::AutomationTrack + + + Automation track + 오토메이션 트랙 + + + + lmms::BassBoosterControls + + + Frequency + 주파수 + + + + Gain + 게인 + + + + Ratio + 레시오 + + + + lmms::BitInvader + + + Sample length + 샘플 길이 + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + + Input gain + 입력 게인 + + + + Input noise + 입력 잡음 + + + + Output gain + 출력 게인 + + + + Output clip + 출력 클립 + + + + Sample rate + 샘플 레이트 + + + + Stereo difference + 스테레오 차이 + + + + Levels + 레벨 + + + + Rate enabled + 레이트 활성화됨 + + + + Depth enabled + 깊이 활성화됨 + + + + lmms::Clip + + + Mute + 음소거 + + + + lmms::CompressorControls + + + Threshold + 스레시홀드 + + + + Ratio + 레시오 + + + + Attack + 어택 + + + + Release + 릴리즈 + + + + Knee + 니(Knee) + + + + Hold + 홀드 + + + + Range + 범위 + + + + RMS Size + RMS 크기 + + + + Mid/Side + 중간/측면 + + + + Peak Mode + 피크 모드 + + + + Lookahead Length + 룩어헤드 길이 + + + + Input Balance + 입력 밸런스 + + + + Output Balance + 출력 밸런스 + + + + Limiter + 리미터 + + + + Output Gain + 출력 게인 + + + + Input Gain + 입력 게인 + + + + Blend + 섞기 + + + + Stereo Balance + 스테레오 밸런스 + + + + Auto Makeup Gain + 자동 메이크업 게인 + + + + Audition + 오디션 + + + + Feedback + 피드백 + + + + Auto Attack + 자동 어택 + + + + Auto Release + 자동 릴리즈 + + + + Lookahead + 룩어헤드 + + + + Tilt + 틸트 + + + + Tilt Frequency + 틸트 주파수 + + + + Stereo Link + 스테레오 링크 + + + + Mix + 믹스 + + + + lmms::Controller + + + Controller %1 + 컨트롤러 %1 + + + + lmms::DelayControls + + + Delay samples + 딜레이 샘플 + + + + Feedback + 피드백 + + + + LFO frequency + LFO 주파수 + + + + LFO amount + LFO 양 + + + + Output gain + 출력 게인 + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + 주파수 + + + + Resonance + 공명 + + + + Feedback + 피드백 + + + + DC Offset Removal + DC 오프셋 제거 + + + + lmms::DualFilterControls + + + Filter 1 enabled + 필터 1 활성화됨 + + + + Filter 1 type + 필터 1 유형 + + + + Cutoff frequency 1 + 컷오프 주파수 1 + + + + Q/Resonance 1 + Q/공명 1 + + + + Gain 1 + 게인 1 + + + + Mix + 믹스 + + + + Filter 2 enabled + 필터 2 활성화됨 + + + + Filter 2 type + 필터 2 유형 + + + + Cutoff frequency 2 + 컷오프 주파수 2 + + + + Q/Resonance 2 + Q/공명 2 + + + + Gain 2 + 게인 2 + + + + + Low-pass + 로패스 + + + + + Hi-pass + 하이패스 + + + + + Band-pass csg + 밴드패스 csg + + + + + Band-pass czpg + 밴드패스 czpg + + + + + Notch + 노치 + + + + + All-pass + 올패스 + + + + + Moog + 모그 + + + + + 2x Low-pass + 2x 로패스 + + + + + RC Low-pass 12 dB/oct + RC 로패스 12 dB/oct + + + + + RC Band-pass 12 dB/oct + RC 밴드패스 12 dB/oct + + + + + RC High-pass 12 dB/oct + RC 하이패스 12 dB/oct + + + + + RC Low-pass 24 dB/oct + RC 로패스 24 dB/oct + + + + + RC Band-pass 24 dB/oct + RC 밴드패스 24 dB/oct + + + + + RC High-pass 24 dB/oct + RC 하이패스 24 dB/oct + + + + + Vocal Formant + 보컬 포르만트 + + + + + 2x Moog + 2x 모그 + + + + + SV Low-pass + SV 로패스 + + + + + SV Band-pass + SV 밴드패스 + + + + + SV High-pass + SV 하이패스 + + + + + SV Notch + SV 노치 + + + + + Fast Formant + 패스트 포르만트 + + + + + Tripole + 트리폴 + + + + lmms::DynProcControls + + + Input gain + 입력 게인 + + + + Output gain + 출력 게인 + + + + Attack time + 어택 시간 + + + + Release time + 릴리즈 시간 + + + + Stereo mode + 스테레오 모드 + + + + lmms::Effect + + + Effect enabled + 이펙트 활성화됨 + + + + Wet/Dry mix + 웨트/드라이 믹스 + + + + Gate + 게이트 + + + + Decay + 디케이 + + + + lmms::EffectChain + + + Effects enabled + 이펙트 활성화됨 + + + + lmms::Engine + + + Generating wavetables + 웨이브테이블 생성 중 + + + + Initializing data structures + 데이터 구조 초기화 중 + + + + Opening audio and midi devices + 오디오 및 MIDI 디바이스 여는 중 + + + + Launching audio engine threads + 오디오 엔진 스레드 실행 중 + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + Env 프리-딜레이 + + + + Env attack + Env 어택 + + + + Env hold + Env 홀드 + + + + Env decay + Env 디케이 + + + + Env sustain + Env 서스테인 + + + + Env release + Env 릴리즈 + + + + Env mod amount + Env mod 양 + + + + LFO pre-delay + LFO 프리-딜레이 + + + + LFO attack + LFO 어택 + + + + LFO frequency + LFO 주파수 + + + + LFO mod amount + LFO mod 양 + + + + LFO wave shape + LFO 웨이브 형태 + + + + LFO frequency x 100 + LFO 주파수 x 100 + + + + Modulate env amount + Env 양 조절하기 + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + 입력 게인 + + + + Output gain + 출력 게인 + + + + Low-shelf gain + 로셀프 게인 + + + + Peak 1 gain + 피크 1 게인 + + + + Peak 2 gain + 피크 2 게인 + + + + Peak 3 gain + 피크 3 게인 + + + + Peak 4 gain + 피크 4 게인 + + + + High-shelf gain + 하이-셸프 게인 + + + + HP res + HP 공명 + + + + Low-shelf res + 로셀프 공명 + + + + Peak 1 BW + 피크 1 대역폭 + + + + Peak 2 BW + 피크 2 대역폭 + + + + Peak 3 BW + 피크 3 대역폭 + + + + Peak 4 BW + 피크 4 대역폭 + + + + High-shelf res + 하이셸프 공명 + + + + LP res + LP 공명 + + + + HP freq + HP 주파수 + + + + Low-shelf freq + 로셀프 주파수 + + + + Peak 1 freq + 피크 1 주파수 + + + + Peak 2 freq + 피크 2 주파수 + + + + Peak 3 freq + 피크 3 주파수 + + + + Peak 4 freq + 피크 4 주파수 + + + + High-shelf freq + 하이셸프 주파수 + + + + LP freq + LP 주파수 + + + + HP active + HP 활성 + + + + Low-shelf active + 로셀프 활성 + + + + Peak 1 active + 피크 1 활성 + + + + Peak 2 active + 피크 2 활성 + + + + Peak 3 active + 피크 3 활성 + + + + Peak 4 active + 피크 4 활성 + + + + High-shelf active + 하이셸프 활성 + + + + LP active + LP 활성 + + + + LP 12 + LP 12 + + + + LP 24 + LP 24 + + + + LP 48 + LP 48 + + + + HP 12 + HP 12 + + + + HP 24 + HP 24 + + + + HP 48 + HP 48 + + + + Low-pass type + 로패스 유형 + + + + High-pass type + 하이패스 유형 + + + + Analyse IN + 입력 신호 분석 + + + + Analyse OUT + 출력 신호 분석 + + + + lmms::FlangerControls + + + Delay samples + 딜레이 샘플 + + + + LFO frequency + LFO 주파수 + + + + Amount + + + + + Stereo phase + 스테레오 페이즈 + + + + Feedback + + + + + Noise + 잡음 + + + + Invert + 반전 + + + + lmms::FreeBoyInstrument + + + Sweep time + 스위프 시간 + + + + Sweep direction + 스위프 방향 + + + + Sweep rate shift amount + 스위프 레이트 시프트 양 + + + + + Wave pattern duty cycle + 웨이브 패턴 듀티 사이클 + + + + Channel 1 volume + 채널 1 볼륨 + + + + + + Volume sweep direction + 볼륨 스위프 방향 + + + + + + Length of each step in sweep + 스위프에서 각 스텝의 길이 + + + + Channel 2 volume + 채널 2 볼륨 + + + + Channel 3 volume + 채널 3 볼륨 + + + + Channel 4 volume + 채널 4 볼륨 + + + + Shift Register width + 시프트 레지스터 너비 + + + + Right output level + 우측 출력 레벨 + + + + Left output level + 좌측 출력 레벨 + + + + Channel 1 to SO2 (Left) + 채널 1 → SO2 (좌측) + + + + Channel 2 to SO2 (Left) + 채널 2 → SO2 (좌측) + + + + Channel 3 to SO2 (Left) + 채널 3 → SO2 (좌측) + + + + Channel 4 to SO2 (Left) + 채널 4 → SO2 (좌측) + + + + Channel 1 to SO1 (Right) + 채널 1 → SO1 (우측) + + + + Channel 2 to SO1 (Right) + 채널 2 → SO1 (우측) + + + + Channel 3 to SO1 (Right) + 채널 3 → SO1 (우측) + + + + Channel 4 to SO1 (Right) + 채널 4 → SO1 (우측) + + + + Treble + 트레블 + + + + Bass + 베이스 + + + + lmms::GigInstrument + + + Bank + 뱅크 + + + + Patch + 패치 + + + + Gain + 게인 + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + 아르페지오 + + + + Arpeggio type + 아르페지오 유형 + + + + Arpeggio range + 아르페지오 범위 + + + + Note repeats + 노트 반복 + + + + Cycle steps + 사이클 스탭 + + + + Skip rate + 스킵 비율 + + + + Miss rate + 누락 비율 + + + + Arpeggio time + 아르페지오 시간 + + + + Arpeggio gate + 아르페지오 게이트 + + + + Arpeggio direction + 아르페지오 방향 + + + + Arpeggio mode + 아르페지오 모드 + + + + Up + 위로 + + + + Down + 아래로 + + + + Up and down + 위 다음 아래 + + + + Down and up + 아래 다음 위 + + + + Random + 무작위 + + + + Free + 자유 + + + + Sort + 정렬 + + + + Sync + 싱크 + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + 코드 + + + + Chord type + 코드 유형 + + + + Chord range + 코드 범위 + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + 엔벨로프/LFO + + + + Filter type + 필터 유형 + + + + Cutoff frequency + 컷오프 주파수 + + + + Q/Resonance + Q/공명 + + + + Low-pass + 로패스 + + + + Hi-pass + 하이패스 + + + + Band-pass csg + 밴드패스 csg + + + + Band-pass czpg + 밴드패스 czpg + + + + Notch + 노치 + + + + All-pass + 올패스 + + + + Moog + 모그 + + + + 2x Low-pass + 2x 로패스 + + + + RC Low-pass 12 dB/oct + RC 로패스 12 dB/oct + + + + RC Band-pass 12 dB/oct + RC 밴드패스 12 dB/oct + + + + RC High-pass 12 dB/oct + RC 하이패스 12 dB/oct + + + + RC Low-pass 24 dB/oct + RC 로패스 24 dB/oct + + + + RC Band-pass 24 dB/oct + RC 밴드패스 24 dB/oct + + + + RC High-pass 24 dB/oct + RC 하이패스 24 dB/oct + + + + Vocal Formant + 보컬 포르만트 + + + + 2x Moog + 2x 모그 + + + + SV Low-pass + SV 로패스 + + + + SV Band-pass + SV 밴드패스 + + + + SV High-pass + SV 하이패스 + + + + SV Notch + SV 노치 + + + + Fast Formant + 패스트 포르만트 + + + + Tripole + 트리폴 + + + + lmms::InstrumentTrack + + + + unnamed_track + 이름없는_트랙 + + + + Base note + 기본 노트 + + + + First note + 처음 노트 + + + + Last note + 마지막 노트 + + + + Volume + 볼륨 + + + + Panning + 패닝 + + + + Pitch + 피치 + + + + Pitch range + 피치 범위 + + + + Mixer channel + 믹서 채널 + + + + Master pitch + 마스터 피치 + + + + Enable/Disable MIDI CC + MIDI CC 활성화/비활성화 + + + + CC Controller %1 + CC 컨트롤러 %1 + + + + + Default preset + 기본 프리셋 + + + + lmms::Keymap + + + empty + 비어 있음 + + + + lmms::KickerInstrument + + + Start frequency + 시작 주파수 + + + + End frequency + 끝 주파수 + + + + Length + 길이 + + + + Start distortion + 시작 디스토션 + + + + End distortion + 끝 디스토션 + + + + Gain + 게인 + + + + Envelope slope + 엔벨로프 슬로프 + + + + Noise + 잡음 + + + + Click + 클릭 + + + + Frequency slope + 주파수 슬로프 + + + + Start from note + 시작을 노트에서 + + + + End to note + 끝을 노트까지 + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + 링크 채널 + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + 알 수 없는 LADSPA 플러그인 %1이(가) 요청되었습니다. + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + VCF 컷오프 주파수 + + + + VCF Resonance + VCF 공명 + + + + VCF Envelope Mod + VCF 엔빌로프 Mod + + + + VCF Envelope Decay + VCF 엔빌로프 디케이 + + + + Distortion + 디스토션 + + + + Waveform + 파형 + + + + Slide Decay + 슬라이드 디케이 + + + + Slide + 슬라이드 + + + + Accent + 악센트 + + + + Dead + 데드 + + + + 24dB/oct Filter + 24dB/oct 필터 + + + + lmms::LfoController + + + LFO Controller + LFO 컨트롤러 + + + + Base value + 기본 값 + + + + Oscillator speed + 오실레이터 속도 + + + + Oscillator amount + 오실레이터 량 + + + + Oscillator phase + 오실레이터 페이즈 + + + + Oscillator waveform + 오실레이터 파형 + + + + Frequency Multiplier + 주파수 증폭기 + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + 하드니스 + + + + Position + 포지션 + + + + Vibrato gain + 비브라토 게인 + + + + Vibrato frequency + 비브라토 주파수 + + + + Stick mix + 스틱 믹스 + + + + Modulator + 모듈레이터 + + + + Crossfade + 크로스페이드 + + + + LFO speed + LFO 속도 + + + + LFO depth + LFO 깊이 + + + + ADSR + ADSR + + + + Pressure + 누름 + + + + Motion + 모션 + + + + Speed + 속도 + + + + Bowed + 활켜기 + + + + Instrument + + + + + Spread + 스프레드 + + + + Randomness + + + + + Marimba + 마림바 + + + + Vibraphone + 비브라폰 + + + + Agogo + 아고고 + + + + Wood 1 + 우드 1 + + + + Reso + 레소 + + + + Wood 2 + 우드 2 + + + + Beats + 비트 + + + + Two fixed + + + + + Clump + 클럼프 + + + + Tubular bells + 튜블라 벨 + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + 글라스 + + + + Tibetan bowl + 티베탄 싱잉볼 + + + + lmms::MeterModel + + + Numerator + 분자 + + + + Denominator + 분모 + + + + lmms::Microtuner + + + Microtuner + 마이크로튜너 + + + + Microtuner on / off + 마이크로튜너 켬/끔 + + + + Selected scale + 선택된 스케일 + + + + Selected keyboard mapping + 선택된 키보드 매핑 + + + + lmms::MidiController + + + MIDI Controller + MIDI 컨트롤러 + + + + unnamed_midi_controller + 이름없는_MIDI_컨트롤러 + + + + lmms::MidiImport + + + + Setup incomplete + 셋업 미완료 + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + 설정 대화상자(편집->설정)에서 기본 사운드폰트를 설정하지 않았습니다. 그러므로 이 MIDI 파일을 가져오면 사운드가 연주되지 않습니다. 일반 MIDI 사운드폰트를 다운로드하여 설정 대화상자에서 지정한 후 다시 시도해야 합니다. + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + 가져온 MIDI 파일에 기본 사운드를 추가하는 데 사용되는 SoundFont2 재생기를 지원하는 LMMS를 컴파일하지 않았습니다. 그러므로 이 MIDI 파일을 가져온 후에는 사운드가 연주되지 않습니다. + + + + MIDI Time Signature Numerator + MIDI 박자표 분자 + + + + MIDI Time Signature Denominator + MIDI 박자표 분모 + + + + Numerator + 분자 + + + + Denominator + 분모 + + + + + Tempo + 템포 + + + + Track + 트랙 + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + JACK 서버 다운 + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + JACK 서버가 종료된 것 같습니다. + + + + lmms::MidiPort + + + Input channel + 입력 채널 + + + + Output channel + 출력 채널 + + + + Input controller + 입력 컨트롤러 + + + + Output controller + 출력 컨트롤러 + + + + Fixed input velocity + 고정된 입력 벨로시티 + + + + Fixed output velocity + 고정된 출력 벨로시티 + + + + Fixed output note + 고정된 출력 노트 + + + + Output MIDI program + 출력 MIDI 프로그램 + + + + Base velocity + 기준 벨로시티 + + + + Receive MIDI-events + MIDI 이벤트 수신하기 + + + + Send MIDI-events + MIDI 이벤트 전송하기 + + + + lmms::Mixer + + + Master + 마스터 + + + + + + Channel %1 + 채널 %1 + + + + Volume + 볼륨 + + + + Mute + 음소거 + + + + Solo + 솔로 연주 + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + %1 채널에서 %2 채널로 전송할 양 + + + + lmms::MonstroInstrument + + + Osc 1 volume + Osc 1 볼륨 + + + + Osc 1 panning + Osc 1 패닝 + + + + Osc 1 coarse detune + Osc 1 코어스 디튠 + + + + Osc 1 fine detune left + Osc 1 파인 디튠 좌측 + + + + Osc 1 fine detune right + Osc 1 파인 디튠 우측 + + + + Osc 1 stereo phase offset + Osc 1 스테레오 페이즈 오프셋 + + + + Osc 1 pulse width + Osc 1 펄스 폭 + + + + Osc 1 sync send on rise + 상승 시 Osc 1 싱크 전송하기 + + + + Osc 1 sync send on fall + 하강 시 OSC 1 싱크 전송하기 + + + + Osc 2 volume + Osc 2 볼륨 + + + + Osc 2 panning + Osc 2 패닝 + + + + Osc 2 coarse detune + Osc 2 코어스 디튠 + + + + Osc 2 fine detune left + Osc 2 파인 디튠 좌측 + + + + Osc 2 fine detune right + Osc 2 파인 디튠 우측 + + + + Osc 2 stereo phase offset + Osc 2 스테레오 페이즈 오프셋 + + + + Osc 2 waveform + Osc 2 파형 + + + + Osc 2 sync hard + Osc 2 싱크 하드 + + + + Osc 2 sync reverse + Osc 2 싱크 리버스 + + + + Osc 3 volume + Osc 3 볼륨 + + + + Osc 3 panning + Osc 3 패닝 + + + + Osc 3 coarse detune + Osc 3 코어스 디튠 + + + + Osc 3 Stereo phase offset + Osc 3 스테리오 페이즈 오프셋 + + + + Osc 3 sub-oscillator mix + Osc 3 서브 오실레이터 믹스 + + + + Osc 3 waveform 1 + Osc 3 파형 1 + + + + Osc 3 waveform 2 + Osc 3 파형 2 + + + + Osc 3 sync hard + Osc 3 싱크 하드 + + + + Osc 3 Sync reverse + Osc 3 싱크 리버스 + + + + LFO 1 waveform + LFO 1 파형 + + + + LFO 1 attack + LFO 1 어택 + + + + LFO 1 rate + LFO 1 레이트 + + + + LFO 1 phase + LFO 1 페이즈 + + + + LFO 2 waveform + LFO 2 파형 + + + + LFO 2 attack + LFO 2 어택 + + + + LFO 2 rate + LFO 2 레이트 + + + + LFO 2 phase + LFO 2 페이즈 + + + + Env 1 pre-delay + Env 1 프리-딜레이 + + + + Env 1 attack + Env 1 어택 + + + + Env 1 hold + Env 1 홀드 + + + + Env 1 decay + Env 1 디케이 + + + + Env 1 sustain + Env 1 서스테인 + + + + Env 1 release + Env 1 릴리즈 + + + + Env 1 slope + Env 1 슬로프 + + + + Env 2 pre-delay + Env 2 프리-딜레이 + + + + Env 2 attack + Env 2 어택 + + + + Env 2 hold + Env 2 홀드 + + + + Env 2 decay + Env 2 디케이 + + + + Env 2 sustain + Env 2 서스테인 + + + + Env 2 release + Env 2 릴리즈 + + + + Env 2 slope + Env 2 슬로프 + + + + Osc 2+3 modulation + Osc 2+3 모듈레이션 + + + + Selected view + 선택된 항목 보기 + + + + Osc 1 - Vol env 1 + Osc 1 - Vol env 1 + + + + Osc 1 - Vol env 2 + Osc 1 - Vol env 2 + + + + Osc 1 - Vol LFO 1 + Osc 1 - Vol LFO 1 + + + + Osc 1 - Vol LFO 2 + Osc 1 - Vol LFO 2 + + + + Osc 2 - Vol env 1 + Osc 2 - Vol env 1 + + + + Osc 2 - Vol env 2 + Osc 2 - Vol env 2 + + + + Osc 2 - Vol LFO 1 + Osc 2 - Vol LFO 1 + + + + Osc 2 - Vol LFO 2 + Osc 2 - Vol LFO 2 + + + + Osc 3 - Vol env 1 + Osc 3 - Vol env 1 + + + + Osc 3 - Vol env 2 + Osc 3 - Vol env 2 + + + + Osc 3 - Vol LFO 1 + Osc 3 - Vol LFO 1 + + + + Osc 3 - Vol LFO 2 + Osc 3 - Vol LFO 2 + + + + Osc 1 - Phs env 1 + Osc 1 - Phs env 1 + + + + Osc 1 - Phs env 2 + Osc 1 - Phs env 2 + + + + Osc 1 - Phs LFO 1 + Osc 1 - Phs LFO 1 + + + + Osc 1 - Phs LFO 2 + Osc 1 - Phs LFO 2 + + + + Osc 2 - Phs env 1 + Osc 2 - Phs env 1 + + + + Osc 2 - Phs env 2 + Osc 2 - Phs env 2 + + + + Osc 2 - Phs LFO 1 + Osc 2 - Phs LFO 1 + + + + Osc 2 - Phs LFO 2 + Osc 2 - Phs LFO 2 + + + + Osc 3 - Phs env 1 + Osc 3 - Phs env 1 + + + + Osc 3 - Phs env 2 + Osc 3 - Phs env 2 + + + + Osc 3 - Phs LFO 1 + Osc 3 - Phs LFO 1 + + + + Osc 3 - Phs LFO 2 + Osc 3 - Phs LFO 2 + + + + Osc 1 - Pit env 1 + Osc 1 - Pit env 1 + + + + Osc 1 - Pit env 2 + Osc 1 - Pit env 2 + + + + Osc 1 - Pit LFO 1 + Osc 1 - Pit LFO 1 + + + + Osc 1 - Pit LFO 2 + Osc 1 - Pit LFO 2 + + + + Osc 2 - Pit env 1 + Osc 2 - Pit env 1 + + + + Osc 2 - Pit env 2 + Osc 2 - Pit env 2 + + + + Osc 2 - Pit LFO 1 + Osc 2 - Pit LFO 1 + + + + Osc 2 - Pit LFO 2 + Osc 2 - Pit LFO 2 + + + + Osc 3 - Pit env 1 + Osc 3 - Pit env 1 + + + + Osc 3 - Pit env 2 + Osc 3 - Pit env 2 + + + + Osc 3 - Pit LFO 1 + Osc 3 - Pit LFO 1 + + + + Osc 3 - Pit LFO 2 + Osc 3 - Pit LFO 2 + + + + Osc 1 - PW env 1 + Osc 1 - PW env 1 + + + + Osc 1 - PW env 2 + Osc 1 - PW env 2 + + + + Osc 1 - PW LFO 1 + Osc 1 - PW LFO 1 + + + + Osc 1 - PW LFO 2 + Osc 1 - PW LFO 2 + + + + Osc 3 - Sub env 1 + Osc 3 - Sub env 1 + + + + Osc 3 - Sub env 2 + Osc 3 - Sub env 2 + + + + Osc 3 - Sub LFO 1 + Osc 3 - Sub LFO 1 + + + + Osc 3 - Sub LFO 2 + Osc 3 - Sub LFO 2 + + + + + Sine wave + 사인파 + + + + Bandlimited Triangle wave + 밴드리밋된 삼각파 + + + + Bandlimited Saw wave + 밴드리밋된 톱니파 + + + + Bandlimited Ramp wave + 밴드리밋된 램프파 + + + + Bandlimited Square wave + 밴드리밋된 사각파 + + + + Bandlimited Moog saw wave + 밴드리밋된 모그 톱니파 + + + + + Soft square wave + 둥근 모서리 사각파 + + + + Absolute sine wave + 절대 사인파 + + + + + Exponential wave + 지수파 + + + + White noise + 백색 잡음 + + + + Digital Triangle wave + 디지털 삼각파 + + + + Digital Saw wave + 디지털 톱니파 + + + + Digital Ramp wave + 디지털 램프파 + + + + Digital Square wave + 디지털 사각파 + + + + Digital Moog saw wave + 디지털 모그 톱니파 + + + + Triangle wave + 삼각파 + + + + Saw wave + 톱니파 + + + + Ramp wave + 램프파 + + + + Square wave + 사각파 + + + + Moog saw wave + 모그 톱니파 + + + + Abs. sine wave + 절대 사인파 + + + + Random + 무작위 + + + + Random smooth + 무작위로 부드럽게 + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + 채널 1 코어스 디튠 + + + + Channel 1 volume + 채널 1 볼륨 + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + 채널 1 엔벨로프 길이 + + + + Channel 1 duty cycle + 채널 1 듀티 사이클 + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + 채널 1 스위프 양 + + + + Channel 1 sweep rate + 채널 1 스위프 레이트 + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + 채널 2 엔벨로프 길이 + + + + Channel 2 duty cycle + 채널 2 듀티 사이클 + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + 채널 2 스위프 양 + + + + Channel 2 sweep rate + 채널 2 스위프 레이트 + + + + Channel 3 enable + + + + + Channel 3 coarse detune + 채널 3 코어스 디튠 + + + + Channel 3 volume + 채널 3 볼륨 + + + + Channel 4 enable + + + + + Channel 4 volume + 채널 4 볼륨 + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + 채널 4 엔벨로프 길이 + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + 채널 4 잡음 주파수 + + + + Channel 4 noise frequency sweep + 채널 4 잡음 주파수 스위프 + + + + Channel 4 quantize + + + + + Master volume + 마스터 볼륨 + + + + Vibrato + 비브라토 + + + + lmms::OpulenzInstrument + + + Patch + 패치 + + + + Op 1 attack + Op 1 어택 + + + + Op 1 decay + Op 1 디케이 + + + + Op 1 sustain + Op 1 서스테인 + + + + Op 1 release + Op 1 릴리즈 + + + + Op 1 level + Op 1 레벨 + + + + Op 1 level scaling + Op 1 레벨 스케일링 + + + + Op 1 frequency multiplier + Op 1 주파수 증폭기 + + + + Op 1 feedback + Op 1 피드백 + + + + Op 1 key scaling rate + Op 1 키 스케일링 레이트 + + + + Op 1 percussive envelope + Op 1 퍼커시브 엔벨로프 + + + + Op 1 tremolo + Op 1 트레몰로 + + + + Op 1 vibrato + Op 1 비브라토 + + + + Op 1 waveform + Op 1 파형 + + + + Op 2 attack + Op 2 어택 + + + + Op 2 decay + Op 2 디케이 + + + + Op 2 sustain + Op 2 서스테인 + + + + Op 2 release + Op 2 릴리즈 + + + + Op 2 level + Op 2 레벨 + + + + Op 2 level scaling + Op 2 레벨 스케일링 + + + + Op 2 frequency multiplier + Op 2 주파수 증폭기 + + + + Op 2 key scaling rate + Op 2 키 스케일링 레이트 + + + + Op 2 percussive envelope + Op 2 퍼커시브 엔벨로프 + + + + Op 2 tremolo + Op 2 트레몰로 + + + + Op 2 vibrato + Op 2 비브라토 + + + + Op 2 waveform + Op 2 파형 + + + + FM + FM + + + + Vibrato depth + 비브라토 깊이 + + + + Tremolo depth + 트레몰로 깊이 + + + + lmms::OrganicInstrument + + + Distortion + 디스토션 + + + + Volume + 볼륨 + + + + lmms::OscillatorObject + + + Osc %1 waveform + Osc %1 파형 + + + + Osc %1 harmonic + Osc %1 하모닉 + + + + + Osc %1 volume + Osc %1 볼륨 + + + + + Osc %1 panning + Osc %1 패닝 + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + Osc %1 코어스 디튜닝 + + + + Osc %1 fine detuning left + Osc %1 파인 디튜닝 좌측 + + + + Osc %1 fine detuning right + Osc %1 파인 디튜닝 우측 + + + + Osc %1 phase-offset + Osc %1 페이즈-오프셋 + + + + Osc %1 stereo phase-detuning + Osc %1 스테레오 페이즈-디튜닝 + + + + Osc %1 wave shape + Osc %1 웨이브 형태 + + + + Modulation type %1 + 모듈레이션 유형 %1 + + + + lmms::PatternTrack + + + Pattern %1 + 패턴 %1 + + + + Clone of %1 + %1의 클론 + + + + lmms::PeakController + + + Peak Controller + 피크 컨트롤러 + + + + Peak Controller Bug + 피크 컨트롤러 버그 + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + 이전 버전 LMMS의 버그로 인해 피크 컨트롤러가 제대로 연결되지 않았을 수 있습니다. 피크 컨트롤러가 제대로 연결되었는지 확인 후 이 파일을 다시 저장해 주시기 바랍니다. 불편을 드려 죄송합니다. + + + + lmms::PeakControllerEffectControls + + + Base value + 기준 값 + + + + Modulation amount + 모듈레이션 양 + + + + Attack + 어택 + + + + Release + 릴리즈 + + + + Treshold + 트레스홀드 + + + + Mute output + 출력 음소거 + + + + Absolute value + 절댓값 + + + + Amount multiplicator + 양 배율기 + + + + lmms::Plugin + + + Plugin not found + 플러그인을 찾을 수 없음 + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + "%1" 플러그인을 찾을 수 없거나 불러올 수 없습니다. +원인: %2 + + + + Error while loading plugin + 플러그인 불러오는 중 오류 + + + + Failed to load plugin "%1"! + "%1" 플러그인을 불러오지 못했습니다! + + + + lmms::ReverbSCControls + + + Input gain + 입력 게인 + + + + Size + 크기 + + + + Color + 색상 + + + + Output gain + 출력 게인 + + + + lmms::SaControls + + + Pause + 일시정지 + + + + Reference freeze + 레퍼런스 프리즈 + + + + Waterfall + 워터폴 + + + + Averaging + 애버리징 + + + + Stereo + 스테레오 + + + + Peak hold + 피크 홀드 + + + + Logarithmic frequency + 로가리듬 주파수 + + + + Logarithmic amplitude + 로가리듬 진폭 + + + + Frequency range + 주파수 범위 + + + + Amplitude range + 진폭 범위 + + + + FFT block size + FFT 블록 크기 + + + + FFT window type + FFT 창 유형 + + + + Peak envelope resolution + 피크 엔벨로프 레졸루션 + + + + Spectrum display resolution + 스펙트럼 디스플레이 레졸루션 + + + + Peak decay multiplier + 피크 디케이 증폭기 + + + + Averaging weight + 애버리징 위젯 + + + + Waterfall history size + 워터폴 히스토리 크기 + + + + Waterfall gamma correction + 워터폴 감마 보정 + + + + FFT window overlap + FFT 창 오버랩 + + + + FFT zero padding + FFT 제로 패딩 + + + + + Full (auto) + 전체 (자동) + + + + + + Audible + 잘 들리게 + + + + Bass + 최저음 + + + + Mids + 중간음 + + + + High + 최고음 + + + + Extended + 늘어지게 + + + + Loud + 크게 + + + + Silent + 조용하게 + + + + (High time res.) + (최고음 시간 res.) + + + + (High freq. res.) + (최고음 주파수 res.) + + + + Rectangular (Off) + 렉탱귤러 (끔) + + + + + Blackman-Harris (Default) + 블랙맨-해리스 (기본값) + + + + Hamming + 해밍 + + + + Hanning + 해닝 + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + 볼륨 + + + + Panning + 패닝 + + + + Mixer channel + 믹서 채널 + + + + Sample track 샘플 트랙 - SampleTrackView + lmms::Scale - - Track volume - 트랙 음량 - - - - Channel volume: - 채널 음량: - - - - VOL - 음량 - - - - Panning - 패닝 - - - - Panning: - 패닝: - - - - PAN - 패닝 - - - - Channel %1: %2 - FX %1: %2 + + empty + 비어 있음 - SampleTrackWindow + lmms::Sf2Instrument - - GENERAL SETTINGS - 일반 설정 + + Bank + 뱅크 - - Sample volume - + + Patch + 패치 - - Volume: - 음량: + + Gain + 게인 - - VOL - 음량 + + Reverb + 리버브 - - Panning - 패닝 + + Reverb room size + 리버브 공간 크기 - - Panning: - 패닝: + + Reverb damping + 리버브 진폭 감소 - - PAN - 패닝 + + Reverb width + 리버브 폭 - - Mixer channel - FX 채널 + + Reverb level + 리버브 레벨 - - CHANNEL - FX + + Chorus + 코러스 + + + + Chorus voices + 코러스 보이스 + + + + Chorus level + 코러스 레벨 + + + + Chorus speed + 코러스 속도 + + + + Chorus depth + 코러스 깊이 + + + + A soundfont %1 could not be loaded. + %1 사운드폰트를 불러올 수 없습니다. - SaveOptionsWidget + lmms::SfxrInstrument - - Discard MIDI connections - - - - - Save As Project Bundle (with resources) - + + Wave + 웨이브 - SetupDialog + lmms::SidInstrument - - Reset to default value - 기본값으로 초기화 - - - - Use built-in NaN handler - - - - - Settings - 설정 - - - - - General - - - - - Graphical user interface (GUI) - - - - - Display volume as dBFS - 음량을 dBFS 단위로 표시 - - - - Enable tooltips - 툴팁 활성화 - - - - Enable master oscilloscope by default - - - - - Enable all note labels in piano roll - - - - - Enable compact track buttons - - - - - Enable one instrument-track-window mode - - - - - Show sidebar on the right-hand side - - - - - Let sample previews continue when mouse is released - - - - - Mute automation tracks during solo - - - - - Show warning when deleting tracks - - - - - Projects - - - - - Compress project files by default - - - - - Create a backup file when saving a project - - - - - Reopen last project on startup - - - - - Language - - - - - - Performance - - - - - Autosave - - - - - Enable autosave - - - - - Allow autosave while playing - - - - - User interface (UI) effects vs. performance - - - - - Smooth scroll in song editor - - - - - Display playback cursor in AudioFileProcessor - - - - - Plugins - 플러그인 - - - - VST plugins embedding: - - - - - No embedding - - - - - Embed using Qt API - - - - - Embed using native Win32 API - - - - - Embed using XEmbed protocol - - - - - Keep plugin windows on top when not embedded - - - - - Sync VST plugins to host playback - VST 플러그인을 LMMS 재생과 동기화 - - - - Keep effects running even without input - 입력이 없을 때에도 효과 작동 유지 - - - - - Audio - 오디오 - - - - Audio interface - - - - - HQ mode for output audio device - - - - - Buffer size - - - - - - MIDI - MIDI - - - - MIDI interface - - - - - Automatically assign MIDI controller to selected track - - - - - LMMS working directory - LMMS 작업 경로 - - - - VST plugins directory - - - - - LADSPA plugins directories - - - - - SF2 directory - SF2 경로 - - - - Default SF2 - - - - - GIG directory - GIG 경로 - - - - Theme directory - - - - - Background artwork - 배경 아트워크 - - - - Some changes require restarting. - - - - - Autosave interval: %1 - - - - - Choose the LMMS working directory - - - - - Choose your VST plugins directory - - - - - Choose your LADSPA plugins directory - - - - - Choose your default SF2 - - - - - Choose your theme directory - - - - - Choose your background picture - - - - - - Paths - 경로 - - - - OK - 확인 - - - - Cancel - 취소 - - - - Frames: %1 -Latency: %2 ms - 프레임: %1 -시간 지연: %2 ms - - - - Choose your GIG directory - GIG 경로 선택 - - - - Choose your SF2 directory - SF2 경로 선택 - - - - minutes - - - - - minute - - - - - Disabled - 비활성화됨 - - - - SidInstrument - - + Cutoff frequency - 차단 주파수 + 컷오프 주파수 - + Resonance 공명 - + Filter type - 필터 종류 + 필터 유형 - + Voice 3 off - + 보이스 3 끔 - + Volume - 음량 + 볼륨 - + Chip model 칩 모델 - SidInstrumentView + lmms::SlicerT - + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + + + + + lmms::Song + + + Tempo + 템포 + + + + Master volume + 마스터 볼륨 + + + + Master pitch + 마스터 피치 + + + + Aborting project load + 프로젝트 불러오기 중단하는 중 + + + + Project file contains local paths to plugins, which could be used to run malicious code. + 프로젝트 파일에는 악성 코드를 실행하는 데 사용될 수 있는 플러그인의 로컬 경로가 포함되어 있습니다. + + + + Can't load project: Project file contains local paths to plugins. + 프로젝트 불러올 수 없음: 프로젝트 파일에 플러그인에 대한 로컬 경로가 포함되어 있습니다. + + + + LMMS Error report + LMMS 오류 보고 + + + + (repeated %1 times) + (%1번 반복됨) + + + + The following errors occurred while loading: + 불러오는 동안 다음 오류가 발생했습니다: + + + + lmms::StereoEnhancerControls + + + Width + + + + + lmms::StereoMatrixControls + + + Left to Left + 좌측 → 좌측 + + + + Left to Right + 좌측 → 우측 + + + + Right to Left + 우측 → 좌측 + + + + Right to Right + 우측 → 우측 + + + + lmms::Track + + + Mute + 음소거 + + + + Solo + 솔로 연주 + + + + lmms::TrackContainer + + + Couldn't import file + 파일을 가져올 수 없음 + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + %1 파일을 가져오기 위한 필터링를 찾을 수 없습니다. +다른 소프트웨어를 사용하여 이 파일을 LMMS에서 지원하는 형식으로 변환해야 합니다. + + + + Couldn't open file + 파일을 열 수 없음 + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + 읽기 위한 %1 파일을 열 수 없습니다. +파일과 파일이 포함된 디렉터리에 대한 읽기 권한이 있는지 확인한 후 다시 시도하세요! + + + + Loading project... + 프로젝트 불러오는 중... + + + + + Cancel + 취소 + + + + + Please wait... + 잠시만 기다려 주세요... + + + + Loading cancelled + 불러오는 도중 취소됨 + + + + Project loading was cancelled. + 프로젝트가 불러오는 도중에 취소되었습니다. + + + + Loading Track %1 (%2/Total %3) + 트랙 %1 불러오는 중 (%2/총 %3) + + + + Importing MIDI-file... + MIDI 파일 가져오는중... + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + 지속됨 양 화면표시 + + + + Logarithmic scale + 로가리듬 스케일 + + + + High quality + 고음질 + + + + lmms::VestigeInstrument + + + Loading plugin + 플러그인 불러오는 중 + + + + Please wait while loading the VST plugin... + VST 플러그인을 불러오는 동안 잠시 기다려 주세요... + + + + lmms::Vibed + + + String %1 volume + 스트링 %1 볼륨 + + + + String %1 stiffness + 스트링 %1 스티프니스 + + + + Pick %1 position + 픽 %1 포지션 + + + + Pickup %1 position + 픽업 %1 포지션 + + + + String %1 panning + 스트링 %1 패닝 + + + + String %1 detune + 스트링 %1 디튠 + + + + String %1 fuzziness + 스트링 %1 퍼지니스 + + + + String %1 length + 스트링 %1 길이 + + + + Impulse %1 + 임펄스 %1 + + + + String %1 + 스트링 %1 + + + + lmms::VoiceObject + + + Voice %1 pulse width + 보이스 %1 펄스 폭 + + + + Voice %1 attack + 보이스 %1 어택 + + + + Voice %1 decay + 보이스 %1 디케이 + + + + Voice %1 sustain + 보이스 %1 서스테인 + + + + Voice %1 release + 보이스 %1 릴리즈 + + + + Voice %1 coarse detuning + 보이스 %1 코어스 디튜닝 + + + + Voice %1 wave shape + 보이스 %1 웨이브 형태 + + + + Voice %1 sync + 보이스 %1 싱크 + + + + Voice %1 ring modulate + 보이스 %1 링 조절하기 + + + + Voice %1 filtered + 보이스 %1 필터링됨 + + + + Voice %1 test + 보이스 %1 테스트 + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + VST 플러그인 %1을 불러올 수 없습니다. + + + + Open Preset + 프리셋 열기 + + + + + VST Plugin Preset (*.fxp *.fxb) + VST 플러그인 프리셋 (*.fxp *.fxb) + + + + : default + : 기본값 + + + + Save Preset + 프리셋 저장하기 + + + + .fxp + .fxp + + + + .FXP + .FXP + + + + .FXB + .FXB + + + + .fxb + .fxb + + + + Loading plugin + 플러그인 불러오는 중 + + + + Please wait while loading VST plugin... + VST 플러그인을 불러오는 동안 잠시 기다려 주세요... + + + + lmms::WatsynInstrument + + + Volume A1 + 볼륨 A1 + + + + Volume A2 + 볼륨 A2 + + + + Volume B1 + 볼륨 B1 + + + + Volume B2 + 볼륨 B2 + + + + Panning A1 + 패닝 A1 + + + + Panning A2 + 패닝 A2 + + + + Panning B1 + 패닝 B1 + + + + Panning B2 + 패닝 B2 + + + + Freq. multiplier A1 + 주파수 증폭기 A1 + + + + Freq. multiplier A2 + 주파수 증폭기 A2 + + + + Freq. multiplier B1 + 주파수 증폭기 B1 + + + + Freq. multiplier B2 + 주파수 증폭기 B2 + + + + Left detune A1 + 좌측 디튠 A1 + + + + Left detune A2 + 좌측 디튠 A2 + + + + Left detune B1 + 좌측 디튠 B1 + + + + Left detune B2 + 좌측 디튠 B2 + + + + Right detune A1 + 우측 디튠 A1 + + + + Right detune A2 + 우측 디튠 A2 + + + + Right detune B1 + 우측 디튠 B1 + + + + Right detune B2 + 우측 디튠 B2 + + + + A-B Mix + A-B 믹스 + + + + A-B Mix envelope amount + A-B 믹스 엔벨로프 양 + + + + A-B Mix envelope attack + A-B 믹스 엔벨로프 어택 + + + + A-B Mix envelope hold + A-B 믹스 엔벨로프 홀드 + + + + A-B Mix envelope decay + A-B 믹스 엔벨로프 디케이 + + + + A1-B2 Crosstalk + A1-B2 크로스토크 + + + + A2-A1 modulation + A2-A1 모듈레이션 + + + + B2-B1 modulation + B2-B1 모듈레이션 + + + + Selected graph + 선택된 그래프 + + + + lmms::WaveShaperControls + + + Input gain + 입력 게인 + + + + Output gain + 출력 게인 + + + + lmms::Xpressive + + + Selected graph + 선택된 그래프 + + + + A1 + A1 + + + + A2 + A2 + + + + A3 + A3 + + + + W1 smoothing + W1 스무딩 + + + + W2 smoothing + W2 스무딩 + + + + W3 smoothing + W3 스무딩 + + + + Panning 1 + 패닝 1 + + + + Panning 2 + 패닝 2 + + + + Rel trans + 릴리즈 전환 + + + + lmms::ZynAddSubFxInstrument + + + Portamento + 포르타멘토 + + + + Filter frequency + 필터 주파수 + + + + Filter resonance + 필터 공명 + + + + Bandwidth + 대역폭 + + + + FM gain + FM 게인 + + + + Resonance center frequency + 공명 중심 주파수 + + + + Resonance bandwidth + 공명 대역폭 + + + + Forward MIDI control change events + 정방향 MIDI 컨트롤 변경 이벤트 + + + + lmms::graphModel + + + Graph + 그래프 + + + + lmms::gui::AmplifierControlDialog + + + VOL + 볼륨 + + + Volume: - 음량: + 볼륨: - - Resonance: - 공명: + + PAN + 패닝 - - - Cutoff frequency: - 차단 주파수: + + Panning: + 패닝: - - High-pass filter - 고역 통과 필터 + + LEFT + - - Band-pass filter - 대역 통과 필터 + + Left gain: + 좌측 게인: - - Low-pass filter - 저역 통과 필터 + + RIGHT + - - Voice 3 off - 소리 3 끄기 + + Right gain: + 우측 게인: + + + lmms::gui::AudioAlsaSetupWidget - - MOS6581 SID - MOS6581 SID - - - - MOS8580 SID - MOS8580 SID - - - - - Attack: + + Device - - - Decay: - 감쇠: + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + 샘플 열기 - - Sustain: + + Reverse sample + 리버스 샘플 + + + + Disable loop + 루프 비활성화 + + + + Enable loop + 루프 활성화 + + + + Enable ping-pong loop + 핑-퐁 루프 활성화 + + + + Continue sample playback across notes + 노트 전체에 걸쳐 샘플 재생 계속하기 + + + + Amplify: + Amplify: + + + + Start point: + 시작점: + + + + End point: + 끝점: + + + + Loopback point: + 루프백 포인트: + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + 샘플 길이: + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + 오토메이션 편집기에서 열기 + + + + Clear + 지우기 + + + + Reset name + 이름 재설정 + + + + Change name + 이름 변경하기 + + + + Set/clear record + 녹음 지정하기/지우기 + + + + Flip Vertically (Visible) + 수직으로 뒤집기 (표시됨) + + + + Flip Horizontally (Visible) + 수평으로 뒤집기 (표시됨) + + + + %1 Connections + %1 연결 + + + + Disconnect "%1" + "%1" 연결끊기 + + + + Model is already connected to this clip. + 모델이 이미 이 클립에 연결되어 있습니다. + + + + lmms::gui::AutomationEditor + + + Edit Value + 값 편집하기 + + + + New outValue + 새 출력값 + + + + New inValue + 새 입력값 + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + 현재 클립 연주하기/일시중지 (Space) + + + + Stop playing of current clip (Space) + 현재 클립 연주 중지하기 (Space) + + + + Edit actions + 편집 작업 + + + + Draw mode (Shift+D) + 그리기 모드 (Shift+D) + + + + Erase mode (Shift+E) + 지우기 모드 (Shift+E) + + + + Draw outValues mode (Shift+C) + 출력값 그리기 모드 (Shift+C) + + + + Edit tangents mode (Shift+T) - - - Release: + + Flip vertically + 수직으로 뒤집기 + + + + Flip horizontally + 수평으로 뒤집기 + + + + Interpolation controls + 인터폴레이션 컨트롤 + + + + Discrete progression + 디스크리트 프로그레션 + + + + Linear progression + 리니어 프로그레션 + + + + Cubic Hermite progression + 큐빅 에르미트 프로그레션 + + + + Tension value for spline + 스플라인의 텐션 값 + + + + Tension: + 텐션: + + + + Zoom controls + 컨트롤 확대/축소 + + + + Horizontal zooming + 수평 주밍 + + + + Vertical zooming + 수직 주밍 + + + + Quantization controls + 퀀티제이션 컨트롤 + + + + Quantization + 퀀티제이션 + + + + Clear ghost notes - - Pulse Width: - 펄스 폭: + + + Automation Editor - no clip + 오토메이션 편집기 - 클립 없음 - - Coarse: - + + + Automation Editor - %1 + 오토메이션 편집기 - %1 - - Pulse wave - 펄스파 + + Model is already connected to this clip. + 모델이 이미 이 클립에 연결되어 있습니다. + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + FREQ - + + Frequency: + 주파수: + + + + GAIN + 게인 + + + + Gain: + 게인: + + + + RATIO + 레시오 + + + + Ratio: + 레시오: + + + + lmms::gui::BitInvaderView + + + Sample length + 샘플 길이 + + + + Draw your own waveform here by dragging your mouse on this graph. + 이 그래프 위에 마우스를 드래그하여 여기에 나만의 파형을 그려보세요. + + + + + Sine wave + 사인파 + + + + Triangle wave 삼각파 - + + Saw wave 톱니파 - + + + Square wave + 사각파 + + + + + White noise + 백색 잡음 + + + + + User-defined wave + 사용자 정의된 파형 + + + + + Smooth waveform + 부드러운 파형 + + + + Interpolation + 인터폴레이션 + + + + Normalize + 노멀라이즈 + + + + lmms::gui::BitcrushControlDialog + + + IN + 입력 + + + + OUT + 출력 + + + + + GAIN + 게인 + + + + Input gain: + 입력 게인: + + + + NOISE + 잡음 + + + + Input noise: + 입력 잡음: + + + + Output gain: + 출력 게인: + + + + CLIP + 클립 + + + + Output clip: + 출력 클립: + + + + Rate enabled + 레이트 활성화됨 + + + + Enable sample-rate crushing + 샘플 레이트 크러싱 활성화 + + + + Depth enabled + 깊이 활성화됨 + + + + Enable bit-depth crushing + 비트 깊이 크러싱 활성화 + + + + FREQ + FREQ + + + + Sample rate: + 샘플 레이트: + + + + STEREO + 스테레오 + + + + Stereo difference: + 스테레오 차이: + + + + QUANT + 퀀타이즈 + + + + Levels: + 레벨: + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + - 노트 및 셋업: %1% + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + GUI 표시하기 + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + Carla의 그래픽 사용자 인터페이스(GUI)를 표시하거나 숨기려면 여기를 클릭하세요. + + + + Params + 매개변수 + + + + Available from Carla version 2.1 and up. + Carla 버전 2.1 이상부터 사용 가능합니다. + + + + lmms::gui::CarlaParamsView + + + Search.. + 검색하기.. + + + + Clear filter text + 필터 텍스트 지우기 + + + + Only show knobs with a connection. + 연결된 노브만 표시합니다. + + + + - Parameters + - 매개변수 + + + + lmms::gui::ClipView + + + Current position + 현재 포지션 + + + + Current length + 현재 길이 + + + + + %1:%2 (%3:%4 to %5:%6) + %1:%2 (%3:%4 ~ %5:%6) + + + + Press <%1> and drag to make a copy. + <%1>을 누르고 드래그하여 복사합니다. + + + + Press <%1> for free resizing. + 자유롭게 크기를 조정하려면 <%1>을 누르십시오. + + + + Hint + 힌트 + + + + Delete (middle mousebutton) + 삭제하기 (마우스 가운데 버튼) + + + + Delete selection (middle mousebutton) + 선택항목 삭제하기 (마우스 가운데 버튼) + + + + Cut + 잘라내기 + + + + Cut selection + 선택항목 잘라내기 + + + + Merge Selection + 선택항목 합치기 + + + + Copy + 복사하기 + + + + Copy selection + 선택항목 복사하기 + + + + Paste + 붙여넣기 + + + + Mute/unmute (<%1> + middle click) + 음소거/음소거 해제 (<%1> + 가운데 버튼 클릭) + + + + Mute/unmute selection (<%1> + middle click) + 선택항목 음소거/음소거 해제 (<%1> + 가운데 버튼 클릭) + + + + Clip color + 클립 색상 + + + + Change + 변경하기 + + + + Reset + 재설정 + + + + Pick random + 무작위 고르기 + + + + lmms::gui::CompressorControlDialog + + + Threshold: + 스레시홀드: + + + + Volume at which the compression begins to take place + 압축이 시작되는 지점의 볼륨 + + + + Ratio: + 레시오: + + + + How far the compressor must turn the volume down after crossing the threshold + 컴프레서가 스레시홀드를 초과한 후 볼륨을 낮춰야 하는 정도 + + + + Attack: + 어택: + + + + Speed at which the compressor starts to compress the audio + 컴프레서가 오디오 압축을 시작하는 속도 + + + + Release: + 릴리즈: + + + + Speed at which the compressor ceases to compress the audio + 컴프레서가 오디오 압축을 중단하는 속도 + + + + Knee: + 니(Knee): + + + + Smooth out the gain reduction curve around the threshold + 스레시홀드 주변에서 게인 감소 곡선 부드럽게 펴기 + + + + Range: + 범위: + + + + Maximum gain reduction + 최대 게인 감소 + + + + Lookahead Length: + 룩어헤드 길이: + + + + How long the compressor has to react to the sidechain signal ahead of time + 컴프레서가 미리 사이드체인 신호에 반응해야 하는 시간 + + + + Hold: + 홀드: + + + + Delay between attack and release stages + 어택과 릴리즈 단계 사이의 딜레이 + + + + RMS Size: + RMS 크기: + + + + Size of the RMS buffer + RMS 버퍼의 크기 + + + + Input Balance: + 입력 밸런스: + + + + Bias the input audio to the left/right or mid/side + 입력 오디오를 좌/우 또는 중간/측면으로 치우치게하기 + + + + Output Balance: + 출력 밸런스: + + + + Bias the output audio to the left/right or mid/side + 출력 오디오를 좌/우 또는 중간/측면으로 치우치게하기 + + + + Stereo Balance: + 스테레오 밸런스: + + + + Bias the sidechain signal to the left/right or mid/side + 사이드 체인 신호를 좌/우 또는 중간/측면으로 치우치게하기 + + + + Stereo Link Blend: + 스테레오 링크 섞기: + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + 림크해제된/최대/평균/최소 스테레오 링킹 모드 간 섞기 + + + + Tilt Gain: + 틸트 게인: + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + 사이드체인 신호를 저주파 또는 고주파로 치우치게 합니다. -6db는 로패스, 6db는 하이패스입니다. + + + + Tilt Frequency: + 틸트 주파수: + + + + Center frequency of sidechain tilt filter + 사이드 체인 틸트 필터의 중심 주파수 + + + + Mix: + 믹스: + + + + Balance between wet and dry signals + 웨트 신호와 드라이 신호 간의 밸런스 + + + + Auto Attack: + 자동 어택: + + + + Automatically control attack value depending on crest factor + 파고율에 따른 어택 값 자동적으로 제어 + + + + Auto Release: + 자동 릴리즈: + + + + Automatically control release value depending on crest factor + 파고율에 따른 릴리즈 값 자동적으로 제어 + + + + Output gain + 출력 게인 + + + + + Gain + 게인 + + + + Output volume + 출력 볼륨 + + + + Input gain + 입력 게인 + + + + Input volume + 입력 볼륨 + + + + Root Mean Square + 제곱 평균 제곱근 + + + + Use RMS of the input + 입력의 RMS 사용하기 + + + + Peak + 피크 + + + + Use absolute value of the input + 입력의 절대값 사용하기 + + + + Left/Right + 좌/우 + + + + Compress left and right audio + 좌측 및 우측 오디오 압축하기 + + + + Mid/Side + 중간/측면 + + + + Compress mid and side audio + 중간 및 측면 오디오 압축하기 + + + + Compressor + 컴프레서 + + + + Compress the audio + 오디오 압축하기 + + + + Limiter + 리미터 + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + 레시오를 무한대로 지정 (오디오 볼륨 제한이 보장되지 않음) + + + + Unlinked + 링크 해제됨 + + + + Compress each channel separately + 각 채널 따로따로 압축하기 + + + + Maximum + 최댓값 + + + + Compress based on the loudest channel + 가장 소리가 큰 채널을 기준으로 압축하기 + + + + Average + 평균 + + + + Compress based on the averaged channel volume + 평균 채널 볼륨을 기준으로 압축 + + + + Minimum + 최솟값 + + + + Compress based on the quietest channel + 가장 조용한 채널을 기준으로 압축하기 + + + + Blend + 섞기 + + + + Blend between stereo linking modes + 스테레오 링킹 모드 간 섞기 + + + + Auto Makeup Gain + 자동 메이크업 게인 + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + 스레시홀드, 니(Knee) 및 레시오 설정에 따라 자동으로 메이크업 게인 변경 + + + + + Soft Clip + 소프트 클립 + + + + Play the delta signal + 델타 신호 연주하기 + + + + Use the compressor's output as the sidechain input + 컴프레서의 출력을 사이드체인 입력으로 사용하기 + + + + Lookahead Enabled + 룩어헤드 활성화됨 + + + + Enable Lookahead, which introduces 20 milliseconds of latency + 20밀리초의 레이턴시를 유발하는 룩어헤드 활성화 + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + 연결 설정 + + + + MIDI CONTROLLER + MIDI 컨트롤러 + + + + Input channel + 입력 채널 + + + + CHANNEL + 채널 + + + + Input controller + 입력 컨트롤러 + + + + CONTROLLER + 컨트롤러 + + + + + Auto Detect + 자동 감지 + + + + MIDI-devices to receive MIDI-events from + MIDI 이벤트를 수신할 MIDI 디바이스 + + + + USER CONTROLLER + 사용자 컨트롤러 + + + + MAPPING FUNCTION + 매핑 기능 + + + + OK + 확인 + + + + Cancel + 취소 + + + + LMMS + LMMS + + + + Cycle Detected. + 사이클이 감지되었습니다. + + + + lmms::gui::ControllerRackView + + + Controller Rack + 컨트롤러 랙 + + + + Add + 추가하기 + + + + Confirm Delete + 삭제 확인하기 + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + 삭제를 확인하시겠습니까? 이 컨트롤러와 연결된 기존 연결이 있습니다. 실행 취소할 방법이 없습니다. + + + + lmms::gui::ControllerView + + + Controls + 컨트롤 + + + + Rename controller + 컨트롤러 이름변경 + + + + Enter the new name for this controller + 이 컨트롤러의 새 이름을 입력하세요 + + + + LFO + LFO + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + 이 컨트롤러 제거(&R) + + + + Re&name this controller + 이 컨트롤러 이름 변경(&N) + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + 밴드 1/2 크로스오버: + + + + Band 2/3 crossover: + 밴드 2/3 크로스오버: + + + + Band 3/4 crossover: + 밴드 3/4 크로스오버: + + + + Band 1 gain + 밴드 1 게인 + + + + Band 1 gain: + 밴드 1 게인: + + + + Band 2 gain + 밴드 2 게인 + + + + Band 2 gain: + 밴드 2 게인: + + + + Band 3 gain + 밴드 3 게인 + + + + Band 3 gain: + 밴드 3 게인: + + + + Band 4 gain + 밴드 4 게인 + + + + Band 4 gain: + 밴드 4 게인: + + + + Band 1 mute + 밴드 1 음소거 + + + + Mute band 1 + 음소거 밴드 1 + + + + Band 2 mute + 밴드 2 음소거 + + + + Mute band 2 + 음소거 밴드 2 + + + + Band 3 mute + 밴드 3 음소거 + + + + Mute band 3 + 음소거 밴드 3 + + + + Band 4 mute + 밴드 4 음소거 + + + + Mute band 4 + 음소거 밴드 4 + + + + lmms::gui::DelayControlsDialog + + + DELAY + 딜레이 + + + + Delay time + 딜레이 시간 + + + + FDBK + FDBK + + + + Feedback amount + 피드백 양 + + + + RATE + 레이트 + + + + LFO frequency + LFO 주파수 + + + + AMNT + AMNT + + + + LFO amount + LFO 양 + + + + Out gain + 출력 게인 + + + + Gain + 게인 + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + AMOUNT + + + + Number of all-pass filters + 올패스 필터의 수 + + + + FREQ + FREQ + + + + Frequency: + 주파수: + + + + RESO + RESO + + + + Resonance: + 공명: + + + + FEED + FEED + + + + Feedback: + 피드백: + + + + DC Offset Removal + DC 오프셋 제거 + + + + Remove DC Offset + DC 오프셋 제거하기 + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + FREQ + + + + + Cutoff frequency + 컷오프 주파수 + + + + + RESO + RESO + + + + + Resonance + 공명 + + + + + GAIN + 게인 + + + + + Gain + 게인 + + + + MIX + MIX + + + + Mix + 믹스 + + + + Filter 1 enabled + 필터 1 활성화됨 + + + + Filter 2 enabled + 필터 2 활성화됨 + + + + Enable/disable filter 1 + 필터 1 활성화/비활성화 + + + + Enable/disable filter 2 + 필터 2 활성화/비활성화 + + + + lmms::gui::DynProcControlDialog + + + INPUT + 입력 + + + + Input gain: + 입력 게인: + + + + OUTPUT + 출력 + + + + Output gain: + 출력 게인: + + + + ATTACK + 어택 + + + + Peak attack time: + 피크 어택 시간: + + + + RELEASE + 릴리즈 + + + + Peak release time: + 피크 릴리즈 시간: + + + + + Reset wavegraph + 웨이브그래프 재설정 + + + + + Smooth wavegraph + 부드러운 웨이브그래프 + + + + + Increase wavegraph amplitude by 1 dB + 웨이브그래프 진폭 1dB씩 증가하기 + + + + + Decrease wavegraph amplitude by 1 dB + 웨이브그래프 진폭 1dB씩 감소하기 + + + + Stereo mode: maximum + 스테레오 모드: 최댓값 + + + + Process based on the maximum of both stereo channels + 양쪽 스테레오 채널의 최대값을 기준으로 처리하기 + + + + Stereo mode: average + 스테레오 모드: 평균값 + + + + Process based on the average of both stereo channels + 양쪽 스테레오 채널의 평균값을 기준으로 처리하기 + + + + Stereo mode: unlinked + 스테레오 모드: 링크 해제됨 + + + + Process each stereo channel independently + 각 스테레오 채널을 독자적으로 처리 + + + + lmms::gui::Editor + + + Transport controls + 트랜스포트 컨트롤 + + + + Play (Space) + 연주하기 (Space) + + + + Stop (Space) + 중지하기 (Space) + + + + Record + 녹음하기 + + + + Record while playing + 연주하면서 녹음하기 + + + + Toggle Step Recording + 스탭 녹음 전환하기 + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + 이펙트 체인 + + + + Add effect + 이펙트 추가하기 + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + 이름 + + + + Type + 유형 + + + + All + + + + + Search + + + + + Description + 설명 + + + + Author + 원작자 + + + + lmms::gui::EffectView + + + On/Off + 켬/끔 + + + + W/D + W/D + + + + Wet Level: + 웨트 레벨: + + + + DECAY + 디케이 + + + + Time: + 시간: + + + + GATE + 게이트 + + + + Gate: + 게이트: + + + + Controls + 컨트롤 + + + + Move &up + 위로 이동(&U) + + + + Move &down + 아래로 이동(&D) + + + + &Remove this plugin + 이 플러그인 제거(&R) + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + AMT + + + + + Modulation amount: + 모듈레이션 양: + + + + + DEL + DEL + + + + + Pre-delay: + 프리-딜레이: + + + + + ATT + ATT + + + + + Attack: + 어택: + + + + HOLD + HOLD + + + + Hold: + 홀드: + + + + DEC + DEC + + + + Decay: + 디케이: + + + + SUST + SUST + + + + Sustain: + 서스테인: + + + + REL + REL + + + + Release: + 릴리즈: + + + + SPD + SPD + + + + Frequency: + 주파수: + + + + FREQ x 100 + FREQ x 100 + + + + Multiply LFO frequency by 100 + LFO 주파수를 100으로 곱합니다 + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + 이 LFO로 엔벨로프 양 제어하기 + + + + Hint + 힌트 + + + + Drag and drop a sample into this window. + 샘플을 이 창으로 끌어다 놓으세요. + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + HP + + + + Low-shelf + 로셀프 + + + + Peak 1 + 피크 1 + + + + Peak 2 + 피크 2 + + + + Peak 3 + 피크 3 + + + + Peak 4 + 피크 4 + + + + High-shelf + 하이셸프 + + + + LP + LP + + + + Input gain + 입력 게인 + + + + + + Gain + 게인 + + + + Output gain + 출력 게인 + + + + Bandwidth: + 대역폭: + + + + Octave + 옥타브 + + + + Resonance: + + + + + Frequency: + 주파수: + + + + LP group + LP 그룹 + + + + HP group + HP 그룹 + + + + lmms::gui::EqHandle + + + Reso: + 공명: + + + + BW: + 대역폭: + + + + + Freq: + 주파수: + + + + lmms::gui::ExportProjectDialog + + + Could not open file + 파일을 열 수 없음 + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + 쓰기 위한 %1 파일을 열 수 없습니다. +파일 및 파일이 포함된 디렉터리에 대한 쓰기 권한이 있는지 확인한 후 다시 시도하세요! + + + + Export project to %1 + %1(으)로 프로젝트 내보내기 + + + + ( Fastest - biggest ) + ( 가장 빠름 - 최대 용량 ) + + + + ( Slowest - smallest ) + ( 가장 빠름 - 최소 용량 ) + + + + Error + 오류 + + + + Error while determining file-encoder device. Please try to choose a different output format. + 파일 인코더 디바이스를 확인하는 동안 오류가 발생했습니다. 다른 출력 형식을 선택하십시오. + + + + Rendering: %1% + 렌더링: %1% + + + + lmms::gui::Fader + + + Set value + 값 지정하기 + + + + Please enter a new value between %1 and %2: + %1부터 %2까지의 값을 입력하세요: + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + 탐색기 + + + + Search + 검색 + + + + Refresh list + 목록 새로고침 + + + + User content + 사용자 콘텐츠 + + + + Factory content + 팩토리 콘텐츠 + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + 활성 악기 트랙으로 전송하기 + + + + Open containing folder + 포함된 폴더 열기 + + + + Song Editor + 노래 편집기 + + + + Pattern Editor + 패턴 편집기 + + + + Send to new AudioFileProcessor instance + 새 AudioFileProcessor 인스턴스로 전송하기 + + + + Send to new instrument track + 새 악기 트랙으로 전송하기 + + + + (%2Enter) + (%2Enter) + + + + Send to new sample track (Shift + Enter) + 새 샘플 트랙으로 전송하기 (Shift + Enter) + + + + Loading sample + 샘플 불러오는 중 + + + + Please wait, loading sample for preview... + 잠시만 기다려 주세요. 미리보기용 샘플 불러오는 중... + + + + Error + 오류 + + + + %1 does not appear to be a valid %2 file + %1은(는) 올바른 %2 파일이 아닌 것 같습니다 + + + + --- Factory files --- + --- 팩토리 파일 --- + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + 딜레이 + + + + Delay time: + 딜레이 시간: + + + + RATE + 레이트 + + + + Period: + 주기: + + + + AMNT + AMNT + + + + Amount: + 양: + + + + PHASE + 페이즈 + + + + Phase: + 페이즈: + + + + FDBK + FDBK + + + + Feedback amount: + 피드백 양: + + + + NOISE + 잡음 + + + + White noise amount: + 백색 잡음량: + + + + Invert + 반전 + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + 스위프 시간: + + + + Sweep time + 스위프 시간 + + + + Sweep rate shift amount: + 스위프 레이트 시프트 양: + + + + Sweep rate shift amount + 스위프 레이트 시프트 양 + + + + + Wave pattern duty cycle: + 웨이브 패턴 듀티 사이클: + + + + + Wave pattern duty cycle + 웨이브 패턴 듀티 사이클 + + + + Square channel 1 volume: + 스퀘어 채널 1 볼륨: + + + + Square channel 1 volume + 스퀘어 채널 1 볼륨 + + + + + + Length of each step in sweep: + 스위프에서 각 스텝의 길이: + + + + + + Length of each step in sweep + 스위프에서 각 스텝의 길이 + + + + Square channel 2 volume: + 스퀘어 채널 2 볼륨: + + + + Square channel 2 volume + 스퀘어 채널 2 볼륨 + + + + Wave pattern channel volume: + 웨이브 패턴 채널 볼륨: + + + + Wave pattern channel volume + 웨이브 패턴 채널 볼륨 + + + + Noise channel volume: + 잡음 채널 볼륨: + + + + Noise channel volume + 잡음 채널 볼륨 + + + + SO1 volume (Right): + SO1 볼륨 (우측): + + + + SO1 volume (Right) + SO1 볼륨 (우측) + + + + SO2 volume (Left): + SO2 볼륨 (좌측): + + + + SO2 volume (Left) + SO2 볼륨 (좌측) + + + + Treble: + 트레블: + + + + Treble + 트레블 + + + + Bass: + 베이스: + + + + Bass + 베이스 + + + + Sweep direction + 스위프 방향 + + + + + + + + Volume sweep direction + 볼륨 스위프 방향 + + + + Shift register width + 시프트 레지스터 너비 + + + + Channel 1 to SO1 (Right) + 채널 1 → SO1 (우측) + + + + Channel 2 to SO1 (Right) + 채널 2 → SO1 (우측) + + + + Channel 3 to SO1 (Right) + 채널 3 → SO1 (우측) + + + + Channel 4 to SO1 (Right) + 채널 4 → SO1 (우측) + + + + Channel 1 to SO2 (Left) + 채널 1 → SO2 (좌측) + + + + Channel 2 to SO2 (Left) + 채널 2 → SO2 (좌측) + + + + Channel 3 to SO2 (Left) + 채널 3 → SO2 (좌측) + + + + Channel 4 to SO2 (Left) + 채널 4 → SO2 (좌측) + + + + Wave pattern graph + 웨이브 패턴 그래프 + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + GIG 파일 열기 + + + + Choose patch + 패치 고르기 + + + + Gain: + 게인: + + + + GIG Files (*.gig) + GIG 파일 (*.gig) + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + 작업 디렉터리 + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + LMMS 작업 디렉터리 %1이(가) 없습니다. 지금 만드시겠습니까? 나중에 편집 -> 설정을 통해 디렉터리를 변경할 수 있습니다. + + + + Preparing UI + UI 준비하는 중 + + + + Preparing song editor + 노래 편집기 준비하는 중 + + + + Preparing mixer + 믹서 준비하는 중 + + + + Preparing controller rack + 컨트롤러 랙 준비하는 중 + + + + Preparing project notes + 프로젝트 노트 준비하는 중 + + + + Preparing microtuner + 마이크로튜너 준비하는 중 + + + + Preparing pattern editor + 패턴 편집기 준비하는 중 + + + + Preparing piano roll + 피아노 롤 준비하는 중 + + + + Preparing automation editor + 오토메이션 편집기 준비하는 중 + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + 아르페지오 + + + + RANGE + 범위 + + + + Arpeggio range: + 아르페지오 범위: + + + + octave(s) + 옥타브 + + + + REP + 반복 + + + + Note repeats: + 노트 반복: + + + + time(s) + + + + + CYCLE + 사이클 + + + + Cycle notes: + 사이클 노트: + + + + note(s) + 노트 + + + + SKIP + 스킵 + + + + Skip rate: + 스킵 비율: + + + + + + % + % + + + + MISS + 누락 + + + + Miss rate: + 누락 비율: + + + + TIME + 시간 + + + + Arpeggio time: + 아르페지오 시간: + + + + ms + ms + + + + GATE + 게이트 + + + + Arpeggio gate: + 아르페지오 게이트: + + + + Chord: + 코드: + + + + Direction: + 방향: + + + + Mode: + 모드: + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + 스태킹 + + + + Chord: + 코드: + + + + RANGE + 범위 + + + + Chord range: + 코드 범위: + + + + octave(s) + 옥타브 + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + MIDI 입력 활성화 + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + 채널 + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + 벨로시티 + + + + ENABLE MIDI OUTPUT + MIDI 출력 활성화 + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + 프로그램 + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + 노트 + + + + MIDI devices to receive MIDI events from + MIDI 이벤트를 수신할 MIDI 디바이스 + + + + MIDI devices to send MIDI events to + MIDI 이벤트를 전송할 MIDI 디바이스 + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + 대상 + + + + FILTER + 필터 + + + + FREQ + FREQ + + + + Cutoff frequency: + 컷오프 주파수: + + + + Hz + Hz + + + + Q/RESO + Q/공명 + + + + Q/Resonance: + Q/공명: + + + + Envelopes, LFOs and filters are not supported by the current instrument. + 엔벨로프, LFO 및 필터는 현재 악기에서 지원되지 않습니다. + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + 볼륨 + + + + Volume: + 볼륨: + + + + VOL + 볼륨 + + + + Panning + 패닝 + + + + Panning: + 패닝: + + + + PAN + 패닝 + + + + MIDI + MIDI + + + + Input + 입력 + + + + Output + 출력 + + + + Open/Close MIDI CC Rack + MIDI CC 랙 열기/닫기 + + + + %1: %2 + %1: %2 + + + + lmms::gui::InstrumentTrackWindow + + + Volume + 볼륨 + + + + Volume: + 볼륨: + + + + VOL + 볼륨 + + + + Panning + 패닝 + + + + Panning: + 패닝: + + + + PAN + 패닝 + + + + Pitch + 피치 + + + + Pitch: + 피치: + + + + cents + 센트 + + + + PITCH + 피치 + + + + Pitch range (semitones) + 피치 범위 (반음) + + + + RANGE + 범위 + + + + Mixer channel + 믹서 채널 + + + + CHANNEL + 채널 + + + + Save current instrument track settings in a preset file + 현재 악기 트랙 설정을 프리셋 파일에 저장하기 + + + + SAVE + 저장하기 + + + + Envelope, filter & LFO + 엔벨로프, 필터 & LFO + + + + Chord stacking & arpeggio + 코드 스태킹 & 아르페지오 + + + + Effects + 이펙트 + + + + MIDI + MIDI + + + + Tuning and transposition + + + + + Save preset + 프리셋 저장하기 + + + + XML preset file (*.xpf) + XML 프리셋 파일 (*.xpf) + + + + Plugin + 플러그인 + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + 시작 주파수: + + + + End frequency: + 끝 주파수: + + + + Frequency slope: + 주파수 슬로프: + + + + Gain: + 게인: + + + + Envelope length: + 엔벨로프 길이: + + + + Envelope slope: + 엔벨로프 슬로프: + + + + Click: + 클릭: + + + + Noise: + 잡음: + + + + Start distortion: + 시작 디스토션: + + + + End distortion: + 끝 디스토션: + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + 사용 가능한 이펙트 + + + + + Unavailable Effects + 사용할 수 없는 이펙트 + + + + + Instruments + 악기 + + + + + Analysis Tools + 분석 도구 + + + + + Don't know + 알 수 없음 + + + + Type: + 유형: + + + + lmms::gui::LadspaControlDialog + + + Link Channels + 링크 채널 + + + + Channel + 채널 + + + + lmms::gui::LadspaControlView + + + Link channels + 링크 채널 + + + + Value: + 값: + + + + lmms::gui::LadspaDescription + + + Plugins + 플러그인 + + + + Description + 설명 + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + 포트 + + + + Name + 이름 + + + + Rate + 레이트 + + + + Direction + 방향 + + + + Type + 유형 + + + + Min < Default < Max + 최소 < 기본 < 최대 + + + + Logarithmic + 로가리듬 + + + + SR Dependent + SR 종속성 + + + + Audio + 오디오 + + + + Control + 컨트롤 + + + + Input + 입력 + + + + Output + 출력 + + + + Toggled + 전환됨 + + + + Integer + 정수 + + + + Float + 실수 + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + 컷오프 주파수: + + + + Resonance: + 공명: + + + + Env Mod: + Env Mod: + + + + Decay: + 디케이: + + + + 303-es-que, 24dB/octave, 3 pole filter + 303-es-que, 24dB/옥타브, 3 폴 필터 + + + + Slide Decay: + 슬라이드 디케이: + + + + DIST: + 디스토션: + + + + Saw wave + 톱니파 + + + + Click here for a saw-wave. + 톱니파를 얻으려면 여기를 클릭하세요. + + + + Triangle wave + 삼각파 + + + + Click here for a triangle-wave. + 삼각파를 얻으려면 여기를 클릭하세요. + + + + Square wave + 사각파 + + + + Click here for a square-wave. + 사각파를 얻으려면 여기를 클릭하세요. + + + + Rounded square wave + 둥근 사각파 + + + + Click here for a square-wave with a rounded end. + 끝이 둥근 사각파를 얻으려면 여기를 클릭하세요. + + + + Moog wave + 모그파 + + + + Click here for a moog-like wave. + 모그와 비슷한 파형을 얻으려면 여기를 클릭하세요. + + + + Sine wave + 사인파 + + + + Click for a sine-wave. + 사인파를 얻으려면 클릭하세요. + + + + + White noise wave + 백색 잡음 파형 + + + + Click here for an exponential wave. + 지수파를 얻으려면 여기를 클릭하세요. + + + + Click here for white-noise. + 백색 잡음을 얻으려면 여기를 클릭하세요. + + + + Bandlimited saw wave + 밴드리밋된 톱니파 + + + + Click here for bandlimited saw wave. + 밴드리밋된 톱니파를 얻으려면 여기를 클릭하세요. + + + + Bandlimited square wave + 밴드리밋된 사각파 + + + + Click here for bandlimited square wave. + 밴드리밋된 사각파를 얻으려면 여기를 클릭하세요. + + + + Bandlimited triangle wave + 밴드리밋된 삼각파 + + + + Click here for bandlimited triangle wave. + 밴드리밋된 삼각파를 얻으려면 여기를 클릭하세요. + + + + Bandlimited moog saw wave + 밴드리밋된 모그 톱니파 + + + + Click here for bandlimited moog saw wave. + 밴드리밋된 모그 톱니파를 얻으려면 여기를 클릭하세요. + + + + lmms::gui::LcdFloatSpinBox + + + Set value + 값 지정하기 + + + + Please enter a new value between %1 and %2: + %1부터 %2까지의 값을 입력하세요: + + + + lmms::gui::LcdSpinBox + + + Set value + 값 지정하기 + + + + Please enter a new value between %1 and %2: + %1부터 %2까지의 값을 입력하세요: + + + + lmms::gui::LeftRightNav + + + + + Previous + 이전 + + + + + + Next + 다음 + + + + Previous (%1) + 이전 (%1) + + + + Next (%1) + 다음 (%1) + + + + lmms::gui::LfoControllerDialog + + + LFO + LFO + + + + BASE + BASE + + + + Base: + 기준: + + + + FREQ + FREQ + + + + LFO frequency: + LFO 주파수: + + + + AMNT + AMNT + + + + Modulation amount: + 모듈레이션 양: + + + + PHS + PHS + + + + Phase offset: + 페이즈 오프셋: + + + + degrees + + + + + Sine wave + 사인파 + + + + Triangle wave + 삼각파 + + + + Saw wave + 톱니파 + + + + Square wave + 사각파 + + + + Moog saw wave + 모그 톱니파 + + + + Exponential wave + 지수파 + + + + White noise + 백색 잡음 + + + + User-defined shape. +Double click to pick a file. + 사용자 정의된 형태입니다. +파일을 선택하려면 두 번 클릭하세요. + + + + Multiply modulation frequency by 1 + 모듈레이션 주파수를 1로 곱합니다 + + + + Multiply modulation frequency by 100 + 모듈레이션 주파수를 100으로 곱합니다 + + + + Divide modulation frequency by 100 + 모듈레이션 주파수를 100으로 나눕니다 + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + 구성 파일 + + + + Error while parsing configuration file at line %1:%2: %3 + %1:%2 줄에서 구성 파일을 분석하는 동안 오류: %3 + + + + Could not open file + 파일을 열 수 없음 + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + 쓰기 위한 %1 파일을 열 수 없습니다. +파일 및 파일이 포함된 디렉터리에 대한 쓰기 권한이 있는지 확인한 후 다시 시도하세요! + + + + Project recovery + 프로젝트 복구 + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + 복구 파일이 존재합니다. 이전에 LMMS가 비정상 종료되었거나 여러 개의 LMMS 인스턴스가 동시에 실행 중인 것 같습니다. 복구 파일로부터 프로젝트를 복구하시겠습니까? + + + + + Recover + 복구하기 + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + 파일을 복구합니다. 이 작업을 수행할 때 LMMS의 여러 인스턴스를 실행하지 마세요. + + + + + Discard + 폐기하기 + + + + Launch a default session and delete the restored files. This is not reversible. + 기본 세션을 시작하고 복원된 파일을 삭제합니다. 이 작업은 되돌릴 수 없습니다. + + + + Version %1 + 버전 %1 + + + + Preparing plugin browser + 플러그인 탐색기 준비하는 중 + + + + Preparing file browsers + 파일 탐색기 준비하는 중 + + + + My Projects + 내 프로젝트 + + + + My Samples + 내 샘플 + + + + My Presets + 내 프리셋 + + + + My Home + 내 홈 + + + + Root Directory + + + + + Volumes + 볼륨 + + + + My Computer + 내 컴퓨터 + + + + Loading background picture + 배경 사진 불러오는 중 + + + + &File + 파일(&F) + + + + &New + 새로 만들기(&N) + + + + &Open... + 열기(&O)... + + + + &Save + 저장(&S) + + + + Save &As... + 다른 이름으로 저장(&A)... + + + + Save as New &Version + 새 버전으로 저장(&V) + + + + Save as default template + 기본 템플릿으로 저장하기 + + + + Import... + 가져오기... + + + + E&xport... + 내보내기(&X)... + + + + E&xport Tracks... + 트랙 내보내기(&X)... + + + + Export &MIDI... + MIDI 내보내기(&M)... + + + + &Quit + 종료(&Q) + + + + &Edit + 편집(&E) + + + + Undo + 실행 취소 + + + + Redo + 다시 실행 + + + + Scales and keymaps + + + + + Settings + 설정 + + + + &View + 보기(&V) + + + + &Tools + 도구(&T) + + + + &Help + 도움말(&H) + + + + Online Help + 온라인 도움말 + + + + Help + 도움말 + + + + About + 정보 + + + + Create new project + 새 프로젝트 만들기 + + + + Create new project from template + 템플릿에서 새 프로젝트 만들기 + + + + Open existing project + 기존 프로젝트 열기 + + + + Recently opened projects + 최근에 열린 프로젝트 + + + + Save current project + 현재 프로젝트 저장하기 + + + + Export current project + 현재 프로젝트 내보내기 + + + + Metronome + 메트로놈 + + + + + Song Editor + 노래 편집기 + + + + + Pattern Editor + 패턴 편집기 + + + + + Piano Roll + 피아노 롤 + + + + + Automation Editor + 오토메이션 편집기 + + + + + Mixer + 믹서 + + + + Show/hide controller rack + 컨트롤러 랙 표시하기/숨기기 + + + + Show/hide project notes + 프로젝트 노트 표시하기/숨기기 + + + + Untitled + 제목 없음 + + + + Recover session. Please save your work! + 복구 세션입니다. 프로젝트 파일을 저장해 주세요! + + + + LMMS %1 + LMMS %1 + + + + Recovered project not saved + 복구된 프로젝트가 저장되지 않음 + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + 이 프로젝트는 이전 세션에서 복구되었습니다. 현재 저장되지 않은 상태이며 저장하지 않으면 손실됩니다. 지금 저장하시겠습니까? + + + + Project not saved + 프로젝트 저장되지 않음 + + + + The current project was modified since last saving. Do you want to save it now? + 현재 프로젝트는 마지막 저장 이후 수정되었습니다. 지금 저장하시겠습니까? + + + + Open Project + 프로젝트 열기 + + + + LMMS (*.mmp *.mmpz) + LMMS (*.mmp *.mmpz) + + + + Save Project + 프로젝트 저장하기 + + + + LMMS Project + LMMS 프로젝트 + + + + LMMS Project Template + LMMS 프로젝트 템플릿 + + + + Save project template + 프로젝트 템플릿 저장하기 + + + + Overwrite default template? + 기본 템플릿을 덮어쓰시겠습니까? + + + + This will overwrite your current default template. + 이 작업은 현재의 기본 템플릿을 덮어씁니다. + + + + Help not available + 도움말 사용할 수 없음 + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + 현재 LMMS에서 사용할 수 있는 도움말이 없습니다. +LMMS에 대한 문서는 http://lmms.sf.net/wiki를 방문하세요. + + + + Controller Rack + 컨트롤러 랙 + + + + Project Notes + 프로젝트 노트 + + + + Fullscreen + 전체화면 + + + + Volume as dBFS + 볼륨을 dBFS 단위로 + + + + Smooth scroll + 부드러운 스크롤 + + + + Enable note labels in piano roll + 피아노 롤에서 노트 레이블 활성화 + + + + MIDI File (*.mid) + MIDI 파일 (*.mid) + + + + + untitled + 제목 없음 + + + + + Select file for project-export... + 프로젝트를 내보낼 파일 선택하기... + + + + Select directory for writing exported tracks... + 내보낸 트랙을 저장할 디렉터리 선택하기... + + + + Save project + 프로젝트 저장하기 + + + + Project saved + 프로젝트 저장됨 + + + + The project %1 is now saved. + %1 프로젝트가 저장되었습니다. + + + + Project NOT saved. + 프로젝트가 저장되지 않았습니다. + + + + The project %1 was not saved! + %1 프로젝트가 저장되지 않았습니다! + + + + Import file + 파일 가져오기 + + + + MIDI sequences + MIDI 시퀀스 + + + + Hydrogen projects + Hydrogen 프로젝트 + + + + All file types + 모든 파일 유형 + + + + lmms::gui::MalletsInstrumentView + + + Instrument + 악기 + + + + Spread + 스프레드 + + + + Spread: + 스프레드: + + + + Random + + + + + Random: + + + + + Missing files + 누락된 파일 + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + 시스템의 Stk 설치가 불완전한 것 같습니다. 전체 Stk 패키지가 설치되었는지 확인하십시오! + + + + Hardness + 하드니스 + + + + Hardness: + 하드니스: + + + + Position + 포지션 + + + + Position: + 포지션: + + + + Vibrato gain + 비브라토 게인 + + + + Vibrato gain: + 비브라토 게인: + + + + Vibrato frequency + 비브라토 주파수 + + + + Vibrato frequency: + 비브라토 주파수: + + + + Stick mix + 스틱 믹스 + + + + Stick mix: + 스틱 믹스: + + + + Modulator + 모듈레이터 + + + + Modulator: + 모듈레이터: + + + + Crossfade + 크로스페이드 + + + + Crossfade: + 크로스페이드: + + + + LFO speed + LFO 속도 + + + + LFO speed: + LFO 속도: + + + + LFO depth + LFO 깊이 + + + + LFO depth: + LFO 깊이: + + + + ADSR + ADSR + + + + ADSR: + ADSR: + + + + Pressure + 누름 + + + + Pressure: + 누름: + + + + Speed + 속도 + + + + Speed: + 속도: + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + - VST 매개변수 컨트롤 + + + + VST sync + VST 싱크 + + + + + Automated + 자동화됨 + + + + Close + 닫기 + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + - VST 플러그인 컨트롤 + + + + VST Sync + VST 싱크 + + + + + Automated + 자동화됨 + + + + Close + 닫기 + + + + lmms::gui::MeterDialog + + + + Meter Numerator + 미터 분자 + + + + Meter numerator + 미터 분자 + + + + + Meter Denominator + 미터 분모 + + + + Meter denominator + 미터 분모 + + + + TIME SIG + 박자표 + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + 처음 노트 + + + + + Last key + 처음 노트 + + + + + Middle key + 중간 키 + + + + + Base key + 기준 키 + + + + + + Base note frequency + 기본 노트 주파수 + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + 스케일 설명입니다. "!"로 시작할 수 없고 개행 문자를 포함할 수 없습니다. + + + + + Load + 불러오기 + + + + + Save + 저장하기 + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + 간격을 별도의 줄에 입력합니다. 소수점이 포함된 숫자는 센트로 처리됩니다. +다른 입력은 정수의 레시오(ratios)로 취급되며 'a/b' 또는 'a' 형식이어야 합니다. +단수(0.0 센트 또는 레시오 1/1)는 항상 숨겨진 첫 번째 값으로 표시되므로 수동으로 입력하지 마세요. + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + 키맵 설명입니다. "!"로 시작할 수 없고 개행 문자를 포함할 수 없습니다. + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + 별도의 줄에 키 매핑을 입력합니다. +각 줄은 가운데 키부터 시작하여 순서대로 MIDI 키에 스케일 정도를 할당합니다. +이 패턴은 명시적인 키맵 범위를 벗어난 키에 대해서도 반복됩니다. +여러 개의 키를 동일한 스케일도에 매핑할 수 있습니다. +키를 비활성화/매핑하지 않으려면 'X'를 입력합니다. + + + + FIRST + FIRST + + + + First MIDI key that will be mapped + 매핑될 첫 번째 미디 키 + + + + LAST + LAST + + + + Last MIDI key that will be mapped + 매핑될 마지막 MIDI 키 + + + + MIDDLE + MIDDLE + + + + First line in the keymap refers to this MIDI key + 키맵의 첫 번째 줄은 이 미디 키를 나타냅니다 + + + + BASE N. + BASE N. + + + + Base note frequency will be assigned to this MIDI key + 기본 노트 주파수가 이 MIDI 키에 할당됩니다 + + + + BASE NOTE FREQ + 기본 노트 주파수 + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + 스케일 분석중 오류 + + + + Scale name cannot start with an exclamation mark + 스케일 이름은 느낌표로 시작할 수 없습니다 + + + + Scale name cannot contain a new-line character + 스케일 이름은 개행 문자를 포함할 수 없습니다 + + + + Interval defined in cents cannot be converted to a number + 센트 단위로 정의된 간격은 숫자로 변환할 수 없습니다 + + + + Numerator of an interval defined as a ratio cannot be converted to a number + 레시오로 정의된 간격의 분자는 숫자로 변환할 수 없습니다 + + + + Denominator of an interval defined as a ratio cannot be converted to a number + 레시오로 정의된 간격의 분모는 숫자로 변환할 수 없습니다 + + + + Interval defined as a ratio cannot be negative + 레시오로 정의된 간격은 음수가 될 수 없습니다 + + + + Keymap parsing error + 키맵 분석중 오류 + + + + Keymap name cannot start with an exclamation mark + 키맵 이름은 느낌표로 시작할 수 없습니다 + + + + Keymap name cannot contain a new-line character + 키맵 이름은 개행 문자를 포함할 수 없습니다 + + + + Scale degree cannot be converted to a whole number + 스케일 디그리는 정수로 변환할 수 없습니다 + + + + Scale degree cannot be negative + 스케일 디그리는 음수일 수 없습니다 + + + + Invalid keymap + 잘못된 키맵 + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + 기본 키는 스케일 디그리에 매핑되지 않습니다. 노트에 레퍼런스 주파수를 할당할 방법이 없으므로 소리가 나지 않습니다. + + + + Open scale + 스케일 열기 + + + + + Scala scale definition (*.scl) + Scala 스케일 정의 (*.scl) + + + + Scale load failure + 스케일 불러오기 실패 + + + + + Unable to open selected file. + 선택한 파일을 열 수 없습니다. + + + + Open keymap + 키맵 열기 + + + + + Scala keymap definition (*.kbm) + Scala 키맵 정의 (*.kbm) + + + + Keymap load failure + 키맵 불러오기 실패 + + + + Save scale + 스케일 저장하기 + + + + Scale save failure + 스케일 저장 실패 + + + + + Unable to open selected file for writing. + 쓰기 위해 선택한 파일을 열 수 없습니다. + + + + Save keymap + 키맵 저장하기 + + + + Keymap save failure + 키맵 저장 실패 + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + MIDI CC 랙 - %1 + + + + MIDI CC Knobs: + MIDI CC 노브: + + + + CC %1 + CC %1 + + + + lmms::gui::MidiClipView + + + + Transpose + 트랜스포즈 + + + + Semitones to transpose by: + 조옮김할 반음: + + + + Open in piano-roll + 피아노-롤에서 열기 + + + + Set as ghost in piano-roll + 피아노-롤에서 고스트로 지정하기 + + + + Set as ghost in automation editor + + + + + Clear all notes + 모든 노트 지우기 + + + + Reset name + 이름 재설정 + + + + Change name + 이름 변경하기 + + + + Add steps + 스탭 추가하기 + + + + Remove steps + 스탭 제거하기 + + + + Clone Steps + 스탭 복제하기 + + + + lmms::gui::MidiSetupWidget + + + Device + 디바이스 + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + 믹서 + + + + lmms::gui::MonstroView + + + Operators view + 오퍼레이터 보기 + + + + Matrix view + 매트릭스 보기 + + + + + + Volume + 볼륨 + + + + + + Panning + 패닝 + + + + + + Coarse detune + 코어스 디튠 + + + + + + semitones + 반음 + + + + + Fine tune left + 파인 튠 좌측 + + + + + + + cents + 센트 + + + + + Fine tune right + 파인 튠 우측 + + + + + + Stereo phase offset + 스테레오 페이즈 오프셋 + + + + + + + + deg + + + + + Pulse width + 펄스 폭 + + + + Send sync on pulse rise + 펄스 상승 시 싱크 전송하기 + + + + Send sync on pulse fall + 펄스 하강 시 싱크 전송하기 + + + + Hard sync oscillator 2 + 하드 싱크 오실레이터 2 + + + + Reverse sync oscillator 2 + 리버스 싱크 오실레이터 2 + + + + Sub-osc mix + 서브-osc 믹스 + + + + Hard sync oscillator 3 + 하드 싱크 오실레이터 3 + + + + Reverse sync oscillator 3 + 리버스 싱크 오실레이터 3 + + + + + + + Attack + 어택 + + + + + Rate + 레이트 + + + + + Phase + 페이즈 + + + + + Pre-delay + 프리-딜레이 + + + + + Hold + 홀드 + + + + + Decay + 디케이 + + + + + Sustain + 서스테인 + + + + + Release + 릴리즈 + + + + + Slope + 슬로프 + + + + Mix osc 2 with osc 3 + osc 2를 osc 3로 믹스 + + + + Modulate amplitude of osc 3 by osc 2 + osc 2로 osc 3의 진폭 조절하기 + + + + Modulate frequency of osc 3 by osc 2 + osc 2로 osc 3의 주파수 조절하기 + + + + Modulate phase of osc 3 by osc 2 + osc 2로 osc 3의 페이즈 조절하기 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + 모듈레이션 양 + + + + lmms::gui::MultitapEchoControlDialog + + + Length + 길이 + + + + Step length: + 스탭 길이: + + + + Dry + 드라이 + + + + Dry gain: + 드라이 게인: + + + + Stages + 단계 + + + + Low-pass stages: + 로패스 단계: + + + + Swap inputs + 좌우 입력 바꾸기 + + + + Swap left and right input channels for reflections + 반사율을 위해 좌측 및 우측 입력 채널 바꾸기 + + + + lmms::gui::NesInstrumentView + + + + + + Volume + 볼륨 + + + + + + Coarse detune + 코어스 디튠 + + + + + + Envelope length + 엔벨로프 길이 + + + + Enable channel 1 + 채널 1 활성화 + + + + Enable envelope 1 + 엔벨로프 1 활성화 + + + + Enable envelope 1 loop + 엔벨로프 1 루프 활성화 + + + + Enable sweep 1 + 스위프 1 활성화 + + + + + Sweep amount + 스위프 양 + + + + + Sweep rate + 스위프 레이트 + + + + + 12.5% Duty cycle + 12.5% 듀티 사이클 + + + + + 25% Duty cycle + 25% 듀티 사이클 + + + + + 50% Duty cycle + 50% 듀티 사이클 + + + + + 75% Duty cycle + 75% 듀티 사이클 + + + + Enable channel 2 + 채널 2 활성화 + + + + Enable envelope 2 + 엔벨로프 2 활성화 + + + + Enable envelope 2 loop + 엔벨로프 2 루프 활성화 + + + + Enable sweep 2 + 스위프 2 활성화 + + + + Enable channel 3 + 채널 3 활성화 + + + + Noise Frequency + 잡음 주파수 + + + + Frequency sweep + 주파수 스위프 + + + + Enable channel 4 + 채널 4 활성화 + + + + Enable envelope 4 + 엔벨로프 4 활성화 + + + + Enable envelope 4 loop + 엔벨로프 4 루프 활성화 + + + + Quantize noise frequency when using note frequency + 노트 주파수를 사용할 때 잡음 주파수 퀸타이즈 + + + + Use note frequency for noise + 잡음에 노트 주파수 사용하기 + + + + Noise mode + 잡음 모드 + + + + Master volume + 마스터 볼륨 + + + + Vibrato + 비브라토 + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + 어택 + + + + + Decay + 디케이 + + + + + Release + 릴리즈 + + + + + Frequency multiplier + 주파수 증폭기 + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + 디스토션: + + + + Volume: + 볼륨: + + + + Randomise + 무작위화 + + + + + Osc %1 waveform: + Osc %1 파형: + + + + Osc %1 volume: + Osc %1 볼륨: + + + + Osc %1 panning: + Osc %1 패닝: + + + + Osc %1 stereo detuning + Osc %1 스테레오 디튜닝 + + + + cents + 센트 + + + + Osc %1 harmonic: + Osc %1 하모닉: + + + + lmms::gui::Oscilloscope + + + Oscilloscope + 오실로스코프 + + + + Click to enable + 클릭하여 활성화 + + + + lmms::gui::PatmanView + + + Open patch + 패치 열기 + + + + Loop + 루프 + + + + Loop mode + 루프 모드 + + + + Tune + + + + + Tune mode + 튠 모드 + + + + No file selected + 선택된 파일 없음 + + + + Open patch file + 패치 파일 열기 + + + + Patch-Files (*.pat) + 패치 파일 (*.pat) + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + 패턴 편집기에서 열기 + + + + Reset name + 이름 재설정 + + + + Change name + 이름 변경하기 + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + 패턴 편집기 + + + + Play/pause current pattern (Space) + 현재 패턴 연주하기/일시중지 (Space) + + + + Stop playback of current pattern (Space) + 현재 패턴의 플레이백 중지하기 (Space) + + + + Pattern selector + 패턴 선택기 + + + + Track and step actions + 트랙 및 스탭 작업 + + + + New pattern + 새 패턴 + + + + Clone pattern + 패턴 복제하기 + + + + Add sample-track + 샘플-트랙 추가하기 + + + + Add automation-track + 오토메이션-트랙 추가하기 + + + + Remove steps + 스탭 제거하기 + + + + Add steps + 스탭 추가하기 + + + + Clone Steps + 스탭 복제하기 + + + + lmms::gui::PeakControllerDialog + + + PEAK + 피크 + + + + LFO Controller + LFO 컨트롤러 + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + BASE + + + + Base: + 기준: + + + + AMNT + AMNT + + + + Modulation amount: + 모듈레이션 양: + + + + MULT + MULT + + + + Amount multiplicator: + 양 배율기: + + + + ATCK + ATCK + + + + Attack: + 어택: + + + + DCAY + DCAY + + + + Release: + 릴리즈: + + + + TRSH + TRSH + + + + Treshold: + 트레스홀드: + + + + Mute output + 출력 음소거 + + + + Absolute value + 절댓값 + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + 노트 벨로시티 + + + + Note Panning + 노트 패닝 + + + + Mark/unmark current semitone + 현재 반음 마킹하기/마킹해제 + + + + Mark/unmark all corresponding octave semitones + 해당하는 모든 옥타브 반음 마킹하기/마킹해제 + + + + Mark current scale + 현재 스케일 마킹하기 + + + + Mark current chord + 현재 코드 마킹하기 + + + + Unmark all + 모두 마킹해제 + + + + Select all notes on this key + 이 키의 노트 모두 선택하기 + + + + Note lock + 노트 잠금 + + + + Last note + 마지막 노트 + + + + No key + 키 없음 + + + + No scale + 스케일 없음 + + + + No chord + 코드 없음 + + + + Nudge + 넛지 + + + + Snap + 스냅 + + + + Velocity: %1% + 벨로시티: %1% + + + + Panning: %1% left + 패닝: %1% 좌측 + + + + Panning: %1% right + 패닝: %1% 우측 + + + + Panning: center + 패닝: 중앙 + + + + Glue notes failed + 노트 붙이기 실패 + + + + Please select notes to glue first. + 먼저 붙여넣을 노트를 선택하세요. + + + + Please open a clip by double-clicking on it! + 클립을 두 번 클릭하여 열어주세요! + + + + + Please enter a new value between %1 and %2: + %1부터 %2까지의 값을 입력하세요: + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + 현재 클립 연주하기/일시중지 (Space) + + + + Record notes from MIDI-device/channel-piano + MIDI 디바이스/채널 피아노에서 노트 녹음하기 + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + 노래 또는 패턴 트랙을 연주하는 동안 MIDI 디바이스/채널 피아노에서 노트 녹음하기 + + + + Record notes from MIDI-device/channel-piano, one step at the time + MIDI 디바이스/채널 피아노에서 한 번에 한 스탭씩 노트 녹음하기 + + + + Stop playing of current clip (Space) + 현재 클립 연주 중지하기 (Space) + + + + Edit actions + 편집 작업 + + + + Draw mode (Shift+D) + 그리기 모드 (Shift+D) + + + + Erase mode (Shift+E) + 지우기 모드 (Shift+E) + + + + Select mode (Shift+S) + 선택하기 모드 (Shift+S) + + + + Pitch Bend mode (Shift+T) + 피치 밴드 모드 (Shift+T) + + + + Quantize + 퀀타이즈 + + + + Quantize positions + 퀀타이즈 포지션 + + + + Quantize lengths + 퀀타이즈 길이 + + + + File actions + 파일 작업 + + + + Import clip + 클립 가져오기 + + + + + Export clip + 클립 내보내기 + + + + Copy paste controls + 복사 붙여넣기 컨트롤 + + + + Cut (%1+X) + 잘라내기 (%1+X) + + + + Copy (%1+C) + 복사하기 (%1+C) + + + + Paste (%1+V) + 붙여넣기 (%1+V) + + + + Timeline controls + 타임라인 컨트롤 + + + + Glue + 붙이기 + + + + Knife + 자르기 + + + + Fill + 채우기 + + + + Cut overlaps + 오버랩 잘라내기 + + + + Min length as last + 마지막 최소 길이 + + + + Max length as last + 마지막 최대 길이 + + + + Zoom and note controls + 확대/축소 및 노트 컨트롤 + + + + Horizontal zooming + 수평 주밍 + + + + Vertical zooming + 수직 주밍 + + + + Quantization + 퀀티제이션 + + + + Note length + 노트 길이 + + + + Key + + + + + Scale + 스케일 + + + + Chord + 코드 + + + + Snap mode + 스냅 모드 + + + + Clear ghost notes + 고스트 노트 지우기 + + + + + Piano-Roll - %1 + 피아노-롤 - %1 + + + + + Piano-Roll - no clip + 피아노-롤 - 클립 없음 + + + + + XML clip file (*.xpt *.xptz) + XML 클립 파일 (*.xpt *.xptz) + + + + Export clip success + 클립 내보내기 성공 + + + + Clip saved to %1 + %1에 저장된 클립 + + + + Import clip. + 클립을 가져옵니다. + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + 클립을 가져오려는 중이며, 사용자의 현재 클립을 덮어씁니다. 계속하시겠습니까? + + + + Open clip + 클립 열기 + + + + Import clip success + 클립 가져오기 성공 + + + + Imported clip %1! + %1 클립을 가져왔습니다! + + + + lmms::gui::PianoView + + + Base note + 기본 노트 + + + + First note + 처음 노트 + + + + Last note + 마지막 노트 + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + 악기 플러그인 + + + + Instrument browser + 악기 탐색기 + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + 새 악기 트랙으로 전송하기 + + + + lmms::gui::ProjectNotes + + + Project Notes + 프로젝트 노트 + + + + Enter project notes here + 여기에 프로젝트 노트를 입력하세요 + + + + Edit Actions + 편집 작업 + + + + &Undo + 실행 취소(&U) + + + + %1+Z + %1+Z + + + + &Redo + 다시 실행(&R) + + + + %1+Y + %1+Y + + + + &Copy + 복사(&C) + + + + %1+C + %1+C + + + + Cu&t + 잘라내기(&T) + + + + %1+X + %1+X + + + + &Paste + 붙여넣기(&P) + + + + %1+V + %1+V + + + + Format Actions + 포멧 작업 + + + + &Bold + 볼드체(&B) + + + + %1+B + %1+B + + + + &Italic + 기울임꼴(&I) + + + + %1+I + %1+I + + + + &Underline + 밑줄(&U) + + + + %1+U + %1+U + + + + &Left + 왼쪽 정렬(&L) + + + + %1+L + %1+L + + + + C&enter + 가운데 정렬(&E) + + + + %1+E + %1+E + + + + &Right + 오른쪽 정렬(&R) + + + + %1+R + %1+R + + + + &Justify + 양쪽 정렬(&J) + + + + %1+J + %1+J + + + + &Color... + 색상(&C)... + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + 최근에 열린 프로젝트(&R) + + + + lmms::gui::RenameDialog + + + Rename... + 이름변경... + + + + lmms::gui::ReverbSCControlDialog + + + Input + 입력 + + + + Input gain: + 입력 게인: + + + + Size + 크기 + + + + Size: + 크기: + + + + Color + 색상 + + + + Color: + 색상: + + + + Output + 출력 + + + + Output gain: + 출력 게인: + + + + lmms::gui::SaControlsDialog + + + Pause + 일시정지 + + + + Pause data acquisition + 데이터 수집 일시정지 + + + + Reference freeze + 레퍼런스 프리즈 + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + 현재 입력을 레퍼런스로 프리즈 / 피크 홀드 모드에서 폴오프를 비활성화합니다. + + + + Waterfall + 워터폴 + + + + Display real-time spectrogram + 실시간 스펙트로그램 화면표시 + + + + Averaging + 애버리징 + + + + Enable exponential moving average + 지수 이동 평균 활성화 + + + + Stereo + 스테레오 + + + + Display stereo channels separately + 스테레오 채널 따로따로 화면표시 + + + + Peak hold + 피크 홀드 + + + + Display envelope of peak values + 피크 값의 엔벨로프 화면표시 + + + + Logarithmic frequency + 로가리듬 주파수 + + + + Switch between logarithmic and linear frequency scale + 로가리듬 및 리니어 주파수 스케일 간 전환하기 + + + + + Frequency range + 주파수 범위 + + + + Logarithmic amplitude + 로가리듬 진폭 + + + + Switch between logarithmic and linear amplitude scale + 로가리듬 및 리니어 진폭 스케일 간 전환하기 + + + + + Amplitude range + 진폭 범위 + + + + + FFT block size + FFT 블록 크기 + + + + + FFT window type + FFT 창 유형 + + + + Envelope res. + 엔벨로프 res. + + + + Increase envelope resolution for better details, decrease for better GUI performance. + 더 나은 세부 정보를 위해 엔벨로프 레졸루션을 높이고 더 나은 GUI 퍼포먼스를 위해 감소시킵니다. + + + + Maximum number of envelope points drawn per pixel: + 픽셀당 그려지는 엔벨로프 포인트의 최대 개수: + + + + Spectrum res. + 스펙트럼 res. + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + 더 나은 세부 사항을 위해 스펙트럼 레졸루션을 높이고 더 나은 GUI 퍼포먼스를 위해 감소시킵니다. + + + + Maximum number of spectrum points drawn per pixel: + 픽셀당 그려지는 스펙트럼 포인트의 최대 개수: + + + + Falloff factor + 폴오프 인수 + + + + Decrease to make peaks fall faster. + 피크가 더 빨리 떨어지도록 하려면 감소시킵니다. + + + + Multiply buffered value by + 버퍼링된 값을 곱한 값 + + + + Averaging weight + 애버리징 위젯 + + + + Decrease to make averaging slower and smoother. + 애버리징을 더 느리고 부드럽게 하려면 값을 줄입니다. + + + + New sample contributes + 새 샘플 기여하기 + + + + Waterfall height + 워터폴 높이 + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + 스크롤 속도를 낮추려면 늘리고, 빠른 트랜지션을 더 잘 보려면 감소시킵니다. 경고: CPU 사용량이 중간입니다. + + + + Number of lines to keep: + 유지할 줄 수: + + + + Waterfall gamma + 워터폴 감마 + + + + Decrease to see very weak signals, increase to get better contrast. + 매우 약한 신호를 보려면 줄이고, 더 나은 대비를 얻으려면 늘리세요. + + + + Gamma value: + 감마 값: + + + + Window overlap + 창 오버랩 + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + FFT 창 모서리 근처에 도착하는 누락된 빠른 트랜지션을 방지하려면 늘립니다. 경고: CPU 사용량이 높습니다. + + + + Number of times each sample is processed: + 각 샘플이 처리된 횟수: + + + + Zero padding + 제로 패딩 + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + 스펙트럼을 더 부드럽게 보이게 하려면 증가시킵니다. 경고: CPU 사용량이 높습니다. + + + + Processing buffer is + 프로세싱 버퍼는 + + + + steps larger than input block + 입력 블록보다 더 큰 스탭 + + + + Advanced settings + 고급 설정 + + + + Access advanced settings + 고급 설정 접근 + + + + lmms::gui::SampleClipView + + + Double-click to open sample + 두 번 클릭하여 샘플 열기 + + + + Reverse sample + 리버스 샘플 + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + 트랙 볼륨 + + + + Channel volume: + 채널 볼륨: + + + + VOL + 볼륨 + + + + Panning + 패닝 + + + + Panning: + 패닝: + + + + PAN + 패닝 + + + + %1: %2 + %1: %2 + + + + lmms::gui::SampleTrackWindow + + + Sample volume + 샘플 볼륨 + + + + Volume: + 볼륨: + + + + VOL + 볼륨 + + + + Panning + 패닝 + + + + Panning: + 패닝: + + + + PAN + 패닝 + + + + Mixer channel + 믹서 채널 + + + + CHANNEL + 채널 + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + MIDI 연결 끊기 + + + + Save As Project Bundle (with resources) + 프로젝트 번들로 저장하기 (리소스 포함) + + + + lmms::gui::SetupDialog + + + Settings + 설정 + + + + + General + 일반 + + + + Graphical user interface (GUI) + 그래픽 사용자 인터페이스 (GUI) + + + + Display volume as dBFS + 볼륨을 dBFS 단위로 화면표시 + + + + Enable tooltips + 툴팁 활성화 + + + + Enable master oscilloscope by default + 기본적으로 마스터 오실로스코프 활성화 + + + + Enable all note labels in piano roll + 피아노 롤의 모든 노트 레이블 활성화 + + + + Enable compact track buttons + 콤팩트 트랙 버튼 활성화 + + + + Enable one instrument-track-window mode + 하나의 악기 트랙 창 모드 활성화 + + + + Show sidebar on the right-hand side + 우측면에 사이드바 표시하기 + + + + Let sample previews continue when mouse is released + 마우스를 놓으면 샘플 미리보기를 계속할 수 있습니다 + + + + Mute automation tracks during solo + 솔로 연주 중 오토메이션 트랙 음소거 + + + + Show warning when deleting tracks + 트랙 삭제 시 경고 표시하기 + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + 프로젝트 + + + + Compress project files by default + 기본적으로 프로젝트 파일 압축 + + + + Create a backup file when saving a project + 프로젝트를 저장할 때 백업 파일 만들기 + + + + Reopen last project on startup + 시작 시 마지막 프로젝트 다시 열기 + + + + Language + 언어 + + + + + Performance + 퍼포먼스 + + + + Autosave + 자동저장 + + + + Enable autosave + 자동저장 활성화 + + + + Allow autosave while playing + 연주 중 자동저장 허용하기 + + + + User interface (UI) effects vs. performance + 사용자 인터페이스(UI) 이펙트 대 퍼포먼스 + + + + Smooth scroll in song editor + 노래 편집기에서 부드러운 스크롤 + + + + Display playback cursor in AudioFileProcessor + AudioFileProcessor에 플레이백 커서 화면표시 + + + + Plugins + 플러그인 + + + + VST plugins embedding: + VST 플러그인 포함됨: + + + + No embedding + 임베딩 없음 + + + + Embed using Qt API + Qt API를 사용하여 포함하기 + + + + Embed using native Win32 API + 기본 내장 Win32 API를 사용하여 포함하기 + + + + Embed using XEmbed protocol + XEMbed 프로토콜을 사용하여 포함하기 + + + + Keep plugin windows on top when not embedded + 포함되지 않은 경우 플러그인 창을 맨 위에 유지하기 + + + + Keep effects running even without input + 입력 없이도 이펙트 실행 유지하기 + + + + + Audio + 오디오 + + + + Audio interface + 오디오 인터페이스 + + + + Buffer size + 버퍼 크기 + + + + Reset to default value + 기본 값으로 재설정 + + + + + MIDI + MIDI + + + + MIDI interface + MIDI 인터페이스 + + + + Automatically assign MIDI controller to selected track + 선택한 트랙에 MIDI 컨트롤러 자동적으로 할당 + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + 경로 + + + + LMMS working directory + LMMS 작업 디렉터리 + + + + VST plugins directory + VST 플러그인 디렉터리 + + + + LADSPA plugins directories + LADSPA 플러그인 디렉터리 + + + + SF2 directory + SF2 디렉터리 + + + + Default SF2 + 기본 SF2 + + + + GIG directory + GIG 디렉터리 + + + + Theme directory + 테마 디렉터리 + + + + Background artwork + 배경 아트워크 + + + + Some changes require restarting. + 일부 변경사항은 다시 시작해야 합니다. + + + + OK + 확인 + + + + Cancel + 취소 + + + + minutes + + + + + minute + + + + + Disabled + 비활성화됨 + + + + Autosave interval: %1 + 자동저장 간격: %1 + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + 프레임: %1 +레이턴시: %2 ms + + + + Choose the LMMS working directory + LMMS 작업 디렉터리 고르기 + + + + Choose your VST plugins directory + 사용자의 VST 플러그인 디렉터리 고르기 + + + + Choose your LADSPA plugins directory + 사용자의 LADSPA 플러그인 디렉터리 고르기 + + + + Choose your SF2 directory + 사용자의 SF2 디렉터리 고르기 + + + + Choose your default SF2 + 사용자의 기본 SF2 고르기 + + + + Choose your GIG directory + 사용자의 GIG 디렉터리 고르기 + + + + Choose your theme directory + 사용자의 테마 디렉터리 고르기 + + + + Choose your background picture + 사용자의 배경 사진 고르기 + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + 사운드폰트 파일 열기 + + + + Choose patch + 패치 고르기 + + + + Gain: + 게인: + + + + Apply reverb (if supported) + 리버브 적용 (지원될 경우) + + + + Room size: + 공간 크기: + + + + Damping: + 진폭 감소: + + + + Width: + 폭: + + + + + Level: + 레벨: + + + + Apply chorus (if supported) + 코러스 적용 (지원될 경우) + + + + Voices: + 보이스: + + + + Speed: + 속도: + + + + Depth: + 깊이: + + + + SoundFont Files (*.sf2 *.sf3) + 사운드폰트 파일 (*.sf2 *.sf3) + + + + lmms::gui::SidInstrumentView + + + Volume: + 볼륨: + + + + Resonance: + 공명: + + + + + Cutoff frequency: + 컷오프 주파수: + + + + High-pass filter + 하이패스 필터 + + + + Band-pass filter + 밴드패스 필터 + + + + Low-pass filter + 로패스 필터 + + + + Voice 3 off + 보이스 3 끔 + + + + MOS6581 SID + MOS6581 SID + + + + MOS8580 SID + MOS8580 SID + + + + + Attack: + 어택: + + + + + Decay: + 디케이: + + + + Sustain: + 서스테인: + + + + + Release: + 릴리즈: + + + + Pulse Width: + 펄스 폭: + + + + Coarse: + 코어스: + + + + Pulse wave + 펄스파 + + + + Triangle wave + 삼각파 + + + + Saw wave + 톱니파 + + + Noise 잡음 - + Sync - 동기화 + 싱크 - + Ring modulation - 링 모듈레이션 + 종소리 모듈레이션 - + Filtered - 필터 + 필터링됨 - + Test 테스트 - + Pulse width: 펄스 폭: - SideBarWidget + lmms::gui::SideBarWidget - + Close 닫기 - Song + lmms::gui::SlicerTView - - Tempo - 템포 - - - - Master volume - 마스터 음량 - - - - Master pitch - 마스터 피치 - - - - Aborting project load + + Slice snap - - Project file contains local paths to plugins, which could be used to run malicious code. + + Set slice snapping for detection - - Can't load project: Project file contains local paths to plugins. + + Sync sample - - LMMS Error report - LMMS 오류 보고 - - - - (repeated %1 times) + + Enable BPM sync - - The following errors occurred while loading: + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap - SongEditor + lmms::gui::SlicerTWaveform - + + Click to load sample + + + + + lmms::gui::SongEditor + + Could not open file 파일을 열 수 없음 - + Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. - 파일 %1을(를) 열 수 없습니다. 파일을 읽을 수 있는 권한이 없기 때문일 수 있습니다. 파일을 읽을 수 있는 권한이 있는지 확인 후 다시 시도하시기 바랍니다. + %1 파일을 열 수 없습니다. 이 파일을 읽을 수 있는 권한이 없는 것 같습니다. +최소한 파일에 대한 읽기 권한이 있는지 확인하고 다시 시도하십시오. - - Operation denied - - - - - A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. - - - - - + Operation denied + 오퍼레이션 거부됨 + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + 선택한 경로에 해당 이름의 번들 폴더가 이미 존재합니다. 프로젝트 번들을 덮어쓸 수 없습니다. 다른 이름을 선택하세요. + + + + + Error 오류 - + Couldn't create bundle folder. - + 번들 폴더를 만들 수 없습니다. - + Couldn't create resources folder. - + 리소스 폴더를 만들 수 없습니다. - + Failed to copy resources. - + 리소스를 복사하지 못했습니다. - + + Could not write file 파일을 쓸 수 없음 - - Could not open %1 for writing. You probably are not permitted towrite to this file. Please make sure you have write-access to the file and try again. + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. - - This %1 was created with LMMS %2 + + An unknown error has occurred and the file could not be saved. - + Error in file - 파일 오류 + 파일에서 오류 발생 - + The file %1 seems to contain errors and therefore can't be loaded. - 파일 %1에 오류가 있어 로딩에 실패하였습니다. + %1 파일에 오류가 있는 것 같으므로 불러올 수 없습니다. - - Version difference - 버전 차이 - - - + template 템플릿 - + project 프로젝트 - + + Version difference + 버전 차이 + + + + This %1 was created with LMMS %2 + 이 %1은(는) LMMS %2(으)로 만들어졌습니다 + + + + Zoom + 확대/축소 + + + Tempo 템포 - + TEMPO 템포 - + Tempo in BPM 템포 (BPM 단위) - - High quality mode - 고음질 모드 - - - - - + + + Master volume - 마스터 음량 + 마스터 볼륨 - - - - Master pitch - 마스터 피치 + + + + Global transposition + 전역 트랜스포지션 - + + 1/%1 Bar + 1/%1 마디 + + + + %1 Bars + %1 마디 + + + Value: %1% 값: %1% - - Value: %1 semitones - 값: %1반음 + + Value: %1 keys + 값: %1% 키 - SongEditorWindow + lmms::gui::SongEditorWindow - + Song-Editor 노래 편집기 - + Play song (Space) - 노래 재생 (Space) + 노래 연주하기 (Space) + + + + Record samples from Audio-device + 오디오 디바이스에서 샘플 녹음하기 + + + + Record samples from Audio-device while playing song or pattern track + 노래 또는 패턴 트랙을 연주하는 동안 오디오 디바이스에서 샘플 녹음하기 - Record samples from Audio-device - 오디오 장치로부터 샘플 녹음 - - - - Record samples from Audio-device while playing song or BB track - 노래 또는 비트/베이스 라인 트랙을 재생하는 동안 오디오 장치로부터 샘플 녹음 - - - Stop song (Space) - 노래 정지 (Space) + 노래 중지하기 (Space) - + Track actions - + 트랙 작업 - - Add beat/bassline - 비트/베이스 라인 추가 + + Add pattern-track + 패턴-트랙 추가하기 - + Add sample-track - 샘플 트랙 추가 + 샘플-트랙 추가하기 - + Add automation-track - 오토메이션 트랙 추가 + 오토메이션-트랙 추가하기 - + Edit actions - 편집 동작 + 편집 작업 - + Draw mode 그리기 모드 - + Knife mode (split sample clips) - + 자르기 모드 (샘플 클립 분할) - + Edit mode (select and move) 편집 모드 (선택 및 이동) - + Timeline controls - + 타임라인 컨트롤 + + + + Bar insert controls + 마디 삽입 컨트롤 + + + + Insert bar + 마디 삽입 - Bar insert controls - - - - - Insert bar - - - - Remove bar - + 마디 제거하기 - + Zoom controls - + 확대/축소 컨트롤 + - Horizontal zooming - 수평 줌 + Zoom + 확대/축소 - + Snap controls - + 스냅 컨트롤 - - + + Clip snapping size - + 클립 스내핑 크기 - + Toggle proportional snap on/off - + 비례 스냅 켬/끔 전환하기 - + Base snapping size - + 베이스 스내핑 크기 - StepRecorderWidget + lmms::gui::StepRecorderWidget - + Hint - + 힌트 - + Move recording curser using <Left/Right> arrows - + <좌/우> 방향키를 사용하여 녹음 커서 이동하기 - SubWindow + lmms::gui::StereoEnhancerControlDialog - + + WIDTH + + + + + Width: + 폭: + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + 좌측 → 좌측 볼륨: + + + + Left to Right Vol: + 좌측 → 우측 볼륨: + + + + Right to Left Vol: + 우측 → 좌측 볼륨: + + + + Right to Right Vol: + 우측 → 우측 볼륨: + + + + lmms::gui::SubWindow + + Close 닫기 - + Maximize 최대화 - + Restore 복원 - TabWidget + lmms::gui::TapTempoView - - - Settings for %1 - %1에 대한 설정 + + 0 + 0 + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + 0.0 ms + + + + Mute metronome + 메트로놈 음소거 + + + + Mute + 음소거 + + + + BPM in milliseconds + + + + + 0 ms + 0 ms + + + + Frequency of BPM + + + + + 0.0000 hz + 0.0000 hz + + + + Reset + 재설정 + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + %1 ms + + + + %1 hz + %1 hz - TemplatesMenu + lmms::gui::TemplatesMenu - + New from template 템플릿에서 새 프로젝트 생성 - TempoSyncKnob + lmms::gui::TempoSyncBarModelEditor - - + + Tempo Sync - 템포 동기화 + - + No Sync - 동기화 없음 + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + 템포 싱크 - Eight beats - 여덟 박자 + No Sync + 싱크 없음 - + + Eight beats + 8비트 + + + Whole note 온음표 - + Half note 2분음표 - + Quarter note 4분음표 - + 8th note 8분음표 - + 16th note 16분음표 - + 32nd note 32분음표 - + Custom... 사용자 지정... - + Custom 사용자 지정 - - - Synced to Eight Beats - 여덟 박자에 동기화됨 - - Synced to Whole Note - 온음표에 동기화됨 + Synced to Eight Beats + 8비트와 싱크됨 - Synced to Half Note - 2분음표에 동기화됨 + Synced to Whole Note + 온음표에 싱크됨 - Synced to Quarter Note - 4분음표에 동기화됨 + Synced to Half Note + 2분음표에 싱크됨 - Synced to 8th Note - 8분음표에 동기화됨 + Synced to Quarter Note + 4분음표에 싱크됨 - Synced to 16th Note - 16분음표에 동기화됨 + Synced to 8th Note + 8분음표에 싱크됨 + Synced to 16th Note + 16분음표에 싱크됨 + + + Synced to 32nd Note - 32분음표에 동기화됨 + 32분음표에 싱크됨 - TimeDisplayWidget + lmms::gui::TimeDisplayWidget - + Time units - 시간 단위 + 시간 구성 단위 - + MIN - + SEC - + MSEC 밀리초 - + BAR 마디 - + BEAT - + 비트 - + TICK - TimeLineWidget + lmms::gui::TimeLineWidget - + Auto scrolling - 자동 스크롤 + 자동 스크롤링 - + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + Loop points - 반복 지점 + 루프 포인트 - + After stopping go back to beginning - + 중지한 후 처음으로 돌아가기 - + After stopping go back to position at which playing was started - 정지한 뒤 재생을 시작한 점으로 이동 + 중지한 후 연주가 시작된 위치로 돌아가기 - + After stopping keep position - 정지한 후 위치 유지 + 중지한 후 위치 유지하기 - + Hint - + 힌트 - + Press <%1> to disable magnetic loop points. - <%1> 키를 눌러 반복 지점을 자유롭게 이동할 수 있습니다. - - - - Track - - - Mute - 음소거 + 마그네틱 루프 포인트를 비활성화하려면 <%1> 키를 누릅니다. - - Solo - 독주 - - - - TrackContainer - - - Couldn't import file - 파일을 가져올 수 없음 - - - - Couldn't find a filter for importing file %1. -You should convert this file into a format supported by LMMS using another software. - 파일 %1을(를) 가져오기 위한 필터를 찾을 수 없습니다. -이 파일을 가져오려면 다른 프로그램을 사용하여 LMMS가 지원하는 포맷으로 변환하시기 바랍니다. - - - - Couldn't open file - 파일을 열 수 없음 - - - - Couldn't open file %1 for reading. -Please make sure you have read-permission to the file and the directory containing the file and try again! - 파일 %1을(를) 읽기 열 수 없습니다. 파일을 읽을 수 있는 권한이 있는지 확인 후 다시 시도하시기 바랍니다! - - - - Loading project... - 프로젝트 로딩 중... - - - - - Cancel - 취소 - - - - - Please wait... - 잠시만 기다려 주세요... - - - - Loading cancelled - 로딩 취소됨 - - - - Project loading was cancelled. - 프로젝트 로딩이 취소되었습니다. - - - - Loading Track %1 (%2/Total %3) - 트랙 %1 로딩 중 (%2/총 %3) - - - - Importing MIDI-file... - MIDI 파일을 가져오는중... - - - - Clip - - - Mute - 음소거 - - - - ClipView - - - Current position - 현재 위치 - - - - Current length - 현재 길이 - - - - - %1:%2 (%3:%4 to %5:%6) - %1:%2 (%3:%4부터 %5:%6까지) - - - - Press <%1> and drag to make a copy. - <%1> 키를 누른 채 드래그하여 복사합니다. - - - - Press <%1> for free resizing. - <%1> 키를 눌러 크기를 자유롭게 조절할 수 있습니다. - - - - Hint - - - - - Delete (middle mousebutton) - 삭제(마우스 가운데 버튼) - - - - Delete selection (middle mousebutton) + + Set loop begin here - - Cut - 잘라내기 - - - - Cut selection + + Set loop end here - - Merge Selection + + Loop edit mode (hold shift) - - Copy - 복사 - - - - Copy selection + + Dual-button - - Paste - 붙여넣기 - - - - Mute/unmute (<%1> + middle click) - 음소거/해제 (<%1> + 마우스 가운데 버튼) - - - - Mute/unmute selection (<%1> + middle click) + + Grab closest - - Set clip color - - - - - Use track color + + Handles - TrackContentWidget + lmms::gui::TrackContentWidget - + Paste 붙여넣기 - TrackOperationsWidget + lmms::gui::TrackOperationsWidget - + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. - + 이동 그립을 클릭한 상태에서 <%1> 키를 누르면 새 드래그 앤 드롭 동작이 시작됩니다. Actions - 동작 + 작업 @@ -13459,2877 +18025,1033 @@ Please make sure you have read-permission to the file and the directory containi Solo - 독주 + 솔로 연주 - + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? - + 트랙을 삭제하면 되돌릴 수 없습니다. 정말 "%1" 트랙을 삭제하시겠습니까? - + Confirm removal - + 제거 확인 - + Don't ask again - + 다시 묻지 않음 - + Clone this track - 트랙 복제 + 이 트랙 복제하기 - + Remove this track - 트랙 제거 + 이 트랙 제거하기 + + + + Clear this track + 이 트랙 지우기 - Clear this track - 트랙 초기화 - - - Channel %1: %2 - FX %1: %2 + 채널 %1: %2 - - Assign to new mixer Channel - 새 FX 채널 할당 + + Assign to new Mixer Channel + 새 믹서 채널에 할당하기 - + Turn all recording on - + 모든 녹음 켜기 - + Turn all recording off - + 모든 녹음 끄기 + + + + Track color + 트랙 색상 - Change color - 색상 바꾸기 + Change + 변경하기 + + + + Reset + 재설정 - Reset color to default - 색상을 기본값으로 되돌리기 + Pick random + 무작위 고르기 - Set random color - - - - - Clear clip colors - + Reset clip colors + 클립 색상 재설정 - TripleOscillatorView + lmms::gui::TripleOscillatorView - + Modulate phase of oscillator 1 by oscillator 2 - + 오실레이터 2로 오실레이터 1의 페이즈 조절하기 - + Modulate amplitude of oscillator 1 by oscillator 2 - - - - - Mix output of oscillators 1 & 2 - - - - - Synchronize oscillator 1 with oscillator 2 - + 오실레이터 2로 오실레이터 1의 진폭 조절하기 - Modulate frequency of oscillator 1 by oscillator 2 - + Mix output of oscillators 1 & 2 + 오실레이터 1 & 2의 출력 믹스 + + + + Synchronize oscillator 1 with oscillator 2 + 오실레이터 1을 오실레이터 2와 싱크로나이즈 + Modulate frequency of oscillator 1 by oscillator 2 + 오실레이터 2로 오실레이터 1의 주파수 조절하기 + + + Modulate phase of oscillator 2 by oscillator 3 - + 오실레이터 3로 오실레이터 2의 페이즈 조절하기 - + Modulate amplitude of oscillator 2 by oscillator 3 - + 오실레이터 3으로 오실레이터 2의 진폭 조절하기 - + Mix output of oscillators 2 & 3 - + 오실레이터 2 & 3의 출력 믹스 - + Synchronize oscillator 2 with oscillator 3 - + 오실레이터 2를 오실레이터 3과 싱크로나이즈 - + Modulate frequency of oscillator 2 by oscillator 3 - + 오실레이터 3으로 오실레이터 2의 주파수 조절하기 - + Osc %1 volume: - 오실레이터 %1 음량: + Osc %1 볼륨: - + Osc %1 panning: - 오실레이터 %1 패닝: + Osc %1 패닝: - + Osc %1 coarse detuning: - + Osc %1 코어스 디튜닝: - + semitones 반음 - + Osc %1 fine detuning left: - + Osc %1 파인 디튜닝 왼쪽: - - + + cents 센트 - + Osc %1 fine detuning right: - + Osc %1 파인 디튜닝 우측: - + Osc %1 phase-offset: - + Osc %1 페이즈-오프셋: - - + + degrees - + Osc %1 stereo phase-detuning: - + Osc %1 스테레오 페이즈-디튜닝: - + Sine wave 사인파 - + Triangle wave 삼각파 - + Saw wave 톱니파 - + Square wave 사각파 - + Moog-like saw wave - Moog 톱니파 + 모그와 비슷한 톱니파 - + Exponential wave - 지수형 파형 + 지수파 - + White noise - 화이트 노이즈 + 백색 잡음 - + User-defined wave - 사용자 정의 파형 + 사용자 정의된 파형 + + + + Use alias-free wavetable oscillators. + 앨리어스가 없는 웨이브테이블 오실레이터를 사용합니다. - VecControls - - - Display persistence amount - - - - - Logarithmic scale - - - - - High quality - - - - - VecControlsDialog - - - HQ - - + lmms::gui::VecControlsDialog + HQ + HQ + + + Double the resolution and simulate continuous analog-like trace. - + 레졸루션을 두 배로 늘리고 연속적인 아날로그 같은 트레이스를 시뮬레이션합니다. Log. scale - + Log. 스케일 Display amplitude on logarithmic scale to better see small values. - + 작은 값을 더 잘 볼 수 있도록 로가리듬 스케일로 진폭을 화면표시합니다. + + + + Persist. + 지속합니다. - Persist. - + Trace persistence: higher amount means the trace will stay bright for longer time. + 트레이스 지속됨: 양이 많을수록 트레이스가 더 오랫동안 밝게 유지됩니다. - Trace persistence: higher amount means the trace will stay bright for longer time. - - - - Trace persistence - + 트레이스 지속됨 - VersionedSaveDialog - - - Increment version number - 버전 증가 - + lmms::gui::VersionedSaveDialog + Increment version number + 버전 번호 증가 + + + Decrement version number - 버전 감소 + 버전 번호 감소 - + Save Options - + 저장 옵션 - + already exists. Do you want to replace it? 이(가) 이미 존재합니다. 덮어쓰시겠습니까? - VestigeInstrumentView + lmms::gui::VestigeInstrumentView - - + + Open VST plugin VST 플러그인 열기 - + Control VST plugin from LMMS host - LMMS에서 VST 플러그인 제어 + LMMS 호스트에서 VST 플러그인 제어 - + Open VST plugin preset VST 플러그인 프리셋 열기 - + Previous (-) 이전 (-) - + Save preset - 프리셋 저장 + 프리셋 저장하기 - + Next (+) 다음 (+) - + Show/hide GUI - GUI 보이기/숨기기 + GUI 표시하기/숨기기 - + Turn off all notes - 모든 음 끄기 + 모든 노트 끄기 - + DLL-files (*.dll) DLL 파일 (*.dll) - + EXE-files (*.exe) EXE 파일 (*.exe) - - No VST plugin loaded - VST 플러그인이 로딩되지 않음 + + SO-files (*.so) + SO 파일 (*.so) - + + No VST plugin loaded + 불러온 VST 플러그인 없음 + + + Preset 프리셋 - + by - + 만든이 - + - VST plugin control - + - VST 플러그인 컨트롤 - VstEffectControlDialog + lmms::gui::VibedView - + + Enable waveform + 파형 활성화 + + + + + Smooth waveform + 부드러운 파형 + + + + + Normalize waveform + 노멀라이즈 파형 + + + + + Sine wave + 사인파 + + + + + Triangle wave + 삼각파 + + + + + Saw wave + 톱니파 + + + + + Square wave + 사각파 + + + + + White noise + 백색 잡음 + + + + + User-defined wave + 사용자 정의된 파형 + + + + String volume: + 스트링 볼륨: + + + + String stiffness: + 스트링 스티프니스: + + + + Pick position: + 픽 포지션: + + + + Pickup position: + 픽업 포지션: + + + + String panning: + 스트링 패닝: + + + + String detune: + 스트링 디튠: + + + + String fuzziness: + 스트링 퍼지니스: + + + + String length: + 스트링 길이: + + + + Impulse Editor + 임펄스 편집기 + + + + Impulse + 임펄스 + + + + Enable/disable string + 스트링 활성화/비활성화 + + + + Octave + 옥타브 + + + + String + 스트링 + + + + lmms::gui::VstEffectControlDialog + + Show/hide - 보이기/숨기기 + 표시하기/숨기기 - + Control VST plugin from LMMS host - LMMS에서 VST 플러그인 제어 + LMMS 호스트에서 VST 플러그인 제어 - + Open VST plugin preset - VST-플러그인 프리셋 열기 + VST 플러그인 프리셋 열기 - + Previous (-) 이전 (-) - + Next (+) 다음 (+) - + Save preset - 프리셋 저장 + 프리셋 저장하기 - - + + Effect by: - + 이펙트: - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - VstPlugin + lmms::gui::WatsynView - - - The VST plugin %1 could not be loaded. - VST 플러그인 %1을 불러올 수 없습니다. + + + + + Volume + 볼륨 - - Open Preset - 프리셋 열기 - - - - - Vst Plugin Preset (*.fxp *.fxb) - VST 플러그인 프리셋 (*.fxp *.fxb) - - - - : default - - - - - Save Preset - 프리셋 저장 - - - - .fxp - .fxp - - - - .FXP - .FXP - - - - .FXB - .FXB - - - - .fxb - .fxb - - - - Loading plugin - 플러그인 읽는 중 - - - - Please wait while loading VST plugin... - VST 플러그인을 읽을 동안 잠시 기다려 주세요... - - - - WatsynInstrument - - - Volume A1 - A1 음량 - - - - Volume A2 - A2 음량 - - - - Volume B1 - B1 음량 - - - - Volume B2 - B2 음량 - - - - Panning A1 - A1 패닝 - - - - Panning A2 - A2 패닝 - - - - Panning B1 - B1 패닝 - - - - Panning B2 - B2 패닝 - - - - Freq. multiplier A1 - - - - - Freq. multiplier A2 - - - - - Freq. multiplier B1 - - - - - Freq. multiplier B2 - - - - - Left detune A1 - - - - - Left detune A2 - - - - - Left detune B1 - - - - - Left detune B2 - - - - - Right detune A1 - - - - - Right detune A2 - - - - - Right detune B1 - - - - - Right detune B2 - - - - - A-B Mix - - - - - A-B Mix envelope amount - - - - - A-B Mix envelope attack - - - - - A-B Mix envelope hold - - - - - A-B Mix envelope decay - - - - - A1-B2 Crosstalk - - - - - A2-A1 modulation - - - - - B2-B1 modulation - - - - - Selected graph - 선택된 그래프 - - - - WatsynView - + + - - - Volume - 음량 - - - - - - Panning 패닝 + + + + + Freq. multiplier + 주파수 증폭기 + + + + - - - Freq. multiplier - - - - - - - Left detune - + 좌측 디튠 + + + + + + - - - - - - cents 센트 - - - - + + + + Right detune - + 우측 디튠 - + A-B Mix - + A-B 믹스 - + Mix envelope amount - + 믹스 엔벨로프 양 - + Mix envelope attack - + 믹스 엔벨로프 어택 - + Mix envelope hold - + 믹스 엔벨로프 홀드 - + Mix envelope decay - + 믹스 엔벨로프 디케이 - + Crosstalk - + 크로스토크 - + Select oscillator A1 - + Osc A1 선택하기 - + Select oscillator A2 - + Osc A2 선택하기 - + Select oscillator B1 - + Osc B1 선택하기 - + Select oscillator B2 - + Osc B2 선택하기 - + Mix output of A2 to A1 - + A2에서 A1로 출력 믹스 - + Modulate amplitude of A1 by output of A2 - + A2의 출력으로 A1의 진폭 조절하기 - + Ring modulate A1 and A2 - + 종소리 변조 A1 및 A2 - + Modulate phase of A1 by output of A2 - + A2의 출력으로 A1의 페이즈 조절하기 - + Mix output of B2 to B1 - + B2에서 B1로 출력 믹스 - + Modulate amplitude of B1 by output of B2 - + B2의 출력으로 B1의 진폭 조절하기 - + Ring modulate B1 and B2 - + 종소리 변조 B1 및 B2 - + Modulate phase of B1 by output of B2 - + B2의 출력으로 B1의 페이즈 조절하기 - - - - + + + + Draw your own waveform here by dragging your mouse on this graph. - 드래그하여 원하는 파형을 그리세요. + 이 그래프 위에 마우스를 드래그하여 나만의 파형을 그려보세요. - + Load waveform 파형 불러오기 - + Load a waveform from a sample file - 샘플 파일에서 파형 가져오기 + 샘플 파일에서 파형 불러오기 - + Phase left - 왼쪽 위상 + 페이즈 좌측 - + Shift phase by -15 degrees - 위상을 -15도만큼 바꾸기 + 페이즈를 -15도 만큼 옮기기 - + Phase right - 오른쪽 위상 + 페이즈 우측 - + Shift phase by +15 degrees - 위상을 +15도만큼 바꾸기 + 페이즈를 +15도 만큼 옮기기 + + + + + Normalize + 노멀라이즈 - Normalize - 일반화 - - - - Invert - 파형 반전 + 반전 - - + + Smooth - 부드럽게 + 스무드 - - + + Sine wave 사인파 - - - + + + Triangle wave 삼각파 - + Saw wave 톱니파 - - + + Square wave 사각파 - Xpressive + lmms::gui::WaveShaperControlDialog - - Selected graph - 선택된 그래프 + + INPUT + 입력 - - A1 - A1 + + Input gain: + 입력 게인: - - A2 - A2 + + OUTPUT + 출력 - - A3 - A3 + + Output gain: + 출력 게인: - - W1 smoothing - + + + Reset wavegraph + 웨이브그래프 재설정 - - W2 smoothing - + + + Smooth wavegraph + 부드러운 웨이브그래프 - - W3 smoothing - + + + Increase wavegraph amplitude by 1 dB + 웨이브그래프 진폭 1dB씩 증가하기 - - Panning 1 - 패닝 1 + + + Decrease wavegraph amplitude by 1 dB + 웨이브그래프 진폭 1dB씩 감소하기 - - Panning 2 - 패닝 2 + + Clip input + 클립 입력 - - Rel trans - + + Clip input signal to 0 dB + 클립 입력 신호 → 0dB - XpressiveView + lmms::gui::XpressiveView - + Draw your own waveform here by dragging your mouse on this graph. - 드래그하여 원하는 파형을 그리세요. + 이 그래프 위에 마우스를 드래그하여 나만의 파형을 그려보세요. - + Select oscillator W1 - 오실레이터 W1 선택 + 오실레이터 W1 선택하기 - + Select oscillator W2 - 오실레이터 W2 선택 + 오실레이터 W2 선택하기 - + Select oscillator W3 - 오실레이터 W3 선택 + 오실레이터 W3 선택하기 - + Select output O1 - 출력 O1 선택 + 출력 O1 선택하기 - + Select output O2 - 출력 O2 선택 + 출력 O2 선택하기 - + Open help window 도움말 창 열기 - - + + Sine wave 사인파 - - + + Moog-saw wave - Moog 톱니파 + 모그 톱니파 - - + + Exponential wave - 지수형 파형 + 지수파 - - + + Saw wave 톱니파 - - + + User-defined wave - 사용자 정의 파형 + 사용자 정의된 파형 - - + + Triangle wave 삼각파 - - + + Square wave 사각파 - - + + White noise - 화이트 노이즈 + 백색 잡음 - + WaveInterpolate - + 웨이브인터폴레이트 - + ExpressionValid - - - - - General purpose 1: - - - - - General purpose 2: - - - - - General purpose 3: - - - - - O1 panning: - - - - - O2 panning: - + 유효한표현식 + General purpose 1: + 범용 1: + + + + General purpose 2: + 범용 2: + + + + General purpose 3: + 범용 3: + + + + O1 panning: + O1 패닝: + + + + O2 panning: + O2 패닝: + + + Release transition: - + 릴리즈 트랜지션: - + Smoothness - + 스무스니스 - ZynAddSubFxInstrument + lmms::gui::ZynAddSubFxView - - Portamento - 포르타멘토 - - - - Filter frequency - 필터 주파수 - - - - Filter resonance - 필터 공명 - - - - Bandwidth - 대역폭 - - - - FM gain - FM 이득 - - - - Resonance center frequency - 공명 중심 주파수 - - - - Resonance bandwidth - 공명 대역폭 - - - - Forward MIDI control change events - MIDI CC 이벤트 전달 - - - - ZynAddSubFxView - - + Portamento: 포르타멘토: - + PORT - 포르타멘토 + PORT - + Filter frequency: 필터 주파수: - + FREQ - 주파수 + FREQ - + Filter resonance: 필터 공명: - + RES - 공명 + RES - + Bandwidth: 대역폭: - + BW 대역폭 - - - FM gain: - FM 이득: - - FM GAIN - FM 이득 + FM gain: + FM 게인: - + + FM GAIN + FM 게인 + + + Resonance center frequency: 공명 중심 주파수: - + RES CF - + RES CF - + Resonance bandwidth: 공명 대역폭: - + RES BW - + RES BW - + Forward MIDI control changes - MIDI CC 이벤트 전달 + 정방향 MIDI 컨트롤 변경 - + Show GUI - GUI 표시 + GUI 표시하기 - - AudioFileProcessor - - - Amplify - 증폭 - - - - Start of sample - 샘플 시작 - - - - End of sample - 샘플 끝 - - - - Loopback point - 루프 시작점 - - - - Reverse sample - 샘플 역으로 - - - - Loop mode - 루프 모드 - - - - Stutter - - - - - Interpolation mode - 보간법 - - - - None - 없음 - - - - Linear - 선형 - - - - Sinc - Sinc - - - - Sample not found: %1 - 샘플 %1을 찾을 수 없음 - - - - BitInvader - - - Sample length - 샘플 길이 - - - - BitInvaderView - - - Sample length - 샘플 길이 - - - - Draw your own waveform here by dragging your mouse on this graph. - 드래그하여 원하는 파형을 그리세요. - - - - - Sine wave - 사인파 - - - - - Triangle wave - 삼각파 - - - - - Saw wave - 톱니파 - - - - - Square wave - 사각파 - - - - - White noise - 화이트 노이즈 - - - - - User-defined wave - 사용자 정의 파형 - - - - - Smooth waveform - 파형을 부드럽게 - - - - Interpolation - 보간 - - - - Normalize - 규격화 - - - - DynProcControlDialog - - - INPUT - 입력 - - - - Input gain: - 입력 이득: - - - - OUTPUT - 출력 - - - - Output gain: - 출력 이득: - - - - ATTACK - - - - - Peak attack time: - - - - - RELEASE - - - - - Peak release time: - - - - - - Reset wavegraph - 그래프 초기화 - - - - - Smooth wavegraph - 그래프를 부드럽게 - - - - - Increase wavegraph amplitude by 1 dB - - - - - - Decrease wavegraph amplitude by 1 dB - - - - - Stereo mode: maximum - 스테레오 모드: 최댓값 - - - - Process based on the maximum of both stereo channels - 두 채널의 최댓값을 기준으로 효과 적용 - - - - Stereo mode: average - 스테레오 모드: 평균 - - - - Process based on the average of both stereo channels - 두 채널의 평균을 기준으로 효과 적용 - - - - Stereo mode: unlinked - 스테레오 모드: 독립 - - - - Process each stereo channel independently - 각각의 채널에 독립적으로 효과 적용 - - - - DynProcControls - - - Input gain - 입력 이득 - - - - Output gain - 출력 이득 - - - - Attack time - - - - - Release time - - - - - Stereo mode - 스테레오 모드 - - - - graphModel - - - Graph - 그래프 - - - - KickerInstrument - - - Start frequency - 시작 주파수 - - - - End frequency - 끝 주파수 - - - - Length - 길이 - - - - Start distortion - - - - - End distortion - - - - - Gain - 이득 - - - - Envelope slope - - - - - Noise - 잡음 - - - - Click - - - - - Frequency slope - - - - - Start from note - 음표 주파수에서 시작 - - - - End to note - 음표 주파수에서 마침 - - - - KickerInstrumentView - - - Start frequency: - 시작 주파수: - - - - End frequency: - 끝 주파수: - - - - Frequency slope: - - - - - Gain: - 이득: - - - - Envelope length: - - - - - Envelope slope: - - - - - Click: - - - - - Noise: - 잡음: - - - - Start distortion: - - - - - End distortion: - - - - - LadspaBrowserView - - - - Available Effects - 사용 가능한 효과 - - - - - Unavailable Effects - 사용 불가능한 효과 - - - - - Instruments - 악기 - - - - - Analysis Tools - 분석 도구 - - - - - Don't know - 알 수 없음 - - - - Type: - 형태: - - - - LadspaDescription - - - Plugins - 플러그인 - - - - Description - 요약 - - - - LadspaPortDialog - - - Ports - 포트 - - - - Name - 이름 - - - - Rate - 종류 - - - - Direction - 방향 - - - - Type - 형태 - - - - Min < Default < Max - 최소 < 기본 < 최대 - - - - Logarithmic - 로그 - - - - SR Dependent - SR 의존 - - - - Audio - 오디오 - - - - Control - 컨트롤 - - - - Input - 입력 - - - - Output - 출력 - - - - Toggled - 토글 - - - - Integer - 정수 - - - - Float - 실수 - - - - - Yes - - - - - Lb302Synth - - - VCF Cutoff Frequency - VCF 차단 주파수 - - - - VCF Resonance - VCF 공명 - - - - VCF Envelope Mod - VCF 엔벨로프 모드 - - - - VCF Envelope Decay - VCF 엔벨로프 감쇠 - - - - Distortion - 디스토션 - - - - Waveform - 파형 - - - - Slide Decay - 슬라이드 감소 - - - - Slide - 슬라이드 - - - - Accent - - - - - Dead - - - - - 24dB/oct Filter - 24dB/oct 필터 - - - - Lb302SynthView - - - Cutoff Freq: - 차단 주파수: - - - - Resonance: - 공명: - - - - Env Mod: - 엔벨로프 변조: - - - - Decay: - 감쇠: - - - - 303-es-que, 24dB/octave, 3 pole filter - - - - - Slide Decay: - 슬라이드 감쇠: - - - - DIST: - 디스토션: - - - - Saw wave - 톱니파 - - - - Click here for a saw-wave. - 클릭하여 톱니파를 선택합니다. - - - - Triangle wave - 삼각파 - - - - Click here for a triangle-wave. - 클릭하여 삼각파를 선택합니다. - - - - Square wave - 사각파 - - - - Click here for a square-wave. - 클릭하여 사각파를 선택합니다. - - - - Rounded square wave - 둥근 사각파 - - - - Click here for a square-wave with a rounded end. - 클릭하여 둥근 사각파를 선택합니다. - - - - Moog wave - Moog 톱니파 - - - - Click here for a moog-like wave. - 클릭하여 Moog 톱니파를 선택합니다. - - - - Sine wave - 사인파 - - - - Click for a sine-wave. - 클릭하여 사인파를 선택합니다. - - - - - White noise wave - 화이트 노이즈 - - - - Click here for an exponential wave. - 클릭하여 지수형 파형을 선택합니다. - - - - Click here for white-noise. - 클릭하여 화이트 노이즈를 선택합니다. - - - - Bandlimited saw wave - 대역 제한 톱니파 - - - - Click here for bandlimited saw wave. - 클릭하여 대역 제한 톱니파를 선택합니다. - - - - Bandlimited square wave - 대역 제한 사각파 - - - - Click here for bandlimited square wave. - 클릭하여 대역 제한 사각파를 선택합니다. - - - - Bandlimited triangle wave - 대역 제한 삼각파 - - - - Click here for bandlimited triangle wave. - 클릭하여 대역 제한 삼각파를 선택합니다. - - - - Bandlimited moog saw wave - 대역 제한 Moog 톱니파 - - - - Click here for bandlimited moog saw wave. - 클릭하여 대역 제한 Moog 톱니파를 선택합니다. - - - - MalletsInstrument - - - Hardness - - - - - Position - 위치 - - - - Vibrato gain - 비브라토 이득 - - - - Vibrato frequency - 비브라토 주파수 - - - - Stick mix - - - - - Modulator - 모듈레이터 - - - - Crossfade - 크로스페이드 - - - - LFO speed - LFO 속도 - - - - LFO depth - LFO 깊이 - - - - ADSR - ADSR - - - - Pressure - 압력 - - - - Motion - 모션 - - - - Speed - 속도 - - - - Bowed - - - - - Spread - - - - - Marimba - 마림바 - - - - Vibraphone - 비브라폰 - - - - Agogo - 아고고 - - - - Wood 1 - - - - - Reso - - - - - Wood 2 - - - - - Beats - - - - - Two fixed - - - - - Clump - - - - - Tubular bells - - - - - Uniform bar - - - - - Tuned bar - - - - - Glass - 유리 - - - - Tibetan bowl - - - - - MalletsInstrumentView - - - Instrument - 악기 - - - - Spread - - - - - Spread: - - - - - Missing files - 없는 파일 - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - Stk 설치가 불완전한 것 같습니다. 완전한 Stk 패키지가 설치되었는지 확인하시기 바랍니다! - - - - Hardness - - - - - Hardness: - - - - - Position - 위치 - - - - Position: - 위치: - - - - Vibrato gain - 비브라토 이득 - - - - Vibrato gain: - 비브라토 이득: - - - - Vibrato frequency - 비브라토 주파수 - - - - Vibrato frequency: - 비브라토 주파수: - - - - Stick mix - - - - - Stick mix: - - - - - Modulator - 모듈레이터 - - - - Modulator: - 모듈레이터: - - - - Crossfade - 크로스페이드 - - - - Crossfade: - 크로스페이드: - - - - LFO speed - LFO 속도 - - - - LFO speed: - LFO 속도: - - - - LFO depth - LFO 깊이 - - - - LFO depth: - LFO 깊이: - - - - ADSR - ADSR - - - - ADSR: - ADSR: - - - - Pressure - 압력 - - - - Pressure: - 압력: - - - - Speed - 속도 - - - - Speed: - 속도: - - - - ManageVSTEffectView - - - - VST parameter control - - - - - VST sync - VST와 동기화 - - - - - Automated - - - - - Close - 닫기 - - - - ManageVestigeInstrumentView - - - - - VST plugin control - - - - - VST Sync - VST와 동기화 - - - - - Automated - - - - - Close - 닫기 - - - - OrganicInstrument - - - Distortion - 디스토션 - - - - Volume - 음량 - - - - OrganicInstrumentView - - - Distortion: - 디스토션: - - - - Volume: - 음량: - - - - Randomise - 무작위 생성 - - - - - Osc %1 waveform: - 오실레이터 %1 파형: - - - - Osc %1 volume: - 오실레이터 %1 음량: - - - - Osc %1 panning: - 오실레이터 %1 패닝: - - - - Osc %1 stereo detuning - - - - - cents - 센트 - - - - Osc %1 harmonic: - 오실레이터 %1 배음: - - - - PatchesDialog - - - Qsynth: Channel Preset - - - - - Bank selector - - - - - Bank - 뱅크 - - - - Program selector - - - - - Patch - 패치 - - - - Name - 이름 - - - - OK - 확인 - - - - Cancel - 취소 - - - - Sf2Instrument - - - Bank - 뱅크 - - - - Patch - 패치 - - - - Gain - 이득 - - - - Reverb - 리버브 - - - - Reverb room size - - - - - Reverb damping - 리버브 감쇠 - - - - Reverb width - - - - - Reverb level - - - - - Chorus - 코러스 - - - - Chorus voices - - - - - Chorus level - - - - - Chorus speed - - - - - Chorus depth - - - - - A soundfont %1 could not be loaded. - 사운드폰트 %1을 불러올 수 없습니다. - - - - Sf2InstrumentView - - - - Open SoundFont file - 사운드폰트 파일 열기 - - - - Choose patch - 패치 선택 - - - - Gain: - 이득: - - - - Apply reverb (if supported) - 리버브 적용(지원시) - - - - Room size: - 공간 크기: - - - - Damping: - 감쇠: - - - - Width: - 너비: - - - - - Level: - - - - - Apply chorus (if supported) - 코러스 적용 (지원될 경우) - - - - Voices: - - - - - Speed: - 속도: - - - - Depth: - - - - - SoundFont Files (*.sf2 *.sf3) - 사운드폰트 파일 (*.sf2 *.sf3) - - - - SfxrInstrument - - - Wave - 파형 - - - - StereoEnhancerControlDialog - - - WIDTH - 너비 - - - - Width: - 너비: - - - - StereoEnhancerControls - - - Width - 너비 - - - - StereoMatrixControlDialog - - - Left to Left Vol: - 왼쪽에서 왼쪽 음량: - - - - Left to Right Vol: - 왼쪽에서 오른쪽 음량: - - - - Right to Left Vol: - 오른쪽에서 왼쪽 음량: - - - - Right to Right Vol: - 오른쪽에서 오른쪽 음량: - - - - StereoMatrixControls - - - Left to Left - 왼쪽에서 왼쪽 - - - - Left to Right - 왼쪽에서 오른쪽 - - - - Right to Left - 오른쪽에서 왼쪽 - - - - Right to Right - 오른쪽에서 오른쪽 - - - - VestigeInstrument - - - Loading plugin - 플러그인 읽는 중 - - - - Please wait while loading the VST plugin... - VST 플러그인을 불러올 동안 잠시 기다려 주세요... - - - - Vibed - - - String %1 volume - %1번 현 음량 - - - - String %1 stiffness - - - - - Pick %1 position - - - - - Pickup %1 position - 픽업 %1 위치 - - - - String %1 panning - %1번 현 패닝 - - - - String %1 detune - - - - - String %1 fuzziness - - - - - String %1 length - - - - - Impulse %1 - - - - - String %1 - %1번 현 - - - - VibedView - - - String volume: - - - - - String stiffness: - - - - - Pick position: - - - - - Pickup position: - 픽업 위치: - - - - String panning: - - - - - String detune: - - - - - String fuzziness: - - - - - String length: - - - - - Impulse - - - - - Octave - 옥타브 - - - - Impulse Editor - Impulse 편집기 - - - - Enable waveform - 파형 활성화 - - - - Enable/disable string - 현 활성화/비활성화 - - - - String - - - - - - Sine wave - 사인파 - - - - - Triangle wave - 삼각파 - - - - - Saw wave - 톱니파 - - - - - Square wave - 사각파 - - - - - White noise - 화이트 노이즈 - - - - - User-defined wave - 사용자 정의 파형 - - - - - Smooth waveform - 파형을 부드럽게 - - - - - Normalize waveform - 파형 정규화 - - - - VoiceObject - - - Voice %1 pulse width - 소리 %1 펄스 폭 - - - - Voice %1 attack - - - - - Voice %1 decay - - - - - Voice %1 sustain - - - - - Voice %1 release - - - - - Voice %1 coarse detuning - - - - - Voice %1 wave shape - 소리 %1 파형 - - - - Voice %1 sync - 소리 %1 동기화 - - - - Voice %1 ring modulate - 소리 %1 링 모듈레이션 - - - - Voice %1 filtered - 소리 %1 필터됨 - - - - Voice %1 test - 소리 %1 테스트 - - - - WaveShaperControlDialog - - - INPUT - 입력 - - - - Input gain: - 입력 이득: - - - - OUTPUT - 출력 - - - - Output gain: - 출력 이득: - - - - - Reset wavegraph - 그래프 초기화 - - - - - Smooth wavegraph - 그래프를 부드럽게 - - - - - Increase wavegraph amplitude by 1 dB - - - - - - Decrease wavegraph amplitude by 1 dB - - - - - Clip input - 입력 신호 클리핑 - - - - Clip input signal to 0 dB - 0dB에서 입력 신호 클리핑 - - - - WaveShaperControls - - - Input gain - 입력 이득 - - - - Output gain - 출력 이득 - - - + \ No newline at end of file diff --git a/data/locale/nl.ts b/data/locale/nl.ts index 8d1304135..f879c6adf 100644 --- a/data/locale/nl.ts +++ b/data/locale/nl.ts @@ -1,4 +1,4 @@ - + AboutDialog @@ -70,811 +70,44 @@ Als u interesse heeft om LMMS naar een andere taal te vertalen, of als u de best - AmplifierControlDialog + AboutJuceDialog - - VOL - VOL - - - - Volume: - Volume: - - - - PAN - BAL - - - - Panning: - Balans: - - - - LEFT - LINKS - - - - Left gain: - Linker versterking: - - - - RIGHT - RECHTS - - - - Right gain: - Rechter versterking: - - - - AmplifierControls - - - Volume - Volume - - - - Panning - Balans - - - - Left gain - Linker versterking - - - - Right gain - Rechter versterking - - - - AudioAlsaSetupWidget - - - DEVICE - APPARAAT - - - - CHANNELS - KANALEN - - - - AudioFileProcessorView - - - Open sample - Sample openen - - - - Reverse sample - Sample omdraaien - - - - Disable loop - Herhalen uitschakelen - - - - Enable loop - Herhalen inschakelen - - - - Enable ping-pong loop - Ping-pong herhalen inschakelen - - - - Continue sample playback across notes - Doorgaan met afspelen van sample tussen noten - - - - Amplify: - Versterken: - - - - Start point: - Beginpunt: - - - - End point: - Eindpunt: - - - - Loopback point: - Herhaalpunt: - - - - AudioFileProcessorWaveView - - - Sample length: - Sample-lengte: - - - - AudioJack - - - JACK client restarted - JACK-client opnieuw gestart - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS werd er om een of andere reden door JACK afgegooid. Daarom werd de JACK-backend van LMMS opnieuw gestart. U zult manueel verbindingen opnieuw moeten maken. - - - - JACK server down - JACK-server is offline - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - De JACK-server lijkt afgesloten te zijn en het starten van een nieuwe instantie is mislukt. Daarom kan LMMS niet doorgaan. U slaat best uw project op en herstart JACK en LMMS. - - - - Client name - Naam client - - - - Channels - Kanalen - - - - AudioOss - - - Device - Apparaat - - - - Channels - Kanalen - - - - AudioPortAudio::setupWidget - - - Backend - Backend - - - - Device - Apparaat - - - - AudioPulseAudio - - - Device - Apparaat - - - - Channels - Kanalen - - - - AudioSdl::setupWidget - - - Device - Apparaat - - - - AudioSndio - - - Device - Apparaat - - - - Channels - Kanalen - - - - AudioSoundIo::setupWidget - - - Backend - Backend - - - - Device - Apparaat - - - - AutomatableModel - - - &Reset (%1%2) - &Herstellen (%1%2) - - - - &Copy value (%1%2) - Waarde &kopiëren (%1%2) - - - - &Paste value (%1%2) - Waarde &plakken (%1%2) - - - - &Paste value - Waarde &plakken - - - - Edit song-global automation - Song-globale automatisering bewerken - - - - Remove song-global automation - Song-globale automatisering verwijderen - - - - Remove all linked controls - Alle gelinkte controls verwijderen - - - - Connected to %1 - Verbonden met %1 - - - - Connected to controller - Verbonden met controller - - - - Edit connection... - Verbinding bewerken... - - - - Remove connection - Verbinding verwijderen - - - - Connect to controller... - Verbinden met controller... - - - - AutomationEditor - - - Edit Value + + About JUCE - - New outValue + + <b>About JUCE</b> - - New inValue + + This program uses JUCE version 3.x.x. - - Please open an automation clip with the context menu of a control! - Open een automatiseringspatroon met het contextmenu van een control! - - - - AutomationEditorWindow - - - Play/pause current clip (Space) - Huidig patroon afspelen/pauzeren (Spatie) - - - - Stop playing of current clip (Space) - Stoppen met afspelen van huidig patroon (Spatie) - - - - Edit actions - Bewerking-acties - - - - Draw mode (Shift+D) - Tekenmodus (Shift+D) - - - - Erase mode (Shift+E) - Wissen-modus (Shift+E) - - - - Draw outValues mode (Shift+C) + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. - - Flip vertically - Verticaal omdraaien - - - - Flip horizontally - Horizontaal omdraaien - - - - Interpolation controls - Interpolatiebediening - - - - Discrete progression - Discrete progressie - - - - Linear progression - Lineaire progressie - - - - Cubic Hermite progression - Kubische Hermite-progressie - - - - Tension value for spline - Spanningswaarde voor spline - - - - Tension: - Spanning: - - - - Zoom controls - Zoombediening - - - - Horizontal zooming - Horizontaal zoomen - - - - Vertical zooming - Verticaal zoomen - - - - Quantization controls - Kwantisatiebediening - - - - Quantization - Kwantisatie - - - - - Automation Editor - no clip - Automatisering-editor - geen patroon - - - - - Automation Editor - %1 - Automatisering-editor - %1 - - - - Model is already connected to this clip. - Model is reeds verbonden met dit patroon. - - - - AutomationClip - - - Drag a control while pressing <%1> - Sleep een bediening tijdens indrukken van <%1> - - - - AutomationClipView - - - Open in Automation editor - Openen in automatisering-editor - - - - Clear - Wissen - - - - Reset name - Naam herstellen - - - - Change name - Naam wijzigen - - - - Set/clear record - Opnemen instellen/wissen - - - - Flip Vertically (Visible) - Verticaal omdraaien (zichtbaar) - - - - Flip Horizontally (Visible) - Horizontaal omdraaien (zichtbaar) - - - - %1 Connections - %1 verbindingen - - - - Disconnect "%1" - Verbinding verbreken met "%1" - - - - Model is already connected to this clip. - Model is reeds verbonden met dit patroon. - - - - AutomationTrack - - - Automation track - Automatisering-track - - - - PatternEditor - - - Beat+Bassline Editor - Beat- en baslijn-editor - - - - Play/pause current beat/bassline (Space) - Huidige beat/baslijn afspelen/pauzeren (Spatie) - - - - Stop playback of current beat/bassline (Space) - Afspelen van huidige beat/baslijn stoppen (Spatie) - - - - Beat selector - Beat-selector - - - - Track and step actions - Track- en stap-acties - - - - Add beat/bassline - Beat/baslijn toevoegen - - - - Clone beat/bassline clip + + This program uses JUCE version - - - Add sample-track - Sample-track toevoegen - - - - Add automation-track - Automatisering-track toevoegen - - - - Remove steps - Stappen verwijderen - - - - Add steps - Stappen toevoegen - - - - Clone Steps - Stappen klonen - - PatternClipView + AudioDeviceSetupWidget - - Open in Beat+Bassline-Editor - In beat- en baslijn-editor openen - - - - Reset name - Naam herstellen - - - - Change name - Naam wijzigen - - - - PatternTrack - - - Beat/Bassline %1 - Beat/baslijn %1 - - - - Clone of %1 - Kloon van %1 - - - - BassBoosterControlDialog - - - FREQ - FREQ - - - - Frequency: - Frequentie: - - - - GAIN - GAIN - - - - Gain: - Gain: - - - - RATIO - RATIO - - - - Ratio: - Ratio: - - - - BassBoosterControls - - - Frequency - Frequentie - - - - Gain - Gain - - - - Ratio - Ratio - - - - BitcrushControlDialog - - - IN - IN - - - - OUT - UIT - - - - - GAIN - GAIN - - - - Input gain: - Invoer-gain: - - - - NOISE - NOISE - - - - Input noise: - Invoer-ruis: - - - - Output gain: - Uitvoer-gain: - - - - CLIP - CLIP - - - - Output clip: - Uitvoer-clip: - - - - Rate enabled - Ratio ingeschakeld - - - - Enable sample-rate crushing - Samplerate-crushing inschakelen - - - - Depth enabled - Diepte ingeschakeld - - - - Enable bit-depth crushing - Bitdiepte-crushing inschakelen - - - - FREQ - FREQ - - - - Sample rate: - Samplerate: - - - - STEREO - STEREO - - - - Stereo difference: - Stereo-verschil: - - - - QUANT - QUANT - - - - Levels: - Niveaus - - - - BitcrushControls - - - Input gain - Invoer-gain - - - - Input noise - Invoer-ruis - - - - Output gain - Uitvoer-gain - - - - Output clip - Uitvoer-clip - - - - Sample rate - Samplerate - - - - Stereo difference - Stereo-verschil - - - - Levels - Niveaus - - - - Rate enabled - Ratio ingeschakeld - - - - Depth enabled - Diepte ingeschakeld + + [System Default] + @@ -900,124 +133,124 @@ Als u interesse heeft om LMMS naar een andere taal te vertalen, of als u de best - + Artwork - + Using KDE Oxygen icon set, designed by Oxygen Team. - + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. - + VST is a trademark of Steinberg Media Technologies GmbH. - + Special thanks to António Saraiva for a few extra icons and artwork! - + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. - + MIDI Keyboard designed by Thorsten Wilms. - + Carla, Carla-Control and Patchbay icons designed by DoosC. - + Features - + AU/AudioUnit: - + LADSPA: - - - - - - - - + + + + + + + + TextLabel - + VST2: - + DSSI: - + LV2: - + VST3: - + OSC - + Host URLs: - + Valid commands: - + valid osc commands here - + Example: - + License Licentie - + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -1302,50 +535,50 @@ POSSIBILITY OF SUCH DAMAGES. - + OSC Bridge Version - + Plugin Version - + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> - - + + (Engine not running) - + Everything! (Including LRDF) - + Everything! (Including CustomData/Chunks) - + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - - - + + + Using Juce host - + About 85% complete (missing vst bank/presets and some minor stuff) @@ -1378,561 +611,598 @@ POSSIBILITY OF SUCH DAMAGES. - + + Save + + + + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + Buffer Size: - + Sample Rate: - + ? Xruns - + DSP Load: %p% - + &File &Bestand - + &Engine - + &Plugin - + Macros (all plugins) - + &Canvas - + Zoom - + &Settings - + &Help &Help - - toolBar + + Tool Bar - + Disk - - + + Home Home - + Transport - + Playback Controls - + Time Information - + Frame: - + 000'000'000 - + Time: Tijd: - + 00:00:00 - + BBT: - + 000|00|0000 - + Settings Instellingen - + BPM - + Use JACK Transport - + Use Ableton Link - + &New &Nieuw - + Ctrl+N - + &Open... &Openen... - - + + Open... - + Ctrl+O - + &Save Op&slaan - + Ctrl+S - + Save &As... Opslaan &als... - - + + Save As... - + Ctrl+Shift+S - + &Quit &Afsluiten - + Ctrl+Q - + &Start - + F5 - + St&op - + F6 - + &Add Plugin... - + Ctrl+A - + &Remove All - + Enable - + Disable - + 0% Wet (Bypass) - + 100% Wet - + 0% Volume (Mute) - + 100% Volume - + Center Balance - + &Play - + Ctrl+Shift+P - + &Stop - + Ctrl+Shift+X - + &Backwards - + Ctrl+Shift+B - + &Forwards - + Ctrl+Shift+F - + &Arrange - + Ctrl+G - - + + &Refresh - + Ctrl+R - + Save &Image... - + Auto-Fit - + Zoom In - + Ctrl++ - + Zoom Out - + Ctrl+- - + Zoom 100% - + Ctrl+1 - + Show &Toolbar - + &Configure Carla - + &About - + About &JUCE - + About &Qt - + Show Canvas &Meters - + Show Canvas &Keyboard - + Show Internal - + Show External - + Show Time Panel - + Show &Side Panel - + + Ctrl+P + + + + &Connect... - + Compact Slots - + Expand Slots - + Perform secret 1 - + Perform secret 2 - + Perform secret 3 - + Perform secret 4 - + Perform secret 5 - + Add &JACK Application... - + &Configure driver... - + Panic - + Open custom driver panel... + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + + CarlaHostWindow - + Export as... - - - - + + + + Error Fout - + Failed to load project - + Failed to save project - + Quit - + Are you sure you want to quit Carla? - + Could not connect to Audio backend '%1', possible reasons: %2 - + Could not connect to Audio backend '%1' - + Warning - + There are still some plugins loaded, you need to remove them to stop the engine. Do you want to do this now? - - CarlaInstrumentView - - - Show GUI - GUI weergeven - - CarlaSettingsW @@ -1987,19 +1257,19 @@ Do you want to do this now? - + Main - + Canvas - + Engine @@ -2020,1487 +1290,589 @@ Do you want to do this now? - + Experimental - + <b>Main</b> - + Paths Paden - + Default project folder: - + Interface - + + Use "Classic" as default rack skin + + + + Interface refresh interval: - - + + ms - + Show console output in Logs tab (needs engine restart) - + Show a confirmation dialog before quitting - - + + Theme - + Use Carla "PRO" theme (needs restart) - + Color scheme: - + Black - + System - + Enable experimental features - + <b>Canvas</b> - + Bezier Lines - + Theme: - + Size: Grootte: - + 775x600 - + 1550x1200 - + 3100x2400 - + 4650x3600 - + 6200x4800 - + + 12400x9600 + + + + Options - + Auto-hide groups with no ports - + Auto-select items on hover - + Basic eye-candy (group shadows) - + Render Hints - + Anti-Aliasing - + Full canvas repaints (slower, but prevents drawing issues) - + <b>Engine</b> - - + + Core - + Single Client - + Multiple Clients - - + + Continuous Rack - - + + Patchbay - + Audio driver: - + Process mode: - - - - + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog - + Max Parameters: - + ... - + Reset Xrun counter after project load - + Plugin UIs - - + + How much time to wait for OSC GUIs to ping back the host - + UI Bridge Timeout: - + Use OSC-GUI bridges when possible, this way separating the UI from DSP code - + Use UI bridges instead of direct handling when possible - + Make plugin UIs always-on-top - + Make plugin UIs appear on top of Carla (needs restart) - + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS - - + + Restart the engine to load the new settings - + <b>OSC</b> - + Enable OSC - + Enable TCP port - - + + Use specific port: - + Overridden by CARLA_OSC_TCP_PORT env var - - + + Use randomly assigned port - + Enable UDP port - + Overridden by CARLA_OSC_UDP_PORT env var - + DSSI UIs require OSC UDP port enabled - + <b>File Paths</b> - + Audio Audio - + MIDI MIDI - + Used for the "audiofile" plugin - + Used for the "midifile" plugin - - + + Add... - - + + Remove - - + + Change... - + <b>Plugin Paths</b> - + LADSPA - + DSSI - + LV2 - + VST2 - + VST3 - + SF2/3 - + SFZ - + + JSFX + + + + + CLAP + + + + Restart Carla to find new plugins - + <b>Wine</b> - + Executable - + Path to 'wine' binary: - + Prefix - + Auto-detect Wine prefix based on plugin filename - + Fallback: - + Note: WINEPREFIX env var is preferred over this fallback - + Realtime Priority - + Base priority: - + WineServer priority: - + These options are not available for Carla as plugin - + <b>Experimental</b> - + Experimental options! Likely to be unstable! - + Enable plugin bridges - + Enable Wine bridges - + Enable jack applications - + Export single plugins to LV2 - + + Use system/desktop-theme icons (needs restart) + + + + Load Carla backend in global namespace (NOT RECOMMENDED) - + Fancy eye-candy (fade-in/out groups, glow connections) - + Use OpenGL for rendering (needs restart) - + High Quality Anti-Aliasing (OpenGL only) - + Render Ardour-style "Inline Displays" - + Force mono plugins as stereo by running 2 instances at the same time. This mode is not available for VST plugins. - + Force mono plugins as stereo - - Prevent plugins from doing bad stuff (needs restart) + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. - - Whenever possible, run the plugins in bridge mode. + + Prevent unsafe calls from plugins (needs restart) - + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + Run plugins in bridge mode when possible - - - - + + + + Add Path - - CompressorControlDialog - - - Threshold: - - - - - Volume at which the compression begins to take place - - - - - Ratio: - Ratio: - - - - How far the compressor must turn the volume down after crossing the threshold - - - - - Attack: - Attack: - - - - Speed at which the compressor starts to compress the audio - - - - - Release: - Release: - - - - Speed at which the compressor ceases to compress the audio - - - - - Knee: - - - - - Smooth out the gain reduction curve around the threshold - - - - - Range: - - - - - Maximum gain reduction - - - - - Lookahead Length: - - - - - How long the compressor has to react to the sidechain signal ahead of time - - - - - Hold: - Hold: - - - - Delay between attack and release stages - - - - - RMS Size: - - - - - Size of the RMS buffer - - - - - Input Balance: - - - - - Bias the input audio to the left/right or mid/side - - - - - Output Balance: - - - - - Bias the output audio to the left/right or mid/side - - - - - Stereo Balance: - - - - - Bias the sidechain signal to the left/right or mid/side - - - - - Stereo Link Blend: - - - - - Blend between unlinked/maximum/average/minimum stereo linking modes - - - - - Tilt Gain: - - - - - Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. - - - - - Tilt Frequency: - - - - - Center frequency of sidechain tilt filter - - - - - Mix: - - - - - Balance between wet and dry signals - - - - - Auto Attack: - - - - - Automatically control attack value depending on crest factor - - - - - Auto Release: - - - - - Automatically control release value depending on crest factor - - - - - Output gain - Uitvoer-gain - - - - - Gain - Gain - - - - Output volume - - - - - Input gain - Invoer-gain - - - - Input volume - - - - - Root Mean Square - - - - - Use RMS of the input - - - - - Peak - - - - - Use absolute value of the input - - - - - Left/Right - - - - - Compress left and right audio - - - - - Mid/Side - - - - - Compress mid and side audio - - - - - Compressor - - - - - Compress the audio - - - - - Limiter - - - - - Set Ratio to infinity (is not guaranteed to limit audio volume) - - - - - Unlinked - - - - - Compress each channel separately - - - - - Maximum - - - - - Compress based on the loudest channel - - - - - Average - - - - - Compress based on the averaged channel volume - - - - - Minimum - - - - - Compress based on the quietest channel - - - - - Blend - - - - - Blend between stereo linking modes - - - - - Auto Makeup Gain - - - - - Automatically change makeup gain depending on threshold, knee, and ratio settings - - - - - - Soft Clip - - - - - Play the delta signal - - - - - Use the compressor's output as the sidechain input - - - - - Lookahead Enabled - - - - - Enable Lookahead, which introduces 20 milliseconds of latency - - - - - CompressorControls - - - Threshold - - - - - Ratio - Ratio - - - - Attack - Attack - - - - Release - Release - - - - Knee - - - - - Hold - Hold - - - - Range - - - - - RMS Size - - - - - Mid/Side - - - - - Peak Mode - - - - - Lookahead Length - - - - - Input Balance - - - - - Output Balance - - - - - Limiter - - - - - Output Gain - Uitvoer-gain - - - - Input Gain - Invoer-gain - - - - Blend - - - - - Stereo Balance - - - - - Auto Makeup Gain - - - - - Audition - - - - - Feedback - Feedback - - - - Auto Attack - - - - - Auto Release - - - - - Lookahead - - - - - Tilt - - - - - Tilt Frequency - - - - - Stereo Link - - - - - Mix - Mix - - - - Controller - - - Controller %1 - Controller %1 - - - - ControllerConnectionDialog - - - Connection Settings - Verbindingsinstellingen - - - - MIDI CONTROLLER - MIDI-CONTROLLER - - - - Input channel - Invoerkanaal - - - - CHANNEL - KANAAL - - - - Input controller - Invoercontroller - - - - CONTROLLER - CONTROLLER - - - - - Auto Detect - Automatisch detecteren - - - - MIDI-devices to receive MIDI-events from - MIDI-apparaten om MIDI-events van te ontvangen - - - - USER CONTROLLER - GEBRUIKER CONTROLLER - - - - MAPPING FUNCTION - MAPPING-FUNCTIE - - - - OK - Ok - - - - Cancel - Annuleren - - - - LMMS - LMMS - - - - Cycle Detected. - Cyclus gedetecteerd. - - - - ControllerRackView - - - Controller Rack - Controller-rack - - - - Add - Toevoegen - - - - Confirm Delete - Verwijderen beVestigen - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Verwijderen beVestigen? Er zijn bestaande verbindingen geassocieerd met deze controller. Er is geen manier om dit ongedaan te maken. - - - - ControllerView - - - Controls - Besturingen - - - - Rename controller - Naam controller wijzigen - - - - Enter the new name for this controller - Nieuwe naam voor deze controller opgeven - - - - LFO - LFO - - - - &Remove this controller - Deze controller ve&rwijderen - - - - Re&name this controller - &Naam van deze controller wijzigen - - - - CrossoverEQControlDialog - - - Band 1/2 crossover: - Band 1/2 crossover: - - - - Band 2/3 crossover: - Band 2/3 crossover: - - - - Band 3/4 crossover: - Band 3/4 crossover: - - - - Band 1 gain - Band 1 gain - - - - Band 1 gain: - Band 1 gain - - - - Band 2 gain - Band 2 gain - - - - Band 2 gain: - Band 2 gain: - - - - Band 3 gain - Band 3 gain - - - - Band 3 gain: - Band 3 gain: - - - - Band 4 gain - Band 4 gain - - - - Band 4 gain: - Band 4 gain: - - - - Band 1 mute - Band 1 gedempt - - - - Mute band 1 - Band 1 dempen - - - - Band 2 mute - Band 2 gedempt - - - - Mute band 2 - Band 2 dempen - - - - Band 3 mute - Band 3 gedempt - - - - Mute band 3 - Band 3 dempen - - - - Band 4 mute - Band 4 gedempt - - - - Mute band 4 - Band 4 dempen - - - - DelayControls - - - Delay samples - Samples vertragen - - - - Feedback - Feedback - - - - LFO frequency - LFO frequentie - - - - LFO amount - LFO-hoeveelheid - - - - Output gain - Uitvoer-gain - - - - DelayControlsDialog - - - DELAY - DELAY - - - - Delay time - Delay-tijd - - - - FDBK - FDBK - - - - Feedback amount - Feedback-hoeveelheid - - - - RATE - RATIO - - - - LFO frequency - LFO frequentie - - - - AMNT - HVHD - - - - LFO amount - LFO-hoeveelheid - - - - Out gain - Uitvoer-gain - - - - Gain - Gain - - Dialog - - - Add JACK Application - - - - - Note: Features not implemented yet are greyed out - - - - - Application - - - - - Name: - - - - - Application: - - - - - From template - - - - - Custom - - - - - Template: - - - - - Command: - - - - - Setup - - - - - Session Manager: - - - - - None - Geen - - - - Audio inputs: - - - - - MIDI inputs: - - - - - Audio outputs: - - - - - MIDI outputs: - - - - - Take control of main application window - - - - - Workarounds - - - - - Wait for external application start (Advanced, for Debug only) - - - - - Capture only the first X11 Window - - - - - Use previous client output buffer as input for the next client - - - - - Simulate 16 JACK MIDI outputs, with MIDI channel as port index - - - - - Error here - - Carla Control - Connect @@ -3526,27 +1898,6 @@ This mode is not available for VST plugins. TCP Port: - - - Reported host - - - - - Automatic - - - - - Custom: - - - - - In some networks (like USB connections), the remote system cannot reach the local network. You can specify here which hostname or IP to make the remote Carla connect to. -If you are unsure, leave it as 'Automatic'. - - Set value @@ -3601,948 +1952,6 @@ If you are unsure, leave it as 'Automatic'. - - DualFilterControlDialog - - - - FREQ - FREQ - - - - - Cutoff frequency - Cutoff-frequentie - - - - - RESO - RESO - - - - - Resonance - Resonantie - - - - - GAIN - GAIN - - - - - Gain - Gain - - - - MIX - MIX - - - - Mix - Mix - - - - Filter 1 enabled - Filter 1 ingeschakeld - - - - Filter 2 enabled - Filter 2 ingeschakeld - - - - Enable/disable filter 1 - Filter 1 in/uitschakelen - - - - Enable/disable filter 2 - Filter 2 in/uitschakelen - - - - DualFilterControls - - - Filter 1 enabled - Filter 1 ingeschakeld - - - - Filter 1 type - Filter 1 type - - - - Cutoff frequency 1 - Cutoff-frequentie 1 - - - - Q/Resonance 1 - Q/Resonantie 1 - - - - Gain 1 - Gain 1 - - - - Mix - Mix - - - - Filter 2 enabled - Filter 2 ingeschakeld - - - - Filter 2 type - Filter 2 type - - - - Cutoff frequency 2 - Cutoff-frequentie 2 - - - - Q/Resonance 2 - Q/Resonantie 2 - - - - Gain 2 - Gain 2 - - - - - Low-pass - Low-pass - - - - - Hi-pass - High-pass - - - - - Band-pass csg - BandPass csg - - - - - Band-pass czpg - Bandpass czpg - - - - - Notch - Notch - - - - - All-pass - All-pass - - - - - Moog - Moog - - - - - 2x Low-pass - 2x Low-pass - - - - - RC Low-pass 12 dB/oct - RC low-pass 12 dB/oct - - - - - RC Band-pass 12 dB/oct - RC band-pass 12 dB/oct - - - - - RC High-pass 12 dB/oct - RC high-pass 12 dB/oct - - - - - RC Low-pass 24 dB/oct - RC low-pass 24 dB/oct - - - - - RC Band-pass 24 dB/oct - RC band-pass 24 dB/oct - - - - - RC High-pass 24 dB/oct - RC high-pass 24 dB/oct - - - - - Vocal Formant - Stemvorming - - - - - 2x Moog - 2 x Moog - - - - - SV Low-pass - SV low-pass - - - - - SV Band-pass - SV band-pass - - - - - SV High-pass - SV high-pass - - - - - SV Notch - SV Notch - - - - - Fast Formant - Snel vormend - - - - - Tripole - Tripole - - - - Editor - - - Transport controls - Afspeelbediening - - - - Play (Space) - Afspelen (spatie) - - - - Stop (Space) - Stoppen (spatie) - - - - Record - Opnemen - - - - Record while playing - Opnemen tijdens afspelen - - - - Toggle Step Recording - Stap-opnemen in-/uitschakelen - - - - Effect - - - Effect enabled - Effect ingeschakeld - - - - Wet/Dry mix - Wet/dry-mix - - - - Gate - Gate - - - - Decay - Decay - - - - EffectChain - - - Effects enabled - Effecten ingeschakeld - - - - EffectRackView - - - EFFECTS CHAIN - EFFECT-CHAIN - - - - Add effect - Effect toevoegen - - - - EffectSelectDialog - - - Add effect - Effect toevoegen - - - - - Name - Naam - - - - Type - Type - - - - Description - Beschrijving - - - - Author - Auteur - - - - EffectView - - - On/Off - Aan/uit - - - - W/D - W/D - - - - Wet Level: - Wet-niveau: - - - - DECAY - DECAY - - - - Time: - Tijd: - - - - GATE - GATE - - - - Gate: - Gate: - - - - Controls - Besturingen - - - - Move &up - Om&hoog verplaatsen - - - - Move &down - Om&laag verplaatsen - - - - &Remove this plugin - Deze plugin ve&rwijderen - - - - EnvelopeAndLfoParameters - - - Env pre-delay - Env pre-delay - - - - Env attack - Env attack - - - - Env hold - Env hold - - - - Env decay - Env decay - - - - Env sustain - Env sustain - - - - Env release - Env release - - - - Env mod amount - Env mod-hoeveelheid - - - - LFO pre-delay - LFO pre-delay - - - - LFO attack - LFO-attack - - - - LFO frequency - LFO frequentie - - - - LFO mod amount - LFO mod-hoeveelheid - - - - LFO wave shape - LFO golfvorm - - - - LFO frequency x 100 - LFO frequentie x 100 - - - - Modulate env amount - Env-intensiteit moduleren - - - - EnvelopeAndLfoView - - - - DEL - DEL - - - - - Pre-delay: - Pre-delay: - - - - - ATT - ATT - - - - - Attack: - Attack: - - - - HOLD - HOLD - - - - Hold: - Hold: - - - - DEC - DEC - - - - Decay: - Decay: - - - - SUST - SUST - - - - Sustain: - Sustain: - - - - REL - REL - - - - Release: - Release: - - - - - AMT - INT - - - - - Modulation amount: - Modulatie-intensiteit: - - - - SPD - SPD - - - - Frequency: - Frequentie: - - - - FREQ x 100 - FREQ x 100 - - - - Multiply LFO frequency by 100 - LFO-frequentie vermenigvuldigen met 100 - - - - MODULATE ENV AMOUNT - ENV-INTENSITEIT MODULEREN - - - - Control envelope amount by this LFO - Envelope-hoeveelheid bedienen met deze LFO - - - - ms/LFO: - ms/LFO: - - - - Hint - Tip - - - - Drag and drop a sample into this window. - Een sample in dit venster slepen en neerzetten - - - - EqControls - - - Input gain - Invoer-gain - - - - Output gain - Uitvoer-gain - - - - Low-shelf gain - Low-shelf gain - - - - Peak 1 gain - Piek 1 gain - - - - Peak 2 gain - Piek 2 gain - - - - Peak 3 gain - Piek 3 gain - - - - Peak 4 gain - Piek 4 gain - - - - High-shelf gain - High-shelf gain - - - - HP res - HP-res - - - - Low-shelf res - Low-shelf res - - - - Peak 1 BW - Piek 1 BW - - - - Peak 2 BW - Piek 2 BW - - - - Peak 3 BW - Piek 3 BW - - - - Peak 4 BW - Piek 4 BW - - - - High-shelf res - High-shelf res - - - - LP res - LP-res - - - - HP freq - HP-freq - - - - Low-shelf freq - Low-shelf freq - - - - Peak 1 freq - Piek 1 freq - - - - Peak 2 freq - Piek 2 freq - - - - Peak 3 freq - Piek 3 freq - - - - Peak 4 freq - Piek 4 freq - - - - High-shelf freq - High-shelf freq - - - - LP freq - LP-freq - - - - HP active - HP actief - - - - Low-shelf active - Low-shelf actief - - - - Peak 1 active - Piek 1 actief - - - - Peak 2 active - Piek 2 actief - - - - Peak 3 active - Piek 3 actief - - - - Peak 4 active - Piek 4 actief - - - - High-shelf active - High-shelf actief - - - - LP active - LP actief - - - - LP 12 - LP 12 - - - - LP 24 - LP 24 - - - - LP 48 - LP 48 - - - - HP 12 - HP 12 - - - - HP 24 - HP 24 - - - - HP 48 - HP 48 - - - - Low-pass type - Low-pass type - - - - High-pass type - High-pass type - - - - Analyse IN - IN analyseren - - - - Analyse OUT - UIT analyseren - - - - EqControlsDialog - - - HP - HP - - - - Low-shelf - Low-shelf - - - - Peak 1 - Piek 1 - - - - Peak 2 - Piek 2 - - - - Peak 3 - Piek 3 - - - - Peak 4 - Piek 4 - - - - High-shelf - High-shelf - - - - LP - LP - - - - Input gain - Invoer-gain - - - - - - Gain - Gain - - - - Output gain - Uitvoer-gain - - - - Bandwidth: - Bandbreedte: - - - - Octave - Octaaf - - - - Resonance : - Resonantie: - - - - Frequency: - Frequentie: - - - - LP group - LP groep - - - - HP group - HP groep - - - - EqHandle - - - Reso: - Reso: - - - - BW: - BW: - - - - - Freq: - Freq: - - ExportProjectDialog @@ -4726,2126 +2135,652 @@ If you are unsure, leave it as 'Automatic'. Sinc beste (traagste) - - Oversampling: - Oversampling: - - - - 1x (None) - 1x (geen) - - - - 2x - 2x - - - - 4x - 4x - - - - 8x - 8x - - - + Start Starten - + Cancel Annuleren - - - Could not open file - Kan bestand niet openen - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Kon bestand %1 niet openen om te schrijven. -Zorg ervoor dat u schrijfbevoegdheid heeft voor het bestand en voor de map die het bestand bevat en probeer het opnieuw! - - - - Export project to %1 - Project exporteren naar %1 - - - - ( Fastest - biggest ) - ( Snelste - grootste ) - - - - ( Slowest - smallest ) - ( Traagste - kleinste ) - - - - Error - Fout - - - - Error while determining file-encoder device. Please try to choose a different output format. - Fout bij vaststellen van bestands-encoder-apparaat. Probeer een ander uitvoerformaat te kiezen. - - - - Rendering: %1% - Renderen: %1 % - - - - Fader - - - Set value - Waarde instellen - - - - Please enter a new value between %1 and %2: - Voer een nieuwe waarde in tussen %1 en %2: - - - - FileBrowser - - - User content - - - - - Factory content - - - - - Browser - Verkenner - - - - Search - Zoeken - - - - Refresh list - Lijst verversen - - - - FileBrowserTreeWidget - - - Send to active instrument-track - Naar actieve instrument-track zenden - - - - Open containing folder - - - - - Song Editor - Song-editor - - - - BB Editor - - - - - Send to new AudioFileProcessor instance - - - - - Send to new instrument track - - - - - (%2Enter) - - - - - Send to new sample track (Shift + Enter) - - - - - Loading sample - Sample laden - - - - Please wait, loading sample for preview... - Even geduld, sample laden voor voorbeeld... - - - - Error - Fout - - - - %1 does not appear to be a valid %2 file - %1 lijkt geen geldig %2-bestand te zijn - - - - --- Factory files --- - --- Factory-bestanden --- - - - - FlangerControls - - - Delay samples - Samples vertragen - - - - LFO frequency - LFO frequentie - - - - Seconds - Seconden - - - - Stereo phase - - - - - Regen - Regen - - - - Noise - Ruis - - - - Invert - Inverteren - - - - FlangerControlsDialog - - - DELAY - DELAY - - - - Delay time: - Delay-tijd: - - - - RATE - RATIO - - - - Period: - Periode: - - - - AMNT - HVHD - - - - Amount: - Hoeveelheid: - - - - PHASE - - - - - Phase: - - - - - FDBK - FDBK - - - - Feedback amount: - Feedback-hoeveelheid: - - - - NOISE - NOISE - - - - White noise amount: - Hoeveelheid witte ruis: - - - - Invert - Inverteren - - - - FreeBoyInstrument - - - Sweep time - Sweep-tijd - - - - Sweep direction - Sweep-richting - - - - Sweep rate shift amount - Sweep rate shift hoeveelheid - - - - - Wave pattern duty cycle - Golfpatroon-inschakeltijd - - - - Channel 1 volume - Volume kanaal 1 - - - - - - Volume sweep direction - Volume sweep-richting - - - - - - Length of each step in sweep - Lengte van elke stap in sweep - - - - Channel 2 volume - Volume kanaal 2 - - - - Channel 3 volume - Volume kanaal 3 - - - - Channel 4 volume - Volume kanaal 4 - - - - Shift Register width - Registerbreedte verschuiven - - - - Right output level - Rechter uitvoerniveau - - - - Left output level - Linker uitvoerniveau - - - - Channel 1 to SO2 (Left) - Kanaal 1 naar SO2 (links) - - - - Channel 2 to SO2 (Left) - Kanaal 2 naar SO2 (links) - - - - Channel 3 to SO2 (Left) - Kanaal 3 naar SO2 (links) - - - - Channel 4 to SO2 (Left) - Kanaal 4 naar SO2 (links) - - - - Channel 1 to SO1 (Right) - Kanaal 1 naar SO1 (rechts) - - - - Channel 2 to SO1 (Right) - Kanaal 2 naar SO1 (rechts) - - - - Channel 3 to SO1 (Right) - Kanaal 3 naar SO1 (rechts) - - - - Channel 4 to SO1 (Right) - Kanaal 4 naar SO1 (rechts) - - - - Treble - Treble - - - - Bass - Bass - - - - FreeBoyInstrumentView - - - Sweep time: - Sweep-tijd: - - - - Sweep time - Sweep-tijd - - - - Sweep rate shift amount: - Sweep rate shift hoeveelheid: - - - - Sweep rate shift amount - Sweep rate shift hoeveelheid - - - - - Wave pattern duty cycle: - Golfpatroon-inschakeltijd: - - - - - Wave pattern duty cycle - Golfpatroon-inschakeltijd - - - - Square channel 1 volume: - Blok kanaal 1 volume: - - - - Square channel 1 volume - Blok kanaal 1 volume - - - - - - Length of each step in sweep: - Lengte van elke stap in sweep: - - - - - - Length of each step in sweep - Lengte van elke stap in sweep - - - - Square channel 2 volume: - Blok kanaal 2 volume: - - - - Square channel 2 volume - Blok kanaal 2 volume - - - - Wave pattern channel volume: - Golfpatroon kanaalvolume: - - - - Wave pattern channel volume - Golfpatroon kanaalvolume - - - - Noise channel volume: - Ruis kanaal volume: - - - - Noise channel volume - Ruis kanaal volume - - - - SO1 volume (Right): - S01 volume (rechts): - - - - SO1 volume (Right) - S01 volume (rechts): - - - - SO2 volume (Left): - S02 volume (links): - - - - SO2 volume (Left) - SO2 volume (links) - - - - Treble: - Treble: - - - - Treble - Treble - - - - Bass: - Bass: - - - - Bass - Bass - - - - Sweep direction - Sweep-richting - - - - - - - - Volume sweep direction - Volume sweep-richting - - - - Shift register width - Registerbreedte verschuiven - - - - Channel 1 to SO1 (Right) - Kanaal 1 naar SO1 (rechts) - - - - Channel 2 to SO1 (Right) - Kanaal 2 naar SO1 (rechts) - - - - Channel 3 to SO1 (Right) - Kanaal 3 naar SO1 (rechts) - - - - Channel 4 to SO1 (Right) - Kanaal 4 naar SO1 (rechts) - - - - Channel 1 to SO2 (Left) - Kanaal 1 naar SO2 (links) - - - - Channel 2 to SO2 (Left) - Kanaal 2 naar SO2 (links) - - - - Channel 3 to SO2 (Left) - Kanaal 3 naar SO2 (links) - - - - Channel 4 to SO2 (Left) - Kanaal 4 naar SO2 (links) - - - - Wave pattern graph - Golfpatroon-grafiek - - - - MixerChannelView - - - Channel send amount - Hoeveelheid kanaal-send - - - - Move &left - &Links verplaatsen - - - - Move &right - &Rechts verplaatsen - - - - Rename &channel - &Kanaal hernoemen - - - - R&emove channel - Kanaal v&erwijderen - - - - Remove &unused channels - Ongebr&uikte kanalen verwijderen - - - - Set channel color - - - - - Remove channel color - - - - - Pick random channel color - - - - - MixerChannelLcdSpinBox - - - Assign to: - Toewijzen aan: - - - - New mixer Channel - Nieuw FX-kanaal - - - - Mixer - - - Master - Master - - - - - - Channel %1 - FX %1 - - - - Volume - Volume - - - - Mute - Dempen - - - - Solo - Solo - - - - MixerView - - - Mixer - mixer - - - - Fader %1 - FX-fader %1 - - - - Mute - Dempen - - - - Mute this mixer channel - Dit FX-kanaal dempen - - - - Solo - Solo - - - - Solo mixer channel - Solo FX-kanaal - - - - MixerRoute - - - - Amount to send from channel %1 to channel %2 - Te zenden hoeveelheid van kanaal %1 naar kanaal %2 - - - - GigInstrument - - - Bank - Bank - - - - Patch - Patch - - - - Gain - Gain - - - - GigInstrumentView - - - - Open GIG file - GIG-bestand openen - - - - Choose patch - Patch kiezen - - - - Gain: - Gain: - - - - GIG Files (*.gig) - GIG-bestanden (*.gig) - - - - GuiApplication - - - Working directory - Werkmap - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - De LMMS-werkmap %1 bestaat niet. Nu aanmaken? U kunt de map later wijzigen via Bewerken -> Instellingen. - - - - Preparing UI - UI voorbereiden - - - - Preparing song editor - Song-editor voorbereiden - - - - Preparing mixer - Mixer voorbereiden - - - - Preparing controller rack - Controller-rack voorbereiden - - - - Preparing project notes - Projectnotities voorbereiden - - - - Preparing beat/bassline editor - Beat- en baslijn-editor voorbereiden - - - - Preparing piano roll - Piano-roll voorbereiden - - - - Preparing automation editor - Automatisering-editor voorbereiden - - - - InstrumentFunctionArpeggio - - - Arpeggio - Arpeggio - - - - Arpeggio type - Arpeggio type - - - - Arpeggio range - Arpeggio bereik - - - - Note repeats - - - - - Cycle steps - Stappen doorlopen - - - - Skip rate - Skip-ratio - - - - Miss rate - Miss-ratio - - - - Arpeggio time - Arpeggio tijd - - - - Arpeggio gate - Arpeggio gate - - - - Arpeggio direction - Arpeggio richting - - - - Arpeggio mode - Arpeggio modus - - - - Up - Omhoog - - - - Down - Omlaag - - - - Up and down - Omhoog en omlaag - - - - Down and up - Omlaag en omhoog - - - - Random - Willekeurig - - - - Free - Vrij - - - - Sort - Sorteren - - - - Sync - Sync - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - ARPEGGIO - - - - RANGE - BEREIK - - - - Arpeggio range: - Arpeggio bereik: - - - - octave(s) - octa(af)(ven) - - - - REP - - - - - Note repeats: - - - - - time(s) - - - - - CYCLE - DOORL - - - - Cycle notes: - Noten doorlopen: - - - - note(s) - no(o)t(en) - - - - SKIP - SKIP - - - - Skip rate: - Skip-ratio: - - - - - - % - % - - - - MISS - MISS - - - - Miss rate: - Miss-ratio: - - - - TIME - TIJD - - - - Arpeggio time: - Arpeggio tijd: - - - - ms - ms - - - - GATE - GATE - - - - Arpeggio gate: - Arpeggio gate: - - - - Chord: - Akkoord: - - - - Direction: - Richting: - - - - Mode: - Modus: - InstrumentFunctionNoteStacking - + octave octaaf - - + + Major Majeur - + Majb5 Majb5 - + minor mineur - + minb5 minb5 - + sus2 sus2 - + sus4 sus4 - + aug aug - + augsus4 augsus4 - + tri tri - + 6 6 - + 6sus4 6sus4 - + 6add9 6add9 - + m6 m6 - + m6add9 m6add9 - + 7 7 - + 7sus4 7sus4 - + 7#5 7#5 - + 7b5 7b5 - + 7#9 7#9 - + 7b9 7b9 - + 7#5#9 7#5#9 - + 7#5b9 7#5b9 - + 7b5b9 7b5b9 - + 7add11 7add11 - + 7add13 7add13 - + 7#11 7#11 - + Maj7 Maj7 - + Maj7b5 Maj7b5 - + Maj7#5 Maj7#5 - + Maj7#11 Maj7#11 - + Maj7add13 Maj7add13 - + m7 m7 - + m7b5 m7b5 - + m7b9 m7b9 - + m7add11 m7add11 - + m7add13 m7add13 - + m-Maj7 m-Maj7 - + m-Maj7add11 m-Maj7add11 - + m-Maj7add13 m-Maj7add13 - + 9 9 - + 9sus4 9sus4 - + add9 add9 - + 9#5 9#5 - + 9b5 9b5 - + 9#11 9#11 - + 9b13 9b13 - + Maj9 Maj9 - + Maj9sus4 Maj9sus4 - + Maj9#5 Maj9#5 - + Maj9#11 Maj9#11 - + m9 m9 - + madd9 madd9 - + m9b5 m9b5 - + m9-Maj7 m9-Maj7 - + 11 11 - + 11b9 11b9 - + Maj11 Maj11 - + m11 m11 - + m-Maj11 m-Maj11 - + 13 13 - + 13#9 13#9 - + 13b9 13b9 - + 13b5b9 13b5b9 - + Maj13 Maj13 - + m13 m13 - + m-Maj13 m-Maj13 - + Harmonic minor Harmonisch mineur - + Melodic minor Melodisch mineur - + Whole tone Hele toon - + Diminished Verminderd - + Major pentatonic Pentatonisch majeur - + Minor pentatonic Pentatonisch mineur - + Jap in sen Jap in sen - + Major bebop Majeur bebop - + Dominant bebop Dominante bebop - + Blues Blues - + Arabic Arabisch - + Enigmatic Enigmatisch - + Neopolitan Neopolitanisch - + Neopolitan minor Neopolitanisch mineur - + Hungarian minor Hongaarse mineur - + Dorian Dorisch - + Phrygian Frygisch - + Lydian Lydisch - + Mixolydian Mixolydisch - + Aeolian Eolisch - + Locrian Locrisch - + Minor Mineur - + Chromatic Chromatisch - + Half-Whole Diminished Half-heel verminderd - + 5 5 - + Phrygian dominant Frygisch dominant - + Persian Persisch - - - Chords - Akkoorden - - - - Chord type - Akkoordsoort - - - - Chord range - Akkoordbereik - - - - InstrumentFunctionNoteStackingView - - - STACKING - STAPELEN - - - - Chord: - Akkoord: - - - - RANGE - BEREIK - - - - Chord range: - Akkoordbereik: - - - - octave(s) - Octaaf (octaven) - - - - InstrumentMidiIOView - - - ENABLE MIDI INPUT - MIDI-INVOER INSCHAKELEN - - - - ENABLE MIDI OUTPUT - MIDI-UITVOER INSCHAKELEN - - - - - CHAN - This string must be be short, its width must be less than * width of LCD spin-box of two digits - - - - - - VELOC - This string must be be short, its width must be less than * width of LCD spin-box of three digits - - - - - PROG - This string must be be short, its width must be less than the * width of LCD spin-box of three digits - - - - - NOTE - This string must be be short, its width must be less than * width of LCD spin-box of three digits - NOOT - - - - MIDI devices to receive MIDI events from - MIDI-apparaten om MIDI-events van te ontvangen - - - - MIDI devices to send MIDI events to - MIDI-apparaten om MIDI-events naar te zenden - - - - CUSTOM BASE VELOCITY - AANGEPASTE BASISSNELHEID - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. - Geef de snelheid-normalisatiebasis voor MIDI-gebaseerde instrumenten op bij 100 % nootsnelheid. - - - - BASE VELOCITY - BASISSNELHEID - - - - InstrumentTuningView - - - MASTER PITCH - MASTER-TOONHOOGTE - - - - Enables the use of master pitch - Schakelt het gebruik van master-toonhoogte in - InstrumentSoundShaping - + VOLUME VOLUME - + Volume Volume - + CUTOFF CUTOFF - - + Cutoff frequency Cutoff-frequentie - + RESO RESO - + Resonance Resonantie - - - Envelopes/LFOs - Envelopes/LFO's - - - - Filter type - Filtersoort - - - - Q/Resonance - Q/Resonantie - - - - Low-pass - Low-pass - - - - Hi-pass - High-pass - - - - Band-pass csg - BandPass csg - - - - Band-pass czpg - Bandpass czpg - - - - Notch - Notch - - - - All-pass - All-pass - - - - Moog - Moog - - - - 2x Low-pass - 2x Low-pass - - - - RC Low-pass 12 dB/oct - RC low-pass 12 dB/oct - - - - RC Band-pass 12 dB/oct - RC band-pass 12 dB/oct - - - - RC High-pass 12 dB/oct - RC high-pass 12 dB/oct - - - - RC Low-pass 24 dB/oct - RC low-pass 24 dB/oct - - - - RC Band-pass 24 dB/oct - RC band-pass 24 dB/oct - - - - RC High-pass 24 dB/oct - RC high-pass 24 dB/oct - - - - Vocal Formant - Stemvorming - - - - 2x Moog - 2 x Moog - - - - SV Low-pass - SV low-pass - - - - SV Band-pass - SV band-pass - - - - SV High-pass - SV high-pass - - - - SV Notch - SV Notch - - - - Fast Formant - Snel vormend - - - - Tripole - Tripole - - InstrumentSoundShapingView + JackAppDialog - - TARGET - DOEL - - - - FILTER - FILTER - - - - FREQ - FREQ - - - - Cutoff frequency: - Cutoff-frequentie: - - - - Hz - Hz - - - - Q/RESO - Q/RESO - - - - Q/Resonance: - Q/Resonantie: - - - - Envelopes, LFOs and filters are not supported by the current instrument. - Envelopes, LFO's en filters worden niet ondersteund door het huidige instrument. - - - - InstrumentTrack - - - - unnamed_track - naamloze_track - - - - Base note - Grondtoon - - - - First note + + Add JACK Application - - Last note - Laatste noot - - - - Volume - Volume - - - - Panning - Balans - - - - Pitch - Toonhoogte - - - - Pitch range - Toonhoogte-bereik - - - - Mixer channel - FX-kanaal - - - - Master pitch - Master-toonhoogte - - - - Enable/Disable MIDI CC + + Note: Features not implemented yet are greyed out - - CC Controller %1 + + Application - - - Default preset - Standaard preset - - - - InstrumentTrackView - - - Volume - Volume - - - - Volume: - Volume: - - - - VOL - VOL - - - - Panning - Balans - - - - Panning: - Balans: - - - - PAN - BAL - - - - MIDI - MIDI - - - - Input - Invoer - - - - Output - Uitvoer - - - - Open/Close MIDI CC Rack + + Name: - - Channel %1: %2 - FX %1: %2 - - - - InstrumentTrackWindow - - - GENERAL SETTINGS - ALGEMENE INSTELLINGEN + + Application: + - - Volume - Volume + + From template + - - Volume: - Volume: + + Custom + - - VOL - VOL + + Template: + - - Panning - Balans + + Command: + - - Panning: - Balans: + + Setup + - - PAN - BAL + + Session Manager: + - - Pitch - Toonhoogte + + None + - - Pitch: - Toonhoogte: + + Audio inputs: + - - cents - cents + + MIDI inputs: + - - PITCH - TOONHOOGTE + + Audio outputs: + - - Pitch range (semitones) - Toonhoogte-bereik (semitones) + + MIDI outputs: + - - RANGE - BEREIK + + Take control of main application window + - - Mixer channel - FX-kanaal + + Workarounds + - - FX - FX + + Wait for external application start (Advanced, for Debug only) + - - Save current instrument track settings in a preset file - Huidige instrument-track-instellingen opslaan in een presetbestand + + Capture only the first X11 Window + - - SAVE - OPSLAAN + + Use previous client output buffer as input for the next client + - - Envelope, filter & LFO - Envelope, filter en LFO + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + - - Chord stacking & arpeggio - Akkoorden opeenstapelen & arpeggio + + Error here + - - Effects - Effecten - - - - MIDI - MIDI - - - - Miscellaneous - Overige - - - - Save preset - Preset opslaan - - - - XML preset file (*.xpf) - XML-presetbestand (*.xpf) - - - - Plugin - Plug-in - - - - JackApplicationW - - + NSM applications cannot use abstract or absolute paths - + NSM applications cannot use CLI arguments - + You need to save the current Carla project before NSM can be used @@ -6853,948 +2788,11 @@ Zorg ervoor dat u schrijfbevoegdheid heeft voor het bestand en voor de map die h JuceAboutW - - About JUCE - - - - - <b>About JUCE</b> - - - - - This program uses JUCE version 3.x.x. - - - - - JUCE (Jules' Utility Class Extensions) is an all-encompassing C++ class library for developing cross-platform software. - -It contains pretty much everything you're likely to need to create most applications, and is particularly well-suited for building highly-customised GUIs, and for handling graphics and sound. - -JUCE is licensed under the GNU Public Licence version 2.0. -One module (juce_core) is permissively licensed under the ISC. - -Copyright (C) 2017 ROLI Ltd. - - - - + This program uses JUCE version %1. - - Knob - - - Set linear - Lineair instellen - - - - Set logarithmic - Logaritmisch instellen - - - - - Set value - Waarde instellen - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - Voer een nieuwe waarde in tussen -96,0 dBFS en 6,0 dBFS: - - - - Please enter a new value between %1 and %2: - Voer een nieuwe waarde in tussen %1 en %2: - - - - LadspaControl - - - Link channels - Kanalen koppelen - - - - LadspaControlDialog - - - Link Channels - Kanalen koppelen - - - - Channel - Kanaal - - - - LadspaControlView - - - Link channels - Kanalen koppelen - - - - Value: - Waarde: - - - - LadspaEffect - - - Unknown LADSPA plugin %1 requested. - Onbekende LADSPA-plugin %1 opgevraagd. - - - - LcdFloatSpinBox - - - Set value - Waarde instellen - - - - Please enter a new value between %1 and %2: - Voer een nieuwe waarde in tussen %1 en %2: - - - - LcdSpinBox - - - Set value - Waarde instellen - - - - Please enter a new value between %1 and %2: - Voer een nieuwe waarde in tussen %1 en %2: - - - - LeftRightNav - - - - - Previous - Vorige - - - - - - Next - Volgende - - - - Previous (%1) - Vorige (%1) - - - - Next (%1) - Volgende (%1) - - - - LfoController - - - LFO Controller - LFO-controller - - - - Base value - Basiswaarde - - - - Oscillator speed - Oscillatorsnelheid - - - - Oscillator amount - Hoeveelheid oscillator - - - - Oscillator phase - Oscillator-fase - - - - Oscillator waveform - Oscillator-golfvorm - - - - Frequency Multiplier - Frequentievermenigvuldiger - - - - LfoControllerDialog - - - LFO - LFO - - - - BASE - BASIS - - - - Base: - Basis: - - - - FREQ - FREQ - - - - LFO frequency: - LFO-frequentie: - - - - AMNT - HVHD - - - - Modulation amount: - Hoeveelheid modulatie: - - - - PHS - PHS - - - - Phase offset: - Faseverschuiving: - - - - degrees - graden - - - - Sine wave - Sinusgolf - - - - Triangle wave - Driehoeksgolf - - - - Saw wave - Zaagtandgolf - - - - Square wave - Blokgolf - - - - Moog saw wave - Moog-zaagtandgolf - - - - Exponential wave - Exponentiële golf - - - - White noise - Witte ruis - - - - User-defined shape. -Double click to pick a file. - Aangepaste vorm. -Dubbelklikken om een bestand te kiezen. - - - - Mutliply modulation frequency by 1 - Modulatiefrequentie vermenigvuldigen met 1 - - - - Mutliply modulation frequency by 100 - Modulatiefrequentie vermenigvuldigen met 100 - - - - Divide modulation frequency by 100 - Modulatiefrequentie delen door 100 - - - - Engine - - - Generating wavetables - Wavetables genereren - - - - Initializing data structures - Datastructuren initialiseren - - - - Opening audio and midi devices - Audio- en midi-apparaten openen - - - - Launching mixer threads - Mixer-threads starten - - - - MainWindow - - - Configuration file - Configuratiebestand - - - - Error while parsing configuration file at line %1:%2: %3 - Fout bij verwerken van configuratiebestand op regel %1:%2: %3 - - - - Could not open file - Kan bestand niet openen - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Kon bestand %1 niet openen om te schrijven. -Zorg ervoor dat u schrijfbevoegdheid heeft voor het bestand en voor de map die het bestand bevat en probeer het opnieuw! - - - - Project recovery - Projectherstel - - - - There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - Er is een herstelbestand aanwezig. Het lijkt alsof de laatste sessie niet goed afgesloten is of een andere instantie van LMMS al uitgevoerd wordt. Wilt u het project van deze sessie herstellen? - - - - - Recover - Herstellen - - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - Bestand herstellen. Gelieve niet meerdere instanties van LMMS uit te voeren wanneer u dit doet. - - - - - Discard - Verwerpen - - - - Launch a default session and delete the restored files. This is not reversible. - Start een standaard sessie en verwijder de herstelde bestanden. Dit is onomkeerbaar. - - - - Version %1 - Versie %1 - - - - Preparing plugin browser - Plugin-browser voorbereiden - - - - Preparing file browsers - Bestandsbrowsers voorbereiden - - - - My Projects - Mijn projecten - - - - My Samples - Mijn samples - - - - My Presets - Mijn presets - - - - My Home - Mijn home - - - - Root directory - Root-map - - - - Volumes - Volumes - - - - My Computer - Mijn computer - - - - &File - &Bestand - - - - &New - &Nieuw - - - - &Open... - &Openen... - - - - Loading background picture - Achtergrondafbeelding laden - - - - &Save - Op&slaan - - - - Save &As... - Opslaan &als... - - - - Save as New &Version - Opslaan als nieuwe &versie - - - - Save as default template - Opslaan als standaard-sjabloon - - - - Import... - Importeren... - - - - E&xport... - E&xporteren... - - - - E&xport Tracks... - Tracks e&xporteren... - - - - Export &MIDI... - Exporteer &MIDI... - - - - &Quit - &Afsluiten - - - - &Edit - &Bewerken - - - - Undo - Ongedaan maken - - - - Redo - Opnieuw - - - - Settings - Instellingen - - - - &View - Weerge&ven - - - - &Tools - &Tools - - - - &Help - &Help - - - - Online Help - Online help - - - - Help - Help - - - - About - Over - - - - Create new project - Nieuw project aanmaken - - - - Create new project from template - Nieuw project van sjabloon aanmaken - - - - Open existing project - Bestaand project openen - - - - Recently opened projects - Recent geopende projecten - - - - Save current project - Huidig project opslaan - - - - Export current project - Huidig project exporteren - - - - Metronome - Metronoom - - - - - Song Editor - Song-editor - - - - - Beat+Bassline Editor - Beat- en baslijn-editor - - - - - Piano Roll - Piano-roll - - - - - Automation Editor - Automatisering-editor - - - - - Mixer - mixer - - - - Show/hide controller rack - Controller-rack weergeven/verbergen - - - - Show/hide project notes - Projectnotities weergeven/verbergen - - - - Untitled - Naamloos - - - - Recover session. Please save your work! - Sessie herstellen. Sla uw werk op! - - - - LMMS %1 - LMMS %1 - - - - Recovered project not saved - Hersteld project niet opgeslagen - - - - This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? - Dit project werd hersteld vanuit de vorige sessie. Het is op dit moment niet opgeslagen en zal verloren gaan als u het niet opslaat. Wilt u het nu opslaan? - - - - Project not saved - Project niet opgeslagen - - - - The current project was modified since last saving. Do you want to save it now? - Het huidige project werd gewijzigd sinds de laatste keer dat het opgeslagen werd. Wilt u het nu opslaan? - - - - Open Project - Project openen - - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - - Save Project - Project opslaan - - - - LMMS Project - LMMS-project - - - - LMMS Project Template - LMMS-projectsjabloon - - - - Save project template - Projectsjabloon opslaan - - - - Overwrite default template? - Standaard-sjabloon overschrijven? - - - - This will overwrite your current default template. - Dit zal uw huidig standaard-sjabloon overschrijven. - - - - Help not available - Hulp niet beschikbaar - - - - Currently there's no help available in LMMS. -Please visit http://lmms.sf.net/wiki for documentation on LMMS. - Er is op dit moment geen hulp beschikbaar in LMMS. -Bezoek http://lmms.sf.net/wiki voor documentatie over LMMS. - - - - Controller Rack - Controller-rack - - - - Project Notes - Projectnotities - - - - Fullscreen - - - - - Volume as dBFS - Volume als dBFS - - - - Smooth scroll - Vloeiend scrollen - - - - Enable note labels in piano roll - Nootlabels in piano-roll inschakelen - - - - MIDI File (*.mid) - MIDI-bestand (*.mid) - - - - - untitled - naamloos - - - - - Select file for project-export... - Selecteer bestand voor project-export... - - - - Select directory for writing exported tracks... - Selecteer map voor schrijven van geëxporteerde tracks... - - - - Save project - Project opslaan - - - - Project saved - Project opgeslagen - - - - The project %1 is now saved. - Project %1 is nu opgeslagen. - - - - Project NOT saved. - Project NIET opgeslagen. - - - - The project %1 was not saved! - Project %1 werd niet opgeslagen! - - - - Import file - Bestand importeren - - - - MIDI sequences - MIDI-sequenties - - - - Hydrogen projects - Hydrogen-projecten - - - - All file types - Alle bestandstypes - - - - MeterDialog - - - - Meter Numerator - Meter-noemer - - - - Meter numerator - Meter-noemer - - - - - Meter Denominator - Meter-teller - - - - Meter denominator - Meter-teller - - - - TIME SIG - MAATSOORT - - - - MeterModel - - - Numerator - Noemer - - - - Denominator - Teller - - - - MidiCCRackView - - - - MIDI CC Rack - %1 - - - - - MIDI CC Knobs: - - - - - CC %1 - - - - - MidiController - - - MIDI Controller - MIDI-controller - - - - unnamed_midi_controller - naamloze_midi_controller - - - - MidiImport - - - - Setup incomplete - Setup niet voltooid - - - - You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. - U heeft geen standaard soundfont ingesteld in de instellingen (Bewerken -> Instellingen). Hierdoor wordt er geen geluid afgespeeld na het importeren van dit MIDI-bestand. Download een General MIDI soundfont, selecteer deze in de instellingen probeer opnieuw. - - - - You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - U heeft LMMS niet gecompileerd met ondersteuning voor de SoundFont2-speler, die gebruikt wordt om standaardgeluid toe te voegen aan geïmporteerde MIDI-bestanden. Daarom zal er geen geluid afgespeeld worden na het importeren van dit MIDI-bestand. - - - - MIDI Time Signature Numerator - MIDI tijdsaanduiding-teller - - - - MIDI Time Signature Denominator - MIDI tijdsaanduiding-noemer - - - - Numerator - Noemer - - - - Denominator - Teller - - - - Track - Track - - - - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - JACK-server is offline - - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - De JACK-server lijkt afgesloten te zijn. - - MidiPatternW @@ -8000,2730 +2998,369 @@ Bezoek http://lmms.sf.net/wiki voor documentatie over LMMS. &Afsluiten - - &Insert Mode + + Esc + &Insert Mode + + + + F - + &Velocity Mode - + D - + Select All - + A - - MidiPort - - - Input channel - Invoerkanaal - - - - Output channel - Uitvoerkanaal - - - - Input controller - Invoer-controller - - - - Output controller - Uitvoer-controller - - - - Fixed input velocity - Vaste invoersnelheid - - - - Fixed output velocity - Vaste uitvoersnelheid - - - - Fixed output note - Vaste uitvoernoot - - - - Output MIDI program - MIDI-programma voor uitvoer - - - - Base velocity - Basissnelheid - - - - Receive MIDI-events - MIDI-events ontvangen - - - - Send MIDI-events - MIDI-events verzenden - - - - MidiSetupWidget - - - Device - Apparaat - - - - MonstroInstrument - - - Osc 1 volume - Osc 1 volume - - - - Osc 1 panning - Osc 1 balans - - - - Osc 1 coarse detune - Osc 1 grof ontstemmen - - - - Osc 1 fine detune left - Osc 1 fijn ontstemmen links - - - - Osc 1 fine detune right - Osc 1 fijn ontstemmen rechts - - - - Osc 1 stereo phase offset - Osc 1 stereo-faseverschuiving - - - - Osc 1 pulse width - Osc 1 pulsbreedte - - - - Osc 1 sync send on rise - Osc 1 synchronisatie bij stijging - - - - Osc 1 sync send on fall - Osc 1 synchronisatie bij daling - - - - Osc 2 volume - Osc 2 volume - - - - Osc 2 panning - Osc 2 balans - - - - Osc 2 coarse detune - Osc 2 grof ontstemmen - - - - Osc 2 fine detune left - Osc 2 fijn ontstemmen links - - - - Osc 2 fine detune right - Osc 2 fijn ontstemmen rechts - - - - Osc 2 stereo phase offset - Osc 2 stereo-faseverschuiving - - - - Osc 2 waveform - Osc 2 golfvorm - - - - Osc 2 sync hard - Osc 2 sync hard - - - - Osc 2 sync reverse - Osc 2 sync omgekeerd - - - - Osc 3 volume - Osc 3 volume - - - - Osc 3 panning - Osc 3 balans - - - - Osc 3 coarse detune - Osc 3 grof ontstemmen - - - - Osc 3 Stereo phase offset - Osc 3 stereo-faseverschuiving - - - - Osc 3 sub-oscillator mix - Osc 3 sub-oscillator mix - - - - Osc 3 waveform 1 - Osc 3 golfvorm 1 - - - - Osc 3 waveform 2 - Osc 3 golfvorm 2 - - - - Osc 3 sync hard - Osc 3 sync hard - - - - Osc 3 Sync reverse - Osc 3 sync omgekeerd - - - - LFO 1 waveform - LFO 1 golfvorm - - - - LFO 1 attack - LFO 1 attack - - - - LFO 1 rate - LFO 1 ratio - - - - LFO 1 phase - LFO 1 fase - - - - LFO 2 waveform - LFO 2 golfvorm - - - - LFO 2 attack - LFO 2 attack - - - - LFO 2 rate - LFO 2 ratio - - - - LFO 2 phase - LFO 2 fase - - - - Env 1 pre-delay - Env 1 pre-delay - - - - Env 1 attack - Env 1 attack - - - - Env 1 hold - Env 1 hold - - - - Env 1 decay - Env 1 decay - - - - Env 1 sustain - Env 1 sustain - - - - Env 1 release - Env 1 release - - - - Env 1 slope - Env 1 slope - - - - Env 2 pre-delay - Env 2 pre-delay - - - - Env 2 attack - Env 2 attack - - - - Env 2 hold - Env 2 hold - - - - Env 2 decay - Env 2 decay - - - - Env 2 sustain - Env 2 sustain - - - - Env 2 release - Env 2 release - - - - Env 2 slope - Env 2 slope - - - - Osc 2+3 modulation - Osc 2+3 modulatie - - - - Selected view - Geselecteerde weergave - - - - Osc 1 - Vol env 1 - Osc 1 - Vol env 1 - - - - Osc 1 - Vol env 2 - Osc 1 - Vol env 2 - - - - Osc 1 - Vol LFO 1 - Osc 1 - Vol LFO 1 - - - - Osc 1 - Vol LFO 2 - Osc 1 - Vol LFO 2 - - - - Osc 2 - Vol env 1 - Osc 2 - Vol env 1 - - - - Osc 2 - Vol env 2 - Osc 2 - Vol env 2 - - - - Osc 2 - Vol LFO 1 - Osc 2 - Vol LFO 1 - - - - Osc 2 - Vol LFO 2 - Osc 2 - Vol LFO 2 - - - - Osc 3 - Vol env 1 - Osc 3 - Vol env 1 - - - - Osc 3 - Vol env 2 - Osc 3 - Vol env 2 - - - - Osc 3 - Vol LFO 1 - Osc 3 - Vol LFO 1 - - - - Osc 3 - Vol LFO 2 - Osc 3 - Vol LFO 2 - - - - Osc 1 - Phs env 1 - Osc 1 - Fase env 1 - - - - Osc 1 - Phs env 2 - Osc 1 - Fase env 2 - - - - Osc 1 - Phs LFO 1 - Osc 1 - Fase LFO 1 - - - - Osc 1 - Phs LFO 2 - Osc 1 - Fase LFO 2 - - - - Osc 2 - Phs env 1 - Osc 2 - Fase env 1 - - - - Osc 2 - Phs env 2 - Osc 2 - Fase env 2 - - - - Osc 2 - Phs LFO 1 - Osc 2 - Fase LFO 1 - - - - Osc 2 - Phs LFO 2 - Osc 2 - Fase LFO 2 - - - - Osc 3 - Phs env 1 - Osc 3 - Fase env 1 - - - - Osc 3 - Phs env 2 - Osc 3 - Fase env 2 - - - - Osc 3 - Phs LFO 1 - Osc 3 - Fase LFO 1 - - - - Osc 3 - Phs LFO 2 - Osc 3 - Fase LFO 2 - - - - Osc 1 - Pit env 1 - Osc 1 - Toonh env 1 - - - - Osc 1 - Pit env 2 - Osc 1 - Toonh env 2 - - - - Osc 1 - Pit LFO 1 - Osc 1 - Toonh LFO 1 - - - - Osc 1 - Pit LFO 2 - Osc 1 - Toonh LFO 2 - - - - Osc 2 - Pit env 1 - Osc 2 - Toonh env 1 - - - - Osc 2 - Pit env 2 - Osc 2 - Toonh env 2 - - - - Osc 2 - Pit LFO 1 - Osc 2 - Toonh LFO 1 - - - - Osc 2 - Pit LFO 2 - Osc 2 - Toonh LFO 2 - - - - Osc 3 - Pit env 1 - Osc 3 - Toonh env 1 - - - - Osc 3 - Pit env 2 - Osc 3 - Toonh env 2 - - - - Osc 3 - Pit LFO 1 - Osc 3 - Toonh LFO 1 - - - - Osc 3 - Pit LFO 2 - Osc 3 - Toonh LFO 2 - - - - Osc 1 - PW env 1 - Osc 1 - PB env 1 - - - - Osc 1 - PW env 2 - Osc 1 - PB env 2 - - - - Osc 1 - PW LFO 1 - Osc 1 - PB LFO 1 - - - - Osc 1 - PW LFO 2 - Osc 1 - PB LFO 2 - - - - Osc 3 - Sub env 1 - Osc 3 - Sub env 1 - - - - Osc 3 - Sub env 2 - Osc 3 - Sub env 2 - - - - Osc 3 - Sub LFO 1 - Osc 3 - Sub LFO 1 - - - - Osc 3 - Sub LFO 2 - Osc 3 - Sub LFO 2 - - - - - Sine wave - Sinusgolf - - - - Bandlimited Triangle wave - Bandgelimiteerde driehoeksgolf - - - - Bandlimited Saw wave - Bandgelimiteerde zaagtandgolf - - - - Bandlimited Ramp wave - Bandgelimiteerde hellingsgolf - - - - Bandlimited Square wave - Bandgelimiteerde blokgolf - - - - Bandlimited Moog saw wave - Bandgelimiteerde moog-zaagtandgolf - - - - - Soft square wave - Zachte blokgolf - - - - Absolute sine wave - Absolute sinusgolf - - - - - Exponential wave - Exponentiële golf - - - - White noise - Witte ruis - - - - Digital Triangle wave - Digitale driehoeksgolf - - - - Digital Saw wave - Digitale zaagtandgolf - - - - Digital Ramp wave - Digitale hellingsgolf - - - - Digital Square wave - Digitale blokgolf - - - - Digital Moog saw wave - Digitale moog-zaagtandgolf - - - - Triangle wave - Driehoeksgolf - - - - Saw wave - Zaagtandgolf - - - - Ramp wave - Hellingsgolf - - - - Square wave - Blokgolf - - - - Moog saw wave - Moog-zaagtandgolf - - - - Abs. sine wave - Abs. sinusgolf - - - - Random - Willekeurig - - - - Random smooth - Willekeurig glad - - - - MonstroView - - - Operators view - Operatorweergave - - - - Matrix view - Matrixweergave - - - - - - Volume - Volume - - - - - - Panning - Balans - - - - - - Coarse detune - Grof ontstemmen - - - - - - semitones - semitonen - - - - - Fine tune left - Fijn stemmen links - - - - - - - cents - cents - - - - - Fine tune right - Fijn stemmen rechts - - - - - - Stereo phase offset - Stereo-faseverschuiving - - - - - - - - deg - graden - - - - Pulse width - Pulsbreedte - - - - Send sync on pulse rise - Sync verzenden bij pulsstijging - - - - Send sync on pulse fall - Sync verzenden bij pulsdaling - - - - Hard sync oscillator 2 - Oscillator 2 hard-syncen - - - - Reverse sync oscillator 2 - Oscillator 2 omgekeerd syncen - - - - Sub-osc mix - Sub-osc mix - - - - Hard sync oscillator 3 - Oscillator 3 hard-syncen - - - - Reverse sync oscillator 3 - Oscillator 3 omgekeerd syncen - - - - - - - Attack - Attack - - - - - Rate - Ratio - - - - - Phase - Fase - - - - - Pre-delay - Pre-delay - - - - - Hold - Hold - - - - - Decay - Decay - - - - - Sustain - Sustain - - - - - Release - Release - - - - - Slope - Slope - - - - Mix osc 2 with osc 3 - Osc 2 mengen met osc 3 - - - - Modulate amplitude of osc 3 by osc 2 - Amplitude van osc 3 moduleren met osc 2 - - - - Modulate frequency of osc 3 by osc 2 - Frequentie van osc 3 moduleren met osc 2 - - - - Modulate phase of osc 3 by osc 2 - Fase van osc 3 mengen met osc 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Modulation amount - Hoeveelheid modulatie - - - - MultitapEchoControlDialog - - - Length - Lengte - - - - Step length: - Stap-lengte: - - - - Dry - Droog - - - - Dry gain: - Droge gain: - - - - Stages - Stappen - - - - Low-pass stages: - Lowpass-stappen: - - - - Swap inputs - Invoeren wisselen - - - - Swap left and right input channels for reflections - Linker en rechter invoerkanaal wisselen voor reflecties - - - - NesInstrument - - - Channel 1 coarse detune - Kanaal 1 grof ontstemmen - - - - Channel 1 volume - Volume kanaal 1 - - - - Channel 1 envelope length - Kanaal 1 envelope-lengte - - - - Channel 1 duty cycle - Kanaal 1 inschakeltijd - - - - Channel 1 sweep amount - Kanaal 1 hoeveelheid sweep - - - - Channel 1 sweep rate - Kanaal 1 sweep-ratio - - - - Channel 2 Coarse detune - Kanaal 2 grof ontstemmen - - - - Channel 2 Volume - Volume kanaal 2 - - - - Channel 2 envelope length - Kanaal 2 envelope-lengte - - - - Channel 2 duty cycle - Kanaal 2 inschakeltijd - - - - Channel 2 sweep amount - Kanaal 2 hoeveelheid sweep - - - - Channel 2 sweep rate - Kanaal 2 sweep-ratio - - - - Channel 3 coarse detune - Kanaal 3 grof ontstemmen - - - - Channel 3 volume - Volume kanaal 3 - - - - Channel 4 volume - Volume kanaal 4 - - - - Channel 4 envelope length - Kanaal 4 envelope-lengte - - - - Channel 4 noise frequency - Kanaal 4 ruisfrequentie - - - - Channel 4 noise frequency sweep - Kanaal 4 ruisfrequentie-sweep - - - - Master volume - Master-volume - - - - Vibrato - Vibrato - - - - NesInstrumentView - - - - - - Volume - Volume - - - - - - Coarse detune - Grof ontstemmen - - - - - - Envelope length - Envelope-lengte - - - - Enable channel 1 - Kanaal 1 inschakelen - - - - Enable envelope 1 - Envelope 1 inschakelen - - - - Enable envelope 1 loop - Envelope 1 herhalen inschakelen - - - - Enable sweep 1 - Sweep 1 inschakelen - - - - - Sweep amount - Hoeveelheid sweep - - - - - Sweep rate - Sweep-ratio - - - - - 12.5% Duty cycle - 12.5 % inschakeltijd - - - - - 25% Duty cycle - 25 % inschakeltijd - - - - - 50% Duty cycle - 50 % inschakeltijd - - - - - 75% Duty cycle - 75 % inschakeltijd - - - - Enable channel 2 - Kanaal 2 inschakelen - - - - Enable envelope 2 - Envelope 2 inschakelen - - - - Enable envelope 2 loop - Envelope 2 herhalen inschakelen - - - - Enable sweep 2 - Sweep 2 inschakelen - - - - Enable channel 3 - Kanaal 3 inschakelen - - - - Noise Frequency - Ruisfrequentie - - - - Frequency sweep - Frequentie-sweep - - - - Enable channel 4 - Kanaal 4 inschakelen - - - - Enable envelope 4 - Envelope 4 inschakelen - - - - Enable envelope 4 loop - Envelope 4 herhalen inschakelen - - - - Quantize noise frequency when using note frequency - Ruisfrequentie kwantiseren wanneer nootfrequentie gebruikt wordt - - - - Use note frequency for noise - Nootfrequentie gebruiken voor ruis - - - - Noise mode - Ruismodus - - - - Master volume - Master-volume - - - - Vibrato - Vibrato - - - - OpulenzInstrument - - - Patch - Patch - - - - Op 1 attack - Op 1 attack - - - - Op 1 decay - Op 1 decay - - - - Op 1 sustain - Op 1 sustain - - - - Op 1 release - Op 1 release - - - - Op 1 level - Op 1 niveau - - - - Op 1 level scaling - Op 1 niveauschaling - - - - Op 1 frequency multiplier - Op 1 frequentievermenigvuldiger - - - - Op 1 feedback - Op 1 feedback - - - - Op 1 key scaling rate - Op 1 sleutel-schalingsratio - - - - Op 1 percussive envelope - Op 1 percussieve envelope - - - - Op 1 tremolo - Op 1 tremolo - - - - Op 1 vibrato - Op 1 vibrato - - - - Op 1 waveform - Op 1 golfvorm - - - - Op 2 attack - Op 2 attack - - - - Op 2 decay - Op 2 decay - - - - Op 2 sustain - Op 2 sustain - - - - Op 2 release - Op 2 release - - - - Op 2 level - Op 2 niveau - - - - Op 2 level scaling - Op 2 niveauschaling - - - - Op 2 frequency multiplier - Op 2 frequentievermenigvuldiger - - - - Op 2 key scaling rate - Op 2 sleutel-schalingsratio - - - - Op 2 percussive envelope - Op 2 percussieve envelope - - - - Op 2 tremolo - Op 2 tremolo - - - - Op 2 vibrato - Op 2 vibrato - - - - Op 2 waveform - Op 2 golfvorm - - - - FM - FM - - - - Vibrato depth - Vibrato-diepte - - - - Tremolo depth - Tremolo-diepte - - - - OpulenzInstrumentView - - - - Attack - Attack - - - - - Decay - Decay - - - - - Release - Release - - - - - Frequency multiplier - Frequentievermenigvuldiger - - - - OscillatorObject - - - Osc %1 waveform - Osc %1 golfvorm - - - - Osc %1 harmonic - Osc %1 harmonisch - - - - - Osc %1 volume - Osc %1 volume - - - - - Osc %1 panning - Balans osc %1 - - - - - Osc %1 fine detuning left - Osc %1 fijn ontstemmen links - - - - Osc %1 coarse detuning - Osc %1 grof ontstemmen - - - - Osc %1 fine detuning right - Osc %1 fijn ontstemmen rechts - - - - Osc %1 phase-offset - Osc %1 faseverschuiving - - - - Osc %1 stereo phase-detuning - Osc %1 stereo-fase-ontstemming - - - - Osc %1 wave shape - Osc %1 golfvorm - - - - Modulation type %1 - Modulatietype %1 - - - - Oscilloscope - - - Oscilloscope - Oscilloscoop - - - - Click to enable - Klikken om in te schakelen - - PatchesDialog + Qsynth: Channel Preset Qsynth: kanaal-preset + Bank selector Bank-selector + Bank Bank + Program selector Programma-selector + Patch Patch + Name Naam + OK Ok + Cancel Annuleren - - PatmanView - - - Open patch - Patch openen - - - - Loop - Herhalen - - - - Loop mode - Herhaalmodus - - - - Tune - Stemmen - - - - Tune mode - Stem-modus - - - - No file selected - Geen bestand geselecteerd - - - - Open patch file - Patchbestand openen - - - - Patch-Files (*.pat) - Patch-bestanden (*.pat) - - - - MidiClipView - - - Open in piano-roll - In piano-roll openen - - - - Set as ghost in piano-roll - Als ghost instellen in piano-roll - - - - Clear all notes - Alle noten leegmaken - - - - Reset name - Naam herstellen - - - - Change name - Naam wijzigen - - - - Add steps - Stappen toevoegen - - - - Remove steps - Stappen verwijderen - - - - Clone Steps - Stappen klonen - - - - PeakController - - - Peak Controller - Piek-controller - - - - Peak Controller Bug - Piek-controller bug - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - Door een bug in oudere versies van LMMS is het mogelijk dat piek-controllers niet goed verbonden zijn. Verzeker u ervan dat piek-controllers goed verbonden zijn en sla dit bestand opnieuw op. Sorry voor enig ongemak. - - - - PeakControllerDialog - - - PEAK - PIEK - - - - LFO Controller - LFO-controller - - - - PeakControllerEffectControlDialog - - - BASE - BASIS - - - - Base: - Basis: - - - - AMNT - HVHD - - - - Modulation amount: - Hoeveelheid basis: - - - - MULT - VERM - - - - Amount multiplicator: - Hoeveelheid-vermenigvuldiger: - - - - ATCK - ATCK - - - - Attack: - Attack: - - - - DCAY - DCAY - - - - Release: - Release: - - - - TRSH - TRSH - - - - Treshold: - Treshold: - - - - Mute output - Uitvoer dempen - - - - Absolute value - Absolute waarde - - - - PeakControllerEffectControls - - - Base value - Basiswaarde - - - - Modulation amount - Hoeveelheid modulatie - - - - Attack - Attack - - - - Release - Release - - - - Treshold - Treshold - - - - Mute output - Uitvoer dempen - - - - Absolute value - Absolute waarde - - - - Amount multiplicator - Hoeveelheid-vermenigvuldiger - - - - PianoRoll - - - Note Velocity - Nootsnelheid - - - - Note Panning - Noot-balans - - - - Mark/unmark current semitone - Huidige semitoon markeren/niet markeren - - - - Mark/unmark all corresponding octave semitones - Alle corresponderende octaaf-semitonen markeren/niet markeren - - - - Mark current scale - Huidige toonladder markeren - - - - Mark current chord - Huidig akkoord markeren - - - - Unmark all - Niets markeren - - - - Select all notes on this key - Alle noten op deze sleutel selecteren - - - - Note lock - Nootvergrendeling - - - - Last note - Laatste noot - - - - No key - - - - - No scale - Geen toonladder - - - - No chord - Geen akkoord - - - - Nudge - - - - - Snap - - - - - Velocity: %1% - Snelheid: %1% - - - - Panning: %1% left - Balans: %1 % links - - - - Panning: %1% right - Balans: %1 % rechts - - - - Panning: center - Balans: midden - - - - Glue notes failed - - - - - Please select notes to glue first. - - - - - Please open a clip by double-clicking on it! - Open een patroon door erop te dubbelklikken! - - - - - Please enter a new value between %1 and %2: - Voer een nieuwe waarde in tussen %1 en %2: - - - - PianoRollWindow - - - Play/pause current clip (Space) - Huidig patroon afspelen/pauzeren (Spatie) - - - - Record notes from MIDI-device/channel-piano - Noten van MIDI-apparaat/kanaal-piano opnemen - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - Noten van MIDI-apparaat/kanaal-piano opnemen tijdens het afspelen van song of BB-spoor - - - - Record notes from MIDI-device/channel-piano, one step at the time - Noten van MIDI-apparaat/kanaal-piano opnemen, een stap per keer - - - - Stop playing of current clip (Space) - Stoppen met afspelen van huidig patroon (Spatie) - - - - Edit actions - Acties bewerken - - - - Draw mode (Shift+D) - Tekenmodus (Shift+D) - - - - Erase mode (Shift+E) - Wissen-modus (Shift+E) - - - - Select mode (Shift+S) - Selecteermodus (Shift+S) - - - - Pitch Bend mode (Shift+T) - Toonhoogte-buigmodus (Shift+T) - - - - Quantize - Kwantiseren - - - - Quantize positions - - - - - Quantize lengths - - - - - File actions - - - - - Import clip - - - - - - Export clip - - - - - Copy paste controls - Bedieningen kopiëren en plakken - - - - Cut (%1+X) - Knippen (%1+X) - - - - Copy (%1+C) - Kopiëren (%1+C) - - - - Paste (%1+V) - Plakken (%1+V) - - - - Timeline controls - Tijdlijnbediening - - - - Glue - - - - - Knife - - - - - Fill - - - - - Cut overlaps - - - - - Min length as last - - - - - Max length as last - - - - - Zoom and note controls - Zoom- en nootbediening - - - - Horizontal zooming - Horizontaal zoomen - - - - Vertical zooming - Verticaal zoomen - - - - Quantization - Kwantisatie - - - - Note length - Noot-lengte - - - - Key - - - - - Scale - Toonladder - - - - Chord - Akkoord - - - - Snap mode - - - - - Clear ghost notes - Ghost-noten leegmaken - - - - - Piano-Roll - %1 - Piano-roll - %1 - - - - - Piano-Roll - no clip - Piano-roll - geen patroon - - - - - XML clip file (*.xpt *.xptz) - - - - - Export clip success - - - - - Clip saved to %1 - - - - - Import clip. - - - - - You are about to import a clip, this will overwrite your current clip. Do you want to continue? - - - - - Open clip - - - - - Import clip success - - - - - Imported clip %1! - - - - - PianoView - - - Base note - Grondtoon - - - - First note - - - - - Last note - Laatste noot - - - - Plugin - - - Plugin not found - Plugin niet gevonden - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - De plug-in "%1" werd niet teruggevonden of kon niet geladen worden! -Reden: "%2" - - - - Error while loading plugin - Fout bij laden van plug-in - - - - Failed to load plugin "%1"! - Laden van plug-in "%1" mislukt! - - PluginBrowser - - Instrument Plugins - Instrument-plugins - - - - Instrument browser - Instrument-browser - - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - Sleep een instrument naar de song-editor, de beat- en baslijn-editor of naar een bestaande instrument-track. - - - + no description geen beschrijving - + A native amplifier plugin Een ingebouwde versterker-plugin - + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track Simpele sampler met verschillende instellingen voor het gebruik van samples (bijvoorbeeld drums) in een instrument-track - + Boost your bass the fast and simple way Versterk uw bas snel en eenvoudig - + Customizable wavetable synthesizer Aanpasbare wavetable-synthesizer - + An oversampling bitcrusher Een oversampling-bitcrusher - + Carla Patchbay Instrument Carla Patchbay instrument - + Carla Rack Instrument Carla Rack instrument - + A dynamic range compressor. - + A 4-band Crossover Equalizer Een 4-band crossover-equalizer - + A native delay plugin Een ingebouwde delay-plugin - + A Dual filter plugin Een dual-filter-plugin - + plugin for processing dynamics in a flexible way plugin voor het verwerken van dynamieken op een flexibele manier - + A native eq plugin Een ingebouwde eq-plugin - + A native flanger plugin Een ingebouwde flanger-plugin - + Emulation of GameBoy (TM) APU Emulatie van GameBoy (TM) APU - + Player for GIG files Speler voor GIG-bestanden - + Filter for importing Hydrogen files into LMMS Filter voor importeren van Hydrogen-bestanden in LMMS - + Versatile drum synthesizer Veelzijdige drum-synthesizer - + List installed LADSPA plugins Geïnstalleerde LADSPA-plugins oplijsten - + plugin for using arbitrary LADSPA-effects inside LMMS. plugin voor het gebruik van arbitraire LADSPA-effecten binnen LMMS. - + Incomplete monophonic imitation TB-303 - Onvoltooide monofonische limitering TB-303 + - + plugin for using arbitrary LV2-effects inside LMMS. - + plugin for using arbitrary LV2 instruments inside LMMS. - + Filter for exporting MIDI-files from LMMS Filter voor exporteren van MIDI-bestanden van LMMS - + Filter for importing MIDI-files into LMMS Filter, om MIDI-bestanden in LMMS te importeren - + Monstrous 3-oscillator synth with modulation matrix Monsterlijke 3-oscillator synth met modulatiematrix - + A multitap echo delay plugin Een multitap-echo-delay-plugin - + A NES-like synthesizer Een NES-achtige synthesizer - + 2-operator FM Synth 2-operator FM-synth - + Additive Synthesizer for organ-like sounds Additive Synthesizer voor orgelachtige geluiden - + GUS-compatible patch instrument GUS-compatibel patch-instrument - + Plugin for controlling knobs with sound peaks Plugin voor het bedienen van knoppen met geluidspieken - + Reverb algorithm by Sean Costello Reverb-algoritme door Sean Costello - + Player for SoundFont files Speler voor SoundFont-bestanden - + LMMS port of sfxr LMMS port van sfxr - + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Emulatie van de MOS6581 en MOS8580 SID. Deze chip werd gebruikt in de Commodore 64 computer. - + A graphical spectrum analyzer. Een grafische spectrum-analyzer. - + Plugin for enhancing stereo separation of a stereo input file Plugin voor het verbeteren van stereo-scheiding van een stereo-invoerbestand. - + Plugin for freely manipulating stereo output Plugin voor het vrij manipuleren voor stereo-uitoer - + Tuneful things to bang on Welluidende zaken om te knallen - + Three powerful oscillators you can modulate in several ways Drie krachtige oscillators die u op verschillende manieren kunt moduleren - + A stereo field visualizer. - + VST-host for using VST(i)-plugins within LMMS VST-Host voor gebruik van VST(i)-plugins binnen LMMS - + Vibrating string modeler Modeler voor trillende snaren - + plugin for using arbitrary VST effects inside LMMS. plugin voor het gebruik van arbitraire VST-effecten binnen LMMS. - + 4-oscillator modulatable wavetable synth 4-oscillator moduleerbare wavetable-synth - + plugin for waveshaping plugin voor golfvorming - + Mathematical expression parser Wiskundige uitdrukking-verwerker - + Embedded ZynAddSubFX Ingebedde ZynAddSubFX - - - PluginDatabaseW - - Carla - Add New + + An all-pass filter allowing for extremely high orders. - - Format + + Granular pitch shifter - - Internal + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. - - LADSPA + + Basic Slicer - - DSSI - - - - - LV2 - - - - - VST2 - - - - - VST3 - - - - - AU - - - - - Sound Kits - - - - - Type - Type - - - - Effects - Effecten - - - - Instruments - Instrumenten - - - - MIDI Plugins - - - - - Other/Misc - - - - - Architecture - - - - - Native - - - - - Bridged - - - - - Bridged (Wine) - - - - - Requirements - - - - - With Custom GUI - - - - - With CV Ports - - - - - Real-time safe only - - - - - Stereo only - - - - - With Inline Display - - - - - Favorites only - - - - - (Number of Plugins go here) - - - - - &Add Plugin - - - - - Cancel - Annuleren - - - - Refresh - - - - - Reset filters - - - - - - - - - - - - - - - - - - - - TextLabel - - - - - Format: - - - - - Architecture: - - - - - Type: - Soort: - - - - MIDI Ins: - - - - - Audio Ins: - - - - - CV Outs: - - - - - MIDI Outs: - - - - - Parameter Ins: - - - - - Parameter Outs: - - - - - Audio Outs: - - - - - CV Ins: - - - - - UniqueID: - - - - - Has Inline Display: - - - - - Has Custom GUI: - - - - - Is Synth: - - - - - Is Bridged: - - - - - Information - - - - - Name - Naam - - - - Label/URI - - - - - Maker - - - - - Binary/Filename - - - - - Focus Text Search - - - - - Ctrl+F + + Tap to the beat @@ -10822,93 +3459,98 @@ Deze chip werd gebruikt in de Commodore 64 computer. - Send Bank/Program Changes + Send Notes - Send Control Changes + Send Bank/Program Changes - Send Channel Pressure + Send Control Changes - Send Note Aftertouch + Send Channel Pressure - Send Pitchbend + Send Note Aftertouch + Send Pitchbend + + + + Send All Sound/Notes Off - + Plugin Name - + Program: - + MIDI Program: - + Save State - + Load State - + Information - + Label/URI: - + Name: - + Type: Soort: - + Maker: - + Copyright: - + Unique ID: @@ -10916,16 +3558,457 @@ Plugin Name PluginFactory - + Plugin not found. Plug-in niet gevonden. - + LMMS plugin %1 does not have a plugin descriptor named %2! LMMS-plugin %1 heeft geen plugin-descriptor die %2 heet! + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + PluginParameter @@ -10940,157 +4023,61 @@ Plugin Name + TextLabel + + + + ... - PluginRefreshW + PluginRefreshDialog - - Carla - Refresh + + Plugin Refresh - - Search for new... + + Search for: - - LADSPA + + All plugins, ignoring cache - - DSSI + + Updated plugins only - - LV2 + + Check previously invalid plugins - - VST2 - - - - - VST3 - - - - - AU - - - - - SF2/3 - - - - - SFZ - - - - - Native - - - - - POSIX 32bit - - - - - POSIX 64bit - - - - - Windows 32bit - - - - - Windows 64bit - - - - - Available tools: - - - - - python3-rdflib (LADSPA-RDF support) - - - - - carla-discovery-win64 - - - - - carla-discovery-native - - - - - carla-discovery-posix32 - - - - - carla-discovery-posix64 - - - - - carla-discovery-win32 - - - - - Options: - - - - - Carla will run small processing checks when scanning the plugins (to make sure they won't crash). -You can disable these checks to get a faster scanning time (at your own risk). - - - - - Run processing checks while scanning - - - - + Press 'Scan' to begin the search - + Scan - + >> Skip - + Close - Sluiten + @@ -11105,50 +4092,50 @@ You can disable these checks to get a faster scanning time (at your own risk). - + Enable - + On/Off Aan/uit - + - + PluginName - + MIDI MIDI - + AUDIO IN - + AUDIO OUT - + GUI - + Edit - + Remove @@ -11163,2549 +4150,13816 @@ You can disable these checks to get a faster scanning time (at your own risk). - - ProjectNotes - - - Project Notes - Projectnotities - - - - Enter project notes here - Geef hier uw projectnotities in - - - - Edit Actions - Bewerking-acties - - - - &Undo - &Ongedaan maken - - - - %1+Z - %1+Z - - - - &Redo - &Opnieuw - - - - %1+Y - %1+Y - - - - &Copy - &Kopiëren - - - - %1+C - %1+C - - - - Cu&t - &Knippen - - - - %1+X - %1+X - - - - &Paste - &Plakken - - - - %1+V - %1+V - - - - Format Actions - Formaat-acties - - - - &Bold - &Vet - - - - %1+B - %1+B - - - - &Italic - &Cursief - - - - %1+I - %1+I - - - - &Underline - &Onderstrepen - - - - %1+U - %1+U - - - - &Left - &Links uitlijnen - - - - %1+L - %1+L - - - - C&enter - C&entreren - - - - %1+E - %1+E - - - - &Right - &Rechts uitlijnen - - - - %1+R - %1+R - - - - &Justify - &Uitvullen - - - - %1+J - %1+J - - - - &Color... - &Kleur... - - ProjectRenderer - + WAV (*.wav) WAV (*.wav) - + FLAC (*.flac) FLAC (*.flac) - + OGG (*.ogg) OGG (*.ogg) - + MP3 (*.mp3) MP3 (*.mp3) + + QGroupBox + + + + Settings for %1 + + + QObject - + Reload Plugin - + Show GUI GUI weergeven - + Help Help + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + QWidget - - - - + + Name: Naam: - - URI: - - - - - - + Maker: Maker: - - - + Copyright: Auteursrecht: - - + Requires Real Time: Vereist realtime: - - - - - - + + + Yes Ja - - - - - - + + + No Nee - - + Real Time Capable: Realtime-capabel: - - + In Place Broken: Defect op zijn plaats: - - + Channels In: Invoerkanalen: - - + Channels Out: Uitvoerkanalen: - + File: %1 Bestand: %1 - + File: Bestand: - RecentProjectsMenu + XYControllerW - - &Recently Opened Projects - &Recent geopende projecten + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + - RenameDialog + lmms::AmplifierControls - - Rename... - Naam wijzigen... + + Volume + + + + + Panning + + + + + Left gain + + + + + Right gain + - ReverbSCControlDialog + lmms::AudioFileProcessor - - Input - Invoer + + Amplify + - - Input gain: - Invoer-gain: + + Start of sample + - - Size - Grootte + + End of sample + - - Size: - Grootte: + + Loopback point + - - Color - Kleur + + Reverse sample + - - Color: - Kleur: + + Loop mode + - - Output - Uitvoer + + Stutter + - - Output gain: - Uitvoer-gain: + + Interpolation mode + + + + + None + + + + + Linear + + + + + Sinc + + + + + Sample not found + - ReverbSCControls + lmms::AudioJack - + + JACK client restarted + + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + + + + + Client name + + + + + Channels + + + + + lmms::AudioOss + + + Device + + + + + Channels + + + + + lmms::AudioPortAudio::setupWidget + + + Backend + + + + + Device + + + + + lmms::AudioPulseAudio + + + Device + + + + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + + + + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + + Gain + + + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + Input gain - Invoer-gain + - - Size - Grootte + + Input noise + - - Color - Kleur + + Output gain + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + + + + + Output gain + + + + + Attack time + + + + + Release time + + + + + Stereo mode + + + + + lmms::Effect + + + Effect enabled + + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + + + + + Denominator + + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + Input gain + + + + + Size + + + + + Color + + + + Output gain - Uitvoer-gain + - SaControls - - - Pause - Pauzeren - - - - Reference freeze - Referentie bevriezen - + lmms::SaControls - Waterfall - Waterval + Pause + - Averaging - Averaging - - - - Stereo - Stereo + Reference freeze + - Peak hold - Piek vasthouden + Waterfall + + + + + Averaging + - Logarithmic frequency - Logaritmische frequentie + Stereo + - Logarithmic amplitude - Logaritmische amplitude + Peak hold + + + + + Logarithmic frequency + - Frequency range - Frequentiebereik - - - - Amplitude range - Amplitudebereik - - - - FFT block size - FFT-blokgrootte + Logarithmic amplitude + - FFT window type - FFT-venstertype + Frequency range + + + + + Amplitude range + + + + + FFT block size + - Peak envelope resolution - Piek envelope-resolutie - - - - Spectrum display resolution - Spectrumweergave-resolutie - - - - Peak decay multiplier - Piek decay vermenigvuldiger + FFT window type + - Averaging weight - Averaging-gewicht + Peak envelope resolution + - Waterfall history size - Waterval-geschiedenisgrootte + Spectrum display resolution + - Waterfall gamma correction - Waterval-gammacorrectie + Peak decay multiplier + - FFT window overlap - FFT-venster-overlap + Averaging weight + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + FFT zero padding - FFT-voorloopnullen - - - - - Full (auto) - Volledig (auto) - - - - - - Audible - Hoorbaar - - - - Bass - Bass + - Mids - Middentonen + + Full (auto) + - High - Hoge tonen + + + Audible + + + + + Bass + + + + + Mids + - Extended - Uitgebreid - - - - Loud - Luid + High + + Extended + + + + + Loud + + + + Silent - Stil + - + (High time res.) - (hoge tijdresolutie) + - + (High freq. res.) - (hoge freq.-resolutie) - - - - Rectangular (Off) - Rechthoekig (uit) - - - - - Blackman-Harris (Default) - Blackman-Harris (standaard) - - - - Hamming - Hamming + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + Hanning - Hanning - - - - SaControlsDialog - - - Pause - Pauzeren - - - - Pause data acquisition - Verzamelen van gegevens pauzeren - - - - Reference freeze - Referentie bevriezen - - - - Freeze current input as a reference / disable falloff in peak-hold mode. - Huidige invoer als referentie bevriezen / uitval in piek-houd-modus uitschakelen - - - - Waterfall - Waterval - - - - Display real-time spectrogram - Realtime-spectrogram weergeven - - - - Averaging - Averaging - - - - Enable exponential moving average - Exponentieel voortschrijdend gemiddelde inschakelen - - - - Stereo - Stereo - - - - Display stereo channels separately - Stereokanalen apart weergeven - - - - Peak hold - Piek vasthouden - - - - Display envelope of peak values - Envelope van piekwaarden weergeven - - - - Logarithmic frequency - Logaritmische frequentie - - - - Switch between logarithmic and linear frequency scale - Wisselen tussen logaritmische en lineaire frequentieschaal - - - - - Frequency range - Frequentiebereik - - - - Logarithmic amplitude - Logaritmische amplitude - - - - Switch between logarithmic and linear amplitude scale - Wisselen tussen logaritmische en lineaire amplitudeschaal - - - - - Amplitude range - Amplitudebereik - - - - Envelope res. - Envelope-resolutie - - - - Increase envelope resolution for better details, decrease for better GUI performance. - Envelope-resolutie vergroten voor betere details, verkleinen voor betere GUI-prestaties. - - - - - Draw at most - Maximaal - - - - envelope points per pixel - envelope-punten per pixel tekenen - - - - Spectrum res. - Spectrumresolutie - - - - Increase spectrum resolution for better details, decrease for better GUI performance. - Spectrumresolutie vergroten voor betere details, verkleinen voor betere GUI-prestaties. - - - - spectrum points per pixel - spectrum-punten per pixel tekenen - - - - Falloff factor - Afval-factor - - - - Decrease to make peaks fall faster. - Vergroten om pieken sneller te laten vallen - - - - Multiply buffered value by - Gebufferde waarde vermenigvuldigen met - - - - Averaging weight - Averaging-gewicht - - - - Decrease to make averaging slower and smoother. - Verkleinen om averaging trager en zachter te maken - - - - New sample contributes - Nieuw sample draagt bij - - - - Waterfall height - Hoogte waterval - - - - Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. - Vergroten om trager scrollen te krijgen, verkleinen om snelle overgangen beter te zien. Waarschuwing: gemiddeld CPU-gebruik. - - - - Keep - - - - - lines - lijnen houden - - - - Waterfall gamma - Waterval-gamma - - - - Decrease to see very weak signals, increase to get better contrast. - Verkleinen om zeer zwakke signalen te zien, vergroten om beter contrast te krijgen. - - - - Gamma value: - Gammawaarde: - - - - Window overlap - Venster-overlap - - - - Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. - Vergroten om ontbrekende snelle overgangen in de buurt van FFT-vensterranden te voorkomen. Waarschuwing: hoog CPU-gebruik. - - - - Each sample processed - Elke sample wordt - - - - times - keer verwerkt - - - - Zero padding - Voorloopnullen - - - - Increase to get smoother-looking spectrum. Warning: high CPU usage. - Vergroten om een vloeiender uitziend spectrum te verkrijgen. Waarschuwing: hoog CPU-gebruik. - - - - Processing buffer is - Verwerkingsbuffer is - - - - steps larger than input block - stappen groter dan invoerblok - - - - Advanced settings - Geavanceerde instellingen - - - - Access advanced settings - Geavanceerde instellingen openen - - - - - FFT block size - FFT-blokgrootte - - - - - FFT window type - FFT-venstertype - - - - SampleBuffer - - - Fail to open file - Bestand openen mislukt - - - - Audio files are limited to %1 MB in size and %2 minutes of playing time - Audiobestanden zijn beperkt tot %1 MB in grootte en %2 minuten speeltijd - - - - Open audio file - Audiobestand openen - - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - Alle audiobestanden (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - - Wave-Files (*.wav) - Wave-bestanden (*.wav) - - - - OGG-Files (*.ogg) - OGG-bestanden (*.ogg) - - - - DrumSynth-Files (*.ds) - DrumSynth-bestanden (*.ds) - - - - FLAC-Files (*.flac) - FLAC-bestanden (*.flac) - - - - SPEEX-Files (*.spx) - SPEEX-bestanden (*.spx) - - - - VOC-Files (*.voc) - VOC-bestanden (*.voc) - - - - AIFF-Files (*.aif *.aiff) - AIFF-bestanden (*.aif *.aiff) - - - - AU-Files (*.au) - AU-bestanden (*.au) - - - - RAW-Files (*.raw) - RAW-bestanden (*.raw) - - - - SampleClipView - - - Double-click to open sample - Dubbelklikken om sample te openen - - - - Delete (middle mousebutton) - Verwijderen (middelste muisknop) - - - - Delete selection (middle mousebutton) - - - - - Cut - Knippen - - - - Cut selection - - - - - Copy - Kopiëren - - - - Copy selection - - - - - Paste - Plakken - - - - Mute/unmute (<%1> + middle click) - Dempen/geluid aan (<%1> + middelklik) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Reverse sample - Sample omdraaien - - - - Set clip color - - - - - Use track color - SampleTrack + lmms::SampleClip - + + Sample not found + + + + + lmms::SampleTrack + + Volume - Volume + - + Panning - Balans + - + Mixer channel - FX-kanaal + - - + + Sample track - Sample-track - - - - SampleTrackView - - - Track volume - Track-volume - - - - Channel volume: - Volume kanaal: - - - - VOL - VOL - - - - Panning - Balans - - - - Panning: - Balans: - - - - PAN - BAL - - - - Channel %1: %2 - FX %1: %2 - - - - SampleTrackWindow - - - GENERAL SETTINGS - ALGEMENE INSTELLINGEN - - - - Sample volume - Sample-volume - - - - Volume: - Volume: - - - - VOL - VOL - - - - Panning - Balans - - - - Panning: - Balans: - - - - PAN - BAL - - - - Mixer channel - FX-kanaal - - - - CHANNEL - FX - - - - SaveOptionsWidget - - - Discard MIDI connections - MIDI-verbindingen weggooien - - - - Save As Project Bundle (with resources) - SetupDialog + lmms::Scale - - Reset to default value - Standaardwaarde herstellen - - - - Use built-in NaN handler - Ingebouwde HaN-handler gebruiken - - - - Settings - Instellingen - - - - - General - Algemeen - - - - Graphical user interface (GUI) - Grafische gebruikersinterface (GUI) - - - - Display volume as dBFS - Volume weergeven als dBFS - - - - Enable tooltips - Tooltips inschakelen - - - - Enable master oscilloscope by default + + empty - - - Enable all note labels in piano roll - - - - - Enable compact track buttons - - - - - Enable one instrument-track-window mode - - - - - Show sidebar on the right-hand side - - - - - Let sample previews continue when mouse is released - - - - - Mute automation tracks during solo - - - - - Show warning when deleting tracks - - - - - Projects - Projecten - - - - Compress project files by default - - - - - Create a backup file when saving a project - - - - - Reopen last project on startup - - - - - Language - Taal - - - - - Performance - Prestaties - - - - Autosave - Automatisch opslaan - - - - Enable autosave - Automatisch opslaan inschakelen - - - - Allow autosave while playing - Automatisch opslaan toestaan tijdens afspelen - - - - User interface (UI) effects vs. performance - Gebruikersinterface-effecten vs. prestaties - - - - Smooth scroll in song editor - - - - - Display playback cursor in AudioFileProcessor - - - - - Plugins - Plugins - - - - VST plugins embedding: - Inbedden van VST-plugins: - - - - No embedding - Geen embedding - - - - Embed using Qt API - Embedden met Qt-API - - - - Embed using native Win32 API - Embedden met ingebouwde Win32-API - - - - Embed using XEmbed protocol - Embedden met XEmbed-protocol - - - - Keep plugin windows on top when not embedded - Plugin-vensters bovenaan houden wanneer niet ingebed - - - - Sync VST plugins to host playback - Synchroniseer VST plugins met host-playback - - - - Keep effects running even without input - Effecten actief houden, zelfs zonder invoer - - - - - Audio - Audio - - - - Audio interface - Audio-interface - - - - HQ mode for output audio device - HQ-modus voor audio-apparaat-uitvoer - - - - Buffer size - Buffergrootte - - - - - MIDI - MIDI - - - - MIDI interface - MIDI-interface - - - - Automatically assign MIDI controller to selected track - - - - - LMMS working directory - LMMS-werkmap - - - - VST plugins directory - - - - - LADSPA plugins directories - - - - - SF2 directory - SF2-map - - - - Default SF2 - - - - - GIG directory - GIG-map - - - - Theme directory - - - - - Background artwork - Achtergrondafbeelding - - - - Some changes require restarting. - Sommige wijzigingen vereisen een nieuwe start. - - - - Autosave interval: %1 - Interval automatisch opslaan: %1 - - - - Choose the LMMS working directory - Kies de LMMS-werkmap - - - - Choose your VST plugins directory - Kies uw VST-plugin-map - - - - Choose your LADSPA plugins directory - Kies uw LADSPA-pluginmap - - - - Choose your default SF2 - Kies uw standaard SF2 - - - - Choose your theme directory - Kies uw thema-map - - - - Choose your background picture - Kies uw achtergrondafbeelding - - - - - Paths - Paden - - - - OK - Ok - - - - Cancel - Annuleren - - - - Frames: %1 -Latency: %2 ms - Frames: %1 -Latentie: %2 ms - - - - Choose your GIG directory - Kies uw GIG-map - - - - Choose your SF2 directory - Kies uw SF2-map - - - - minutes - minuten - - - - minute - minuut - - - - Disabled - Uitgeschakeld - - SidInstrument + lmms::Sf2Instrument - + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + Cutoff frequency - Cutoff-frequentie + - + Resonance - Resonantie + + + + + Filter type + - Filter type - Filtersoort - - - Voice 3 off - Stem 3 off + - + Volume - Volume + - + Chip model - Chip-model + - SidInstrumentView + lmms::SlicerT - - Volume: - Volume: + + Note threshold + - - Resonance: - Resonantie: + + FadeOut + - - - Cutoff frequency: - Cutoff-frequentie: + + Original bpm + - - High-pass filter - Highpass-filter + + Slice snap + - - Band-pass filter - Bandpass-filter + + BPM sync + - - Low-pass filter - Lowpass-filter + + + slice_%1 + - - Voice 3 off - Stem 3 uit - - - - MOS6581 SID - MOS6581 SID - - - - MOS8580 SID - MOS8580 SID - - - - - Attack: - Attack: - - - - - Decay: - Decay: - - - - Sustain: - Sustain: - - - - - Release: - Release: - - - - Pulse Width: - Pulsbreedte: - - - - Coarse: - Grof: - - - - Pulse wave - Pulsgolf - - - - Triangle wave - Driehoeksgolf - - - - Saw wave - Zaagtandgolf - - - - Noise - Ruis - - - - Sync - Sync - - - - Ring modulation - Ring-modulatie - - - - Filtered - Gefilterd - - - - Test - Test - - - - Pulse width: - Pulsbreedte + + Sample not found: %1 + - SideBarWidget + lmms::Song - - Close - Sluiten - - - - Song - - + Tempo - Tempo + - + Master volume - Master-volume + - + Master pitch - Master-toonhoogte - - - - Aborting project load + Aborting project load + + + + Project file contains local paths to plugins, which could be used to run malicious code. - + Can't load project: Project file contains local paths to plugins. - + LMMS Error report - LMMS-foutrapport + - + (repeated %1 times) - + The following errors occurred while loading: - SongEditor + lmms::StereoEnhancerControls - - Could not open file - Kan bestand niet openen - - - - Could not open file %1. You probably have no permissions to read this file. - Please make sure to have at least read permissions to the file and try again. - Kon bestand %1 niet openen. U heeft waarschijnlijk geen toestemming om dit bestand te lezen. -Verzeker u ervan dat u ten minste leesrechten heeft voor het bestand en probeer het opnieuw. - - - - Operation denied + + Width - - - A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. - - - - - - - Error - Fout - - - - Couldn't create bundle folder. - - - - - Couldn't create resources folder. - - - - - Failed to copy resources. - - - - - Could not write file - Kan bestand niet schrijven - - - - Could not open %1 for writing. You probably are not permitted towrite to this file. Please make sure you have write-access to the file and try again. - - - - - This %1 was created with LMMS %2 - - - - - Error in file - Fout in bestand - - - - The file %1 seems to contain errors and therefore can't be loaded. - Bestand %1 lijkt fouten te bevatten en kan daardoor niet geladen worden. - - - - Version difference - Versie-verschil - - - - template - sjabloon - - - - project - project - - - - Tempo - Tempo - - - - TEMPO - TEMPO - - - - Tempo in BPM - Tempo in BPM - - - - High quality mode - Hogekwaliteitsmodus - - - - - - Master volume - Master-volume - - - - - - Master pitch - Master-toonhoogte - - - - Value: %1% - Waarde: %1 % - - - - Value: %1 semitones - Waarde: %1 semitonen - - SongEditorWindow + lmms::StereoMatrixControls - - Song-Editor - Song-editor - - - - Play song (Space) - Song afspelen (spatie) - - - - Record samples from Audio-device - Samples van audio-apparaat opnemen - - - - Record samples from Audio-device while playing song or BB track - Samples van audio-apparaat opnemen tijdens het afspelen van song of bb-track - - - - Stop song (Space) - Song stoppen (spatie) - - - - Track actions - Track-acties - - - - Add beat/bassline - Beat-/baslijn toevoegen - - - - Add sample-track - Sample-track toevoegen - - - - Add automation-track - Automatisering-track toevoegen - - - - Edit actions - Bewerking-acties - - - - Draw mode - Tekenmodus - - - - Knife mode (split sample clips) + + Left to Left - - Edit mode (select and move) - Bewerken-modus (selecteren en verplaatsen) - - - - Timeline controls - Tijdlijnbediening - - - - Bar insert controls + + Left to Right - - Insert bar + + Right to Left - - Remove bar + + Right to Right - - - Zoom controls - Zoombediening - - - - Horizontal zooming - Horizontaal zoomen - - - - Snap controls - Vastklik-bedieningen - - - - - Clip snapping size - Vastklikgrootte van clip - - - - Toggle proportional snap on/off - Proportioneel vastklikken aan/uit - - - - Base snapping size - Basis-vastklikgrootte - - StepRecorderWidget + lmms::Track - - Hint - Tip - - - - Move recording curser using <Left/Right> arrows - Opname-cursor verplaatsen met pijl links/rechts - - - - SubWindow - - - Close - Sluiten - - - - Maximize - Maximaliseren - - - - Restore - Herstellen - - - - TabWidget - - - - Settings for %1 - Instellingen voor %1 - - - - TemplatesMenu - - - New from template - Nieuw van sjabloon - - - - TempoSyncKnob - - - - Tempo Sync - Tempo-sync - - - - No Sync - Geen sync - - - - Eight beats - Acht beats - - - - Whole note - Hele noot - - - - Half note - Halve noot - - - - Quarter note - Kwart noot - - - - 8th note - 8ste noot - - - - 16th note - 16de noot - - - - 32nd note - 32ste noot - - - - Custom... - Aangepast... - - - - Custom - Aangepast - - - - Synced to Eight Beats - Gesynchroniseerd met acht beats - - - - Synced to Whole Note - Gesynchroniseerd met hele noot - - - - Synced to Half Note - Gesynchroniseerd met halve noot - - - - Synced to Quarter Note - Gesynchroniseerd met kwart noot - - - - Synced to 8th Note - Gesynchroniseerd met 8ste noot - - - - Synced to 16th Note - Gesynchroniseerd met 16de noot - - - - Synced to 32nd Note - Gesynchroniseerd met 32ste noot - - - - TimeDisplayWidget - - - Time units - Tijd-eenheden - - - - MIN - MIN - - - - SEC - S - - - - MSEC - MS - - - - BAR - BAR - - - - BEAT - BEAT - - - - TICK - TICK - - - - TimeLineWidget - - - Auto scrolling - Automatisch scrollen - - - - Loop points - Herhaalpunten - - - - After stopping go back to beginning - - - - - After stopping go back to position at which playing was started - Na het stoppen terug naar positie gaan waarop afspelen gestart werd - - - - After stopping keep position - Na stoppen positie behouden - - - - Hint - Tip - - - - Press <%1> to disable magnetic loop points. - Druk op <1%> om magnetische herhaalpunten uit te schakelen. - - - - Track - - + Mute - Dempen + - + Solo - Solo + - TrackContainer + lmms::TrackContainer - + Couldn't import file - Kon bestand niet importeren + - + Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software. - Kon geen filter vinden om bestand %1 te importeren. -U converteert dit bestand best naar een formaat dat ondersteund wordt door LMMS met behulp van andere software. + - + Couldn't open file - Kon bestand niet openen + - + Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! - Kon bestand %1 niet openen om te lezen. -Verzeker u ervan dat u leesrechten heeft voor het bestand en zijn bevattende map en probeer het opnieuw! + - + Loading project... - Project laden... + - - + + Cancel - Annuleren + - - + + Please wait... - Even geduld... + - + Loading cancelled - Laden gannuleerd + - + Project loading was cancelled. - Laden van project werd geannuleerd. + - + Loading Track %1 (%2/Total %3) - Track %1 laden (%2/totaal %3) + - + Importing MIDI-file... - MIDI-bestand importeren... - - - - Clip - - - Mute - Dempen - - - - ClipView - - - Current position - Huidige positie - - - - Current length - Huidige lengte - - - - - %1:%2 (%3:%4 to %5:%6) - %1:%2 (%3:%4 tot %5:%6) - - - - Press <%1> and drag to make a copy. - Op <%1> drukken en slepen om een kopie te maken. - - - - Press <%1> for free resizing. - Op <%1> drukken voor vrije grootte-aanpassing. - - - - Hint - Tip - - - - Delete (middle mousebutton) - Verwijderen (middelste muisknop) - - - - Delete selection (middle mousebutton) - - - - - Cut - Knippen - - - - Cut selection - - - - - Merge Selection - - - - - Copy - Kopiëren - - - - Copy selection - - - - - Paste - Plakken - - - - Mute/unmute (<%1> + middle click) - Dempen/geluid aan (<%1> + middelklik) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Set clip color - - - - - Use track color - TrackContentWidget + lmms::TripleOscillator - - Paste - Plakken - - - - TrackOperationsWidget - - - Press <%1> while clicking on move-grip to begin a new drag'n'drop action. - Druk op <%1> tijdens het klikken op het verplaatsingsgedeelte om een nieuwe 'slepen-en-neerzetten'-handeling te starten. - - - - Actions - Acties - - - - - Mute - Dempen - - - - - Solo - Solo - - - - After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? - - - - - Confirm removal - - - - - Don't ask again - - - - - Clone this track - Deze track klonen - - - - Remove this track - Deze track verwijderen - - - - Clear this track - Deze track leegmaken - - - - Channel %1: %2 - FX %1: %2 - - - - Assign to new mixer Channel - Aan nieuw FX-kanaal toewijzen - - - - Turn all recording on - Alle opnames aanzetten - - - - Turn all recording off - Alle opnames uitzetten - - - - Change color - Kleur veranderen - - - - Reset color to default - Kleur herstellen naar standaard - - - - Set random color - - - - - Clear clip colors + + Sample not found - TripleOscillatorView + lmms::VecControls - - Modulate phase of oscillator 1 by oscillator 2 - Fase van oscillator 1 moduleren met oscillator 2 - - - - Modulate amplitude of oscillator 1 by oscillator 2 - Amplitude van oscillator 1 moduleren met oscillator 2 - - - - Mix output of oscillators 1 & 2 - Uitvoer van oscillator 1 en 2 mixen - - - - Synchronize oscillator 1 with oscillator 2 - Oscillator 1 synchroniseren met oscillator 2 - - - - Modulate frequency of oscillator 1 by oscillator 2 - Frequentie van oscillator 1 moduleren met oscillator 2 - - - - Modulate phase of oscillator 2 by oscillator 3 - Fase van oscillator 2 moduleren met oscillator 3 - - - - Modulate amplitude of oscillator 2 by oscillator 3 - Amplitude van oscillator 2 moduleren met oscillator 3 - - - - Mix output of oscillators 2 & 3 - Uitvoer van oscillator 2 en 3 mixen - - - - Synchronize oscillator 2 with oscillator 3 - Oscillator 2 synchroniseren met oscillator 3 - - - - Modulate frequency of oscillator 2 by oscillator 3 - Frequentie van oscillator 2 moduleren met oscillator 3 - - - - Osc %1 volume: - Osc %1 volume: - - - - Osc %1 panning: - Balans osc %1: - - - - Osc %1 coarse detuning: - Osc %1 grof ontstemmen: - - - - semitones - semitonen - - - - Osc %1 fine detuning left: - Osc %1 fijn ontstemmen links: - - - - - cents - cent - - - - Osc %1 fine detuning right: - Osc %1 fijn ontstemmen rechts: - - - - Osc %1 phase-offset: - Osc %1 faseverschuiving: - - - - - degrees - graden - - - - Osc %1 stereo phase-detuning: - Osc %1 stereo-fase-ontstemming: - - - - Sine wave - Sinusgolf - - - - Triangle wave - Driehoeksgolf - - - - Saw wave - Zaagtandgolf - - - - Square wave - Blokgolf - - - - Moog-like saw wave - Moog-achtige zaagtandgolf - - - - Exponential wave - Exponentiële golf - - - - White noise - Witte ruis - - - - User-defined wave - Aangepaste golf - - - - VecControls - - + Display persistence amount - + Logarithmic scale - + High quality - VecControlsDialog + lmms::VestigeInstrument - + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + + + + + Draw mode + + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + + + + + + Zoom + + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + + + + + lmms::gui::StepRecorderWidget + + + Hint + + + + + Move recording curser using <Left/Right> arrows + + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + + Close + + + + + Maximize + + + + + Restore + + + + + lmms::gui::TapTempoView + + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + + + + + lmms::gui::TemplatesMenu + + + New from template + + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + + + + + MIN + + + + + SEC + + + + + MSEC + + + + + BAR + + + + + BEAT + + + + + TICK + + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + + + + + After stopping go back to beginning + + + + + After stopping go back to position at which playing was started + + + + + After stopping keep position + + + + + Hint + + + + + Press <%1> to disable magnetic loop points. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + + Paste + + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + + + + + Actions + + + + + + Mute + + + + + + Solo + + + + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + + + + + Confirm removal + + + + + Don't ask again + + + + + Clone this track + + + + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors + + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + + + + + Modulate amplitude of oscillator 1 by oscillator 2 + + + + + Mix output of oscillators 1 & 2 + + + + + Synchronize oscillator 1 with oscillator 2 + + + + + Modulate frequency of oscillator 1 by oscillator 2 + + + + + Modulate phase of oscillator 2 by oscillator 3 + + + + + Modulate amplitude of oscillator 2 by oscillator 3 + + + + + Mix output of oscillators 2 & 3 + + + + + Synchronize oscillator 2 with oscillator 3 + + + + + Modulate frequency of oscillator 2 by oscillator 3 + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + + cents + + + + + Osc %1 fine detuning right: + + + + + Osc %1 phase-offset: + + + + + + degrees + + + + + Osc %1 stereo phase-detuning: + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog-like saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined wave + + + + + Use alias-free wavetable oscillators. + + + + + lmms::gui::VecControlsDialog + + HQ - + Double the resolution and simulate continuous analog-like trace. @@ -13720,2618 +17974,782 @@ Verzeker u ervan dat u leesrechten heeft voor het bestand en zijn bevattende map - + Persist. - + Trace persistence: higher amount means the trace will stay bright for longer time. - + Trace persistence - VersionedSaveDialog - - - Increment version number - Versienummer verhogen - + lmms::gui::VersionedSaveDialog + Increment version number + + + + Decrement version number - Versienummer verlagen + - + Save Options - Opties voor opslaan + - + already exists. Do you want to replace it? - bestaat reeds. Wilt u het vervangen? + - VestigeInstrumentView + lmms::gui::VestigeInstrumentView - - + + Open VST plugin - VST-plugin openen + - + Control VST plugin from LMMS host - VST-plugin vanuit LMMS-host bedienen + - + Open VST plugin preset - VST-plugin-preset openen + - + Previous (-) - Vorige (-) + - + Save preset - Preset opslaan + - + Next (+) - Volgende (+) + - + Show/hide GUI - GUI weergeven/verbergen + - + Turn off all notes - Alle noten uitschakelen + - + DLL-files (*.dll) - DLL-bestanden (*.dll) + - + EXE-files (*.exe) - EXE-bestanden (*.exe) + + + + + SO-files (*.so) + + + + + No VST plugin loaded + - No VST plugin loaded - Geen VST-plugin geladen + Preset + - Preset - Preset - - - by - door + - + - VST plugin control - - VST-pluginbediening + - VstEffectControlDialog + lmms::gui::VibedView - + + Enable waveform + + + + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + Show/hide - Weergeven/verbergen + - + Control VST plugin from LMMS host - VST-plugin vanuit LMMS-host bedienen + - + Open VST plugin preset - VST-plugin-preset openen + - + Previous (-) - Vorige (-) + - + Next (+) - Volgende (+) + - + Save preset - Preset opslaan + - - + + Effect by: - Effect door: + - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + - VstPlugin + lmms::gui::WatsynView - - - The VST plugin %1 could not be loaded. - VST-plugin %1 kon niet geladen worden. + + + + + Volume + - - Open Preset - Preset openen - - - - - Vst Plugin Preset (*.fxp *.fxb) - Vst-plugin preset (*.fxp *.fxb) - - - - : default - : standaard - - - - Save Preset - Preset opslaan - - - - .fxp - .fxp - - - - .FXP - .FXP - - - - .FXB - .FXB - - - - .fxb - .fxb - - - - Loading plugin - Plugin laden - - - - Please wait while loading VST plugin... - Even geduld, VST-plugin wordt geladen... - - - - WatsynInstrument - - - Volume A1 - Volume A1 - - - - Volume A2 - Volume A2 - - - - Volume B1 - Volume B1 - - - - Volume B2 - Volume B2 - - - - Panning A1 - Balans A1 - - - - Panning A2 - Balans A2 - - - - Panning B1 - Balans B1 - - - - Panning B2 - Balans B2 - - - - Freq. multiplier A1 - Frequentieverm. A1 - - - - Freq. multiplier A2 - Frequentieverm. A2 - - - - Freq. multiplier B1 - Frequentieverm. B1 - - - - Freq. multiplier B2 - Frequentieverm. B2 - - - - Left detune A1 - Links ontstemmen A1 - - - - Left detune A2 - Links ontstemmen A2 - - - - Left detune B1 - Links ontstemmen B1 - - - - Left detune B2 - Links ontstemmen B2 - - - - Right detune A1 - Rechts ontstemmen A1 - - - - Right detune A2 - Rechts ontstemmen A2 - - - - Right detune B1 - Rechts ontstemmen B1 - - - - Right detune B2 - Rechts ontstemmen B2 - - - - A-B Mix - A-B mix - - - - A-B Mix envelope amount - A-B mix hoeveelheid envelope - - - - A-B Mix envelope attack - A-B mix envelope attack - - - - A-B Mix envelope hold - A-B mix envelope hold - - - - A-B Mix envelope decay - A-B mix envelope decay - - - - A1-B2 Crosstalk - A1-B2 overspraak - - - - A2-A1 modulation - A2-A1 modulatie - - - - B2-B1 modulation - B2-B1 modulatie - - - - Selected graph - Geselecteerde grafiek - - - - WatsynView - + + - - - Volume - Volume + Panning + + + - - - Panning - Balans + Freq. multiplier + + + - - - Freq. multiplier - Freq. vermenigvuldiger - - - - - - Left detune - Links ontstemmen + + + + + + + - - - - - - cents - cent + + + + + + + + Right detune + + + + + A-B Mix + - - - - Right detune - Rechts ontstemmen - - - - A-B Mix - A-B mix - - - Mix envelope amount - Mix hoeveelheid envelope + - + Mix envelope attack - Mix envelope attack + - + Mix envelope hold - Mix envelope hold + - + Mix envelope decay - Mix envelope decay + - + Crosstalk - Overspraak + - + Select oscillator A1 - Oscillator A1 selecteren + - + Select oscillator A2 - Oscillator A2 selecteren + - + Select oscillator B1 - Oscillator B1 selecteren + - + Select oscillator B2 - Oscillator B2 selecteren + - + Mix output of A2 to A1 - Uitvoer van A2 naar A1 mixen + - + Modulate amplitude of A1 by output of A2 - Amplitude van A1 moduleren met uitvoer van A2 + - + Ring modulate A1 and A2 - A1 en A2 ring-moduleren + - + Modulate phase of A1 by output of A2 - Fase van A1 moduleren met uitvoer van A2 + - + Mix output of B2 to B1 - Uitvoer van B2 naar B1 mixen + - + Modulate amplitude of B1 by output of B2 - Amplitude van B1 moduleren met uitvoer van B2 + - + Ring modulate B1 and B2 - B1 en B2 ring-moduleren + - + Modulate phase of B1 by output of B2 - Fase van B1 moduleren met uitvoer van B2 + - - - - + + + + Draw your own waveform here by dragging your mouse on this graph. - Teken uw eigen golfvorm hier door uw muis op deze grafiek te slepen. + - + Load waveform - Golfvorm laden + - + Load a waveform from a sample file - Een golfvorm van een sample-bestand laden + - + Phase left - Fase links + - + Shift phase by -15 degrees - Fase met -15 graden verschuiven + - + Phase right - Fase rechts + - + Shift phase by +15 degrees - Fase met +15 graden verschuiven + + + + + + Normalize + - Normalize - Normaliseren - - - - Invert - Inverteren + - - + + Smooth - Glad + - - + + Sine wave - Sinusgolf + - - - + + + Triangle wave - Driehoeksgolf + - + Saw wave - Zaagtandgolf + - - + + Square wave - Blokgolf + - Xpressive + lmms::gui::WaveShaperControlDialog - - Selected graph - Geselecteerde grafiek - - - - A1 - A1 - - - - A2 - A2 - - - - A3 - A3 - - - - W1 smoothing - W1 afvlakken - - - - W2 smoothing - W2 afvlakken - - - - W3 smoothing - W3 afvlakken - - - - Panning 1 - Balans 1 - - - - Panning 2 - Balans 2 - - - - Rel trans - Rel overgang - - - - XpressiveView - - - Draw your own waveform here by dragging your mouse on this graph. - Teken uw eigen golfvorm hier door uw muis op deze grafiek te slepen. - - - - Select oscillator W1 - Oscillator W1 selecteren - - - - Select oscillator W2 - Oscillator W2 selecteren - - - - Select oscillator W3 - Oscillator W3 selecteren - - - - Select output O1 - Selecteer uitvoer O1 - - - - Select output O2 - Selecteer uitvoer O2 - - - - Open help window - Help-venster openen - - - - - Sine wave - Sinusgolf - - - - - Moog-saw wave - Moog-zaagtandgolf - - - - - Exponential wave - Exponentiële golf - - - - - Saw wave - Zaagtandgolf - - - - - User-defined wave - Aangepaste golf - - - - - Triangle wave - Driehoeksgolf - - - - - Square wave - Blokgolf - - - - - White noise - Witte ruis - - - - WaveInterpolate - GolfInterpoleren - - - - ExpressionValid - ExpressieGeldig - - - - General purpose 1: - Algemeen doel 1: - - - - General purpose 2: - Algemeen doel 2: - - - - General purpose 3: - Algemeen doel 3: - - - - O1 panning: - Balans O1: - - - - O2 panning: - Balans O2: - - - - Release transition: - Release-overgang: - - - - Smoothness - Gladheid - - - - ZynAddSubFxInstrument - - - Portamento - Portamento - - - - Filter frequency - Filter-frequentie - - - - Filter resonance - Filter-resonantie - - - - Bandwidth - Bandbreedte - - - - FM gain - FM-versterking - - - - Resonance center frequency - Resonantie centerfrequentie - - - - Resonance bandwidth - Resonantie bandbreedte - - - - Forward MIDI control change events - MIDI control change events doorsturen - - - - ZynAddSubFxView - - - Portamento: - Portamento: - - - - PORT - POORT - - - - Filter frequency: - Filter-frequentie: - - - - FREQ - FREQ - - - - Filter resonance: - Filter-resonantie: - - - - RES - RES - - - - Bandwidth: - Bandbreedte: - - - - BW - BW - - - - FM gain: - FM-versterking: - - - - FM GAIN - FM GAIN - - - - Resonance center frequency: - Resonantie centerfrequentie: - - - - RES CF - RES CF - - - - Resonance bandwidth: - Resonantie bandbreedte: - - - - RES BW - RES BW - - - - Forward MIDI control changes - MIDI control changes doorsturen - - - - Show GUI - GUI weergeven - - - - AudioFileProcessor - - - Amplify - Versterken - - - - Start of sample - Begin van sample - - - - End of sample - Einde van sample - - - - Loopback point - Herhaalpunt - - - - Reverse sample - Sample omdraaien - - - - Loop mode - Herhaalmodus - - - - Stutter - Stutter - - - - Interpolation mode - Interpolatiemodus - - - - None - Geen - - - - Linear - Lineair - - - - Sinc - Sinc - - - - Sample not found: %1 - Sample niet gevonden: %1 - - - - BitInvader - - - Sample length - Sample-lengte: - - - - BitInvaderView - - - Sample length - Sample-lengte: - - - - Draw your own waveform here by dragging your mouse on this graph. - Teken uw eigen golfvorm hier door uw muis op deze grafiek te slepen. - - - - - Sine wave - Sinusgolf - - - - - Triangle wave - Driehoeksgolf - - - - - Saw wave - Zaagtandgolf - - - - - Square wave - Blokgolf - - - - - White noise - Witte ruis - - - - - User-defined wave - Aangepaste golf - - - - - Smooth waveform - Golfvorm zacht maken - - - - Interpolation - Interpolatie - - - - Normalize - Normaliseren - - - - DynProcControlDialog - - + INPUT - INVOER + - + Input gain: - Invoer-gain: + - + OUTPUT - UITVOER - - - - Output gain: - Uitvoer-gain: - - - - ATTACK - ATTACK - - - - Peak attack time: - Piek-attack-tijd: - - - - RELEASE - RELEASE - - - - Peak release time: - Piek-release-tijd: - - - - - Reset wavegraph - Golfvorm herstellen - - - - - Smooth wavegraph - Golfvorm zacht maken - - - - - Increase wavegraph amplitude by 1 dB - Golfgrafiek-amplitude verhogen met 1 dB - - - - - Decrease wavegraph amplitude by 1 dB - Golfgrafiek-amplitude verlagen met 1 dB - - - - Stereo mode: maximum - Stereomodus: maximum - - - - Process based on the maximum of both stereo channels - Verwerking gebaseerd op het maximum van beide stereokanalen - - - - Stereo mode: average - Stereomodus: gemiddeld - - - - Process based on the average of both stereo channels - Verwerking gebaseerd op het gemiddelde van beide stereokanalen - - - - Stereo mode: unlinked - Stereomodus: niet-gekoppeld - - - - Process each stereo channel independently - Elk stereokanaal onafhankelijk verwerken - - - - DynProcControls - - - Input gain - Invoer-gain - - - - Output gain - Uitvoer-gain - - - - Attack time - Attack-tijd - - - - Release time - Release-tijd - - - - Stereo mode - Stereomodus - - - - graphModel - - - Graph - Grafiek - - - - KickerInstrument - - - Start frequency - Beginfrequentie - - - - End frequency - Eindfrequentie - - - - Length - Lengte - - - - Start distortion - Beginvervorming - - - - End distortion - Eindvervorming - - - - Gain - Gain - - - - Envelope slope - Envelope-helling - - - - Noise - Ruis - - - - Click - Klik - - - - Frequency slope - Frequentie-helling - - - - Start from note - Starten vanaf noot - - - - End to note - Stoppen naar noot - - - - KickerInstrumentView - - - Start frequency: - Beginfrequentie: - - - - End frequency: - Eindfrequentie: - - - - Frequency slope: - Frequentie-helling: - - - - Gain: - Gain: - - - - Envelope length: - Envelope-lengte: - - - - Envelope slope: - Envelope-helling: - - - - Click: - Klik: - - - - Noise: - Ruis: - - - - Start distortion: - Beginvervorming: - - - - End distortion: - Eindvervorming: - - - - LadspaBrowserView - - - - Available Effects - Beschikbare effecten - - - - - Unavailable Effects - Niet-beschikbare effecten - - - - - Instruments - Instrumenten - - - - - Analysis Tools - Analysegereedschappen - - - - - Don't know - Onbekend - - - - Type: - Soort: - - - - LadspaDescription - - - Plugins - Plugins - - - - Description - Beschrijving - - - - LadspaPortDialog - - - Ports - Poorten - - - - Name - Naam - - - - Rate - Ratio - - - - Direction - Richting - - - - Type - Type - - - - Min < Default < Max - Min < standaard < max - - - - Logarithmic - Logaritmisch - - - - SR Dependent - SR-afhankelijk - - - - Audio - Audio - - - - Control - Bediening - - - - Input - Invoer - - - - Output - Uitvoer - - - - Toggled - Gewisseld - - - - Integer - Integer - - - - Float - Float - - - - - Yes - Ja - - - - Lb302Synth - - - VCF Cutoff Frequency - VCF cutoff-frequentie - - - - VCF Resonance - VCF resonantie - - - - VCF Envelope Mod - VCF envelope-mod - - - - VCF Envelope Decay - VCF envelope-decay - - - - Distortion - Vervorming - - - - Waveform - Golfvorm - - - - Slide Decay - Slide-decay - - - - Slide - Slide - - - - Accent - Accent - - - - Dead - Dead - - - - 24dB/oct Filter - 24dB/oct-filter - - - - Lb302SynthView - - - Cutoff Freq: - Cutoff-freq: - - - - Resonance: - Resonantie: - - - - Env Mod: - Env-mod: - - - - Decay: - Decay: - - - - 303-es-que, 24dB/octave, 3 pole filter - 303-es-que, 24dB/octave, 3 pole filter - - - - Slide Decay: - Slide-decay: - - - - DIST: - DIST: - - - - Saw wave - Zaagtandgolf - - - - Click here for a saw-wave. - Klik hier voor een zaagtandgolf. - - - - Triangle wave - Driehoeksgolf - - - - Click here for a triangle-wave. - Klik hier voor een driehoeksgolf. - - - - Square wave - Blokgolf - - - - Click here for a square-wave. - Klik hier voor een blokgolf. - - - - Rounded square wave - Afgeronde blokgolf - - - - Click here for a square-wave with a rounded end. - Klik hier voor een blokgolf met afgerond einde. - - - - Moog wave - Moog-golf - - - - Click here for a moog-like wave. - Klik hier voor een moog-achtige golf. - - - - Sine wave - Sinusgolf - - - - Click for a sine-wave. - Klikken voor sinusgolf. - - - - - White noise wave - Witte-ruisgolf - - - - Click here for an exponential wave. - Klik hier voor een exponentiële golf. - - - - Click here for white-noise. - Klik hier voor witte ruis. - - - - Bandlimited saw wave - Bandgelimiteerde zaagtandgolf - - - - Click here for bandlimited saw wave. - Klik hier voor een bandgelimiteerde zaagtandgolf. - - - - Bandlimited square wave - Bandgelimiteerde blokgolf - - - - Click here for bandlimited square wave. - Klik hier voor een bandgelimiteerde blokgolf. - - - - Bandlimited triangle wave - Bandgelimiteerde driehoeksgolf - - - - Click here for bandlimited triangle wave. - Klik hier voor een bandgelimiteerde driehoeksgolf. - - - - Bandlimited moog saw wave - Bandgelimiteerde moog-zaagtandgolf - - - - Click here for bandlimited moog saw wave. - Klik hier voor een bandgelimiteerde moog-zaagtandgolf. - - - - MalletsInstrument - - - Hardness - Hardheid - - - - Position - Positie - - - - Vibrato gain - Vibrato-gain - - - - Vibrato frequency - Vibrato-frequentie - - - - Stick mix - Stick-mix - - - - Modulator - Modulator - - - - Crossfade - Crossfade - - - - LFO speed - LFO-snelheid - - - - LFO depth - LFO-diepte - - - - ADSR - ADSR - - - - Pressure - Druk - - - - Motion - Beweging - - - - Speed - Snelheid - - - - Bowed - Gebogen - - - - Spread - Spreiding - - - - Marimba - Marimba - - - - Vibraphone - Vibraphone - - - - Agogo - Agogo - - - - Wood 1 - Hout 1 - - - - Reso - Reso - - - - Wood 2 - Hout 2 - - - - Beats - Beats - - - - Two fixed - Two Fixed - - - - Clump - Clump - - - - Tubular bells - Tubular bells - - - - Uniform bar - Uniforme balk - - - - Tuned bar - Gestemde balk - - - - Glass - Glas - - - - Tibetan bowl - Tibetaanse kom - - - - MalletsInstrumentView - - - Instrument - Instrument - - - - Spread - Spreiding - - - - Spread: - Spreiding: - - - - Missing files - Ontbrekende bestanden - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - Uw Stk-installatie lijkt onvolledig te zijn. Verzeker u ervan dat het volledige Stk-pakket geïnstalleerd is - - - - Hardness - Hardheid - - - - Hardness: - Hardheid: - - - - Position - Positie - - - - Position: - Positie: - - - - Vibrato gain - Vibrato-gain - - - - Vibrato gain: - Vibrato-gain: - - - - Vibrato frequency - Vibrato-frequentie - - - - Vibrato frequency: - Vibrato-frequentie: - - - - Stick mix - Stick-mix - - - - Stick mix: - Stick-mix: - - - - Modulator - Modulator - - - - Modulator: - Modulator: - - - - Crossfade - Crossfade - - - - Crossfade: - Crossfade: - - - - LFO speed - LFO-snelheid - - - - LFO speed: - LFO-snelheid: - - - - LFO depth - LFO-diepte - - - - LFO depth: - LFO-diepte: - - - - ADSR - ADSR - - - - ADSR: - ADSR: - - - - Pressure - Druk - - - - Pressure: - Druk: - - - - Speed - Snelheid - - - - Speed: - Snelheid: - - - - ManageVSTEffectView - - - - VST parameter control - - VST parameterbediening - - - - VST sync - VST sync - - - - - Automated - Geautomatiseerd - - - - Close - Sluiten - - - - ManageVestigeInstrumentView - - - - - VST plugin control - - VST-pluginbediening - - - - VST Sync - VST sync - - - - - Automated - Geautomatiseerd - - - - Close - Sluiten - - - - OrganicInstrument - - - Distortion - Vervorming - - - - Volume - Volume - - - - OrganicInstrumentView - - - Distortion: - Vervorming: - - - - Volume: - Volume: - - - - Randomise - Willekeuring maken - - - - - Osc %1 waveform: - Osc %1 golfvorm: - - - - Osc %1 volume: - Osc %1 volume: - - - - Osc %1 panning: - Balans osc %1: - - - - Osc %1 stereo detuning - Osc %1 stereo-ontstemming - - - - cents - cent - - - - Osc %1 harmonic: - Osc %1 harmonisch: - - - - PatchesDialog - - - Qsynth: Channel Preset - Qsynth: kanaal-preset - - - - Bank selector - Bank-selector - - - - Bank - Bank - - - - Program selector - Program-selector - - - - Patch - Patch - - - - Name - Naam - - - - OK - Ok - - - - Cancel - Annuleren - - - - Sf2Instrument - - - Bank - Bank - - - - Patch - Patch - - - - Gain - Gain - - - - Reverb - Reverb - - - - Reverb room size - Reverb kamergrootte - - - - Reverb damping - Reverb demping - - - - Reverb width - Reverb-breedte - - - - Reverb level - Reverb niveau - - - - Chorus - Chorus - - - - Chorus voices - Chorus stemmen - - - - Chorus level - Chorus niveau - - - - Chorus speed - Chorus snelheid - - - - Chorus depth - Chorus diepte - - - - A soundfont %1 could not be loaded. - Een soundfont &1 kon niet geladen worden. - - - - Sf2InstrumentView - - - - Open SoundFont file - SoundFont-bestand openen - - - - Choose patch - Patch kiezen - - - - Gain: - Gain: - - - - Apply reverb (if supported) - Reverb toepassen (indien ondersteund) - - - - Room size: - Kamergrootte: - - - - Damping: - Demping: - - - - Width: - Breedte: - - - - - Level: - Niveau: - - - - Apply chorus (if supported) - Chorus toepassen (indien ondersteund) - - - - Voices: - Stemmen: - - - - Speed: - Snelheid: - - - - Depth: - Diepte: - - - - SoundFont Files (*.sf2 *.sf3) - SoundFont-bestanden (*.sf2 *.sf3) - - - - SfxrInstrument - - - Wave - Golf - - - - StereoEnhancerControlDialog - - - WIDTH - BREEDTE - - - - Width: - Breedte: - - - - StereoEnhancerControls - - - Width - Breedte - - - - StereoMatrixControlDialog - - - Left to Left Vol: - Links naar links vol: - - - - Left to Right Vol: - Links naar rechts vol: - - - - Right to Left Vol: - Rechts naar links vol: - - - - Right to Right Vol: - Rechts naar rechts vol: - - - - StereoMatrixControls - - - Left to Left - Links naar links - - - - Left to Right - Links naar rechts - - - - Right to Left - Rechts naar links - - - - Right to Right - Rechts naar rechts - - - - VestigeInstrument - - - Loading plugin - Plugin laden - - - - Please wait while loading the VST plugin... - Even geduld, de VST-plugin wordt geladen... - - - - Vibed - - - String %1 volume - Snaar %1 volume - - - - String %1 stiffness - Snaar %1 hardheid - - - - Pick %1 position - Aanslag %1 positie - - - - Pickup %1 position - Pickup %1 positie - - - - String %1 panning - String %1 balans - - - - String %1 detune - String %1 ontstemmen - - - - String %1 fuzziness - String %1 zachtheid - - - - String %1 length - String %1 lengte - - - - Impulse %1 - Impuls %1 - - - - String %1 - String %1 - - - - VibedView - - - String volume: - String volume: - - - - String stiffness: - Hardheid snaar: - - - - Pick position: - Aanslagpositie: - - - - Pickup position: - Pickup-positie: - - - - String panning: - String balans: - - - - String detune: - String ontstemmen: - - - - String fuzziness: - String zachtheid: - - - - String length: - String lengte: - - - - Impulse - Impuls - - - - Octave - Octaaf - - - - Impulse Editor - Impuls-editor - - - - Enable waveform - Golfvorm activeren - - - - Enable/disable string - String in-/uitschakelen - - - - String - Snaar - - - - - Sine wave - Sinusgolf - - - - - Triangle wave - Driehoeksgolf - - - - - Saw wave - Zaagtandgolf - - - - - Square wave - Blokgolf - - - - - White noise - Witte ruis - - - - - User-defined wave - Aangepaste golf - - - - - Smooth waveform - Golfvorm zacht maken - - - - - Normalize waveform - Golfvorm normaliseren - - - - VoiceObject - - - Voice %1 pulse width - Stem %1 pulsbreedte - - - - Voice %1 attack - Stem %1 attack - - - - Voice %1 decay - Stem %1 decay - - - - Voice %1 sustain - Stem %1 sustain - - - - Voice %1 release - Stem %1 release - - - - Voice %1 coarse detuning - Stem %1 grof ontstemmen - - - - Voice %1 wave shape - Stem %1 golfvorm - - - - Voice %1 sync - Stem %1 sync - - - - Voice %1 ring modulate - Stem %1 ring-modulatie - - - - Voice %1 filtered - Stem %1 gefilterd - - - - Voice %1 test - Stem %1 test - - - - WaveShaperControlDialog - - - INPUT - INVOER - - - - Input gain: - Invoer-gain: - - - - OUTPUT - UITVOER - - - - Output gain: - Uitvoer-gain: + - - Reset wavegraph - Golfvorm herstellen + Output gain: + + - - Smooth wavegraph - Golfvorm zacht maken + Reset wavegraph + + - - Increase wavegraph amplitude by 1 dB - Golfgrafiek-amplitude verhogen met 1 dB + Smooth wavegraph + + - + Increase wavegraph amplitude by 1 dB + + + + + Decrease wavegraph amplitude by 1 dB - Golfgrafiek-amplitude verlagen met 1 dB + - + Clip input - Invoer clippen + - + Clip input signal to 0 dB - Invoersignaal clippen naar 0 dB + - WaveShaperControls + lmms::gui::XpressiveView - - Input gain - Invoer-gain + + Draw your own waveform here by dragging your mouse on this graph. + - - Output gain - Uitvoer-gain + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + - + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + + + + \ No newline at end of file diff --git a/data/locale/pl.ts b/data/locale/pl.ts index 3a12f0815..e38165424 100644 --- a/data/locale/pl.ts +++ b/data/locale/pl.ts @@ -1,10 +1,10 @@ - + AboutDialog About LMMS - O programie LMMS + O LMMS @@ -49,7 +49,7 @@ Contributors ordered by number of commits: - Twórcy programu posortowani podług aktywności: + Twórcy programu posortowani według aktywności: @@ -60,12 +60,14 @@ Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! - Autorzy tłumaczenia: + Oryginalne tłumaczenie LMMS: Kacper Pawinski -Lucas Grzesik +Lucas Grzesik Marcin Mikołajczak Outer_Mind -Radek Słowik +Radek Słowik +Nowe tłumaczenie LMMS: +Grzegorz „Gootector” Pruchniakowski @@ -74,811 +76,49 @@ Radek Słowik - AmplifierControlDialog + AboutJuceDialog - - VOL - VOL + + About JUCE + O JUCE - - Volume: - Głośność: + + <b>About JUCE</b> + <b>O JUCE</b> - - PAN - PAN + + This program uses JUCE version 3.x.x. + Ten program używa wersji JUCE 3.x.x. - - Panning: - Panoramowanie: + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + JUCE jest otwartym, wieloplatformowym frameworkiem aplikacji C++ do tworzenia wysokiej jakości aplikacji desktopowych i mobilnych. + +Główne moduły JUCE (juce_audio_basics, juce_audio_devices, juce_core i juce_events) są objęte licencją dopuszczającą na warunkach licencji ISC. +Pozostałe moduły są objęte licencją GNU GPL 3.0. + +Prawa autorskie (C) 2022 Raw Material Software Limited. - - LEFT - LEWO - - - - Left gain: - L wzm: - - - - RIGHT - PRAWO - - - - Right gain: - P wzm: + + This program uses JUCE version + Ten program używa wersji JUCE - AmplifierControls + AudioDeviceSetupWidget - - Volume - Głośność - - - - Panning - Panoramowanie - - - - Left gain - L wzm: - - - - Right gain - P wzm: - - - - AudioAlsaSetupWidget - - - DEVICE - URZĄDZENIE - - - - CHANNELS - KANAŁY - - - - AudioFileProcessorView - - - Open sample - Otwórz próbkę - - - - Reverse sample - Odwróć próbkę - - - - Disable loop - Wyłącz zapętlanie - - - - Enable loop - Włącz zapętlanie - - - - Enable ping-pong loop - Włącz pętlę typu "ping-pong" - - - - Continue sample playback across notes - Kontunuuj odtwarzanie sampla w następnych nutach - - - - Amplify: - Wzmocnienie: - - - - Start point: - Punkt startu: - - - - End point: - Punkt końca: - - - - Loopback point: - Znacznik zapętlenia: - - - - AudioFileProcessorWaveView - - - Sample length: - Długość próbki: - - - - AudioJack - - - JACK client restarted - Klient JACK zrestartowany - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS został odrzucony przez JACK z jakiegoś powodu. Back-end LMMSa został zrestartowany więc możesz ponownie dokonać ręcznych połączeń. - - - - JACK server down - Serwer JACK wyłączony - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - Wydaje się, że serwer JACK został wyłączony i uruchomienie nowej instancji nie powiodło się więc LMMS nie może kontynuować pracy. Należy zapisać projekt i uruchomić serwer JACK i LMMSa ponownie. - - - - Client name - Nazwa klienta - - - - Channels - Kanały - - - - AudioOss - - - Device - Urządzenie - - - - Channels - Kanały - - - - AudioPortAudio::setupWidget - - - Backend - Backend - - - - Device - Urządzenie - - - - AudioPulseAudio - - - Device - Urządzenie - - - - Channels - Kanały - - - - AudioSdl::setupWidget - - - Device - Urządzenie - - - - AudioSndio - - - Device - Urządzenie - - - - Channels - Kanały - - - - AudioSoundIo::setupWidget - - - Backend - Backend - - - - Device - Urządzenie - - - - AutomatableModel - - - &Reset (%1%2) - &Resetuj (%1%2) - - - - &Copy value (%1%2) - &Kopiuj wartość (%1%2) - - - - &Paste value (%1%2) - &Wklej wartość (%1%2) - - - - &Paste value - &Wklej wartość - - - - Edit song-global automation - Edytuj globalną automatykę utworu - - - - Remove song-global automation - Usuń globalną automatykę utworu - - - - Remove all linked controls - Usuń wszystkie podłączone kontrolery - - - - Connected to %1 - Podłączony do %1 - - - - Connected to controller - Podłączony do kontrolera - - - - Edit connection... - Edytuj połączenie... - - - - Remove connection - Usuń połączenie - - - - Connect to controller... - Podłącz do kontrolera... - - - - AutomationEditor - - - Edit Value - Edytuj Wartość - - - - New outValue - - - - - New inValue - - - - - Please open an automation clip with the context menu of a control! - Otwórz wzorzec automatyki za pomocą menu kontekstowego regulatora! - - - - AutomationEditorWindow - - - Play/pause current clip (Space) - Odtwórz/wstrzymaj obecny wzorzec (spacja) - - - - Stop playing of current clip (Space) - Zatrzymaj odtwarzanie obecnego wzorca (spacja) - - - - Edit actions - Edytuj akcje - - - - Draw mode (Shift+D) - Tryb rysowania (Shift+D) - - - - Erase mode (Shift+E) - Tryb wymazywania (Shift+E) - - - - Draw outValues mode (Shift+C) - - - - - Flip vertically - Przerzuć w pionie - - - - Flip horizontally - Przerzuć w poziomie - - - - Interpolation controls - Regulacja interpolacji - - - - Discrete progression - Progresja oddzielna - - - - Linear progression - Progresja linearna - - - - Cubic Hermite progression - Progresja sześcienna Hermite'a - - - - Tension value for spline - Wartość napięcia dla krzywej składanej - - - - Tension: - Napięcie - - - - Zoom controls - Regulacja powiększenia - - - - Horizontal zooming - Powiększenie poziome - - - - Vertical zooming - Powiększenie pionowe - - - - Quantization controls - Regulacja kwantyzacji - - - - Quantization - Kwantyzacja - - - - - Automation Editor - no clip - Edytor automatyki - brak wzorca - - - - - Automation Editor - %1 - Edytor automatyki - %1 - - - - Model is already connected to this clip. - Model jest już podłączony do tego wzorca. - - - - AutomationClip - - - Drag a control while pressing <%1> - Przeciągnij trzymając wciśnięty klawisz <%1> - - - - AutomationClipView - - - Open in Automation editor - Otwórz w Edytorze Automatyki - - - - Clear - Wyczyść - - - - Reset name - Zresetuj nazwę - - - - Change name - Zmień nazwę - - - - Set/clear record - Ustaw/wyczyść nagranie - - - - Flip Vertically (Visible) - Odwróć w pionie (widoczne) - - - - Flip Horizontally (Visible) - Odwróć w poziomie (widoczne) - - - - %1 Connections - %1 Połączenia - - - - Disconnect "%1" - Rozłącz "%1" - - - - Model is already connected to this clip. - Model jest już podłączony do tego wzorca. - - - - AutomationTrack - - - Automation track - Ścieżka automatyki - - - - PatternEditor - - - Beat+Bassline Editor - Pokaż/ukryj Edytor Perkusji i Basu - - - - Play/pause current beat/bassline (Space) - Odtwórz/Pauzuj bieżącą linię perkusyjną/basową (Spacja) - - - - Stop playback of current beat/bassline (Space) - Zatrzymaj odtwarzanie bieżącej linii perkusyjnej/basowej (Spacja) - - - - Beat selector - Selektor linii perkusyjnej - - - - Track and step actions - Akcje dla ścieżki i kroku - - - - Add beat/bassline - Dodaj linię perkusyjną/basową - - - - Clone beat/bassline clip - Klonuj pattern perkusji/basu - - - - Add sample-track - Dodaj próbkę - - - - Add automation-track - Dodaj ścieżkę automatyki - - - - Remove steps - Usuń kroki - - - - Add steps - Dodaj kroki - - - - Clone Steps - Klonuj kroki - - - - PatternClipView - - - Open in Beat+Bassline-Editor - Otwórz w Edytorze Perkusji i Basu - - - - Reset name - Zresetuj nazwę - - - - Change name - Zmień nazwę - - - - PatternTrack - - - Beat/Bassline %1 - Perkusja/Bas %1 - - - - Clone of %1 - Kopia %1 - - - - BassBoosterControlDialog - - - FREQ - FREQ - - - - Frequency: - Częstotliwość: - - - - GAIN - WZMC - - - - Gain: - Wzmocnienie: - - - - RATIO - WSPÓŁCZYNNIK - - - - Ratio: - Współczynnik: - - - - BassBoosterControls - - - Frequency - Częstotliwość - - - - Gain - Wzmocnienie - - - - Ratio - Współczynnik - - - - BitcrushControlDialog - - - IN - WEJŚCIE - - - - OUT - WYJŚCIE - - - - - GAIN - WZMC - - - - Input gain: - Wzmocnienie wejścia: - - - - NOISE - SZUM - - - - Input noise: - Szum wejściowy: - - - - Output gain: - Wzmocnienie wyjścia: - - - - CLIP - OBCIĘCIE - - - - Output clip: - - - - - Rate enabled - - - - - Enable sample-rate crushing - - - - - Depth enabled - Głębia włączona - - - - Enable bit-depth crushing - - - - - FREQ - FREQ - - - - Sample rate: - Częstotliwość próbkowania - - - - STEREO - STEREO - - - - Stereo difference: - Różnica stereo - - - - QUANT - KWANT - - - - Levels: - Poziomy: - - - - BitcrushControls - - - Input gain - Wzmocnienie wejścia - - - - Input noise - Szum wejściowy - - - - Output gain - Wzmocnienie wyścia - - - - Output clip - - - - - Sample rate - Częstotliwość próbkowania - - - - Stereo difference - - - - - Levels - Poziomy - - - - Rate enabled - - - - - Depth enabled - Głębia włączona + + [System Default] + [Ustawienia domyślne systemu] @@ -896,132 +136,132 @@ Radek Słowik About text here - + Tekst opisowy Extended licensing here - Rozszerzona licencja dostępna jest tu. + Rozszerzona licencja dostępna jest tutaj - + Artwork Grafika - + Using KDE Oxygen icon set, designed by Oxygen Team. - Używa ikon KDE Oxygen, stworzonych przez Oxygen Team. + Używa ikon KDE Oxygen stworzonych przez Oxygen Team. - + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. - Zawiera elementy gałek, teł i innych małych rzeczy z Calf Studio Gear, Open AV i projektu OpenOctave. + Zawiera elementy pokręteł, teł i inne małe grafiki z projektów Calf Studio Gear, OpenAV i OpenOctave. - + VST is a trademark of Steinberg Media Technologies GmbH. - VST to znak towarowy Steinberg Media Technologies GmBH. + VST jest znakiem towarowym Steinberg Media Technologies GmBH. - + Special thanks to António Saraiva for a few extra icons and artwork! Specialne podziękowania dla António Saraiva za dodatkowe ikony i grafiki. - + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. - Logo LV2 zostało zaprojektowane przez Thorstena Wilmsa, na podstawie koncepcji Petera Shorthose. + Logo LV2 zostało zaprojektowane przez Thorstena Wilmsa na podstawie koncepcji Petera Shorthose. - + MIDI Keyboard designed by Thorsten Wilms. Klawiatura MIDI zaprojektowana przez Thorstena Wilmsa. - + Carla, Carla-Control and Patchbay icons designed by DoosC. Ikony Carla, Carla-Control i Patchbay zostały zaprojektowane przez DoosC. - + Features Funkcje - + AU/AudioUnit: - + AU/AudioUnit: - + LADSPA: LADSPA: - - - - - - - - + + + + + + + + TextLabel - + EtykietaTekstowa - + VST2: VST2: - + DSSI: DSSI: - + LV2: LV2: - + VST3: VST3: - + OSC OSC - + Host URLs: - + URL hostów: - + Valid commands: - + Prawidłowe polecenia: - + valid osc commands here - + prawidłowe polecenia osc tutaj - + Example: Przykład: - + License Licencja - + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -1586,52 +826,52 @@ POSSIBILITY OF SUCH DAMAGES. - + OSC Bridge Version - + Wersja mostka OSC - + Plugin Version - Wersja Wtyczki + Wersja wtyczki - + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> - <br>Wersja %1<br> Carla jest w pełni funkcjonalnym hostem wtyczek audio%2.<br><br>Copyright (C) 2011-2019 falkTX<br> + <br>Wersja %1<br>Carla jest w pełni funkcjonalnym hostem wtyczek dźwiękowych%2.<br><br>Prawa autorskie (C) 2011-2019 falkTX<br> - - + + (Engine not running) - + (silnik nie jest uruchomiony) - + Everything! (Including LRDF) - Wszystko (Razem z LRDF) + Wszystko! (razem z LRDF) - + Everything! (Including CustomData/Chunks) - + Wszystko! (razem z CustomData/Chunks) - + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> + O 110&#37; kompletny (z wykorzystaniem rozszerzeń niestandardowych)<br/>Zaimplementowane funkcje/rozszerzenia:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - - - + + + Using Juce host - + Wykorzystując host Juce - + About 85% complete (missing vst bank/presets and some minor stuff) - + Ukończono w około 85% (brakuje banku wtyczek VST/presetów i kilku drobnych rzeczy) @@ -1639,12 +879,12 @@ POSSIBILITY OF SUCH DAMAGES. MainWindow - + OknoGłówne Rack - + Rack @@ -1654,7 +894,7 @@ POSSIBILITY OF SUCH DAMAGES. Logs - Logi + Dziennik @@ -1662,559 +902,598 @@ POSSIBILITY OF SUCH DAMAGES. Ładowanie... - + + Save + Zapisz + + + + Clear + Wyczyść + + + + Ctrl+L + Ctrl+L + + + + Auto-Scroll + Autoprzewijanie + + + Buffer Size: - Rozmiar Bufora: + Rozmiar bufora: - + Sample Rate: - Częstotliwość Próbkowania: + Częstotliwość próbkowania: - + ? Xruns ? Xruns - + DSP Load: %p% - + Obciążenie DSP: %p% - + &File &Plik - + &Engine &Silnik - + &Plugin &Wtyczka - + Macros (all plugins) - Makra (wszystkie etyczki) + Makra (wszystkie wtyczki) - + &Canvas - &Canvas + &Płótno - + Zoom - Przybliż + Powiększenie - + &Settings - &Ustawienia + U&stawienia - + &Help &Pomoc - - toolBar - + + Tool Bar + Pasek narzędzi - + Disk Dysk - - + + Home - Strona domowa + Strona główna - + Transport - + Transport - + Playback Controls - + Sterowanie odtwarzaniem - + Time Information - + Informacje o czasie - + Frame: - Klatka: + Ramka: - + 000'000'000 000'000'000 - + Time: Czas: - + 00:00:00 00:00:00 - + BBT: BBT: - + 000|00|0000 000|00|0000 - + Settings Ustawienia - + BPM BPM - + Use JACK Transport - + Użyj JACK transport - + Use Ableton Link - + Użyj Ableton Link - + &New &Nowy - + Ctrl+N Ctrl+N - + &Open... &Otwórz... - - + + Open... Otwórz... - + Ctrl+O Ctrl+O - + &Save - &Zapisz + Zapi&sz - + Ctrl+S Ctrl+S - + Save &As... - Zapisz &Jako... + Z&apisz jako... - - + + Save As... - Zapisz Jako... + Zapisz jako... - + Ctrl+Shift+S Ctrl+Shift+S - + &Quit - &Zakończ + Za&kończ - + Ctrl+Q Ctrl+Q - + &Start - &Start + &Uruchom - + F5 F5 - + St&op - St&op + &Zatrzymaj - + F6 F6 - + &Add Plugin... - &Dodaj Wtyczkę + Dod&aj wtyczkę... - + Ctrl+A Ctrl+A - + &Remove All - &Usuń Wszystko + &Usuń wszystko - + Enable Włącz - + Disable Wyłącz - + 0% Wet (Bypass) - + 0% mokry (pomiń) - + 100% Wet - + 100% mokry - + 0% Volume (Mute) - 0% Głośności (Wyciszone) + 0% głośności (wyciszone) - + 100% Volume - 100% Głośności + 100% głośności - + Center Balance - + Równowaga środkowa - + &Play - &Odtwórz + &Odtwarzaj - + Ctrl+Shift+P Ctrl+Shift+P - + &Stop &Zatrzymaj - + Ctrl+Shift+X Ctrl+Shift+X - + &Backwards &Wstecz - + Ctrl+Shift+B Ctrl+Shift+B - + &Forwards - &Na przód + &Dalej - + Ctrl+Shift+F Ctrl+Shift+F - + &Arrange &Aranżuj - + Ctrl+G Ctrl+G - - + + &Refresh &Odśwież - + Ctrl+R Ctrl+R - + Save &Image... - Zapisz &Obraz + Zap&isz obraz... - + Auto-Fit - + Autodopasowanie - + Zoom In - Przybliż + Powiększ - + Ctrl++ Ctrl++ - + Zoom Out - Oddal + Pomniejsz - + Ctrl+- Ctrl+- - + Zoom 100% - 100% Przybliżenia + 100% powiększenia - + Ctrl+1 Ctrl+1 - + Show &Toolbar - Pokaż &Pasek Narzędzi + &Pokaż pasek narzędzi - + &Configure Carla - + Konfiguruj &Carla - + &About - %O programie + O progr&amie - + About &JUCE O &JUCE - + About &Qt O &Qt - + Show Canvas &Meters - + Show Canvas &Keyboard - + Show Internal - + Pokaż wewnętrzne - + Show External - + Pokaż zewnętrzne - + Show Time Panel - + Pokaż panel czasu - + Show &Side Panel - + Pokaż panel &boczny - + + Ctrl+P + Ctrl+P + + + &Connect... - %Połącz + Połą&cz... - + Compact Slots - + Zwiń sloty - + Expand Slots - + Rozwiń sloty - + Perform secret 1 - + Perform secret 2 - + Perform secret 3 - + Perform secret 4 - + Perform secret 5 - + Add &JACK Application... - Dodaj &Aplikację JACK + Doda&j aplikację JACK... - + &Configure driver... &Konfiguruj sterownik... - + Panic - + Panika - + Open custom driver panel... - + Otwórz niestandardowy panel sterownika... + + + + Save Image... (2x zoom) + Zapisz obraz... (2x powiększenie) + + + + Save Image... (4x zoom) + Zapisz obraz... (4x powiększenie) + + + + Copy as Image to Clipboard + Kopiuj jako obraz do schowka + + + + Ctrl+Shift+C + Ctrl+Shift+C CarlaHostWindow - + Export as... Eksportuj jako... - - - - + + + + Error - BłądBłą + Błąd - + Failed to load project Nie udało się załadować projektu - + Failed to save project Nie udało się zapisać projektu - + Quit - Wyjdź + Zakończ - + Are you sure you want to quit Carla? - + Na pewno chcesz opuścić Carla? - + Could not connect to Audio backend '%1', possible reasons: %2 - + Nie można połączyć się z backendem dźwięku „%1”. Możliwy powód: +%2 - + Could not connect to Audio backend '%1' - + Nie można połączyć się z backendem dźwięku „%1” - + Warning Ostrzeżenie - + There are still some plugins loaded, you need to remove them to stop the engine. Do you want to do this now? - - - - - CarlaInstrumentView - - - Show GUI - Pokaż GUI + Niektóre wtyczki są nadal załadowane i należy je usunąć, aby zatrzymać działanie silnika. +Chcesz to zrobić teraz? @@ -2227,12 +1506,12 @@ Do you want to do this now? main - + główne canvas - canvas + płótno @@ -2247,12 +1526,12 @@ Do you want to do this now? file-paths - + ścieżki-plików plugin-paths - + ścieżki-wtyczek @@ -2262,40 +1541,40 @@ Do you want to do this now? experimental - + eksperymentalne Widget - + Widżet - + Main - + Główne - + Canvas - Canvas + Płótno - + Engine Silnik File Paths - + Ścieżki plików Plugin Paths - Ścieżki Wtyczek + Ścieżki wtyczek @@ -2304,1496 +1583,601 @@ Do you want to do this now? - + Experimental Eksperymentalne - + <b>Main</b> <b>Główne</b> - + Paths Ścieżki - + Default project folder: Domyślny folder projektu: - + Interface Interfejs - - Interface refresh interval: - + + Use "Classic" as default rack skin + Użyj „Klasycznego” jako domyślnego skina racka - - + + Interface refresh interval: + Interwał odświeżania interfejsu: + + + + ms ms - + Show console output in Logs tab (needs engine restart) - + Pokaż wyjście konsoli w zakładce logów (wymaga ponownego uruchomienia silnika) - + Show a confirmation dialog before quitting - + Wyświetl okno dialogowe przed opuszczeniem programu - - + + Theme Motyw - + Use Carla "PRO" theme (needs restart) - + Użyj motywu Carla „PRO” (wymaga ponownego uruchomienia) - + Color scheme: Schemat kolorów: - + Black Czarny - + System - Systemowe + Systemowy - + Enable experimental features - Włącz eksperymentalne funkcje + Włącz funkcje eksperymentalne - + <b>Canvas</b> - <b>Canvas</b> + <b>Płótno</b> - + Bezier Lines Linie Beziera - + Theme: Motyw: - + Size: Rozmiar: - + 775x600 775x600 - + 1550x1200 1550x1200 - + 3100x2400 3100x2400 - + 4650x3600 4650x3600 - + 6200x4800 6200x4800 - + + 12400x9600 + 12400x9600 + + + Options Opcje - + Auto-hide groups with no ports - + Autoukrywanie grup bez portów - + Auto-select items on hover - + Autozaznaczanie elementów po najechaniu kursorem - + Basic eye-candy (group shadows) - + Render Hints - + Renderuj podpowiedzi - + Anti-Aliasing Antyaliasing - + Full canvas repaints (slower, but prevents drawing issues) - + Pełne ponowne malowanie płótna (wolniejsze, ale zapobiegające problemom z rysowaniem) - + <b>Engine</b> <b>Silnik</b> - - + + Core Rdzeń - + Single Client - + Pojedynczy klient - + Multiple Clients - + Wielu klientów - - + + Continuous Rack - + Rack ciągły - - + + Patchbay Patchbay - + Audio driver: - Sterownik audio: + Sterownik dźwięku: - + Process mode: - + Tryb przetwarzania: - - - - + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog - + Maksymalna liczba parametrów dozwolonych w wbudowanym oknie dialogowym „Edycja” - + Max Parameters: - + Maksymalne parametry: - + ... ... - + Reset Xrun counter after project load - + Resetuj licznik Xrun po załadowaniu projektu - + Plugin UIs - UI Wtyczek + Interfejsy użytkownika wtyczek - - + + How much time to wait for OSC GUIs to ping back the host - + Ile czasu należy czekać, aż graficzne interfejsy użytkownika OSC wyślą polecenie ping do hosta - + UI Bridge Timeout: - + Use OSC-GUI bridges when possible, this way separating the UI from DSP code - + Użyj mostków OSC graficznego interfejsu użytkownika w miarę możliwości, oddzielając w ten sposób interfejs użytkownika od kodu DSP - + Use UI bridges instead of direct handling when possible - + Użyj mostków interfejsu użytkownika w marę możliwości zamiast obsługi bezpośredniej - + Make plugin UIs always-on-top - + Zrób interfejsy użytkownika wtyczek zawsze widocznymi - + Make plugin UIs appear on top of Carla (needs restart) - + Zrób interfejsy użytkownika wtyczek na górze Carla (wymaga ponownego uruchomienia) - + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS - + Uwaga: Interfejsy użytkownika wtyczki-mostka nie mogą być zarządzane przez Carla w systemie macOS - - + + Restart the engine to load the new settings - Zresetuj silnik aby załadować nowe ustawienia + Uruchom ponownie silnik, aby załadować nowe ustawienia - + <b>OSC</b> <b>OSC</b> - + Enable OSC Włącz OSC - + Enable TCP port Włącz port TCP - - + + Use specific port: - + Użyj określonego portu: - + Overridden by CARLA_OSC_TCP_PORT env var - + Nadpisane przez zmienną CARLA_OSC_TCP_PORT - - + + Use randomly assigned port - + Użyj losowo przypisanego portu - + Enable UDP port Włącz port UDP - + Overridden by CARLA_OSC_UDP_PORT env var - + Nadpisane przez zmienną CARLA_OSC_UDP_PORT - + DSSI UIs require OSC UDP port enabled - + Interfejsy użytkownika DSSI wymagają włączonego portu OSC UDP - + <b>File Paths</b> - <b>Ścieżki do Plików</b> + <b>Ścieżki plików</b> - + Audio - Audio + Dźwięk - + MIDI MIDI - + Used for the "audiofile" plugin - + Używany do wtyczki „audiofile” - + Used for the "midifile" plugin - + Używany do wtyczki „midifile” - - + + Add... Dodaj... - - + + Remove Usuń - - + + Change... Zmień... - + <b>Plugin Paths</b> - <b>Ścieżki do Wtyczek</b> + <b>Ścieżki wtyczek</b> - + LADSPA LADSPA - + DSSI DSSI - + LV2 LV2 - + VST2 VST2 - + VST3 VST3 - + SF2/3 SF2/3 - + SFZ SFZ - - Restart Carla to find new plugins - + + JSFX + JSFX - + + CLAP + CLAP + + + + Restart Carla to find new plugins + Uruchom ponownie Carla, aby znaleźć nowe wtyczki + + + <b>Wine</b> <b>Wine</b> - + Executable Wykonywalne - + Path to 'wine' binary: - + Ścieżka do pliku binarnego „wine”: - + Prefix - Prefiks + Przedrostek - + Auto-detect Wine prefix based on plugin filename - Automatycznie wykrywaj prefiks Wine na bazie nazwy pliku wtyczki + Autowykrywanie przedrostka Wine w oparciu o nazwę pliku wtyczki - + Fallback: - + Note: WINEPREFIX env var is preferred over this fallback - + Realtime Priority - + Priorytet w czasie rzeczywistym - + Base priority: - + Podstawowy priorytet: - + WineServer priority: - + Priorytet WineServer: - + These options are not available for Carla as plugin - + Te opcje nie są dostępne dla Carla jako wtyczki - + <b>Experimental</b> <b>Eksperymentalne</b> - + Experimental options! Likely to be unstable! - + Opcje eksperymentalne! Mogą być niestabilne! - + Enable plugin bridges - + Włącz mostki wtyczek - + Enable Wine bridges - + Włącz mostki Wine - + Enable jack applications - Włącz aplikacje jack + Włącz aplikacje JACK - + Export single plugins to LV2 - + Eksportuj pojedyncze wtyczki do LV2 - + + Use system/desktop-theme icons (needs restart) + Użyj ikon systemowych/motywu pulpitu (wymaga ponownego uruchomienia) + + + Load Carla backend in global namespace (NOT RECOMMENDED) - + Załaduj zaplecze Carla w ogólnej przestrzeni nazw (NIEZALECANE) - + Fancy eye-candy (fade-in/out groups, glow connections) - + Use OpenGL for rendering (needs restart) - Użyj OpenGL do renderowania (wymaga restartu) + Użyj OpenGL do renderowania (wymaga ponownego uruchomienia) - + High Quality Anti-Aliasing (OpenGL only) - Antyaliasing Wysokiej Jakości (tylko OpenGL) + Antyaliasing wysokiej jakości (tylko OpenGL) - + Render Ardour-style "Inline Displays" - + Renderuj „Inline Displays” w stylu Ardour - + Force mono plugins as stereo by running 2 instances at the same time. This mode is not available for VST plugins. - + Wymuś wtyczki mono jako stereo, uruchamiając 2 instancje jednocześnie. +Ten tryb nie jest dostępny dla wtyczek VST. - + Force mono plugins as stereo - + Wymuś wtyczki mono jako stereo - - Prevent plugins from doing bad stuff (needs restart) - + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + Po włączeniu tej opcji Carla spróbuje uniemożliwić wtyczkom wykonywanie czynności, które mogą zakłócić dźwięk lub powodować błędy xruns, tj. fork(), gtk_init() i podobne. - - Whenever possible, run the plugins in bridge mode. - + + Prevent unsafe calls from plugins (needs restart) + Zapobiegaj niebezpiecznym wywołaniom z wtyczek (wymaga ponownego uruchomienia) - + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + Uruchom wtyczki w oddzielnym procesie. Jeśli się zawieszą, nie wpłynie to na Carla. +W takich przypadkach wtyczki są automatycznie dezaktywowane. +Reaktywuj je, aby ponownie uruchomić proces, stosując do niego ostatni zapisany stan. + + + Run plugins in bridge mode when possible - + W miarę możliwości uruchamiaj wtyczki w trybie mostka - - - - + + + + Add Path - Dodaj Ścieżkę - - - - CompressorControlDialog - - - Threshold: - Próg: - - - - Volume at which the compression begins to take place - - - - - Ratio: - Współczynnik: - - - - How far the compressor must turn the volume down after crossing the threshold - - - - - Attack: - Atak: - - - - Speed at which the compressor starts to compress the audio - - - - - Release: - Zwolnienie: - - - - Speed at which the compressor ceases to compress the audio - - - - - Knee: - - - - - Smooth out the gain reduction curve around the threshold - - - - - Range: - Zakres: - - - - Maximum gain reduction - - - - - Lookahead Length: - - - - - How long the compressor has to react to the sidechain signal ahead of time - - - - - Hold: - Przetrzymanie: - - - - Delay between attack and release stages - - - - - RMS Size: - Rozmiar RMS: - - - - Size of the RMS buffer - Rozmiar bufora RMS: - - - - Input Balance: - - - - - Bias the input audio to the left/right or mid/side - - - - - Output Balance: - - - - - Bias the output audio to the left/right or mid/side - - - - - Stereo Balance: - - - - - Bias the sidechain signal to the left/right or mid/side - - - - - Stereo Link Blend: - - - - - Blend between unlinked/maximum/average/minimum stereo linking modes - - - - - Tilt Gain: - - - - - Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. - - - - - Tilt Frequency: - - - - - Center frequency of sidechain tilt filter - - - - - Mix: - - - - - Balance between wet and dry signals - - - - - Auto Attack: - - - - - Automatically control attack value depending on crest factor - - - - - Auto Release: - - - - - Automatically control release value depending on crest factor - - - - - Output gain - Wzmocnienie wyścia - - - - - Gain - Wzmocnienie - - - - Output volume - - - - - Input gain - Wzmocnienie wejścia - - - - Input volume - - - - - Root Mean Square - - - - - Use RMS of the input - - - - - Peak - Szczyt - - - - Use absolute value of the input - - - - - Left/Right - Lewy/Prawy - - - - Compress left and right audio - - - - - Mid/Side - - - - - Compress mid and side audio - - - - - Compressor - Kompresor - - - - Compress the audio - Kompresuj audio - - - - Limiter - Limiter - - - - Set Ratio to infinity (is not guaranteed to limit audio volume) - - - - - Unlinked - - - - - Compress each channel separately - - - - - Maximum - Maksimum - - - - Compress based on the loudest channel - - - - - Average - Średnie - - - - Compress based on the averaged channel volume - - - - - Minimum - Minimum - - - - Compress based on the quietest channel - - - - - Blend - - - - - Blend between stereo linking modes - - - - - Auto Makeup Gain - - - - - Automatically change makeup gain depending on threshold, knee, and ratio settings - - - - - - Soft Clip - - - - - Play the delta signal - - - - - Use the compressor's output as the sidechain input - - - - - Lookahead Enabled - - - - - Enable Lookahead, which introduces 20 milliseconds of latency - - - - - CompressorControls - - - Threshold - - - - - Ratio - Współczynnik - - - - Attack - Atak - - - - Release - Wybrzmiewanie - - - - Knee - - - - - Hold - Przetrzymanie - - - - Range - Zakres - - - - RMS Size - Rozmiar RMS - - - - Mid/Side - - - - - Peak Mode - - - - - Lookahead Length - - - - - Input Balance - - - - - Output Balance - - - - - Limiter - Limiter - - - - Output Gain - Wzmocnienie wyścia - - - - Input Gain - Wzmocnienie wejścia - - - - Blend - - - - - Stereo Balance - - - - - Auto Makeup Gain - - - - - Audition - - - - - Feedback - Feedback - - - - Auto Attack - - - - - Auto Release - - - - - Lookahead - - - - - Tilt - Przechylenie - - - - Tilt Frequency - - - - - Stereo Link - - - - - Mix - Miks - - - - Controller - - - Controller %1 - Kontroler %1 - - - - ControllerConnectionDialog - - - Connection Settings - Ustawienia Połączenia - - - - MIDI CONTROLLER - KONTROLER MIDI - - - - Input channel - Kanał wejściowy - - - - CHANNEL - KANAŁ - - - - Input controller - Kontroler wejściowy - - - - CONTROLLER - KONTROLER - - - - - Auto Detect - Autodetekcja - - - - MIDI-devices to receive MIDI-events from - Urządzenia MIDI odbierające zdarzenia MIDI z - - - - USER CONTROLLER - KONTROLER UŻYTKOWNIKA - - - - MAPPING FUNCTION - FUNKCJA MAPOWANIA - - - - OK - OK - - - - Cancel - Anuluj - - - - LMMS - LMMS - - - - Cycle Detected. - Detekcja Cyklu. - - - - ControllerRackView - - - Controller Rack - Rack Kontrolerów - - - - Add - Dodaj - - - - Confirm Delete - Potwierdź usunięcie - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Czy potwierdzić usunięcie? Występuje(ą) istniejące połączenie(a) związane z tym kontrolerem. Tej operacji nie da się cofnąć. - - - - ControllerView - - - Controls - Ustaw - - - - Rename controller - Zmień nazwę kontrolera - - - - Enter the new name for this controller - Wprowadź nową nazwę dla tego kontrolera - - - - LFO - LFO - - - - &Remove this controller - &Usuń ten kontroler - - - - Re&name this controller - Zmień &nazwę tego kontrolera - - - - CrossoverEQControlDialog - - - Band 1/2 crossover: - - - - - Band 2/3 crossover: - - - - - Band 3/4 crossover: - - - - - Band 1 gain - - - - - Band 1 gain: - - - - - Band 2 gain - - - - - Band 2 gain: - - - - - Band 3 gain - - - - - Band 3 gain: - - - - - Band 4 gain - - - - - Band 4 gain: - - - - - Band 1 mute - - - - - Mute band 1 - - - - - Band 2 mute - - - - - Mute band 2 - - - - - Band 3 mute - - - - - Mute band 3 - - - - - Band 4 mute - - - - - Mute band 4 - - - - - DelayControls - - - Delay samples - - - - - Feedback - Feedback - - - - LFO frequency - Częstotliwość LFO - - - - LFO amount - - - - - Output gain - Wzmocnienie wyścia - - - - DelayControlsDialog - - - DELAY - OPÓŹN - - - - Delay time - Czas opóźnienia - - - - FDBK - REAK - - - - Feedback amount - - - - - RATE - TEMPO - - - - LFO frequency - Częstotliwość LFO - - - - AMNT - ILOŚĆ - - - - LFO amount - - - - - Out gain - - - - - Gain - Wzmocnienie + Dodaj ścieżkę Dialog - - - Add JACK Application - Dodaj Aplikację JACK - - - - Note: Features not implemented yet are greyed out - Uwaga: Funkcje, które nie zostały jeszcze zaimplementowane są wyszarzone - - - - Application - Aplikacja - - - - Name: - Nazwa: - - - - Application: - Aplikacja: - - - - From template - Z szablonu - - - - Custom - Własne - - - - Template: - Szablon: - - - - Command: - Komenda: - - - - Setup - Konfiguracja - - - - Session Manager: - Menedżer Sesji: - - - - None - Brak - - - - Audio inputs: - Wejścia audio: - - - - MIDI inputs: - Wejścia MIDI: - - - - Audio outputs: - Wyjścia audio: - - - - MIDI outputs: - Wyjścia MIDI: - - - - Take control of main application window - - - - - Workarounds - Progi - - - - Wait for external application start (Advanced, for Debug only) - - - - - Capture only the first X11 Window - - - - - Use previous client output buffer as input for the next client - - - - - Simulate 16 JACK MIDI outputs, with MIDI channel as port index - - - - - Error here - - Carla Control - Connect - + Kontrola Carla - Połącz Remote setup - + Konfiguracja zdalna @@ -3803,34 +2187,13 @@ This mode is not available for VST plugins. Remote host: - Zdalny host: + Host zdalny: TCP Port: Port TCP: - - - Reported host - - - - - Automatic - Automatycznie - - - - Custom: - Własne: - - - - In some networks (like USB connections), the remote system cannot reach the local network. You can specify here which hostname or IP to make the remote Carla connect to. -If you are unsure, leave it as 'Automatic'. - - Set value @@ -3839,12 +2202,12 @@ If you are unsure, leave it as 'Automatic'. TextLabel - + EtykietaTekstowa Scale Points - + Punkty skali @@ -3852,7 +2215,7 @@ If you are unsure, leave it as 'Automatic'. Driver Settings - Ustawienia Sterownika + Ustawienia sterownika @@ -3867,7 +2230,7 @@ If you are unsure, leave it as 'Automatic'. Sample rate: - Częstotliwość próbkowania + Częstotliwość próbkowania: @@ -3877,954 +2240,12 @@ If you are unsure, leave it as 'Automatic'. Show Driver Control Panel - + Pokaż panel sterowania sterownika Restart the engine to load the new settings - Zresetuj silnik aby załadować nowe ustawienia - - - - DualFilterControlDialog - - - - FREQ - FREQ - - - - - Cutoff frequency - Częstotliwość graniczna - - - - - RESO - RESO - - - - - Resonance - Zafalowanie charakterystyki - - - - - GAIN - WZMC - - - - - Gain - Wzmocnienie - - - - MIX - MIX - - - - Mix - Miks - - - - Filter 1 enabled - Włączono filtr 1 - - - - Filter 2 enabled - Włączono filtr 2 - - - - Enable/disable filter 1 - - - - - Enable/disable filter 2 - - - - - DualFilterControls - - - Filter 1 enabled - Włączono filtr 1 - - - - Filter 1 type - Rodzaj filtru 1 - - - - Cutoff frequency 1 - - - - - Q/Resonance 1 - Q/Rezonans 1 - - - - Gain 1 - Wzmocnienie 1 - - - - Mix - Miks - - - - Filter 2 enabled - Włączono filtr 2 - - - - Filter 2 type - Rodzaj filtru 2 - - - - Cutoff frequency 2 - - - - - Q/Resonance 2 - Q/Rezonans 2 - - - - Gain 2 - Wzmocnienie 2 - - - - - Low-pass - - - - - - Hi-pass - - - - - - Band-pass csg - - - - - - Band-pass czpg - - - - - - Notch - Pasmowozaporowy - - - - - All-pass - - - - - - Moog - Moog - - - - - 2x Low-pass - - - - - - RC Low-pass 12 dB/oct - - - - - - RC Band-pass 12 dB/oct - - - - - - RC High-pass 12 dB/oct - - - - - - RC Low-pass 24 dB/oct - - - - - - RC Band-pass 24 dB/oct - - - - - - RC High-pass 24 dB/oct - - - - - - Vocal Formant - - - - - - 2x Moog - 2x Moog - - - - - SV Low-pass - - - - - - SV Band-pass - - - - - - SV High-pass - - - - - - SV Notch - SV Zaporowy - - - - - Fast Formant - Szybki Formant - - - - - Tripole - - - - - Editor - - - Transport controls - Ustawienia źródła - - - - Play (Space) - Odtwarzaj (spacja) - - - - Stop (Space) - Zatrzymaj (spacja) - - - - Record - Nagrywaj - - - - Record while playing - Nagrywaj podczas odtwarzania - - - - Toggle Step Recording - - - - - Effect - - - Effect enabled - Efekt włączony - - - - Wet/Dry mix - Miksowanie Suchy/Mokry - - - - Gate - Bramka - - - - Decay - Zanikanie - - - - EffectChain - - - Effects enabled - Efekty włączone - - - - EffectRackView - - - EFFECTS CHAIN - ŁAŃCUCH EFEKTOWY - - - - Add effect - Dodaj efekt - - - - EffectSelectDialog - - - Add effect - Dodaj efekt - - - - - Name - Nazwa - - - - Type - Rodzaj - - - - Description - Opis - - - - Author - Autor - - - - EffectView - - - On/Off - On/Off - - - - W/D - W/D - - - - Wet Level: - Poziom 'Mokrego' (Wet): - - - - DECAY - ZANIK. - - - - Time: - Czas: - - - - GATE - BRAM. - - - - Gate: - Bramka: - - - - Controls - Ustaw - - - - Move &up - Przemieść w &górę - - - - Move &down - Przemieść w &dół - - - - &Remove this plugin - &Usuń tę wtyczkę - - - - EnvelopeAndLfoParameters - - - Env pre-delay - - - - - Env attack - - - - - Env hold - - - - - Env decay - - - - - Env sustain - - - - - Env release - - - - - Env mod amount - - - - - LFO pre-delay - - - - - LFO attack - - - - - LFO frequency - Częstotliwość LFO - - - - LFO mod amount - - - - - LFO wave shape - - - - - LFO frequency x 100 - - - - - Modulate env amount - - - - - EnvelopeAndLfoView - - - - DEL - DEL - - - - - Pre-delay: - Opóźnienie wstępne: - - - - - ATT - ATT - - - - - Attack: - Atak: - - - - HOLD - HOLD - - - - Hold: - Przetrzymanie: - - - - DEC - DEC - - - - Decay: - Zanikanie: - - - - SUST - SUST - - - - Sustain: - Podtrzymanie: - - - - REL - REL - - - - Release: - Wybrzmiewanie: - - - - - AMT - AMT - - - - - Modulation amount: - Współczynnik modulacji: - - - - SPD - SPD - - - - Frequency: - Częstotliwość: - - - - FREQ x 100 - FREQ x 100 - - - - Multiply LFO frequency by 100 - - - - - MODULATE ENV AMOUNT - - - - - Control envelope amount by this LFO - - - - - ms/LFO: - ms/LFO: - - - - Hint - Wskazówka - - - - Drag and drop a sample into this window. - - - - - EqControls - - - Input gain - Wzmocnienie wejścia - - - - Output gain - Wzmocnienie wyścia - - - - Low-shelf gain - - - - - Peak 1 gain - Wzmocnienie szczytowe 1 - - - - Peak 2 gain - Wzmocnienie szczytowe 2 - - - - Peak 3 gain - Wzmocnienie szczytowe 3 - - - - Peak 4 gain - Wzmocnienie szczytowe 4 - - - - High-shelf gain - - - - - HP res - Rez HP - - - - Low-shelf res - - - - - Peak 1 BW - Szczyt 1 pasmo - - - - Peak 2 BW - Szczyt 2 pasmo - - - - Peak 3 BW - Szczyt 3 pasmo - - - - Peak 4 BW - Szczyt 4 pasmo - - - - High-shelf res - - - - - LP res - LP rez - - - - HP freq - Częst. HP - - - - Low-shelf freq - - - - - Peak 1 freq - Szczyt 1 częst. - - - - Peak 2 freq - Szczyt 2 częst. - - - - Peak 3 freq - Szczyt 3 częst. - - - - Peak 4 freq - Szczyt 4 częst. - - - - High-shelf freq - - - - - LP freq - Częst. LP - - - - HP active - HP aktywny - - - - Low-shelf active - - - - - Peak 1 active - Szczyt 1 aktywny - - - - Peak 2 active - Szczyt 2 aktywny - - - - Peak 3 active - Szczyt 3 aktywny - - - - Peak 4 active - Szczyt 4 aktywny - - - - High-shelf active - - - - - LP active - LP aktywny - - - - LP 12 - LP 12 - - - - LP 24 - LP 24 - - - - LP 48 - LP 48 - - - - HP 12 - HP 12 - - - - HP 24 - HP 24 - - - - HP 48 - HP 48 - - - - Low-pass type - - - - - High-pass type - - - - - Analyse IN - Analizuj WEJŚCIE - - - - Analyse OUT - Analizuj WYJŚCIE - - - - EqControlsDialog - - - HP - HP - - - - Low-shelf - - - - - Peak 1 - Szczyt 1 - - - - Peak 2 - Szczyt 2 - - - - Peak 3 - Szczyt 3 - - - - Peak 4 - Szczyt 4 - - - - High-shelf - - - - - LP - LP - - - - Input gain - Wzmocnienie wejścia - - - - - - Gain - Wzmocnienie - - - - Output gain - Wzmocnienie wyścia - - - - Bandwidth: - Pasmo: - - - - Octave - Oktawa - - - - Resonance : - Rezonans: - - - - Frequency: - Częstotliwość: - - - - LP group - - - - - HP group - - - - - EqHandle - - - Reso: - Rezo: - - - - BW: - Pasmo: - - - - - Freq: - Częst: + Uruchom ponownie silnik, aby załadować nowe ustawienia @@ -4837,22 +2258,22 @@ If you are unsure, leave it as 'Automatic'. Export as loop (remove extra bar) - + Eksportuj jako pętlę (usuń dodatkowy takt) Export between loop markers - Eksportuj pomiędzy znacznikami pętli + Eksportuj między znacznikami pętli Render Looped Section: - + Renderuj zapętloną sekcję: time(s) - + raz(y) @@ -4912,7 +2333,7 @@ If you are unsure, leave it as 'Automatic'. 32 Bit float - 32 Bit float + 32-bitowy float @@ -4942,7 +2363,7 @@ If you are unsure, leave it as 'Automatic'. Bitrate: - Przepływność: + Bitrate: @@ -4977,7 +2398,7 @@ If you are unsure, leave it as 'Automatic'. Use variable bitrate - Użyj zmiennej przepływności + Użyj zmiennego bitrate’u @@ -5010,3072 +2431,662 @@ If you are unsure, leave it as 'Automatic'. Sinc najlepsza (najwolniejsza) - - Oversampling: - Nadpróbkowanie: - - - - 1x (None) - 1x (Brak) - - - - 2x - 2x - - - - 4x - 4x - - - - 8x - 8x - - - + Start - Rozpocznij + Uruchom - + Cancel Anuluj - - - Could not open file - Nie można otworzyć pliku - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Nie udało się otworzyć pliku %1 do zapisu. -Upewnij się, że masz uprawnienia do zapisu do pliku i katalogu zawierającego plik i spróbuj ponownie! - - - - Export project to %1 - Eksportuj projekt do %11 - - - - ( Fastest - biggest ) - ( Najszybsze - największe ) - - - - ( Slowest - smallest ) - ( Najwolniejsze - najmniejsze ) - - - - Error - Błąd - - - - Error while determining file-encoder device. Please try to choose a different output format. - Wystąpił błąd podczas określania urządzenia do kodowania plików. Spróbuj wybrać inny format wyjściowy. - - - - Rendering: %1% - Renderowanie: %1% - - - - Fader - - - Set value - Ustaw wartość - - - - Please enter a new value between %1 and %2: - Wprowadź nową wartość pomiędzy %1 a %2: - - - - FileBrowser - - - User content - - - - - Factory content - - - - - Browser - Przeglądarka - - - - Search - Szukaj - - - - Refresh list - Odśwież listę - - - - FileBrowserTreeWidget - - - Send to active instrument-track - Wyślij do aktywnej ścieżki instrumentu - - - - Open containing folder - - - - - Song Editor - Pokaż/ukryj Edytor Kompozycji - - - - BB Editor - Edytor BB - - - - Send to new AudioFileProcessor instance - - - - - Send to new instrument track - - - - - (%2Enter) - (%2Enter) - - - - Send to new sample track (Shift + Enter) - - - - - Loading sample - Ładowanie sampla - - - - Please wait, loading sample for preview... - Proszę czekać, ładowanie próbki do podglądu. - - - - Error - BłądBłą - - - - %1 does not appear to be a valid %2 file - - - - - --- Factory files --- - --- Pliki fabryczne --- - - - - FlangerControls - - - Delay samples - - - - - LFO frequency - Częstotliwość LFO - - - - Seconds - Sekundy - - - - Stereo phase - - - - - Regen - - - - - Noise - Szum - - - - Invert - Odwróć - - - - FlangerControlsDialog - - - DELAY - OPÓŹN - - - - Delay time: - Czas opóźnienia: - - - - RATE - TEMPO - - - - Period: - Odstętp: - - - - AMNT - ILOŚĆ - - - - Amount: - Ilość: - - - - PHASE - FAZA - - - - Phase: - Faza: - - - - FDBK - REAK - - - - Feedback amount: - - - - - NOISE - SZUM - - - - White noise amount: - Ilość białego szumu: - - - - Invert - OdwróćOd - - - - FreeBoyInstrument - - - Sweep time - Okres wobulacji - - - - Sweep direction - Kierunek wobulacji - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle - - - - - Channel 1 volume - Głośność kanału 1 - - - - - - Volume sweep direction - Kierunek wobulacji głośności - - - - - - Length of each step in sweep - Długość każdego kroku wobulacji - - - - Channel 2 volume - Głośność kanału 2 - - - - Channel 3 volume - Głośność kanału 3 - - - - Channel 4 volume - Głośność kanału 4 - - - - Shift Register width - Szerokość rejestru przesuwnego - - - - Right output level - Poziom prawego wyjścia - - - - Left output level - Poziom lewego wyjścia - - - - Channel 1 to SO2 (Left) - Kanał 1 do SO2 (lewy) - - - - Channel 2 to SO2 (Left) - Kanał 2 do SO2 (lewy) - - - - Channel 3 to SO2 (Left) - Kanał 3 do SO2 (lewy) - - - - Channel 4 to SO2 (Left) - Kanał 4 do SO2 (lewy) - - - - Channel 1 to SO1 (Right) - Kanał 1 do SO1 (prawy) - - - - Channel 2 to SO1 (Right) - Kanał 2 do SO1 (prawy) - - - - Channel 3 to SO1 (Right) - Kanał 3 do SO1 (prawy) - - - - Channel 4 to SO1 (Right) - Kanał 4 do SO1 (prawy) - - - - Treble - Soprany - - - - Bass - Basy - - - - FreeBoyInstrumentView - - - Sweep time: - Okres wobulacji: - - - - Sweep time - Okres wobulacji - - - - Sweep rate shift amount: - - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle: - - - - - - Wave pattern duty cycle - - - - - Square channel 1 volume: - - - - - Square channel 1 volume - - - - - - - Length of each step in sweep: - Długość każdego kroku wobulacji: - - - - - - Length of each step in sweep - Długość każdego kroku wobulacji - - - - Square channel 2 volume: - - - - - Square channel 2 volume - - - - - Wave pattern channel volume: - - - - - Wave pattern channel volume - - - - - Noise channel volume: - - - - - Noise channel volume - - - - - SO1 volume (Right): - Głośność SO1 (Prawy): - - - - SO1 volume (Right) - Głośność SO1 (Prawy) - - - - SO2 volume (Left): - Głośność SO2 (Lewy): - - - - SO2 volume (Left) - Głośność SO2 (Lewy): - - - - Treble: - Soprany: - - - - Treble - Soprany - - - - Bass: - Basy: - - - - Bass - Basy - - - - Sweep direction - Kierunek wobulacji - - - - - - - - Volume sweep direction - Kierunek wobulacji głośności - - - - Shift register width - - - - - Channel 1 to SO1 (Right) - Kanał 1 do SO1 (prawy) - - - - Channel 2 to SO1 (Right) - Kanał 2 do SO1 (prawy) - - - - Channel 3 to SO1 (Right) - Kanał 3 do SO1 (prawy) - - - - Channel 4 to SO1 (Right) - Kanał 4 do SO1 (prawy) - - - - Channel 1 to SO2 (Left) - Kanał 1 do SO2 (lewy) - - - - Channel 2 to SO2 (Left) - Kanał 2 do SO2 (lewy) - - - - Channel 3 to SO2 (Left) - Kanał 3 do SO2 (lewy) - - - - Channel 4 to SO2 (Left) - Kanał 4 do SO2 (lewy) - - - - Wave pattern graph - - - - - MixerChannelView - - - Channel send amount - Ilość wysyłania kanału - - - - Move &left - Przesuń w &lewo - - - - Move &right - Przesuń w p&rawo - - - - Rename &channel - Zmień nazwę &kanału - - - - R&emove channel - Usuń k&anał - - - - Remove &unused channels - &Usuń nieużywane kanały - - - - Set channel color - Ustaw kolor kanału - - - - Remove channel color - Usuń kolor kanału - - - - Pick random channel color - Ustaw losowy kolor kanału - - - - MixerChannelLcdSpinBox - - - Assign to: - Przypisz do: - - - - New mixer Channel - Nowy kanał efektów - - - - Mixer - - - Master - Master - - - - - - Channel %1 - FX %1 - - - - Volume - Głośność - - - - Mute - Wycisz - - - - Solo - Solo - - - - MixerView - - - Mixer - Mixer - - - - Fader %1 - Fader FX %1 - - - - Mute - Wycisz - - - - Mute this mixer channel - Wycisz ten kanał FX - - - - Solo - Solo - - - - Solo mixer channel - Kanał FX solo - - - - MixerRoute - - - - Amount to send from channel %1 to channel %2 - Ilość do wysyłania z kanału %1 do kanału %2 - - - - GigInstrument - - - Bank - Bank - - - - Patch - Próbka - - - - Gain - Wzmocnienie - - - - GigInstrumentView - - - - Open GIG file - Otwórz plik GIG - - - - Choose patch - Wybierz próbkę - - - - Gain: - Wzmocnienie: - - - - GIG Files (*.gig) - Pliki GIG (*.gig) - - - - GuiApplication - - - Working directory - Katalog roboczy - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - Katalog roboczy LMMS %1 nie istnieje. Czy chcesz go utworzyć? Możesz zmienić katalog później w ustawieniach. - - - - Preparing UI - Przygotowywanie interfejsu - - - - Preparing song editor - Przygotowywanie edytora utworu - - - - Preparing mixer - Przygotowywanie miksera - - - - Preparing controller rack - Przygotowanie rack'a kontrolerów - - - - Preparing project notes - Przygotowanie notatki projektu - - - - Preparing beat/bassline editor - Przygotowanie edytora perkusji/basu - - - - Preparing piano roll - Przygotowanie edytora pianolowego - - - - Preparing automation editor - Przygotowanie edytora automatyki - - - - InstrumentFunctionArpeggio - - - Arpeggio - Arpeggio - - - - Arpeggio type - Rodzaj arpeggio - - - - Arpeggio range - Zakres arpeggio - - - - Note repeats - - - - - Cycle steps - Kroki cyklu - - - - Skip rate - Częstotliwość pominięcia - - - - Miss rate - Częstotliwość opuszczania - - - - Arpeggio time - Okres arpeggio - - - - Arpeggio gate - Bramkowanie arpeggio - - - - Arpeggio direction - Kierunek arpeggio - - - - Arpeggio mode - Tryb arpeggio - - - - Up - W górę - - - - Down - W dół - - - - Up and down - W górę i w dół - - - - Down and up - W dół i w górę - - - - Random - Losowo - - - - Free - Dowolnie - - - - Sort - Posortowany - - - - Sync - Synchronizacja - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - ARPEGGIO - - - - RANGE - ZAKRES - - - - Arpeggio range: - Zakres arpeggio: - - - - octave(s) - oktawa(y) - - - - REP - - - - - Note repeats: - - - - - time(s) - raz(y) - - - - CYCLE - CYKL - - - - Cycle notes: - Nuty cyklu: - - - - note(s) - nuta(y) - - - - SKIP - POMIŃ - - - - Skip rate: - Częstotliwość pominięcia: - - - - - - % - % - - - - MISS - OPUŚĆ - - - - Miss rate: - Częstotliwość opuszczania: - - - - TIME - OKRES - - - - Arpeggio time: - Okres arpeggio: - - - - ms - ms - - - - GATE - BRAM. - - - - Arpeggio gate: - Bramkowanie arpeggio: - - - - Chord: - Akord: - - - - Direction: - Kierunek: - - - - Mode: - Tryb: - InstrumentFunctionNoteStacking - + octave oktawa - - + + Major Major - + Majb5 Majb5 - + minor minor - + minb5 minb5 - + sus2 sus2 - + sus4 sus4 - + aug aug - + augsus4 augsus4 - + tri tri - + 6 6 - + 6sus4 6sus4 - + 6add9 6add9 - + m6 m6 - + m6add9 m6add9 - + 7 7 - + 7sus4 7sus4 - + 7#5 7#5 - + 7b5 7b5 - + 7#9 7#9 - + 7b9 7b9 - + 7#5#9 7#5#9 - + 7#5b9 7#5b9 - + 7b5b9 7b5b9 - + 7add11 7add11 - + 7add13 7add13 - + 7#11 7#11 - + Maj7 Maj7 - + Maj7b5 Maj7b5 - + Maj7#5 Maj7#5 - + Maj7#11 Maj7#11 - + Maj7add13 Maj7add13 - + m7 m7 - + m7b5 m7b5 - + m7b9 m7b9 - + m7add11 m7add11 - + m7add13 m7add13 - + m-Maj7 m-Maj7 - + m-Maj7add11 m-Maj7add11 - + m-Maj7add13 m-Maj7add13 - + 9 9 - + 9sus4 9sus4 - + add9 add9 - + 9#5 9#5 - + 9b5 9b5 - + 9#11 9#11 - + 9b13 9b13 - + Maj9 Maj9 - + Maj9sus4 Maj9sus4 - + Maj9#5 Maj9#5 - + Maj9#11 Maj9#11 - + m9 m9 - + madd9 madd9 - + m9b5 m9b5 - + m9-Maj7 m9-Maj7 - + 11 11 - + 11b9 11b9 - + Maj11 Maj11 - + m11 m11 - + m-Maj11 m-Maj11 - + 13 13 - + 13#9 13#9 - + 13b9 13b9 - + 13b5b9 13b5b9 - + Maj13 Maj13 - + m13 m13 - + m-Maj13 m-Maj13 - + Harmonic minor - Minorowy harmoniczny + Molowa harmoniczna - + Melodic minor - Minorowy melodyjny + Molowa melodyczna - + Whole tone - Cały ton + Całotonowa - + Diminished - Zmniejszony + Zmniejszona - + Major pentatonic - Majorowy pentatoniczny + Pentatonika durowa - + Minor pentatonic - Minorowy pentatoniczny + Pentatonika molowa - + Jap in sen Jap in sen - - - Major bebop - Majorowy bebop - - - - Dominant bebop - Dominujący bebop - - - - Blues - Blues - - - - Arabic - Arabski - - - - Enigmatic - Enigmatyczny - - - - Neopolitan - Neopolitański - - - - Neopolitan minor - Minorowy neapolitański - - Hungarian minor - Minorowy węgierski + Major bebop + Bebopowa durowa - Dorian - Dorycki + Dominant bebop + Bebopowa dominantowa - Phrygian - Frygijski + Blues + Bluesowa - Lydian - Lidyjski + Arabic + Arabska - Mixolydian - Miksolidyjski + Enigmatic + Enigmatyczna - Aeolian - Eolski + Neopolitan + Neopolitańska - Locrian - Lokrycki + Neopolitan minor + Neapolitańska molowa - Minor - Minor + Hungarian minor + Węgierska molowa - Chromatic - Chromatyczny + Dorian + Dorycka - Half-Whole Diminished - Półton-Cały ton Zmniejszony + Phrygian + Frygijska + + + + Lydian + Lidyjska + Mixolydian + Miksolidyjska + + + + Aeolian + Eolska + + + + Locrian + Lokrycka + + + + Minor + Molowa + + + + Chromatic + Chromatyczna + + + + Half-Whole Diminished + Półton-cały ton zmniejszona + + + 5 5 - + Phrygian dominant - Frygijski dominujący + Frygijska dominantowa - + Persian - Perski - - - - Chords - Akordy - - - - Chord type - Typ akordu - - - - Chord range - Zakres akordu - - - - InstrumentFunctionNoteStackingView - - - STACKING - UKŁADANIE - - - - Chord: - Akord: - - - - RANGE - ZAKRES - - - - Chord range: - Zakres akordu: - - - - octave(s) - oktawa(y) - - - - InstrumentMidiIOView - - - ENABLE MIDI INPUT - WŁĄCZ WEJŚCIE MIDI - - - - ENABLE MIDI OUTPUT - WŁĄCZ WYJŚCIE MIDI - - - - - CHAN - This string must be be short, its width must be less than * width of LCD spin-box of two digits - CHAN - - - - - VELOC - This string must be be short, its width must be less than * width of LCD spin-box of three digits - VELOC - - - - PROG - This string must be be short, its width must be less than the * width of LCD spin-box of three digits - PROG - - - - NOTE - This string must be be short, its width must be less than * width of LCD spin-box of three digits - NUTA - - - - MIDI devices to receive MIDI events from - Urządzenia MIDI odbierające zdarzenia z - - - - MIDI devices to send MIDI events to - Urządzenia MIDI wysyłające zdarzenia do - - - - CUSTOM BASE VELOCITY - NIESTANDARDOWA GŁOŚNOŚĆ PODSTAWY - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. - Określ podstawę normalizacyjną głośności dla instrumentów opartych na MIDI z prędkością zapisu 100%. - - - - BASE VELOCITY - GŁOŚNOŚĆ PODSTAWY - - - - InstrumentTuningView - - - MASTER PITCH - ODSTROJENIE GŁÓWNE - - - - Enables the use of master pitch - + Perska InstrumentSoundShaping - + VOLUME GŁOŚNOŚĆ - + Volume Głośność - + CUTOFF - CUTOFF + ODETNIJ - - + Cutoff frequency Częstotliwość graniczna - + RESO - RESO + REZO - + Resonance - Zafalowanie charakterystyki - - - - Envelopes/LFOs - Obwiednie/Oscylatory LFO - - - - Filter type - Rodzaj filtru - - - - Q/Resonance - Dobroć/Zafalowanie charakterystyki - - - - Low-pass - - - - - Hi-pass - - - - - Band-pass csg - - - - - Band-pass czpg - - - - - Notch - Pasmowozaporowy - - - - All-pass - - - - - Moog - Moog - - - - 2x Low-pass - - - - - RC Low-pass 12 dB/oct - - - - - RC Band-pass 12 dB/oct - - - - - RC High-pass 12 dB/oct - - - - - RC Low-pass 24 dB/oct - - - - - RC Band-pass 24 dB/oct - - - - - RC High-pass 24 dB/oct - - - - - Vocal Formant - - - - - 2x Moog - 2x Moog - - - - SV Low-pass - - - - - SV Band-pass - - - - - SV High-pass - - - - - SV Notch - SV Zaporowy - - - - Fast Formant - Szybki Formant - - - - Tripole - + Rezonans - InstrumentSoundShapingView + JackAppDialog - - TARGET - TARGET + + Add JACK Application + Dodaj aplikację JACK - - FILTER - FILTR + + Note: Features not implemented yet are greyed out + Uwaga: Funkcje, które nie zostały jeszcze zaimplementowane, są wyszarzone - - FREQ - FREQ + + Application + Aplikacja - - Cutoff frequency: - Częstotliwość graniczna: + + Name: + Nazwa: - - Hz - Hz + + Application: + Aplikacja: - - Q/RESO + + From template + Z szablonu + + + + Custom + Niestandardowy + + + + Template: + Szablon: + + + + Command: + Polecenie: + + + + Setup + Konfiguracja + + + + Session Manager: + Menedżer sesji: + + + + None + Brak + + + + Audio inputs: + Wejścia dźwięku: + + + + MIDI inputs: + Wejścia MIDI: + + + + Audio outputs: + Wyjścia dźwięku: + + + + MIDI outputs: + Wyjścia MIDI: + + + + Take control of main application window + Przejmij kontrolę nad głównym oknem aplikacji + + + + Workarounds + Progi + + + + Wait for external application start (Advanced, for Debug only) + Poczekaj na uruchomienie aplikacji zewnętrznej (zaawansowane, tylko do debugowania) + + + + Capture only the first X11 Window + Przechwyć tylko pierwsze X11 Window + + + + Use previous client output buffer as input for the next client + Użyj poprzedniego bufora wyjściowego klienta jako danych wejściowych dla następnego klienta + + + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index - - Q/Resonance: - + + Error here + Błąd tutaj - - Envelopes, LFOs and filters are not supported by the current instrument. - Obwiednie, LFO oraz filtry nie są wspierane przez ten instrument. - - - - InstrumentTrack - - - - unnamed_track - nienazwana ścieżka - - - - Base note - Nuta bazowa - - - - First note - Pierwsza nuta - - - - Last note - Ostatnia nuta - - - - Volume - Głośność - - - - Panning - Panoramowanie - - - - Pitch - Odstrojenie - - - - Pitch range - Zakres odstrojenia - - - - Mixer channel - Kanał FX - - - - Master pitch - Odstrojenie główne - - - - Enable/Disable MIDI CC - - - - - CC Controller %1 - - - - - - Default preset - Ustawienia domyślne - - - - InstrumentTrackView - - - Volume - Głośność - - - - Volume: - Głośność: - - - - VOL - VOL - - - - Panning - Panoramowanie - - - - Panning: - Panoramowanie: - - - - PAN - PAN - - - - MIDI - MIDI - - - - Input - Wejście - - - - Output - Wyjście - - - - Open/Close MIDI CC Rack - - - - - Channel %1: %2 - FX %1: %2 - - - - InstrumentTrackWindow - - - GENERAL SETTINGS - GŁÓWNE USTAWIENIA - - - - Volume - Głośność - - - - Volume: - Głośność: - - - - VOL - VOL - - - - Panning - Panoramowanie - - - - Panning: - Panoramowanie: - - - - PAN - PAN - - - - Pitch - Odstrojenie - - - - Pitch: - Odstrojenie: - - - - cents - cent(y) - - - - PITCH - PITCH - - - - Pitch range (semitones) - Zakres odstrojenia (półtony) - - - - RANGE - ZAKRES - - - - Mixer channel - Kanał FX - - - - CHANNEL - FX - - - - Save current instrument track settings in a preset file - Zapisz bieżące ustawienia ścieżki jako preset - - - - SAVE - ZAPISZ - - - - Envelope, filter & LFO - - - - - Chord stacking & arpeggio - - - - - Effects - Efekty - - - - MIDI - MIDI - - - - Miscellaneous - Różne - - - - Save preset - Zachowaj ustawienia - - - - XML preset file (*.xpf) - Plik XML presetu (*.xpf) - - - - Plugin - Wtyczka - - - - JackApplicationW - - + NSM applications cannot use abstract or absolute paths - + Aplikacje NSM nie mogą używać ścieżek abstrakcyjnych ani bezwzględnych - + NSM applications cannot use CLI arguments - + Aplikacje NSM nie mogą używać argumentów CLI - + You need to save the current Carla project before NSM can be used - + Musisz zapisać bieżący projekt Carla, zanim użyjesz NSM JuceAboutW - - About JUCE - O JUCE - - - - <b>About JUCE</b> - <b>O JUCE</b> - - - - This program uses JUCE version 3.x.x. - Ten program używa JUCE w wersji 3.x.x. - - - - JUCE (Jules' Utility Class Extensions) is an all-encompassing C++ class library for developing cross-platform software. - -It contains pretty much everything you're likely to need to create most applications, and is particularly well-suited for building highly-customised GUIs, and for handling graphics and sound. - -JUCE is licensed under the GNU Public Licence version 2.0. -One module (juce_core) is permissively licensed under the ISC. - -Copyright (C) 2017 ROLI Ltd. - - - - + This program uses JUCE version %1. - - - - - Knob - - - Set linear - Ustaw linearnie - - - - Set logarithmic - Ustaw logarytmicznie - - - - - Set value - Ustaw wartość - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - Wprowadź nową wartość pomiędzy -96.0 dBFS a 6.0 dBFS: - - - - Please enter a new value between %1 and %2: - Wprowadź nową wartość pomiędzy %1 a %2: - - - - LadspaControl - - - Link channels - Połącz kanały - - - - LadspaControlDialog - - - Link Channels - Połącz kanały - - - - Channel - Kanał - - - - LadspaControlView - - - Link channels - Połącz kanały - - - - Value: - Wartość: - - - - LadspaEffect - - - Unknown LADSPA plugin %1 requested. - Nieznana wtyczka LADSPA %1 żądanie. - - - - LcdFloatSpinBox - - - Set value - Ustaw wartość - - - - Please enter a new value between %1 and %2: - Wprowadź nową wartość pomiędzy %1 a %2: - - - - LcdSpinBox - - - Set value - Ustaw wartość - - - - Please enter a new value between %1 and %2: - Wprowadź nową wartość pomiędzy %1 a %2: - - - - LeftRightNav - - - - - Previous - Poprzedni - - - - - - Next - Następny - - - - Previous (%1) - Poprzedni (%1) - - - - Next (%1) - Następny (%1) - - - - LfoController - - - LFO Controller - Kontroler LFO - - - - Base value - Wartość bazowa - - - - Oscillator speed - Prędkość oscylatora - - - - Oscillator amount - Współczynnik oscylatora - - - - Oscillator phase - Faza oscylatora - - - - Oscillator waveform - Kształt fali oscylatora - - - - Frequency Multiplier - Mnożnik częstotliwości - - - - LfoControllerDialog - - - LFO - LFO - - - - BASE - BASE - - - - Base: - - - - - FREQ - FREQ - - - - LFO frequency: - Częstotliwość LFO: - - - - AMNT - ILOŚĆ - - - - Modulation amount: - Współczynnik modulacji: - - - - PHS - PHS - - - - Phase offset: - Przesunięcie fazowe: - - - - degrees - stopni(e) - - - - Sine wave - Fala sinusoidalna - - - - Triangle wave - Fala trójkątna - - - - Saw wave - Fala piłokształtna - - - - Square wave - Fala prostokątna - - - - Moog saw wave - Fala piłokształtna Mooga - - - - Exponential wave - Fala wykładnicza - - - - White noise - Biały szum - - - - User-defined shape. -Double click to pick a file. - - - - - Mutliply modulation frequency by 1 - - - - - Mutliply modulation frequency by 100 - - - - - Divide modulation frequency by 100 - - - - - Engine - - - Generating wavetables - Generowanie tabel próbek dźwiękowych - - - - Initializing data structures - Inicjalizacja struktur danych - - - - Opening audio and midi devices - Otwieranie urządzeń audio i midi - - - - Launching mixer threads - Uruchamianie wątków miksera - - - - MainWindow - - - Configuration file - Plik konfiguracyjny - - - - Error while parsing configuration file at line %1:%2: %3 - Błąd podczas parsowania pliku konfiguracyjnego w linii %1:%2: %3 - - - - Could not open file - Nie można otworzyć pliku - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Nie udało się otworzyć pliku %1 do zapisu. -Upewnij się, że masz uprawnienia do zapisu do pliku i katalogu zawierającego plik i spróbuj ponownie! - - - - Project recovery - Odzyskiwanie projektu - - - - There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - Plik odzyskiwania jest obecny. Wygląda na to, że ostatnia sesja nie została zakończona poprawnie lub inne okno LMMS już działa. Czy chcesz odzyskać projekt dla tej sesji? - - - - - Recover - Odzyskaj - - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - Odzyskaj plik. Podczas tego nie uruchamiaj wielu okien LMMS. - - - - - Discard - Odrzuć - - - - Launch a default session and delete the restored files. This is not reversible. - Uruchom domyślną sesję oraz usuń odzyskiwane pliki. Tego nie można cofnąć. - - - - Version %1 - Wersja %1 - - - - Preparing plugin browser - Przygotowanie wyszukiwarki wtyczek - - - - Preparing file browsers - Przygotowanie wyszukiwarki plików - - - - My Projects - Moje projekty - - - - My Samples - Moje próbki - - - - My Presets - Moje presety - - - - My Home - Mój katalog domowy - - - - Root directory - Katalog główny - - - - Volumes - Głośność - - - - My Computer - Mój komputer - - - - &File - &Plik - - - - &New - &Nowy - - - - &Open... - &Otwórz... - - - - Loading background picture - - - - - &Save - &Zapisz - - - - Save &As... - Zapisz &Jako... - - - - Save as New &Version - Zapisz jako Nową &Wersję - - - - Save as default template - Zapisz jako domyślny szablon - - - - Import... - Import... - - - - E&xport... - Eksport [&X]... - - - - E&xport Tracks... - Eksportuj Ścieżki... - - - - Export &MIDI... - Eksportuj &MIDI… - - - - &Quit - Zakończ [&Q] - - - - &Edit - &Edycja - - - - Undo - Cofnij - - - - Redo - Ponów - - - - Settings - Ustawienia - - - - &View - &Podgląd - - - - &Tools - &Narzędzia - - - - &Help - &Pomoc - - - - Online Help - Pomoc Online - - - - Help - Pomoc - - - - About - O LMMS - - - - Create new project - Stwórz nowy projekt - - - - Create new project from template - Stwórz nowy projekt jako szablon - - - - Open existing project - Otwórz istniejący projekt - - - - Recently opened projects - Ostatnio otwierane projekty - - - - Save current project - Zapisz bieżący projekt - - - - Export current project - Eksportuj bieżący projekt - - - - Metronome - Metronom - - - - - Song Editor - Pokaż/ukryj Edytor Kompozycji - - - - - Beat+Bassline Editor - Pokaż/ukryj Edytor Perkusji i Basu - - - - - Piano Roll - Pokaż/ukryj Edytor Pianolowy - - - - - Automation Editor - Pokaż/ukryj Edytor Automatyki - - - - - Mixer - Pokaż/ukryj Mikser Efektów - - - - Show/hide controller rack - Pokaż/ukryj rack kontrolerów - - - - Show/hide project notes - Pokaż/ukryj notatki do projektu - - - - Untitled - Nienazwane - - - - Recover session. Please save your work! - Odzyskana sesja. Zapisz swoją pracę! - - - - LMMS %1 - LMMS %1 - - - - Recovered project not saved - Odzyskany projekt nie zapisany - - - - This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? - Ten projekt został odzyskany z poprzedniej sesji. Jest obecnie niezapisany i zostanie utracony, jeżeli go nie zapiszesz. Czy chcesz teraz zapisać? - - - - Project not saved - Projekt nie zapisany - - - - The current project was modified since last saving. Do you want to save it now? - Bieżący projekt został zmodyfikowany od ostatniego zapisu. Czy chcesz go zapisać teraz? - - - - Open Project - Otwórz Projekt - - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - - Save Project - Zapisz Projekt - - - - LMMS Project - Projekt LMMS - - - - LMMS Project Template - Szablon projektu LMMS - - - - Save project template - Zapisz szablon projektu - - - - Overwrite default template? - Czy zastąpić domyślny szablon? - - - - This will overwrite your current default template. - Spowoduje to zastąpienie bieżącego domyślnego szablonu. - - - - Help not available - Pomoc niedostępna - - - - Currently there's no help available in LMMS. -Please visit http://lmms.sf.net/wiki for documentation on LMMS. - Aktualnie pomoc dla LMMS jest niedostępna. -Odwiedź witrynę http://lmms.sf.net/wiki for documentation on LMMS. - - - - Controller Rack - Pokaż/ukryj rack kontrolerów - - - - Project Notes - Pokaż/ukryj notatki projektu - - - - Fullscreen - Pełny ekran - - - - Volume as dBFS - Głośność jako dBFS - - - - Smooth scroll - Płynne przewijanie - - - - Enable note labels in piano roll - Włącz etykiety nut w edytorze pianolowym. - - - - MIDI File (*.mid) - Plik MIDI (*.mid) - - - - - untitled - bez tytułu - - - - - Select file for project-export... - Wybierz plik do wyeksportowania projektu… - - - - Select directory for writing exported tracks... - Wybierz katalog zapisu eksportowanych utworów… - - - - Save project - Zapisz projekt - - - - Project saved - Zapisano projekt - - - - The project %1 is now saved. - Projekt %1 został zapisany. - - - - Project NOT saved. - Nie zapisano projektu. - - - - The project %1 was not saved! - Projekt %1 nie został zapisany! - - - - Import file - Importuj plik - - - - MIDI sequences - Sekwencje MIDI - - - - Hydrogen projects - Projekty Hydrogen - - - - All file types - Wszystkie rodzaje plików - - - - MeterDialog - - - - Meter Numerator - Numerator Metryczny - - - - Meter numerator - - - - - - Meter Denominator - Denominator Metryczny - - - - Meter denominator - - - - - TIME SIG - METRUM - - - - MeterModel - - - Numerator - Numerator - - - - Denominator - Denominator - - - - MidiCCRackView - - - - MIDI CC Rack - %1 - - - - - MIDI CC Knobs: - - - - - CC %1 - - - - - MidiController - - - MIDI Controller - Kontroler MIDI - - - - unnamed_midi_controller - kontroler midi bez nazwy - - - - MidiImport - - - - Setup incomplete - Konfiguracja niekompletna - - - - You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. - Nie masz skonfigurowanego domyślnego soundfonta w oknie dialogowym (Edycja->Ustawienia). Będzie to skutkować brakiem dźwięku po zaimportowaniu pliku MIDI. Powinieneś pobrać soundfonty General MIDI, dokonać zmiany ustawień i spróbować ponownie. - - - - You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - Tego LMMS nie skompilowano ze wsparciem odtwarzacza SoundFont2, który jest wykorzystywany do dodawania domyślnych dźwięków do zaimportowanych plików MIDI. Wskutek tego po zaimportowaniu pliku MIDI nie usłyszysz żadnego dźwięku. - - - - MIDI Time Signature Numerator - - - - - MIDI Time Signature Denominator - - - - - Numerator - Numerator - - - - Denominator - Denominator - - - - Track - Scieżka - - - - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - Serwer JACK wyłączony - - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - Wygląda na to, że serwer JACK jest wyłączony. + Ten program używa JUCE w wersji %1. @@ -8083,24 +3094,24 @@ Odwiedź witrynę http://lmms.sf.net/wiki for documentation on LMMS. MIDI Pattern - + Szablon MIDI Time Signature: - + Oznaczenie metryczne: 1/4 - + 1/4 2/4 - + 2/4 @@ -8110,12 +3121,12 @@ Odwiedź witrynę http://lmms.sf.net/wiki for documentation on LMMS. 4/4 - + 4/4 5/4 - + 5/4 @@ -8125,14 +3136,14 @@ Odwiedź witrynę http://lmms.sf.net/wiki for documentation on LMMS. Measures: - Pomiary: + Takty: 1 - + 1 @@ -8142,12 +3153,12 @@ Odwiedź witrynę http://lmms.sf.net/wiki for documentation on LMMS. 3 - + 3 4 - + 4 @@ -8167,7 +3178,7 @@ Odwiedź witrynę http://lmms.sf.net/wiki for documentation on LMMS. 8 - + 8 @@ -8177,7 +3188,7 @@ Odwiedź witrynę http://lmms.sf.net/wiki for documentation on LMMS. 10 - + 10 @@ -8187,7 +3198,7 @@ Odwiedź witrynę http://lmms.sf.net/wiki for documentation on LMMS. 12 - + 12 @@ -8197,75 +3208,75 @@ Odwiedź witrynę http://lmms.sf.net/wiki for documentation on LMMS. 14 - + 14 15 - + 15 16 - + 16 Default Length: - + Długość domyślna: 1/16 - + 1/16 1/15 - + 1/15 1/12 - + 1/12 1/9 - + 1/9 1/8 - + 1/8 1/6 - + 1/6 1/3 - + 1/3 1/2 - + 1/2 Quantize: - + Kwantyzuj: @@ -8280,944 +3291,11828 @@ Odwiedź witrynę http://lmms.sf.net/wiki for documentation on LMMS. &Quit - Zakończ [&Q] + Za&kończ - - &Insert Mode - + + Esc + Esc - F - + &Insert Mode + Tryb wstaw&iania - - &Velocity Mode - + + F + F - D - + &Velocity Mode + &Tryb głośności - - Select All - + + D + D + Select All + Zaznacz wszystkie + + + A + A + + + + PatchesDialog + + + + Qsynth: Channel Preset + Qsynth: preset kanału + + + + + Bank selector + Selektor banku + + + + + Bank + Bank + + + + + Program selector + Selektor programu + + + + + Patch + Próbka + + + + + Name + Nazwa + + + + + OK + OK + + + + + Cancel + Anuluj + + + + PluginBrowser + + + no description + brak opisu + + + + A native amplifier plugin + Natywna wtyczka wzmacniacza + + + + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track + Prosty sampler z licznymi ustawieniami dla próbek (np. perkusji) w ścieżce instrumentu + + + + Boost your bass the fast and simple way + Łatwo i szybko podbij bas + + + + Customizable wavetable synthesizer + Konfigurowalny syntezator tablicowy + + + + An oversampling bitcrusher + Nadpróbkowanie bitcrusher + + + + Carla Patchbay Instrument + Instrument Carla Patchbay + + + + Carla Rack Instrument + Instrument Carla Rack + + + + A dynamic range compressor. + Kompresor o dynamicznym zakresie + + + + A 4-band Crossover Equalizer + 4-zakresowy korektor krzyżowy + + + + A native delay plugin + Natywna wtyczka opóźnienia + + + + A Dual filter plugin + Wtyczka podwójnego filtra + + + + plugin for processing dynamics in a flexible way + Wtyczka do przetwarzania dynamiki w elastyczny sposób + + + + A native eq plugin + Natywna wtyczka korektora graficznego + + + + A native flanger plugin + Natywna wtyczka flangera + + + + Emulation of GameBoy (TM) APU + Emulator układu APU GameBoy’a (TM) + + + + Player for GIG files + Odtwarzacz plików GIG + + + + Filter for importing Hydrogen files into LMMS + Filtr importujący pliki Hydrogen do LMMS + + + + Versatile drum synthesizer + Wszechstronny syntezator perkusyjny + + + + List installed LADSPA plugins + Pokaż zainstalowane wtyczki LADSPA + + + + plugin for using arbitrary LADSPA-effects inside LMMS. + Wtyczka umożliwiająca załadowanie dowolnego efektu LADSPA wewnątrz LMMS + + + + Incomplete monophonic imitation TB-303 + Niezupełna monofoniczna emulacja syntezatora TB-303 + + + + plugin for using arbitrary LV2-effects inside LMMS. + Wtyczka pozwalająca na korzystanie z efektów LV2 w LMMS + + + + plugin for using arbitrary LV2 instruments inside LMMS. + Wtyczka pozwalająca na korzystanie z instrumentów LV2 w LMMS + + + + Filter for exporting MIDI-files from LMMS + Filtr do eksportowania plików MIDI z LMMS + + + + Filter for importing MIDI-files into LMMS + Filtr do importowania plików MIDI do LMMS + + + + Monstrous 3-oscillator synth with modulation matrix + Potworny 3-oscylatorowy syntezator z macierzą modulacji + + + + A multitap echo delay plugin + + + + + A NES-like synthesizer + Syntezator odwzorowujący NES-a + + + + 2-operator FM Synth + 2-operatorowy syntezator FM + + + + Additive Synthesizer for organ-like sounds + Syntezator Addytywny umożliwiający tworzenie dźwięków zbliżonych brzmieniem do organów + + + + GUS-compatible patch instrument + + + + + Plugin for controlling knobs with sound peaks + Wtyczka do kontrolowania pokręteł za pośrednictwem szczytów dźwięku + + + + Reverb algorithm by Sean Costello + Algorytm pogłosu Seana Costello + + + + Player for SoundFont files + Odtwarzacz plików SoundFont + + + + LMMS port of sfxr + Port sxfr dla LMMS + + + + Emulation of the MOS6581 and MOS8580 SID. +This chip was used in the Commodore 64 computer. + Emulator układu dźwiękowego SID MOS6581 i MOS8580 +Te układy scalone były stosowane w komputerach Commodore 64 + + + + A graphical spectrum analyzer. + Graficzny podgląd spektrum + + + + Plugin for enhancing stereo separation of a stereo input file + Wtyczka rozszerzająca bazę stereo + + + + Plugin for freely manipulating stereo output + Wtyczka do nieograniczonego manipulowania wyjściami stereo + + + + Tuneful things to bang on + Melodyjny instrument pałeczkowy + + + + Three powerful oscillators you can modulate in several ways + Trzy potężne oscylatory, które możesz modulować na kilka sposobów + + + + A stereo field visualizer. + Wizualizator pola stereo + + + + VST-host for using VST(i)-plugins within LMMS + Host VST pozwalający na użycie wtyczek VST(i) w LMMS + + + + Vibrating string modeler + Symulator drgającej struny + + + + plugin for using arbitrary VST effects inside LMMS. + Wtyczka pozwalająca na korzystanie z efektów VST w LMMS + + + + 4-oscillator modulatable wavetable synth + 4-oscylatorowy modularny syntezator tablicowy + + + + plugin for waveshaping + Wtyczka kształtująca falę + + + + Mathematical expression parser + Instrument przetwarzający wyrażenia matematyczne + + + + Embedded ZynAddSubFX + Wbudowany syntezator ZynAddSubFX + + + + An all-pass filter allowing for extremely high orders. + + + + + Granular pitch shifter + + + + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. + Wtyczka kompresji wielopasmowej w górę/w dół oparta na tajemniczym bogu starożytności, LOMMUSIE. + + + + Basic Slicer + + + + + Tap to the beat + Stukaj w rytm + + + + PluginEdit + + + Plugin Editor + Edytor wtyczek + + + + Edit + Edycja + + + + Control + + + + + MIDI Control Channel: + Kanał sterowania MIDI: + + + + N + N + + + + Output dry/wet (100%) + Głośność sucha/mokra (100%) + + + + Output volume (100%) + Głośność wyjściowa (100%) + + + + Balance Left (0%) + Równowaga lewego (0%) + + + + + Balance Right (0%) + Równowaga prawego (0%) + + + + Use Balance + Użyj równowagi + + + + Use Panning + Użyj panoramowania + + + + Settings + Ustawienia + + + + Use Chunks + Użyj fragmentów + + + + Audio: + Dźwięk: + + + + Fixed-Size Buffer + Bufor o stałym rozmiarze + + + + Force Stereo (needs reload) + Wymuś stereo (wymaga ponownego załadowania) + + + + MIDI: + MIDI: + + + + Map Program Changes + Zmiany programu mapowania + + + + Send Notes + Wyślij nuty + + + + Send Bank/Program Changes + Wyślij zmiany banku/programu + + + + Send Control Changes + + + + + Send Channel Pressure + + + + + Send Note Aftertouch + + + + + Send Pitchbend + Wyślij pitchbend + + + + Send All Sound/Notes Off + Wyślij wszystkie dźwięki/nuty wyłączone + + + + +Plugin Name + + +Nazwa wtyczki + + + + + Program: + Program: + + + + MIDI Program: + Program MIDI: + + + + Save State + Zapisz stan + + + + Load State + Załaduj stan + + + + Information + Informacje + + + + Label/URI: + Etykieta/URI: + + + + Name: + Nazwa: + + + + Type: + Typ: + + + + Maker: + Twórca: + + + + Copyright: + Prawa autorskie: + + + + Unique ID: - MidiPort + PluginFactory - - Input channel - Kanał wejściowy + + Plugin not found. + Nie znaleziono wtyczki. - - Output channel - Kanał wyjściowy - - - - Input controller - Kontroler wejściowy - - - - Output controller - Kontroler wyjściowy - - - - Fixed input velocity - Stała głośność wejściowa - - - - Fixed output velocity - Stała głośność wyjściowa - - - - Fixed output note - Stała nuta wyjściowa - - - - Output MIDI program - Wyjściowy program MIDI - - - - Base velocity - Głośność podstawy - - - - Receive MIDI-events - Odbieraj komunikaty MIDI - - - - Send MIDI-events - Wysyłaj komunikaty MIDI + + LMMS plugin %1 does not have a plugin descriptor named %2! + Wtyczka LMMS %1 nie ma deskryptora wtyczki nazwanego %2! - MidiSetupWidget + PluginListDialog - + + Carla - Add New + Carla - Dodaj nowy + + + + Requirements + Wymagania + + + + With Custom GUI + Z niestandardowym graficznym interfejsem użytkownika + + + + With CV Ports + Z portami CV + + + + Real-time safe only + Tylko w czasie rzeczywistym + + + + Stereo only + Tylko stereo + + + + With Inline Display + Z wyświetlaczem liniowym + + + + Favorites only + Tylko ulubione + + + + (Number of Plugins go here) + (Tutaj znajdziesz liczbę wtyczek) + + + + &Add Plugin + Dod&aj wtyczkę + + + + Cancel + Anuluj + + + + Refresh + Odśwież + + + + Reset filters + Resetuj filtry + + + + + + + + + + + + + + + + + + + TextLabel + EtykietaTekstowa + + + + Format: + Format: + + + + Architecture: + Architektura: + + + + Type: + Typ: + + + + MIDI Ins: + Wej. MIDI: + + + + Audio Ins: + Wej. dźwięku: + + + + CV Outs: + Wyj. CV: + + + + MIDI Outs: + Wyj. MIDI: + + + + Parameter Ins: + Wej. parametru: + + + + Parameter Outs: + Wyj. parametru: + + + + Audio Outs: + Wyj. dźwięku: + + + + CV Ins: + Wej. CV: + + + + UniqueID: + + + + + Has Inline Display: + Posiada wyświetlacz liniowy: + + + + Has Custom GUI: + Posiada niestandardowy graficzny interfejs użytkownika: + + + + Is Synth: + Jest syntezatorem: + + + + Is Bridged: + Jest mostkowane: + + + + Information + Informacje + + + + Name + Nazwa + + + + Label/Id/URI + + + + + Maker + Twórca + + + + Binary/Filename + Binarny/nazwa pliku + + + + Format + Format + + + + Internal + Wewnętrzne + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + VST2 + VST2 + + + + VST3 + VST3 + + + + CLAP + CLAP + + + + AU + AU + + + + JSFX + JSFX + + + + Sound Kits + Zestawy dźwięków + + + + Type + Typ + + + + Effects + Efekty + + + + Instruments + Instrumenty + + + + MIDI Plugins + Wtyczki MIDI + + + + Other/Misc + Inne/różne + + + + Category + Kategoria + + + + All + Wszystko + + + + Delay + Opóźnienie + + + + Distortion + Zniekształcenie + + + + Dynamics + Dynamiki + + + + EQ + EQ + + + + Filter + Filtr + + + + Modulator + Modulator + + + + Synth + Syntezator + + + + Utility + + + + + + Other + Inne + + + + Architecture + Architektura + + + + + Native + Natywne + + + + Bridged + Mostkowane + + + + Bridged (Wine) + Mostkowane (Wine) + + + + Focus Text Search + Skup się na wyszukiwaniu tekstu + + + + Ctrl+F + Ctrl+F + + + + Bridged (32bit) + Mostkowane (32-bitowe) + + + + Discovering internal plugins... + Odkrywanie wtyczek wewnętrznych... + + + + Discovering LADSPA plugins... + Odkrywanie wtyczek LADSPA... + + + + Discovering DSSI plugins... + Odkrywanie wtyczek DSSI... + + + + Discovering LV2 plugins... + Odkrywanie wtyczek LV2... + + + + Discovering VST2 plugins... + Odkrywanie wtyczek VST2... + + + + Discovering VST3 plugins... + Odkrywanie wtyczek VST3... + + + + Discovering CLAP plugins... + Odkrywanie wtyczek CLAP... + + + + Discovering AU plugins... + Odkrywanie wtyczek AU... + + + + Discovering JSFX plugins... + Odkrywanie wtyczek JSFX... + + + + Discovering SF2 kits... + Odkrywanie zestawów SF2... + + + + Discovering SFZ kits... + Odkrywanie zestawów SFZ... + + + + Unknown + Nieznane + + + + + + + Yes + Tak + + + + + + + No + Nie + + + + PluginParameter + + + Form + Z + + + + Parameter Name + Nazwa parametru + + + + TextLabel + EtykietaTekstowa + + + + ... + ... + + + + PluginRefreshDialog + + + Plugin Refresh + Odświeżanie wtyczek + + + + Search for: + Szukaj: + + + + All plugins, ignoring cache + Wszystkie wtyczki, ignorując pamięć podręczną + + + + Updated plugins only + Tylko zaktualizowane wtyczki + + + + Check previously invalid plugins + Sprawdź wcześniej nieprawidłowe wtyczki + + + + Press 'Scan' to begin the search + Naciśnij „Skanuj”, aby rozpocząć wyszukiwanie + + + + Scan + Skanuj + + + + >> Skip + >> Pomiń + + + + Close + Zamknij + + + + PluginWidget + + + + + + + Frame + Ramka + + + + Enable + Włącz + + + + On/Off + Wł./wył. + + + + + + + PluginName + NazwaWtyczki + + + + MIDI + MIDI + + + + AUDIO IN + WEJ. DŹW. + + + + AUDIO OUT + WYJ. DŹW. + + + + GUI + Graficzny interfejs użytkownika + + + + Edit + Edycja + + + + Remove + Usuń + + + + Plugin Name + Nazwa wtyczki + + + + Preset: + Preset: + + + + ProjectRenderer + + + WAV (*.wav) + WAV (*.wav) + + + + FLAC (*.flac) + FLAC (*.flac) + + + + OGG (*.ogg) + OGG (*.ogg) + + + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QGroupBox + + + + Settings for %1 + Ustawienia %1 + + + + QObject + + + Reload Plugin + Przeładuj wtyczkę + + + + Show GUI + Pokaż graficzny interfejs użytkownika + + + + Help + Pomoc + + + + LADSPA plugins + Wtyczki LADSPA + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + Projekt zawiera %1 wtyczek LADSPA, które mogły nie zostać poprawnie przywrócone! Sprawdź projekt. + + + + URI: + URI: + + + + Project: + Projekt: + + + + Maker: + Twórca: + + + + Homepage: + Strona główna: + + + + License: + Licencja: + + + + File: %1 + Plik: %1 + + + + failed to load description + nie można załadować opisu + + + + Open audio file + Otwórz plik dźwiękowy + + + + Error loading sample + Błąd ładowania próbki + + + + %1 (unsupported) + %1 (nieobsługiwany) + + + + QWidget + + + + Name: + Nazwa: + + + + Maker: + Twórca: + + + + Copyright: + Prawa autorskie: + + + + Requires Real Time: + Wymaga czasu rzeczywistego: + + + + + + Yes + Tak + + + + + + No + Nie + + + + Real Time Capable: + Zdolność do pracy w czasie rzeczywistym: + + + + In Place Broken: + Na miejscu złamane: + + + + Channels In: + Kanały wejściowe: + + + + Channels Out: + Kanały wyjściowe: + + + + File: %1 + Plik: %1 + + + + File: + Plik: + + + + XYControllerW + + + XY Controller + Kontroler XY + + + + X Controls: + Sterowanie X: + + + + Y Controls: + Sterowanie Y: + + + + Smooth + Wygładź + + + + &Settings + U&stawienia + + + + Channels + Kanały + + + + &File + &Plik + + + + Show MIDI &Keyboard + Po&każ klawiaturę MIDI + + + + (All) + (Wszystko) + + + + 1 + 1 + + + + 2 + 2 + + + + 3 + 3 + + + + 4 + 4 + + + + 5 + 5 + + + + 6 + 6 + + + + 7 + 7 + + + + 8 + 8 + + + + 9 + 9 + + + + 10 + 10 + + + + 11 + 11 + + + + 12 + 12 + + + + 13 + 13 + + + + 14 + 14 + + + + 15 + 15 + + + + 16 + 16 + + + + &Quit + Za&kończ + + + + Esc + Esc + + + + (None) + (Brak) + + + + lmms::AmplifierControls + + + Volume + Głośność + + + + Panning + Panoramowanie + + + + Left gain + Lewe wzmocnienie + + + + Right gain + Prawe wzmocnienie + + + + lmms::AudioFileProcessor + + + Amplify + Wzmocnij + + + + Start of sample + Początek próbki + + + + End of sample + Koniec próbki + + + + Loopback point + Znacznik zapętlenia + + + + Reverse sample + Odwróć próbkę + + + + Loop mode + Tryb pętli + + + + Stutter + Zacinanie + + + + Interpolation mode + Tryb interpolacji + + + + None + Brak + + + + Linear + Liniowy + + + + Sinc + + + + + Sample not found + Nie znaleziono próbki + + + + lmms::AudioJack + + + JACK client restarted + Klient JACK zrestartowany + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + LMMS został odrzucony przez JACK z jakiegoś powodu. Back-end LMMSa został zrestartowany, więc możesz ponownie dokonać ręcznych połączeń. + + + + JACK server down + Serwer JACK wyłączony + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + Wygląda na to, że serwer JACK został wyłączony i uruchomienie nowej instancji nie powiodło się. LMMS nie może kontynuować pracy. Zapisz projekt i uruchom ponownie serwer JACK i LMMS. + + + + Client name + Nazwa klienta + + + + Channels + Kanały + + + + lmms::AudioOss + + + Device + Urządzenie + + + + Channels + Kanały + + + + lmms::AudioPortAudio::setupWidget + + + Backend + Backend + + + Device Urządzenie - MonstroInstrument + lmms::AudioPulseAudio - - Osc 1 volume - + + Device + Urządzenie - - Osc 1 panning - + + Channels + Kanały + + + lmms::AudioSdl::setupWidget - - Osc 1 coarse detune - + + Playback device + Urządzenie odtwarzające - - Osc 1 fine detune left - + + Input device + Urządzenie wejściowe + + + lmms::AudioSndio - - Osc 1 fine detune right - + + Device + Urządzenie - - Osc 1 stereo phase offset - + + Channels + Kanały + + + lmms::AudioSoundIo::setupWidget - - Osc 1 pulse width - + + Backend + Backend - - Osc 1 sync send on rise - + + Device + Urządzenie + + + lmms::AutomatableModel - - Osc 1 sync send on fall - + + &Reset (%1%2) + &Resetuj (%1%2) - - Osc 2 volume - + + &Copy value (%1%2) + &Kopiuj wartość (%1%2) - - Osc 2 panning - + + &Paste value (%1%2) + Wklej wa&rtość (%1%2) - - Osc 2 coarse detune - + + &Paste value + Wklej wa&rtość - - Osc 2 fine detune left - + + Edit song-global automation + Edytuj ogólną automatykę utworu - - Osc 2 fine detune right - + + Remove song-global automation + Usuń ogólną automatykę utworu - - Osc 2 stereo phase offset + + Remove all linked controls - - Osc 2 waveform - + + Connected to %1 + Podłączony do %1 - - Osc 2 sync hard - + + Connected to controller + Podłączony do kontrolera - - Osc 2 sync reverse - + + Edit connection... + Edytuj połączenie... - - Osc 3 volume - + + Remove connection + Usuń połączenie - - Osc 3 panning - + + Connect to controller... + Podłącz do kontrolera... + + + lmms::AutomationClip - - Osc 3 coarse detune - + + Drag a control while pressing <%1> + Przeciągnij, trzymając naciśnięty <%1> + + + lmms::AutomationTrack - - Osc 3 Stereo phase offset - Osc 3 Przesunięcie fazowe stereo + + Automation track + Ścieżka automatyki + + + lmms::BassBoosterControls - - Osc 3 sub-oscillator mix - + + Frequency + Częstotliwość - - Osc 3 waveform 1 - + + Gain + Wzmocnienie - - Osc 3 waveform 2 - + + Ratio + Współczynnik + + + lmms::BitInvader - - Osc 3 sync hard - + + Sample length + Długość próbki - - Osc 3 Sync reverse - + + Interpolation + Interpolacja - - LFO 1 waveform - + + Normalize + Normalizacja + + + lmms::BitcrushControls - - LFO 1 attack - + + Input gain + Wzmocnienie wejścia - - LFO 1 rate - + + Input noise + Szum wejścia - - LFO 1 phase - + + Output gain + Wzmocnienie wyjścia - - LFO 2 waveform - + + Output clip + Obcięcie wyjścia - - LFO 2 attack - + + Sample rate + Częstotliwość próbkowania - - LFO 2 rate - + + Stereo difference + Różnica stereo - - LFO 2 phase - + + Levels + Poziomy - - Env 1 pre-delay + + Rate enabled - - Env 1 attack - + + Depth enabled + Głębia włączona + + + lmms::Clip - - Env 1 hold - + + Mute + Cisza + + + lmms::CompressorControls - - Env 1 decay - + + Threshold + Próg - - Env 1 sustain - + + Ratio + Współczynnik - - Env 1 release - + + Attack + Narastanie - - Env 1 slope - + + Release + Opadanie - - Env 2 pre-delay - + + Knee + Czułość - - Env 2 attack + + Hold - - Env 2 hold - + + Range + Zakres - - Env 2 decay - + + RMS Size + Rozmiar RMS - - Env 2 sustain - + + Mid/Side + Śr./b. - - Env 2 release - + + Peak Mode + Tryb szczytowy - - Env 2 slope + + Lookahead Length - - Osc 2+3 modulation - + + Input Balance + Równowaga wejścia - - Selected view - Wybrany widok + + Output Balance + Równowaga wyjścia - - Osc 1 - Vol env 1 - + + Limiter + Limiter - - Osc 1 - Vol env 2 - + + Output Gain + Wzmocnienie wyjścia - - Osc 1 - Vol LFO 1 - + + Input Gain + Wzmocnienie wejścia - - Osc 1 - Vol LFO 2 + + Blend - - Osc 2 - Vol env 1 + + Stereo Balance + Równowaga stereo + + + + Auto Makeup Gain + Autoupiększanie wzmocnienia + + + + Audition + Przesłuchanie + + + + Feedback + Sprzężenie zwrotne + + + + Auto Attack - - Osc 2 - Vol env 2 + + Auto Release - - Osc 2 - Vol LFO 1 + + Lookahead - - Osc 2 - Vol LFO 2 + + Tilt + Nachylenie + + + + Tilt Frequency + Częstotliwość nachylenia + + + + Stereo Link - - Osc 3 - Vol env 1 + + Mix + Miks + + + + lmms::Controller + + + Controller %1 + Kontroler %1 + + + + lmms::DelayControls + + + Delay samples + Opóźnij próbki + + + + Feedback + Sprzężenie zwrotne + + + + LFO frequency + Częstotliwość LFO + + + + LFO amount + Wartość LFO + + + + Output gain + Wzmocnienie wyjścia + + + + lmms::DispersionControls + + + Amount + Wartość + + + + Frequency + Częstotliwość + + + + Resonance + Rezonans + + + + Feedback + Sprzężenie zwrotne + + + + DC Offset Removal + Usuwanie przesunięcia DC + + + + lmms::DualFilterControls + + + Filter 1 enabled + Włączono filtr 1 + + + + Filter 1 type + Typ filtra 1 + + + + Cutoff frequency 1 + Częstotliwość graniczna 1 + + + + Q/Resonance 1 + Q/Rezonans 1 + + + + Gain 1 + Wzmocnienie 1 + + + + Mix + Miks + + + + Filter 2 enabled + Włączono filtr 2 + + + + Filter 2 type + Typ filtra 2 + + + + Cutoff frequency 2 + Częstotliwość graniczna 2 + + + + Q/Resonance 2 + Q/Rezonans 2 + + + + Gain 2 + Wzmocnienie 2 + + + + + Low-pass + Niski przebieg + + + + + Hi-pass + Wysoki przebieg + + + + + Band-pass csg + Pasmowoprzepustowy csg + + + + + Band-pass czpg + Pasmowoprzepustowy czpg + + + + + Notch + Pasmowozaporowy + + + + + All-pass + Wszystkie przebiegi + + + + + Moog + Moog + + + + + 2x Low-pass + 2x niski przebieg + + + + + RC Low-pass 12 dB/oct - - Osc 3 - Vol env 2 + + + RC Band-pass 12 dB/oct - - Osc 3 - Vol LFO 1 + + + RC High-pass 12 dB/oct - - Osc 3 - Vol LFO 2 + + + RC Low-pass 24 dB/oct - - Osc 1 - Phs env 1 + + + RC Band-pass 24 dB/oct - - Osc 1 - Phs env 2 + + + RC High-pass 24 dB/oct - - Osc 1 - Phs LFO 1 + + + Vocal Formant - - Osc 1 - Phs LFO 2 + + + 2x Moog + 2x Moog + + + + + SV Low-pass - - Osc 2 - Phs env 1 + + + SV Band-pass - - Osc 2 - Phs env 2 + + + SV High-pass - - Osc 2 - Phs LFO 1 + + + SV Notch + SV zaporowy + + + + + Fast Formant - - Osc 2 - Phs LFO 2 + + + Tripole + Trójnik + + + + lmms::DynProcControls + + + Input gain + Wzmocnienie wejścia + + + + Output gain + Wzmocnienie wyjścia + + + + Attack time + Czas narastania + + + + Release time + Czas opadania + + + + Stereo mode + Tryb stereo + + + + lmms::Effect + + + Effect enabled + Efekt włączony + + + + Wet/Dry mix + Miksowanie suchy/mokry + + + + Gate + Bramka + + + + Decay + + + lmms::EffectChain + + + Effects enabled + Efekty włączone + + + + lmms::Engine + + + Generating wavetables + Generowanie tabel sampli dźwiękowych + + + + Initializing data structures + Inicjalizowanie struktur danych + - - Osc 3 - Phs env 1 + + Opening audio and midi devices + Otwieranie urządzeń dźwiękowych i MIDI + + + + Launching audio engine threads + Uruchamianie wątków silnika dźwięku + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + Opóźnienie wstępne obwiedni + + + + Env attack + Narastanie obw. + + + + Env hold - - Osc 3 - Phs env 2 + + Env decay - - Osc 3 - Phs LFO 1 + + Env sustain - - Osc 3 - Phs LFO 2 + + Env release + Opadanie obw. + + + + Env mod amount + Wartość mod. obw. + + + + LFO pre-delay + Opóźnienie wstępne LFO + + + + LFO attack + Narastanie LFO + + + + LFO frequency + Częstotliwość LFO + + + + LFO mod amount + Wartość mod. LFO + + + + LFO wave shape + Kształt fali LFO + + + + LFO frequency x 100 + Częstotliwość LFO x 100 + + + + Modulate env amount + Moduluj wartość obw. + + + + Sample not found + Nie znaleziono próbki + + + + lmms::EqControls + + + Input gain + Wzmocnienie wejścia + + + + Output gain + Wzmocnienie wyjścia + + + + Low-shelf gain + Wzmocnienie dolnopółkowe + + + + Peak 1 gain - - Osc 1 - Pit env 1 + + Peak 2 gain - - Osc 1 - Pit env 2 + + Peak 3 gain - - Osc 1 - Pit LFO 1 + + Peak 4 gain - - Osc 1 - Pit LFO 2 + + High-shelf gain + Wzmocnienie górnopółkowe + + + + HP res + Rez. HP + + + + Low-shelf res + Rez. dolnopółkowy + + + + Peak 1 BW - - Osc 2 - Pit env 1 + + Peak 2 BW - - Osc 2 - Pit env 2 + + Peak 3 BW - - Osc 2 - Pit LFO 1 + + Peak 4 BW - - Osc 2 - Pit LFO 2 + + High-shelf res + Rez. górnopółkowy + + + + LP res + Rez. LP + + + + HP freq + Częst. HP + + + + Low-shelf freq + Częst. dolnopółkowa + + + + Peak 1 freq - - Osc 3 - Pit env 1 + + Peak 2 freq - - Osc 3 - Pit env 2 + + Peak 3 freq - - Osc 3 - Pit LFO 1 + + Peak 4 freq - - Osc 3 - Pit LFO 2 + + High-shelf freq + Częst. górnopółkowa + + + + LP freq + Częst. LP + + + + HP active + HP aktywny + + + + Low-shelf active + Dolnopółkowy aktywny + + + + Peak 1 active + Szczyt 1 aktywny + + + + Peak 2 active + Szczyt 2 aktywny + + + + Peak 3 active + Szczyt 3 aktywny + + + + Peak 4 active + Szczyt 4 aktywny + + + + High-shelf active + Górnopółkowy aktywny + + + + LP active + LP aktywny + + + + LP 12 + LP 12 + + + + LP 24 + LP 24 + + + + LP 48 + LP 48 + + + + HP 12 + HP 12 + + + + HP 24 + HP 24 + + + + HP 48 + HP 48 + + + + Low-pass type - - Osc 1 - PW env 1 + + High-pass type - - Osc 1 - PW env 2 + + Analyse IN + Analizuj WEJŚCIE + + + + Analyse OUT + Analizuj WYJŚCIE + + + + lmms::FlangerControls + + + Delay samples + Opóźnij próbki + + + + LFO frequency + Częstotliwość LFO + + + + Amount + Wartość + + + + Stereo phase + Faza stereo + + + + Feedback + Sprzężenie zwrotne + + + + Noise + Szum + + + + Invert + Odwróć + + + + lmms::FreeBoyInstrument + + + Sweep time + Czas wobulacji + + + + Sweep direction + Kierunek wobulacji + + + + Sweep rate shift amount - - Osc 1 - PW LFO 1 + + + Wave pattern duty cycle + Współczynnik wypełnienia szablonu fali + + + + Channel 1 volume + Głośność kanału 1 + + + + + + Volume sweep direction + Kierunek wobulacji głośności + + + + + + Length of each step in sweep + Długość każdego kroku wobulacji + + + + Channel 2 volume + Głośność kanału 2 + + + + Channel 3 volume + Głośność kanału 3 + + + + Channel 4 volume + Głośność kanału 4 + + + + Shift Register width - - Osc 1 - PW LFO 2 + + Right output level + Poziom prawego wyjścia + + + + Left output level + Poziom lewego wyjścia + + + + Channel 1 to SO2 (Left) + Kanał 1 do SO2 (lewy) + + + + Channel 2 to SO2 (Left) + Kanał 2 do SO2 (lewy) + + + + Channel 3 to SO2 (Left) + Kanał 3 do SO2 (lewy) + + + + Channel 4 to SO2 (Left) + Kanał 4 do SO2 (lewy) + + + + Channel 1 to SO1 (Right) + Kanał 1 do SO1 (prawy) + + + + Channel 2 to SO1 (Right) + Kanał 2 do SO1 (prawy) + + + + Channel 3 to SO1 (Right) + Kanał 3 do SO1 (prawy) + + + + Channel 4 to SO1 (Right) + Kanał 4 do SO1 (prawy) + + + + Treble + Soprany + + + + Bass + Basy + + + + lmms::GigInstrument + + + Bank + Bank + + + + Patch + Próbka + + + + Gain + Wzmocnienie + + + + lmms::GranularPitchShifterControls + + + Pitch + Odstrojenie + + + + Grain Size + Wielkość ziarna + + + + Spray - - Osc 3 - Sub env 1 + + Jitter - - Osc 3 - Sub env 2 + + Twitch - - Osc 3 - Sub LFO 1 + + Pitch Stereo Spread - - Osc 3 - Sub LFO 2 + + Spray Stereo - - - Sine wave - Fala sinusoidalna + + Shape + Kształt + + + + Fade Length + Długość ściszenia + + + + Feedback + Sprzężenie zwrotne - - Bandlimited Triangle wave - Fala trójkątna pasmowo limitowana + + Minimum Allowed Latency + Minimalne dozwolone opóźnienie - - Bandlimited Saw wave - Fala piłokształtna pasmowo limitowana + + Prefilter + Filtr wstępny - - Bandlimited Ramp wave - Fala rampowa pasmowo limitowana + + Density + Gęstość - - Bandlimited Square wave - Fala kwadratowa pasmowo limitowana + + Glide + Poślizg - - Bandlimited Moog saw wave - Fala piłokształtna Mooga pasmowo limitowana + + Ring Buffer Length + - - - Soft square wave - Fala kwadratowa łagodna + + 5 Seconds + 5 sekund - - Absolute sine wave - Fala sinusoidalna o wartości bezwzględnej + + 10 Seconds (Size) + 10 sekund (rozmiar) - - - Exponential wave - Fala wykładnicza + + 40 Seconds (Size and Pitch) + 40 sekund (rozmiar i odstrojenie) - - White noise - Biały szum + + 40 Seconds (Size and Spray and Jitter) + - - Digital Triangle wave - Cyfrowa fala trójkątna + + 120 Seconds (All of the above) + 120 sekund (wszystkie powyższe) + + + lmms::InstrumentFunctionArpeggio - - Digital Saw wave - Cyfrowa fala piłokształtna + + Arpeggio + Arpeggio - - Digital Ramp wave - Cyfrowa fala rampowa + + Arpeggio type + Typ arpeggio + + + + Arpeggio range + Zakres arpeggio + + + + Note repeats + Powtórzenia nuty + + + + Cycle steps + Kroki cyklu + + + + Skip rate + + + + + Miss rate + - - Digital Square wave - Cyfrowa fala kwadratowa + + Arpeggio time + Czas arpeggio - - Digital Moog saw wave - Cyfrowa fala piłokształtna Mooga + + Arpeggio gate + Bramka arpeggio - - Triangle wave - Fala trójkątna + + Arpeggio direction + Kierunek arpeggio - - Saw wave - Fala piłokształtna + + Arpeggio mode + Tryb arpeggio - - Ramp wave - Fala rampowa + + Up + W górę - - Square wave - Fala prostokątna + + Down + W dół - - Moog saw wave - Fala piłokształtna Mooga + + Up and down + W górę i w dół - - Abs. sine wave - Fala sin. o wart. bezwzgl. + + Down and up + W dół i w górę - + Random Losowe - + + Free + Dowolne + + + + Sort + Posortowane + + + + Sync + Zsynchronizowane + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + Akordy + + + + Chord type + Typ akordu + + + + Chord range + Zakres akordu + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + Obwiednie/oscylatory LFO + + + + Filter type + Typ filtra + + + + Cutoff frequency + Częstotliwość graniczna + + + + Q/Resonance + Q/Rezonans + + + + Low-pass + Niski przebieg + + + + Hi-pass + Wysoki przebieg + + + + Band-pass csg + Pasmowoprzepustowy csg + + + + Band-pass czpg + Pasmowoprzepustowy czpg + + + + Notch + Pasmowozaporowy + + + + All-pass + Wszystkie przebiegi + + + + Moog + Moog + + + + 2x Low-pass + 2x niski przebieg + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + 2x Moog + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + SV zaporowy + + + + Fast Formant + + + + + Tripole + Trójnik + + + + lmms::InstrumentTrack + + + + unnamed_track + nienazwana_ścieżka + + + + Base note + Nuta bazowa + + + + First note + Pierwsza nuta + + + + Last note + Ostatnia nuta + + + + Volume + Głośność + + + + Panning + Panoramowanie + + + + Pitch + Odstrojenie + + + + Pitch range + Zakres odstrojenia + + + + Mixer channel + Kanał miksera + + + + Master pitch + Odstrojenie główne + + + + Enable/Disable MIDI CC + Włącz/wyłącz MIDI CC + + + + CC Controller %1 + Kontroler CC %1 + + + + + Default preset + Preset domyślny + + + + lmms::Keymap + + + empty + pusty + + + + lmms::KickerInstrument + + + Start frequency + Częstotliwość początkowa + + + + End frequency + Częstotliwość końcowa + + + + Length + Długość + + + + Start distortion + Początek zniekształcenia + + + + End distortion + Koniec zniekształcenia + + + + Gain + Wzmocnienie + + + + Envelope slope + Nachylenie obwiedni + + + + Noise + Szum + + + + Click + Kliknięcie + + + + Frequency slope + Nachylenie częstotliwości + + + + Start from note + Rozpocznij od nuty + + + + End to note + Zakończ do nuty + + + + lmms::LOMMControls + + + Depth + Głębia + + + + Time + Czas + + + + Input Volume + Głośność wejściowa + + + + Output Volume + Głośność wyjściowa + + + + Upward Depth + Głębia w górę + + + + Downward Depth + Głębia w dół + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + Czas RMS + + + + Knee + Czułość + + + + Range + Zakres + + + + Balance + Równowaga + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + Miks + + + + Feedback + Sprzężenie zwrotne + + + + Mid/Side + Śr./b. + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + Wytłumienie kompresji w górę dla pasma bocznego + + + + lmms::LadspaControl + + + Link channels + Połącz kanały + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + Zażądano nieznanej wtyczki LADSPA %1. + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + Częstotliwość graniczna VCF + + + + VCF Resonance + Rezonans VCF + + + + VCF Envelope Mod + Mod. obwiedni VCF + + + + VCF Envelope Decay + + + + + Distortion + Zniekształcenie + + + + Waveform + Kształt fali + + + + Slide Decay + + + + + Slide + Ślizg + + + + Accent + Akcent + + + + Dead + Martwy + + + + 24dB/oct Filter + Filtr 24 dB/okt + + + + lmms::LfoController + + + LFO Controller + Kontroler LFO + + + + Base value + Wartość bazowa + + + + Oscillator speed + Prędkość oscylatora + + + + Oscillator amount + Wartość oscylatora + + + + Oscillator phase + Faza oscylatora + + + + Oscillator waveform + Kształt fali oscylatora + + + + Frequency Multiplier + Mnożnik częstotliwości + + + + Sample not found + Nie znaleziono próbki + + + + lmms::MalletsInstrument + + + Hardness + Twardość + + + + Position + Pozycja + + + + Vibrato gain + Wzmocnienie vibrato + + + + Vibrato frequency + Częstotliwość vibrato + + + + Stick mix + + + + + Modulator + Modulator + + + + Crossfade + Płynne przechodzenie + + + + LFO speed + Prędkość LFO + + + + LFO depth + Głębia LFO + + + + ADSR + ADSR + + + + Pressure + Ciśnienie + + + + Motion + Ruch + + + + Speed + Prędkość + + + + Bowed + Pochylenie + + + + Instrument + Instrument + + + + Spread + Rozstrzał + + + + Randomness + Losowość + + + + Marimba + Marimba + + + + Vibraphone + Wibrafon + + + + Agogo + Agogo + + + + Wood 1 + Drewniane 1 + + + + Reso + Rez. + + + + Wood 2 + Drewniane 2 + + + + Beats + Uderzenia + + + + Two fixed + Dwa stałe + + + + Clump + Stąpanie + + + + Tubular bells + Tubular bells + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + Harfa szklana + + + + Tibetan bowl + Misa dźwiękowa (tybetańska) + + + + lmms::MeterModel + + + Numerator + Numerator + + + + Denominator + Denominator + + + + lmms::Microtuner + + + Microtuner + Mikrotuner + + + + Microtuner on / off + Mikrotuner wł./wył. + + + + Selected scale + Wybrana skala + + + + Selected keyboard mapping + Wybrane mapowanie klawiszy + + + + lmms::MidiController + + + MIDI Controller + Kontroler MIDI + + + + unnamed_midi_controller + nienazwany_kontroler_midi + + + + lmms::MidiImport + + + + Setup incomplete + Konfiguracja niekompletna + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + Nie masz ustawionego domyślnego SoundFontu w oknie dialogowym ustawień (Edycja -> Ustawienia). Dlatego żaden dźwięk nie zostanie odtworzony po zaimportowaniu tego pliku MIDI. Powinieneś/aś pobrać SoundFont General MIDI, określić go w oknie dialogowym ustawień i spróbować ponownie. + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + Nie skompilowałeś/aś LMMS ze wsparciem dla odtwarzacza SoundFont2, który jest używany do dodawania domyślnego dźwięku do importowanych plików MIDI. Dlatego żaden dźwięk nie zostanie odtworzony po zaimportowaniu tego pliku MIDI. + + + + MIDI Time Signature Numerator + Numerator oznaczenia metrycznego MIDI + + + + MIDI Time Signature Denominator + Denominator oznaczenia metrycznego MIDI + + + + Numerator + Numerator + + + + Denominator + Denominator + + + + + Tempo + Tempo + + + + Track + Ścieżka + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + Serwer JACK wyłączony + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + Wygląda na to, że serwer JACK jest wyłączony. + + + + lmms::MidiPort + + + Input channel + Kanał wejściowy + + + + Output channel + Kanał wyjściowy + + + + Input controller + Kontroler wejściowy + + + + Output controller + Kontroler wyjściowy + + + + Fixed input velocity + Stała głośność wejściowa + + + + Fixed output velocity + Stała głośność wyjściowa + + + + Fixed output note + Stała nuta wyjściowa + + + + Output MIDI program + Wyjściowy program MIDI + + + + Base velocity + Głośność bazowa + + + + Receive MIDI-events + Odbieraj zdarzenia MIDI + + + + Send MIDI-events + Wysyłaj zdarzenia MIDI + + + + lmms::Mixer + + + Master + Master + + + + + + Channel %1 + Kanał %1 + + + + Volume + Głośność + + + + Mute + Cisza + + + + Solo + Solo + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + Wartość do wysłania z kanału %1 do kanału %2 + + + + lmms::MonstroInstrument + + + Osc 1 volume + Głośność osc 1 + + + + Osc 1 panning + Panoramowanie osc 1 + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + Przesunięcie fazowe stereo osc 1 + + + + Osc 1 pulse width + Współczynnik wypełnienia impulsu osc 1 + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + Głośność osc 2 + + + + Osc 2 panning + Panoramowanie osc 2 + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + Przesunięcie fazowe stereo osc 2 + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + Głośność osc 3 + + + + Osc 3 panning + Panoramowanie osc 3 + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + Przesunięcie fazowe stereo osc 3 + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + Narastanie LFO 1 + + + + LFO 1 rate + + + + + LFO 1 phase + Faza LFO 1 + + + + LFO 2 waveform + + + + + LFO 2 attack + Narastanie LFO 2 + + + + LFO 2 rate + + + + + LFO 2 phase + Faza LFO 2 + + + + Env 1 pre-delay + + + + + Env 1 attack + Narastanie obw. 1 + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + Opadanie obw. 1 + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + Narastanie obw. 2 + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + Opadanie obw. 2 + + + + Env 2 slope + + + + + Osc 2+3 modulation + Modulacja osc 2+3 + + + + Selected view + Wybrany widok + + + + Osc 1 - Vol env 1 + Osc 1 - Gł. obw. 1 + + + + Osc 1 - Vol env 2 + Osc 1 - Gł. obw. 2 + + + + Osc 1 - Vol LFO 1 + Osc 1 - Gł. LFO 1 + + + + Osc 1 - Vol LFO 2 + Osc 1 - Gł. LFO 2 + + + + Osc 2 - Vol env 1 + Osc 2 - Gł. obw. 1 + + + + Osc 2 - Vol env 2 + Osc 2 - Gł. obw. 2 + + + + Osc 2 - Vol LFO 1 + Osc 2 - Gł. LFO 1 + + + + Osc 2 - Vol LFO 2 + Osc 2 - Gł. LFO 2 + + + + Osc 3 - Vol env 1 + Osc 3 - Gł. obw. 1 + + + + Osc 3 - Vol env 2 + Osc 3 - Gł. obw. 2 + + + + Osc 3 - Vol LFO 1 + Osc 3 - Gł. LFO 1 + + + + Osc 3 - Vol LFO 2 + Osc 3 - Gł. LFO 2 + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + Fala sinusoidalna + + + + Bandlimited Triangle wave + Fala trójkątna pasmowo limitowana + + + + Bandlimited Saw wave + Fala piłokształtna pasmowo limitowana + + + + Bandlimited Ramp wave + Fala rampowa pasmowo limitowana + + + + Bandlimited Square wave + Fala kwadratowa pasmowo limitowana + + + + Bandlimited Moog saw wave + Fala piłokształtna Mooga pasmowo limitowana + + + + + Soft square wave + Fala kwadratowa łagodna + + + + Absolute sine wave + Fala sinusoidalna o wartości bezwzględnej + + + + + Exponential wave + Fala wykładnicza + + + + White noise + Szum biały + + + + Digital Triangle wave + Cyfrowa fala trójkątna + + + + Digital Saw wave + Cyfrowa fala piłokształtna + + + + Digital Ramp wave + Cyfrowa fala rampowa + + + + Digital Square wave + Cyfrowa fala kwadratowa + + + + Digital Moog saw wave + Cyfrowa fala piłokształtna Mooga + + + + Triangle wave + Fala trójkątna + + + + Saw wave + Fala piłokształtna + + + + Ramp wave + Fala rampowa + + + + Square wave + Fala prostokątna + + + + Moog saw wave + Fala piłokształtna Mooga + + + + Abs. sine wave + Fala sin. o wart. bezwzgl. + + + + Random + Losowe + + + Random smooth Losowe gładkie - MonstroView + lmms::NesInstrument - - Operators view - Widok operatorowy + + Channel 1 enable + Włącz kanał 1 - - Matrix view - Widok macierzowy + + Channel 1 coarse detune + - - - + + Channel 1 volume + Głośność kanału 1 + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + Włącz kanał 2 + + + + Channel 2 coarse detune + + + + + Channel 2 volume + Głośność kanału 2 + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + Włącz kanał 3 + + + + Channel 3 coarse detune + + + + + Channel 3 volume + Głośność kanału 3 + + + + Channel 4 enable + Włącz kanał 4 + + + + Channel 4 volume + Głośność kanału 4 + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + Głośność główna + + + + Vibrato + Vibrato + + + + lmms::OpulenzInstrument + + + Patch + Próbka + + + + Op 1 attack + Narastanie op 1 + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + Opadanie op 1 + + + + Op 1 level + Poziom op 1 + + + + Op 1 level scaling + Skalowanie poziomu op 1 + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + Tremolo op 1 + + + + Op 1 vibrato + Vibrato op 1 + + + + Op 1 waveform + + + + + Op 2 attack + Narastanie op 2 + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + Opadanie op 2 + + + + Op 2 level + Poziom op 2 + + + + Op 2 level scaling + Skalowanie poziomu op 2 + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + Tremolo op 2 + + + + Op 2 vibrato + Vibrato op 2 + + + + Op 2 waveform + + + + + FM + FM + + + + Vibrato depth + Głębia vibrato + + + + Tremolo depth + Głębia tremolo + + + + lmms::OrganicInstrument + + + Distortion + Zniekształcenie + + + + Volume + Głośność + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + Przesunięcie fazowe osc %1 + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + Typ modulacji %1 + + + + lmms::PatternTrack + + + Pattern %1 + Szablon %1 + + + + Clone of %1 + Klon %1 + + + + lmms::PeakController + + + Peak Controller + Kontroler szczytu + + + + Peak Controller Bug + Błąd kontrolera szczytu + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + Z powodu błędu w starszej wersji LMMS kontrolery szczytu mogą nie być prawidłowo podłączone. Upewnij się, że kontrolery szczytu są prawidłowo podłączone i ponownie zapisz ten plik. + + + + lmms::PeakControllerEffectControls + + + Base value + Wartość bazowa + + + + Modulation amount + Wartość modulacji + + + + Attack + Narastanie + + + + Release + Opadanie + + + + Treshold + Próg + + + + Mute output + Wycisz wyjście + + + + Absolute value + Wartość bezwzględna + + + + Amount multiplicator + Mnożnik wartości + + + + lmms::Plugin + + + Plugin not found + Nie znaleziono wtyczki + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + Wtyczka „%1” nie została znaleziona lub nie może zostać załadowana! +Powód: „%2” + + + + Error while loading plugin + Wystąpił błąd podczas ładowania wtyczki + + + + Failed to load plugin "%1"! + Nie można załadować wtyczki „%1”! + + + + lmms::ReverbSCControls + + + Input gain + Wzmocnienie wejścia + + + + Size + Rozmiar + + + + Color + Kolor + + + + Output gain + Wzmocnienie wyjścia + + + + lmms::SaControls + + + Pause + Wstrzymaj + + + + Reference freeze + Zamrożenie odniesienia + + + + Waterfall + Wodospad + + + + Averaging + Uśrednianie + + + + Stereo + Stereo + + + + Peak hold + + + + + Logarithmic frequency + Częstotliwość logarytmiczna + + + + Logarithmic amplitude + Amplituda logarytmiczna + + + + Frequency range + Zakres częstotliwości + + + + Amplitude range + Zakres amplitudy + + + + FFT block size + Rozmiar bloku FFT + + + + FFT window type + Typ okna FFT + + + + Peak envelope resolution + + + + + Spectrum display resolution + Rozdzielczość wyświetlania widma + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + Korekcja gamma wodospadu + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + Pełne (automatyczne) + + + + + + Audible + Słyszalne + + + + Bass + Basy + + + + Mids + Średnie + + + + High + Wysokie + + + + Extended + Rozszerzone + + + + Loud + Głośne + + + + Silent + Ciche + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + Prostokątne (wyłączone) + + + + + Blackman-Harris (Default) + Blackman-Harris (domyślne) + + + + Hamming + Hamming + + + + Hanning + Hanning + + + + lmms::SampleClip + + + Sample not found + Nie znaleziono próbki + + + + lmms::SampleTrack + + Volume Głośność - - - + Panning Panoramowanie - - - + + Mixer channel + Kanał miksera + + + + + Sample track + Ścieżka próbek + + + + lmms::Scale + + + empty + pusty + + + + lmms::Sf2Instrument + + + Bank + Bank + + + + Patch + Próbka + + + + Gain + Wzmocnienie + + + + Reverb + Pogłos + + + + Reverb room size + + + + + Reverb damping + Tłumienie pokoju + + + + Reverb width + Szerokość pogłosu + + + + Reverb level + Poziom pogłosu + + + + Chorus + Chorus + + + + Chorus voices + Głosy chorusu + + + + Chorus level + Poziom chorusu + + + + Chorus speed + Prędkość chorusu + + + + Chorus depth + Głębia chorusu + + + + A soundfont %1 could not be loaded. + SoundFont %1 nie może zostać załadowany. + + + + lmms::SfxrInstrument + + + Wave + Fala + + + + lmms::SidInstrument + + + Cutoff frequency + Częstotliwość graniczna + + + + Resonance + Rezonans + + + + Filter type + Typ filtra + + + + Voice 3 off + Wyłącz głos 3 + + + + Volume + Głośność + + + + Chip model + Model układu scalonego + + + + lmms::SlicerT + + + Note threshold + Próg nuty + + + + FadeOut + Ściszenie + + + + Original bpm + Oryginalne BPM + + + + Slice snap + + + + + BPM sync + Synchronizacja BPM + + + + + slice_%1 + + + + + Sample not found: %1 + Nie znaleziono próbki: %1 + + + + lmms::Song + + + Tempo + Tempo + + + + Master volume + Głośność główna + + + + Master pitch + Odstrojenie główne + + + + Aborting project load + Przerwanie ładowania projektu + + + + Project file contains local paths to plugins, which could be used to run malicious code. + Plik projektu zawiera lokalne ścieżki do wtyczek, które mogą zostać wykorzystane do uruchomienia złośliwego kodu. + + + + Can't load project: Project file contains local paths to plugins. + Nie można załadować projektu. Plik projektu zawiera ścieżki lokalne do wtyczek. + + + + LMMS Error report + Zgłoszenie błędu LMMS + + + + (repeated %1 times) + (powtórzone %1 razy) + + + + The following errors occurred while loading: + Podczas ładowania wystąpiły następujące błędy: + + + + lmms::StereoEnhancerControls + + + Width + Szerokość + + + + lmms::StereoMatrixControls + + + Left to Left + + + + + Left to Right + + + + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + Cisza + + + + Solo + Solo + + + + lmms::TrackContainer + + + Couldn't import file + Nie można zaimportować pliku + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + Nie można znaleźć filtra do zaimportowania pliku %1. +Musisz przekonwertować ten plik do formatu obsługiwanego przez LMMS za pomocą zewnętrznego oprogramowania. + + + + Couldn't open file + Nie można otworzyć pliku + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + Nie można otworzyć pliku %1 do odczytu. +Upewnij się, że masz uprawnienia do odczytu do pliku i katalogu zawierającego plik i spróbuj ponownie! + + + + Loading project... + Ładowanie projektu... + + + + + Cancel + Anuluj + + + + + Please wait... + Czekaj... + + + + Loading cancelled + Ładowanie anulowane + + + + Project loading was cancelled. + Ładowanie projektu zostało anulowane. + + + + Loading Track %1 (%2/Total %3) + Ładowanie ścieżki %1 (%2/Łącznie %3) + + + + Importing MIDI-file... + Importowanie pliku MIDI... + + + + lmms::TripleOscillator + + + Sample not found + Nie znaleziono próbki + + + + lmms::VecControls + + + Display persistence amount + Wyświetlaj wartość trwałości + + + + Logarithmic scale + Skala logarytmiczna + + + + High quality + Wysoka jakość + + + + lmms::VestigeInstrument + + + Loading plugin + Ładowanie wtyczki + + + + Please wait while loading the VST plugin... + Czekaj. Trwa ładowanie wtyczki VST... + + + + lmms::Vibed + + + String %1 volume + Głośność struny %1 + + + + String %1 stiffness + Sztywność struny %1 + + + + Pick %1 position + Wybierz pozycję %1 + + + + Pickup %1 position + + + + + String %1 panning + Panoramowanie struny %1 + + + + String %1 detune + Odstrojenie struny %1 + + + + String %1 fuzziness + Rozmycie struny %1 + + + + String %1 length + Długość struny %1 + + + + Impulse %1 + Impuls %1 + + + + String %1 + Struna %1 + + + + lmms::VoiceObject + + + Voice %1 pulse width + Współczynnik wypełnienia impulsu głosu %1 + + + + Voice %1 attack + Narastanie głosu %1 + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + Opadanie głosu %1 + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + Kształt fali głosu %1 + + + + Voice %1 sync + Synchronizacja głosu %1 + + + + Voice %1 ring modulate + Modulacja pierścieniowa głosu %1 + + + + Voice %1 filtered + Filtrowanie głosu %1 + + + + Voice %1 test + Test głosu %1 + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + Wtyczka VST %1 nie może zostać załadowana. + + + + Open Preset + Otwórz preset + + + + + VST Plugin Preset (*.fxp *.fxb) + Preset wtyczki VST (*.fxp *.fxb) + + + + : default + : domyślne + + + + Save Preset + Zapisz preset + + + + .fxp + .fxp + + + + .FXP + .FXP + + + + .FXB + .FXB + + + + .fxb + .fxb + + + + Loading plugin + Ładowanie wtyczki + + + + Please wait while loading VST plugin... + Czekaj. Trwa ładowanie wtyczki VST... + + + + lmms::WatsynInstrument + + + Volume A1 + Głośność A1 + + + + Volume A2 + Głośność A2 + + + + Volume B1 + Głośność B1 + + + + Volume B2 + Głośność B2 + + + + Panning A1 + Panoramowanie A1 + + + + Panning A2 + Panoramowanie A2 + + + + Panning B1 + Panoramowanie B1 + + + + Panning B2 + Panoramowanie B2 + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + Miksuj A-B + + + + A-B Mix envelope amount + Miksuj wartość obwiedni A-B + + + + A-B Mix envelope attack + Miksuj narastanie obwiedni A-B + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + Przesłuch A1-B2 + + + + A2-A1 modulation + Modulacja A2-A1 + + + + B2-B1 modulation + Modulacja B2-B1 + + + + Selected graph + Wybrany wykres + + + + lmms::WaveShaperControls + + + Input gain + Wzmocnienie wejścia + + + + Output gain + Wzmocnienie wyjścia + + + + lmms::Xpressive + + + Selected graph + Wybrany wykres + + + + A1 + A1 + + + + A2 + A2 + + + + A3 + A3 + + + + W1 smoothing + Wygładzanie W1 + + + + W2 smoothing + Wygładzanie W2 + + + + W3 smoothing + Wygładzanie W3 + + + + Panning 1 + Panoramowanie 1 + + + + Panning 2 + Panoramowanie 2 + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + Portamento + + + + Filter frequency + Częstotliwość filtra + + + + Filter resonance + Rezonans filtra + + + + Bandwidth + Szerokość pasma + + + + FM gain + Wzmocnienie FM + + + + Resonance center frequency + Częstotliwość środkowa rezonansu + + + + Resonance bandwidth + Szerokość pasma rezonansu + + + + Forward MIDI control change events + Przekaż zdarzenia zmiany sterowania MIDI + + + + lmms::graphModel + + + Graph + Wykres + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + Głośność: + + + + PAN + PAN + + + + Panning: + Panoramowanie: + + + + LEFT + LEWO + + + + Left gain: + Lewe wzmocnienie: + + + + RIGHT + PRAWO + + + + Right gain: + Prawe wzmocnienie: + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + Urządzenie + + + + Channels + Kanały + + + + lmms::gui::AudioFileProcessorView + + + Open sample + Otwórz próbkę + + + + Reverse sample + Odwróć próbkę + + + + Disable loop + Wyłącz pętlę + + + + Enable loop + Włącz pętlę + + + + Enable ping-pong loop + Włącz pętlę typu ping-pong + + + + Continue sample playback across notes + Kontunuuj odtwarzanie próbki w następnych nutach + + + + Amplify: + Wzmocnij: + + + + Start point: + Punkt początkowy: + + + + End point: + Punkt końcowy: + + + + Loopback point: + Znacznik zapętlenia: + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + Długość próbki: + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + Otwórz w edytorze automatyki + + + + Clear + Wyczyść + + + + Reset name + Resetuj nazwę + + + + Change name + Zmień nazwę + + + + Set/clear record + Ustaw/wyczyść nagranie + + + + Flip Vertically (Visible) + Odwróć pionowo (widoczne) + + + + Flip Horizontally (Visible) + Odwróć poziomo (widoczne) + + + + %1 Connections + %1 połączenia + + + + Disconnect "%1" + Rozłącz „%1” + + + + Model is already connected to this clip. + Model jest już podłączony do tego klipu. + + + + lmms::gui::AutomationEditor + + + Edit Value + Edytuj wartość + + + + New outValue + Nowa wartość wyjściowa + + + + New inValue + Nowa wartość wejściowa + + + + Please open an automation clip by double-clicking on it! + Otwórz klip automatyzacji, klikając na niego dwukrotnie myszką! + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + Odtwarzaj/wstrzymaj bieżący klip (Spacja) + + + + Stop playing of current clip (Space) + Zatrzymaj odtwarzanie bieżącego klipu (Spacja) + + + + Edit actions + Edytuj czynności + + + + Draw mode (Shift+D) + Tryb rysowania (Shift+D) + + + + Erase mode (Shift+E) + Tryb wymazywania (Shift+E) + + + + Draw outValues mode (Shift+C) + Tryb rysowania wartości wyjściowych (Shift+C) + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + Odwróć pionowo + + + + Flip horizontally + Odwróć poziomo + + + + Interpolation controls + + + + + Discrete progression + Progresja oddzielna + + + + Linear progression + Progresja liniowa + + + + Cubic Hermite progression + Progresja sześcienna Hermite’a + + + + Tension value for spline + Wartość napięcia dla krzywej składanej + + + + Tension: + Napięcie: + + + + Zoom controls + + + + + Horizontal zooming + Powiększanie poziome + + + + Vertical zooming + Powiększanie pionowe + + + + Quantization controls + + + + + Quantization + Kwantyzacja + + + + Clear ghost notes + + + + + + Automation Editor - no clip + Edytor automatyki - brak klipu + + + + + Automation Editor - %1 + Edytor automatyki - %1 + + + + Model is already connected to this clip. + Model jest już podłączony do tego klipu. + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + CZĘST + + + + Frequency: + Częstotliwość: + + + + GAIN + WZMOC + + + + Gain: + Wzmocnienie: + + + + RATIO + WSPÓŁCZYNNIK + + + + Ratio: + Współczynnik: + + + + lmms::gui::BitInvaderView + + + Sample length + Długość próbki + + + + Draw your own waveform here by dragging your mouse on this graph. + Narysuj swój własny przebieg fali, przeciągając kursorem po tym wykresie. + + + + + Sine wave + Fala sinusoidalna + + + + + Triangle wave + Fala trójkątna + + + + + Saw wave + Fala piłokształtna + + + + + Square wave + Fala prostokątna + + + + + White noise + Szum biały + + + + + User-defined wave + Fala zdefiniowana przez użytkownika + + + + + Smooth waveform + Gładki kształt fali + + + + Interpolation + Interpolacja + + + + Normalize + Normalizacja + + + + lmms::gui::BitcrushControlDialog + + + IN + WEJŚCIE + + + + OUT + WYJŚCIE + + + + + GAIN + WZMOC + + + + Input gain: + Wzmocnienie wejścia: + + + + NOISE + SZUM + + + + Input noise: + Szum wejściowy: + + + + Output gain: + Wzmocnienie wyjścia: + + + + CLIP + KLIP + + + + Output clip: + Klip wyjściowy: + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + Głębia włączona + + + + Enable bit-depth crushing + + + + + FREQ + CZĘST + + + + Sample rate: + Częstotliwość próbkowania: + + + + STEREO + STEREO + + + + Stereo difference: + Różnica stereo: + + + + QUANT + KWANT + + + + Levels: + Poziomy: + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + - Nuty i konfiguracja: %1% + + + + - Instruments: %1% + - Instrumenty: %1% + + + + - Effects: %1% + - Efekty: %1% + + + + - Mixing: %1% + - Miksowanie: %1% + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + Pokaż graficzny interfejs użytkownika + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + Kliknij tutaj, aby pokazać lub ukryć graficzny interfejs użytkownika (GUI) Carla. + + + + Params + Parametry + + + + Available from Carla version 2.1 and up. + Dostępne dla Carla w wersji 2.1 lub nowszej. + + + + lmms::gui::CarlaParamsView + + + Search.. + Szukaj... + + + + Clear filter text + Wyczyść tekst filtra + + + + Only show knobs with a connection. + Pokaż tylko pokrętła z połączeniem. + + + + - Parameters + - Parametry + + + + lmms::gui::ClipView + + + Current position + Bieżąca pozycja + + + + Current length + Bieżąca długość + + + + + %1:%2 (%3:%4 to %5:%6) + %1:%2 (%3:%4 do %5:%6) + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + Podpowiedź + + + + Delete (middle mousebutton) + Usuń (środkowy przycisk myszki) + + + + Delete selection (middle mousebutton) + Usuń zaznaczone (środkowy przycisk myszki) + + + + Cut + Wytnij + + + + Cut selection + Wytnij zaznaczenie + + + + Merge Selection + Połącz zaznaczenie + + + + Copy + Kopiuj + + + + Copy selection + Kopiuj zaznaczenie + + + + Paste + Wklej + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + Kolor klipu + + + + Change + Zmień + + + + Reset + Resetuj + + + + Pick random + Wybierz losowe + + + + lmms::gui::CompressorControlDialog + + + Threshold: + Próg: + + + + Volume at which the compression begins to take place + Głośność, przy której rozpoczyna się kompresja + + + + Ratio: + Współczynnik: + + + + How far the compressor must turn the volume down after crossing the threshold + O ile kompresor musi zmniejszyć głośność po przekroczeniu progu + + + + Attack: + Narastanie: + + + + Speed at which the compressor starts to compress the audio + Prędkość, z jaką kompresor rozpoczyna kompresować dźwięk + + + + Release: + Opadanie: + + + + Speed at which the compressor ceases to compress the audio + Prędkość, z jaką kompresor przestaje kompresować dźwięk + + + + Knee: + Czułość: + + + + Smooth out the gain reduction curve around the threshold + Wygładzanie krzywej redukcji wzmocnienia wokół progu + + + + Range: + Zakres: + + + + Maximum gain reduction + Maksymalna redukcja wzmocnienia + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + Jak długo kompresor musi zareagować na sygnał łańcucha bocznego z wyprzedzeniem + + + + Hold: + + + + + Delay between attack and release stages + Opóźnienie między etapami narastania i opadania + + + + RMS Size: + Rozmiar RMS: + + + + Size of the RMS buffer + Rozmiar bufora RMS + + + + Input Balance: + Równowaga wejścia: + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + Równowaga wyjścia: + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + Równowaga stereo: + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + Wzmocnienie nachylenia: + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + Częstotliwość nachylenia: + + + + Center frequency of sidechain tilt filter + + + + + Mix: + Miks: + + + + Balance between wet and dry signals + Równowaga między sygnałami mokrymi i suchymi + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + Wzmocnienie wyjścia + + + + + Gain + Wzmocnienie + + + + Output volume + Głośność wyjściowa + + + + Input gain + Wzmocnienie wejścia + + + + Input volume + Głośność wejściowa + + + + Root Mean Square + Średnia kwadratowa + + + + Use RMS of the input + Użyj RMS wejścia + + + + Peak + Szczyt + + + + Use absolute value of the input + Użyj wartości bezwzględnej wejścia + + + + Left/Right + Lewy/prawy + + + + Compress left and right audio + Kompresuj lewy i prawy + + + + Mid/Side + Śr./b. + + + + Compress mid and side audio + Kompresuj środkowy i boczny + + + + Compressor + Kompresor + + + + Compress the audio + Kompresuj dźwięk + + + + Limiter + Limiter + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + Ustaw współczynnik na nieskończoność (nie ma gwarancji ograniczenia głośności dźwięku) + + + + Unlinked + Niepołączone + + + + Compress each channel separately + Kompresuj każdy kanał oddzielnie + + + + Maximum + Maksimum + + + + Compress based on the loudest channel + Kompresuj w oparciu o najgłośniejszy kanał + + + + Average + Średnie + + + + Compress based on the averaged channel volume + Kompresuj w oparciu o średniej głośności kanał + + + + Minimum + Minimum + + + + Compress based on the quietest channel + Kompresuj w oparciu o najcichszy kanał + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + Autoupiększanie wzmocnienia + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + Automatyczna zmiana upiększania wzmocnienia w zależności od ustawień progu, czułości i współczynnika + + + + + Soft Clip + + + + + Play the delta signal + Odtwrzaj sygnał delta + + + + Use the compressor's output as the sidechain input + Użyj wyjścia kompresora jako wejścia łańcucha bocznego + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + Ustawienia połączenia + + + + MIDI CONTROLLER + KONTROLER MIDI + + + + Input channel + Kanał wejściowy + + + + CHANNEL + KANAŁ + + + + Input controller + Kontroler wejściowy + + + + CONTROLLER + KONTROLER + + + + + Auto Detect + Autodetekcja + + + + MIDI-devices to receive MIDI-events from + Urządzenia MIDI odbierające zdarzenia MIDI z + + + + USER CONTROLLER + KONTROLER UŻYTKOWNIKA + + + + MAPPING FUNCTION + FUNKCJA MAPOWANIA + + + + OK + OK + + + + Cancel + Anuluj + + + + LMMS + LMMS + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + Rack kontrolerów + + + + Add + Dodaj + + + + Confirm Delete + Potwierdź usunięcie + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + Potwierdzić usunięcie? Występuje(ą) istniejące połączenie(a) związane z tym kontrolerem. Tego nie można cofnąć. + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + Zmień nazwę kontrolera + + + + Enter the new name for this controller + Wprowadź nową nazwę dla tego kontrolera + + + + LFO + LFO + + + + Move &up + Przes&uń w górę + + + + Move &down + Przesuń w &dół + + + + &Remove this controller + Usuń ten kont&roler + + + + Re&name this controller + Zmień &nazwę tego kontrolera + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + OPÓŹN + + + + Delay time + Czas opóźnienia + + + + FDBK + SPZW + + + + Feedback amount + Wartość sprzężenia zwrotnego + + + + RATE + + + + + LFO frequency + Częstotliwość LFO + + + + AMNT + WART + + + + LFO amount + Wartość LFO + + + + Out gain + Wzm. wyjśc. + + + + Gain + Wzmocnienie + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + WARTOŚĆ + + + + Number of all-pass filters + + + + + FREQ + CZĘST + + + + Frequency: + Częstotliwość: + + + + RESO + REZO + + + + Resonance: + Rezonans: + + + + FEED + SPRZ + + + + Feedback: + Sprzężenie zwrotne: + + + + DC Offset Removal + Usuwanie przesunięcia DC + + + + Remove DC Offset + Usuń przesunięcie DC + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + CZĘST + + + + + Cutoff frequency + Częstotliwość graniczna + + + + + RESO + REZO + + + + + Resonance + Rezonans + + + + + GAIN + WZMOC + + + + + Gain + Wzmocnienie + + + + MIX + MIKS + + + + Mix + Miks + + + + Filter 1 enabled + Włączono filtr 1 + + + + Filter 2 enabled + Włączono filtr 2 + + + + Enable/disable filter 1 + Włącz/wyłącz filtr 1 + + + + Enable/disable filter 2 + Włącz/wyłącz filtr 2 + + + + lmms::gui::DynProcControlDialog + + + INPUT + WEJŚCIE + + + + Input gain: + Wzmocnienie wejścia: + + + + OUTPUT + WYJŚCIE + + + + Output gain: + Wzmocnienie wyjścia: + + + + ATTACK + NARASTANIE + + + + Peak attack time: + Czas szczytu narastania: + + + + RELEASE + OPADANIE + + + + Peak release time: + Czas szczytu opadania: + + + + + Reset wavegraph + Resetuj wykres falowy + + + + + Smooth wavegraph + Płynny wykres falowy + + + + + Increase wavegraph amplitude by 1 dB + Zwiększ amplitudę wykresu falowego o 1 dB + + + + + Decrease wavegraph amplitude by 1 dB + Zmniejsz amplitudę wykresu falowego o 1 dB + + + + Stereo mode: maximum + Tryb stereo: maksimum + + + + Process based on the maximum of both stereo channels + Przetwarzaj w oparciu o maksimum z obu kanałów stereo + + + + Stereo mode: average + Tryb stereo: średnia + + + + Process based on the average of both stereo channels + Przetwarzaj w oparciu o średnią z obu kanałów stereo + + + + Stereo mode: unlinked + Tryb stereo: niepołączone + + + + Process each stereo channel independently + Przetwarzaj każdy kanał stereo niezależnie + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + Odtwarzaj (Spacja) + + + + Stop (Space) + Zatrzymaj (Spacja) + + + + Record + Nagrywaj + + + + Record while playing + Nagrywaj podczas odtwarzania + + + + Toggle Step Recording + Przełącz nagrywanie kroków + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + ŁAŃCUCH EFEKTÓW + + + + Add effect + Dodaj efekt + + + + lmms::gui::EffectSelectDialog + + + Add effect + Dodaj efekt + + + + + Name + Nazwa + + + + Type + Typ + + + + All + Wszystko + + + + Search + Szukaj + + + + Description + Opis + + + + Author + Autor + + + + lmms::gui::EffectView + + + On/Off + Wł./wył. + + + + W/D + M/S + + + + Wet Level: + Poziom mokry: + + + + DECAY + + + + + Time: + Czas: + + + + GATE + BRAMKA + + + + Gate: + Bramka: + + + + Controls + + + + + Move &up + Przes&uń w górę + + + + Move &down + Przesuń w &dół + + + + &Remove this plugin + &Usuń tę wtyczkę + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + WAR + + + + + Modulation amount: + Wartość modulacji: + + + + + DEL + DEL + + + + + Pre-delay: + Opóźnienie wstępne: + + + + + ATT + NAR + + + + + Attack: + Narastanie: + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + OPA + + + + Release: + Opadanie: + + + + SPD + SPD + + + + Frequency: + Częstotliwość: + + + + FREQ x 100 + CZĘST. x 100 + + + + Multiply LFO frequency by 100 + Pomnóż częstotliwość LFO przez 100 + + + + MOD ENV AMOUNT + MODULUJ WARTOŚĆ OBWIEDNI + + + + Control envelope amount by this LFO + Kontroluj wartość obwiedni przez ten LFO + + + + Hint + Podpowiedź + + + + Drag and drop a sample into this window. + Przeciągnij i upuść próbkę do tego okna. + + + + lmms::gui::EnvelopeGraph + + + Scaling + Skalowanie + + + + Dynamic + Dynamika + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + Używa odstępów bezwzględnych, ale przełącza się na odstępy względne, jeśli zabraknie miejsca + + + + Absolute + Bezwzględny + + + + Provides enough potential space for each segment but does not scale + Zapewnia wystarczająco dużo potencjalnego miejsca dla każdego segmentu, ale nie jest skalowalny + + + + Relative + Względny + + + + Always uses all of the available space to display the envelope graph + Zawsze wykorzystuje całe dostępne miejsce do wyświetlania wykresu obwiedni + + + + lmms::gui::EqControlsDialog + + + HP + HP + + + + Low-shelf + Dolnopółkowy + + + + Peak 1 + Szczyt 1 + + + + Peak 2 + Szczyt 2 + + + + Peak 3 + Szczyt 3 + + + + Peak 4 + Szczyt 4 + + + + High-shelf + Górnopółkowy + + + + LP + LP + + + + Input gain + Wzmocnienie wejścia + + + + + + Gain + Wzmocnienie + + + + Output gain + Wzmocnienie wyjścia + + + + Bandwidth: + Szerokość pasma: + + + + Octave + Oktawa + + + + Resonance: + + + + + Frequency: + Częstotliwość: + + + + LP group + Grupa LP + + + + HP group + Grupa HP + + + + lmms::gui::EqHandle + + + Reso: + Rez.: + + + + BW: + SP: + + + + + Freq: + Częst.: + + + + lmms::gui::ExportProjectDialog + + + Could not open file + Nie można otworzyć pliku + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + Nie można otworzyć pliku %1 do zapisu. +Upewnij się, że masz uprawnienia do zapisu do pliku i katalogu zawierającego plik i spróbuj ponownie! + + + + Export project to %1 + Eksportuj projekt do %1 + + + + ( Fastest - biggest ) + ( Najszybsze - największe ) + + + + ( Slowest - smallest ) + ( Najwolniejsze - najmniejsze ) + + + + Error + Błąd + + + + Error while determining file-encoder device. Please try to choose a different output format. + Wystąpił błąd podczas określania urządzenia kodującego plik. Spróbuj wybrać inny format wyjściowy. + + + + Rendering: %1% + Renderowanie: %1% + + + + lmms::gui::Fader + + + Set value + Ustaw wartość + + + + Please enter a new value between %1 and %2: + Wprowadź nową wartość między %1 a %2: + + + + Volume: %1 dBFS + Głośność: %1 dBFS + + + + lmms::gui::FileBrowser + + + Browser + Przeglądarka + + + + Search + Szukaj + + + + Refresh list + Odśwież listę + + + + User content + Zawartość użytkownika + + + + Factory content + Zawartość fabryczna + + + + Hidden content + Zawartość ukryta + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + Wyślij do aktywnej ścieżki instrumentu + + + + Open containing folder + Otwórz folder zawierający + + + + Song Editor + Edytor utworu + + + + Pattern Editor + Edytor szablonów + + + + Send to new AudioFileProcessor instance + Wyślij do nowej instancji AudioFileProcessorze + + + + Send to new instrument track + Wyślij do nowej ścieżki instrumentu + + + + (%2Enter) + (%2Enter) + + + + Send to new sample track (Shift + Enter) + Wyślij do nowej ścieżki próbek (Shift+Enter) + + + + Loading sample + Ładowanie próbki + + + + Please wait, loading sample for preview... + Czekaj. Ładowanie próbki do podglądu... + + + + Error + Błąd + + + + %1 does not appear to be a valid %2 file + %1 nie wydaje się być prawidłowym plikiem %2 + + + + --- Factory files --- + --- Pliki fabryczne --- + + + + lmms::gui::FileDialog + + + %1 files + %1 plików + + + + All audio files + Wszystkie pliki dźwiękowe + + + + Other files + Inne pliki + + + + lmms::gui::FlangerControlsDialog + + + DELAY + OPÓŹN + + + + Delay time: + Czas opóźnienia: + + + + RATE + + + + + Period: + Okres: + + + + AMNT + WART + + + + Amount: + Wartość: + + + + PHASE + FAZA + + + + Phase: + Faza: + + + + FDBK + SPZW + + + + Feedback amount: + Wartość sprzężenia zwrotnego: + + + + NOISE + SZUM + + + + White noise amount: + Wartość szumu białego: + + + + Invert + Odwróć + + + + lmms::gui::FloatModelEditorBase + + + Set linear + Ustaw liniowo + + + + Set logarithmic + Ustaw logarytmicznie + + + + + Set value + Ustaw wartość + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + Wprowadź nową wartość między -96.0 dBFS a 6.0 dBFS: + + + + Please enter a new value between %1 and %2: + Wprowadź nową wartość między %1 a %2: + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + Czas wobulacji: + + + + Sweep time + Czas wobulacji + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + Współczynnik wypełnienia szablonu fali: + + + + + Wave pattern duty cycle + Współczynnik wypełnienia szablonu fali + + + + Square channel 1 volume: + Głośność kanału kwadratowego 1: + + + + Square channel 1 volume + Głośność kanału kwadratowego 1 + + + + + + Length of each step in sweep: + Długość każdego kroku wobulacji: + + + + + + Length of each step in sweep + Długość każdego kroku wobulacji + + + + Square channel 2 volume: + Głośność kanału kwadratowego 2: + + + + Square channel 2 volume + Głośność kanału kwadratowego 2 + + + + Wave pattern channel volume: + Głośność kanału szablonu fali: + + + + Wave pattern channel volume + Głośność kanału szablonu fali + + + + Noise channel volume: + Głośność kanału szumu: + + + + Noise channel volume + Głośność kanału szumu + + + + SO1 volume (Right): + Głośność SO1 (prawy): + + + + SO1 volume (Right) + Głośność SO1 (prawy) + + + + SO2 volume (Left): + Głośność SO2 (lewy): + + + + SO2 volume (Left) + Głośność SO2 (lewy) + + + + Treble: + Soprany: + + + + Treble + Soprany + + + + Bass: + Basy: + + + + Bass + Basy + + + + Sweep direction + Kierunek wobulacji + + + + + + + + Volume sweep direction + Kierunek wobulacji głośności + + + + Shift register width + Szerokość rejestru przesuwnego + + + + Channel 1 to SO1 (Right) + Kanał 1 do SO1 (prawy) + + + + Channel 2 to SO1 (Right) + Kanał 2 do SO1 (prawy) + + + + Channel 3 to SO1 (Right) + Kanał 3 do SO1 (prawy) + + + + Channel 4 to SO1 (Right) + Kanał 4 do SO1 (prawy) + + + + Channel 1 to SO2 (Left) + Kanał 1 do SO2 (lewy) + + + + Channel 2 to SO2 (Left) + Kanał 2 do SO2 (lewy) + + + + Channel 3 to SO2 (Left) + Kanał 3 do SO2 (lewy) + + + + Channel 4 to SO2 (Left) + Kanał 4 do SO2 (lewy) + + + + Wave pattern graph + Wykres szablonu fali + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + Otwórz plik GIG + + + + Choose patch + Wybierz próbkę + + + + Gain: + Wzmocnienie: + + + + GIG Files (*.gig) + Pliki GIG (*.gig) + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + Wielkość ziarna: + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + Kształt ziarna: + + + + Fade Length: + Długość ściszenia: + + + + Feedback: + Sprzężenie zwrotne: + + + + Minimum Allowed Latency: + Minimalne dozwolone opóźnienie: + + + + Density: + Gęstość: + + + + Glide: + Poślizg: + + + + + Pitch + Odstrojenie + + + + + Pitch Stereo Spread + + + + + Open help window + Otwórz okno pomocy + + + + + Prefilter + Filtr wstępny + + + + lmms::gui::GuiApplication + + + Working directory + Katalog roboczy + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + Katalog roboczy LMMS %1 nie istnieje. Chcesz go utworzyć? Możesz zmienić katalog później w Edycja -> Ustawienia. + + + + Preparing UI + Przygotowywanie interfejsu użytkownika + + + + Preparing song editor + Przygotowywanie edytora utworu + + + + Preparing mixer + Przygotowywanie miksera + + + + Preparing controller rack + Przygotowanie racka kontrolerów + + + + Preparing project notes + Przygotowanie notek projektu + + + + Preparing microtuner + Przygotowywanie mikrotunera + + + + Preparing pattern editor + Przygotowanie edytora szablonów + + + + Preparing piano roll + Przygotowywanie edytora pianolowego + + + + Preparing automation editor + Przygotowanie edytora automatyki + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + ARPEGGIO + + + + RANGE + ZAKRES + + + + Arpeggio range: + Zakres arpeggio: + + + + octave(s) + oktaw(y) + + + + REP + POW + + + + Note repeats: + Powtórzenia nuty: + + + + time(s) + raz(y) + + + + CYCLE + CYKL + + + + Cycle notes: + Nuty cyklu: + + + + note(s) + nut(y) + + + + SKIP + POMIŃ + + + + Skip rate: + + + + + + + % + % + + + + MISS + + + + + Miss rate: + + + + + TIME + CZAS + + + + Arpeggio time: + Czas arpeggio: + + + + ms + ms + + + + GATE + BRAMKA + + + + Arpeggio gate: + Bramka arpeggio: + + + + Chord: + Akord: + + + + Direction: + Kierunek: + + + + Mode: + Tryb: + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + UKŁADANIE + + + + Chord: + Akord: + + + + RANGE + ZAKRES + + + + Chord range: + Zakres akordu: + + + + octave(s) + oktaw(y) + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + WŁĄCZ WEJŚCIE MIDI + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + KANA + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + WŁĄCZ WYJŚCIE MIDI + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + NUTA + + + + MIDI devices to receive MIDI events from + Urządzenia MIDI odbierające zdarzenia MIDI z + + + + MIDI devices to send MIDI events to + Urządzenia MIDI wysyłające zdarzenia MIDI do + + + + VELOCITY MAPPING + MAPOWANIE GŁOŚNOŚCI + + + + MIDI VELOCITY + GŁOŚNOŚĆ MIDI + + + + MIDI notes at this velocity correspond to 100% note velocity. + Nuty MIDI o tej głośności odpowiadają 100% głośności nut. + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + CEL + + + + FILTER + FILTR + + + + FREQ + CZĘST + + + + Cutoff frequency: + Częstotliwość graniczna: + + + + Hz + Hz + + + + Q/RESO + Q/REZO + + + + Q/Resonance: + Q/Rezonans: + + + + Envelopes, LFOs and filters are not supported by the current instrument. + Obwiednie, LFO i filtry nie są obsługiwane przez bieżący instrument. + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + Kanał miksera + + + + Volume + Głośność + + + + Volume: + Głośność: + + + + VOL + + + + + Panning + Panoramowanie + + + + Panning: + Panoramowanie: + + + + PAN + PAN + + + + MIDI + MIDI + + + + Input + Wejście + + + + Output + Wyjście + + + + Open/Close MIDI CC Rack + Otwórz/zamknij Rack MIDI CC + + + + %1: %2 + %1: %2 + + + + lmms::gui::InstrumentTrackWindow + + + Volume + Głośność + + + + Volume: + Głośność: + + + + VOL + + + + + Panning + Panoramowanie + + + + Panning: + Panoramowanie: + + + + PAN + PAN + + + + Pitch + Odstrojenie + + + + Pitch: + Odstrojenie: + + + + cents + centów + + + + PITCH + ODSTR + + + + Pitch range (semitones) + Zakres odstrojenia (półtony) + + + + RANGE + ZAKRES + + + + Mixer channel + Kanał miksera + + + + CHANNEL + KANAŁ + + + + Save current instrument track settings in a preset file + Zapisz bieżące ustawienia ścieżki instrumentu w pliku presetów + + + + SAVE + ZAPISZ + + + + Envelope, filter & LFO + Obwiednia, filtr i LFO + + + + Chord stacking & arpeggio + Układanie akordów i arpeggio + + + + Effects + Efekty + + + + MIDI + MIDI + + + + Tuning and transposition + Strojenie i transpozycja + + + + Save preset + Zapisz preset + + + + XML preset file (*.xpf) + Plik XML presetu (*.xpf) + + + + Plugin + Wtyczka + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + TRANSPOZYCJA OGÓLNA + + + + Enables the use of global transposition + Umożliwia korzystanie z transpozycji ogólnej + + + + Microtuner is not available for MIDI-based instruments. + Mikrotuner nie jest dostępny dla instrumentów opartych na MIDI. + + + + MICROTUNER + MIKROTUNER + + + + Active scale: + Aktywna skala: + + + + + Edit scales and keymaps + Edytuj skale i mapowania klawiszy + + + + Active keymap: + Aktywne mapowanie klawiszy: + + + + Import note ranges from keymap + Importuj zakresy nut z mapowania klawiszy + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + Po włączeniu tej opcji pierwsza, ostatnia i bazowa nuta tego instrumentu zostaną zastąpione wartościami określonymi przez wybrane mapowanie klawiszy. + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + Częstotliwość początkowa: + + + + End frequency: + Częstotliwość końcowa: + + + + Frequency slope: + Nachylenie częstotliwości: + + + + Gain: + Wzmocnienie: + + + + Envelope length: + Długość obwiedni: + + + + Envelope slope: + Nachylenie obwiedni: + + + + Click: + Kliknięcie: + + + + Noise: + Szum: + + + + Start distortion: + Początek zniekształcenia: + + + + End distortion: + Koniec zniekształcenia: + + + + lmms::gui::LOMMControlDialog + + + Depth: + Głębia: + + + + Compression amount for all bands + Stopień kompresji dla wszystkich pasm + + + + Time: + Czas: + + + + Attack/release scaling for all bands + Skalowanie narastania/opadania dla wszystkich pasm + + + + Input Volume: + Głośność wejściowa: + + + + Input volume + Głośność wejściowa + + + + Output Volume: + Głośność wyjściowa: + + + + Output volume + Głośność wyjściowa + + + + Upward Depth: + Głębia w górę: + + + + Upward compression amount for all bands + Stopień kompresji w górę dla wszystkich pasm + + + + Downward Depth: + Głębia w dół: + + + + Downward compression amount for all bands + Stopień kompresji w dół dla wszystkich pasm + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + Czas RMS: + + + + RMS size for sidechain signal (set to 0 for Peak mode) + Rozmiar RMS dla sygnału łańcucha bocznego (ustawiony na 0 dla trybu szczytowego) + + + + Knee: + Czułość: + + + + Knee size for all compressors + Rozmiar czułości dla wszystkich kompresorów + + + + Range: + Zakres: + + + + Maximum gain increase for all bands + Maksymalne zwiększenie wzmocnienia dla wszystkich pasm + + + + Balance: + Równowaga: + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + Przyspiesz czas narastania i opadania w przypadku wystąpienia stanów przejściowych + + + + Mix: + Miks: + + + + Wet/Dry of all bands + Suchy/mokry dla wszystkich pasm + + + + Feedback + Sprzężenie zwrotne + + + + Use output as sidechain signal instead of input + Użyj wyjścia jako sygnału łańcucha bocznego zamiast wejścia + + + + Mid/Side + Śr./b. + + + + Compress mid/side channels instead of left/right + Kompresuj kanały środkowe/boczne zamiast lewego/prawego + + + + + Suppress upward compression for side band + Wytłumienie kompresji w górę dla pasma bocznego + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + Wyczyść wszystkie parametry + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + Dostępne efekty + + + + + Unavailable Effects + Niedostępne efekty + + + + + Instruments + Instrumenty + + + + + Analysis Tools + Narzędzia analityczne + + + + + Don't know + Nieznane + + + + Type: + Typ: + + + + lmms::gui::LadspaControlDialog + + + Link Channels + Połącz kanały + + + + Channel + Kanał + + + + lmms::gui::LadspaControlView + + + Link channels + Połącz kanały + + + + Value: + Wartość: + + + + lmms::gui::LadspaDescription + + + Plugins + Wtyczki + + + + Description + Opis + + + + Name: + Nazwa: + + + + Maker: + Twórca: + + + + Copyright: + Prawa autorskie: + + + + Requires Real Time: + Wymaga czasu rzeczywistego: + + + + + + Yes + Tak + + + + + + No + Nie + + + + Real Time Capable: + Możliwość pracy w czasie rzeczywistym: + + + + In Place Broken: + Na miejscu złamane: + + + + Channels In: + Kanały wejściowe: + + + + Channels Out: + Kanały wyjściowe: + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + Połącz kanały + + + + Link + Połącz + + + + Channel %1 + Kanał %1 + + + + Link channels + Połącz kanały + + + + lmms::gui::LadspaPortDialog + + + Ports + Porty + + + + Name + Nazwa + + + + Rate + + + + + Direction + Kierunek + + + + Type + Typ + + + + Min < Default < Max + Min. < Domyślne < Maks. + + + + Logarithmic + Logarytmiczny + + + + SR Dependent + Zależny od SR + + + + Audio + Dźwięk + + + + Control + + + + + Input + Wejście + + + + Output + Wyjście + + + + Toggled + Przełączalne + + + + Integer + Całkowite + + + + Float + Zmiennoprzecinkowe + + + + + Yes + Tak + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + Częst. graniczna: + + + + Resonance: + Rezonans: + + + + Env Mod: + Mod. obw.: + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + Fala piłokształtna + + + + Click here for a saw-wave. + Kliknij tutaj, aby przełączyć na falę piłokształtną. + + + + Triangle wave + Fala trójkątna + + + + Click here for a triangle-wave. + Kliknij tutaj, aby przełączyć na falę trójkątną. + + + + Square wave + Fala prostokątna + + + + Click here for a square-wave. + Kliknij tutaj, aby przełączyć na falę prostokątną. + + + + Rounded square wave + Fala prostokątna, zaokrąglona + + + + Click here for a square-wave with a rounded end. + Kliknij tutaj, aby przełączyć na falę prostokątną z zaokrąglonymi narożami. + + + + Moog wave + Fala Mooga + + + + Click here for a moog-like wave. + Kliknij tutaj, aby przełączyć na falę Mooga. + + + + Sine wave + Fala sinusoidalna + + + + Click for a sine-wave. + Kliknij tutaj, aby przełączyć na falę sinusoidalną. + + + + + White noise wave + Fala szumu białego + + + + Click here for an exponential wave. + Kliknij tutaj, aby przełączyć na falę wykładniczą. + + + + Click here for white-noise. + Kliknij tutaj, aby przełączyć na falę szumu białego. + + + + Bandlimited saw wave + Fala piłokształtna pasmowo ograniczona + + + + Click here for bandlimited saw wave. + Kliknij tutaj, aby przełączyć na falę piłokształtną pasmowo ograniczoną. + + + + Bandlimited square wave + Fala kwadratowa pasmowo ograniczona + + + + Click here for bandlimited square wave. + Kliknij tutaj, aby przełączyć na falę kwadratową pasmowo ograniczoną. + + + + Bandlimited triangle wave + Fala trójkątna pasmowo ograniczona + + + + Click here for bandlimited triangle wave. + Kliknij tutaj, aby przełączyć na falę trójkątną pasmowo ograniczoną. + + + + Bandlimited moog saw wave + Fala piłokształtna Mooga pasmowo ograniczona + + + + Click here for bandlimited moog saw wave. + Kliknij tutaj, aby przełączyć na falę piłokształtną Mooga pasmowo ograniczoną. + + + + lmms::gui::LcdFloatSpinBox + + + Set value + Ustaw wartość + + + + Please enter a new value between %1 and %2: + Wprowadź nową wartość między %1 a %2: + + + + lmms::gui::LcdSpinBox + + + Set value + Ustaw wartość + + + + Please enter a new value between %1 and %2: + Wprowadź nową wartość między %1 a %2: + + + + lmms::gui::LeftRightNav + + + + + Previous + Poprzedni + + + + + + Next + Następny + + + + Previous (%1) + Poprzedni (%1) + + + + Next (%1) + Następny (%1) + + + + lmms::gui::LfoControllerDialog + + + LFO + LFO + + + + BASE + BAZA + + + + Base: + Baza: + + + + FREQ + CZĘST + + + + LFO frequency: + Częstotliwość LFO: + + + + AMNT + WART + + + + Modulation amount: + Wartość modulacji: + + + + PHS + FAZ + + + + Phase offset: + Przesunięcie fazowe: + + + + degrees + stopni + + + + Sine wave + Fala sinusoidalna + + + + Triangle wave + Fala trójkątna + + + + Saw wave + Fala piłokształtna + + + + Square wave + Fala prostokątna + + + + Moog saw wave + Fala piłokształtna Mooga + + + + Exponential wave + Fala wykładnicza + + + + White noise + Szum biały + + + + User-defined shape. +Double click to pick a file. + Kształt zdefiniowany przez użytkownika. +Kliknij dwukrotnie myszką, aby wybrać plik. + + + + Multiply modulation frequency by 1 + Pomnóż częstotliwość modulacji przez 1 + + + + Multiply modulation frequency by 100 + Pomnóż częstotliwość modulacji przez 100 + + + + Divide modulation frequency by 100 + Podziel częstotliwość modulacji przez 100 + + + + lmms::gui::LfoGraph + + + %1 Hz + %1 Hz + + + + lmms::gui::MainWindow + + + Configuration file + Plik konfiguracyjny + + + + Error while parsing configuration file at line %1:%2: %3 + Błąd podczas analizowania pliku konfiguracyjnego w wierszu %1:%2: %3 + + + + Could not open file + Nie można otworzyć pliku + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + Nie można otworzyć pliku %1 do zapisu. +Upewnij się, że masz uprawnienia do zapisu do pliku i katalogu zawierającego plik i spróbuj ponownie! + + + + Project recovery + Odzyskiwanie projektu + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + Istnieje plik odzyskiwania. Wygląda na to, że ostatnia sesja nie zakończyła się prawidłowo lub inna instancja LMMS jest już uruchomiona. Chcesz odzyskać projekt tej sesji? + + + + + Recover + Odzyskaj + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + Odzyskaj plik. Nie uruchamiaj wielu instancji LMMS podczas wykonywania tej czynności. + + + + + Discard + Odrzuć + + + + Launch a default session and delete the restored files. This is not reversible. + Uruchom domyślną sesję i usuń przywrócone pliki. Tego nie można cofnąć. + + + + Version %1 + Wersja %1 + + + + Preparing plugin browser + Przygotowanie przeglądarki wtyczek + + + + Preparing file browsers + Przygotowanie przeglądarki plików + + + + My Projects + Moje projekty + + + + My Samples + Moje próbki + + + + My Presets + Moje presety + + + + My Home + Mój katalog główny + + + + Root Directory + Katalog główny + + + + Volumes + Głośność + + + + My Computer + Mój komputer + + + + Loading background picture + Ładowanie obrazu tła + + + + &File + &Plik + + + + &New + &Nowy + + + + &Open... + &Otwórz... + + + + &Save + Zapi&sz + + + + Save &As... + Z&apisz jako... + + + + Save as New &Version + Zapisz jako no&wą wersję + + + + Save as default template + Zapisz jako szablon domyślny + + + + Import... + Importuj... + + + + E&xport... + E&ksportuj... + + + + E&xport Tracks... + E&ksportuj ścieżki... + + + + Export &MIDI... + Eksportuj &MIDI... + + + + &Quit + Za&kończ + + + + &Edit + &Edycja + + + + Undo + Cofnij + + + + Redo + Ponów + + + + Scales and keymaps + Skale i mapowania klawiszy + + + + Settings + Ustawienia + + + + &View + &Widok + + + + &Tools + &Narzędzia + + + + &Help + &Pomoc + + + + Online Help + Pomoc online + + + + Help + Pomoc + + + + About + O LMMS + + + + Create new project + Utwórz nowy projekt + + + + Create new project from template + Utwórz nowy projekt z szablonu + + + + Open existing project + Otwórz istniejący projekt + + + + Recently opened projects + Ostatnio otwarte projekty + + + + Save current project + Zapisz bieżący projekt + + + + Export current project + Eksportuj bieżący projekt + + + + Metronome + Metronom + + + + + Song Editor + Edytor utworu + + + + + Pattern Editor + Edytor szablonów + + + + + Piano Roll + Edytor pianolowy + + + + + Automation Editor + Edytor automatyki + + + + + Mixer + Mikser + + + + Show/hide controller rack + Pokaż/ukryj racka kontrolerów + + + + Show/hide project notes + Pokaż/ukryj notatki projektu + + + + Untitled + Bez nazwy + + + + Recover session. Please save your work! + Odzyskana sesja. Zapisz swoją pracę! + + + + LMMS %1 + LMMS %1 + + + + Recovered project not saved + Odzyskany projekt nie został zapisany + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + Ten projekt został odzyskany z poprzedniej sesji. Obecnie nie jest zapisany i zostanie utracony, jeśli go nie zapiszesz. Chcesz go teraz zapisać? + + + + Project not saved + Projekt nie został zapisany + + + + The current project was modified since last saving. Do you want to save it now? + Bieżący projekt został zmodyfikowany od ostatniego zapisania. Chcesz go teraz zapisać? + + + + Open Project + Otwórz projekt + + + + LMMS (*.mmp *.mmpz) + LMMS (*.mmp *.mmpz) + + + + Save Project + Zapisz projekt + + + + LMMS Project + Projekt LMMS + + + + LMMS Project Template + Szablon projektu LMMS + + + + Save project template + Zapisz szablon projektu + + + + Overwrite default template? + Zastąpić szablon domyślny? + + + + This will overwrite your current default template. + Spowoduje to zastąpienie bieżącego szablonu domyślnego. + + + + Help not available + Pomoc niedostępna + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + Aktualnie pomoc dla LMMS jest niedostępna. +Odwiedź http://lmms.sf.net/wiki w celu uzyskania dokumentacji na temat LMMS. + + + + Controller Rack + Rack kontrolerów + + + + Project Notes + Notatki do projektu + + + + Fullscreen + Pełny ekran + + + + Volume as dBFS + Głośność jako dBFS + + + + Smooth scroll + Płynne przewijanie + + + + Enable note labels in piano roll + Włącz etykiety nut w edytorze pianolowym + + + + MIDI File (*.mid) + Plik MIDI (*.mid) + + + + + untitled + bez nazwy + + + + + Select file for project-export... + Wybierz plik do eksportu projektu... + + + + Select directory for writing exported tracks... + Wybierz katalog do zapisu eksportowanych ścieżek... + + + + Save project + Zapisz projekt + + + + Project saved + Projekt został zapisany + + + + The project %1 is now saved. + Projekt %1 został zapisany. + + + + Project NOT saved. + Projekt NIE został zapisany. + + + + The project %1 was not saved! + Projekt %1 nie został zapisany! + + + + Import file + Importuj plik + + + + MIDI sequences + Sekwencje MIDI + + + + Hydrogen projects + Projekty Hydrogen + + + + All file types + Wszystkie typy plików + + + + lmms::gui::MalletsInstrumentView + + + Instrument + Instrument + + + + Spread + Rozstrzał + + + + Spread: + Rozstrzał: + + + + Random + Losowe + + + + Random: + Losowe: + + + + Missing files + Brakujące pliki + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + Wygląda na to, że instalacja Stk jest niekompletna. Upewnij się, że pełny pakiet Stk jest zainstalowany! + + + + Hardness + Twardość + + + + Hardness: + Twardość: + + + + Position + Pozycja + + + + Position: + Pozycja: + + + + Vibrato gain + Wzmocnienie vibrato + + + + Vibrato gain: + Wzmocnienie vibrato: + + + + Vibrato frequency + Częstotliwość vibrato + + + + Vibrato frequency: + Częstotliwość vibrato: + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + Modulator + + + + Modulator: + Modulator: + + + + Crossfade + Płynne przechodzenie + + + + Crossfade: + Płynne przechodzenie: + + + + LFO speed + Prędkość LFO + + + + LFO speed: + Prędkość LFO: + + + + LFO depth + Głębia LFO + + + + LFO depth: + Głębia LFO: + + + + ADSR + ADSR + + + + ADSR: + ADSR: + + + + Pressure + Ciśnienie + + + + Pressure: + Ciśnienie: + + + + Speed + Prędkość + + + + Speed: + Prędkość: + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + - kontrola parametru VST + + + + VST sync + Synchronizacja VST + + + + + Automated + Automatyzowane + + + + Close + Zamknij + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + - kontrola wtyczki VST + + + + VST Sync + Synchronizacja VST + + + + + Automated + Automatyzowane + + + + Close + Zamknij + + + + lmms::gui::MeterDialog + + + + Meter Numerator + Numerator metryczny + + + + Meter numerator + Numerator metryczny + + + + + Meter Denominator + Denominator metryczny + + + + Meter denominator + Denominator metryczny + + + + TIME SIG + METRUM + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + Wybrany slot skali + + + + Selected keymap slot + Wybrany slot mapowania klawiszy + + + + + First key + Pierwszy klawisz + + + + + Last key + Ostatni klawisz + + + + + Middle key + Środkowy klawisz + + + + + Base key + Bazowy klawisz + + + + + + Base note frequency + Częstotliwość nuty bazowej + + + + Microtuner Configuration + Konfiguracja mikrotunera + + + + Scale slot to edit: + Slot skali do edycji: + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + Opis skali. Nie może zaczynać się od „!” i nie może zawierać znaku nowej linii. + + + + + Load + Załaduj + + + + + Save + Zapisz + + + + Load scale definition from a file. + Załaduj definicję skali z pliku. + + + + Save scale definition to a file. + Zapisz definicję skali do pliku. + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + Wprowadź interwały w oddzielnych wierszach. Liczby zawierające przecinek dziesiętny są traktowane jako centy. +Pozostałe dane wejściowe są traktowane jako stosunki całkowite i muszą mieć formę „a/b” lub „a”. +Jedność (0,0 centów lub stosunek 1/1) jest zawsze obecna jako ukryta pierwsza wartość; nie wprowadzaj jej ręcznie. + + + + Apply scale changes + Zastosuj zmiany skali + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + Sprawdź i zastosuj zmiany wprowadzone do wybranej skali. Aby użyć skali, wybierz ją w ustawieniach obsługiwanego instrumentu. + + + + Keymap slot to edit: + Slot mapowania klawiszy do edycji: + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + Opis mapowania klawiszy. Nie może zaczynać się od „!” i nie może zawierać znaku nowej linii. + + + + Load key mapping definition from a file. + Załaduj definicję mapowania klawiszy z pliku. + + + + Save key mapping definition to a file. + Zapisz definicję mapowania klawiszy do pliku. + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + Wprowadź mapowania klawiszy w osobnych wierszach. Każdy wiersz przypisuje stopień skali do klawisza MIDI, +zaczynając od środkowego klawisza i kontynuując sekwencję. +Szablon powtarza się dla klawiszy spoza wyraźnego zakresu mapowania klawiszy. +Wiele klawiszy można mapować do tego samego stopnia skali. +Wprowadź „x”, jeśli chcesz pozostawić klawisz wyłączony/niemapowany. + + + + FIRST + PIERWSZY + + + + First MIDI key that will be mapped + Pierwszy klawisz MIDI, który będzie mapowany + + + + LAST + OSTATNI + + + + Last MIDI key that will be mapped + Ostatni klawisz MIDI, który będzie mapowany + + + + MIDDLE + ŚRODKOWY + + + + First line in the keymap refers to this MIDI key + Pierwszy wiersz w mapowaniu klawiszy odnosi się do tego klawisza MIDI + + + + BASE N. + N. BAZO + + + + Base note frequency will be assigned to this MIDI key + Częstotliwość nuty bazowej zostanie przypisana do tego klawisza MIDI + + + + BASE NOTE FREQ + CZĘST NUTY BAZO + + + + Apply keymap changes + Zastosuj zmiany w mapowaniu klawiszy + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + Sprawdź i zastosuj zmiany wprowadzone do wybranego mapowania klawiszy. Aby użyć mapowania, wybierz je w ustawieniach obsługiwanego instrumentu. + + + + Scale parsing error + Błąd analizowania skali + + + + Scale name cannot start with an exclamation mark + Nazwa skali nie może zaczynać się od wykrzyknika + + + + Scale name cannot contain a new-line character + Nazwa skali nie może zawierać znaku nowej linii + + + + Interval defined in cents cannot be converted to a number + Interwał zdefiniowany w centach nie może być przekonwertowany na liczbę + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + Interwał zdefiniowany jako współczynnik nie może być ujemny + + + + Keymap parsing error + Błąd analizowania mapowania klawiszy + + + + Keymap name cannot start with an exclamation mark + Nazwa mapowania klawiszy nie może zaczynać się od wykrzyknika + + + + Keymap name cannot contain a new-line character + Nazwa mapowania klawiszy nie może zawierać znaku nowej linii + + + + Scale degree cannot be converted to a whole number + Stopień skali nie może być przekonwertowany na liczbę całkowitą + + + + Scale degree cannot be negative + Stopień skali nie może być ujemny + + + + Invalid keymap + Nieprawidłowe mapowanie klawiszy + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + Tonacja bazowa nie jest mapowana do żadnego stopnia skali. Nie zostanie wytworzony żaden dźwięk, ponieważ nie ma możliwości przypisania częstotliwości odniesienia do żadnej nuty. + + + + Open scale + Otwórz skalę + + + + + Scala scale definition (*.scl) + Definicja skali Scala (*.scl) + + + + Scale load failure + Błąd ładowania skali + + + + + Unable to open selected file. + Nie można otworzyć wybranego pliku. + + + + Open keymap + Otwórz mapowanie klawiszy + + + + + Scala keymap definition (*.kbm) + Definicja mapowania klawiszy Scala (*.kbm) + + + + Keymap load failure + Błąd ładowania mapowania klawiszy + + + + Save scale + Zapisz skalę + + + + Scale save failure + Błąd zapisywania skali + + + + + Unable to open selected file for writing. + Nie można otworzyć wybranego pliku do zapisu. + + + + Save keymap + Zapisz mapowanie klawiszy + + + + Keymap save failure + Błąd zapisywania mapowania klawiszy + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + Rack MIDI CC - %1 + + + + MIDI CC Knobs: + Pokrętła MIDI CC: + + + + CC %1 + CC %1 + + + + lmms::gui::MidiClipView + + + + Transpose + Transponuj + + + + Semitones to transpose by: + Półtony do transpozycji o: + + + + Open in piano-roll + Otwórz w edytorze pianolowym + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + Wyczyść wszystkie nuty + + + + Reset name + Resetuj nazwę + + + + Change name + Zmień nazwę + + + + Add steps + Dodaj kroki + + + + Remove steps + Usuń kroki + + + + Clone Steps + Klonuj kroki + + + + lmms::gui::MidiSetupWidget + + + Device + Urządzenie + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + Przypisz do: + + + + New Mixer Channel + Nowy kanał miksera + + + + Please enter a new value between %1 and %2: + Wprowadź nową wartość między %1 a %2: + + + + Set value + Ustaw wartość + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + Cisza + + + + Mute this channel + + + + + Solo + Solo + + + + Solo this channel + + + + + Fader %1 + Ściszanie %1 + + + + Move &left + Przesuń w &lewo + + + + Move &right + P&rzesuń w prawo + + + + Rename &channel + Zmień nazwę &kanału + + + + R&emove channel + &Usuń kanał + + + + Remove &unused channels + &Usuń nieużywane kanały + + + + Color + Kolor + + + + Change + Zmień + + + + Reset + Resetuj + + + + Pick random + Wybierz losowe + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + Ten kanał miksera jest używany. +Na pewno chcesz usunąć ten kanał? + +Ostrzeżenie: Tej operacji nie można cofnąć. + + + + Confirm removal + Potwierdź usunięcie + + + + Don't ask again + Nie pytaj ponownie + + + + lmms::gui::MixerView + + + Mixer + Mikser + + + + lmms::gui::MonstroView + + + Operators view + Widok operatora + + + + Matrix view + Widok macierzy + + + + + + Volume + Głośność + + + + + + Panning + Panoramowanie + + + + + Coarse detune - Odstrojenie zgrubne + - - - + + + semitones - półtony + półtów - - + + Fine tune left - - - - + + + + cents - centy + centów - - + + Fine tune right - - + + Stereo phase offset - Przesunięcie fazy stereo + Przesunięcie fazowe stereo - - - - + + + + deg - st + st. - + Pulse width Współczynnik wypełnienia impulsu - + Send sync on pulse rise - Wyślij sync przy wzroście pulsu + - + Send sync on pulse fall - Wyślij sync przy spadku pulsu + - + Hard sync oscillator 2 - Sync twarde oscylatora 2 + - + Reverse sync oscillator 2 - Sync odwrócone oscylatora 2 + - + Sub-osc mix - + Hard sync oscillator 3 - Sync twarde oscylatora 3 + - + Reverse sync oscillator 3 - Sync odwrócone oscylatora 3 + - - - - + + + + Attack - Atak + Narastanie - - + + Rate - Tempo + - - + + Phase Faza - - + + Pre-delay Opóźnienie wstępne - - + + Hold - Przetrzymanie + - - + + Decay - Zanikanie - - - - - Sustain - Podtrzymanie - - - - - Release - Wybrzmiewanie - - - - - Slope - Nachylenie - - - - Mix osc 2 with osc 3 + + Sustain + + + + + + Release + Opadanie + + + + + Slope + Nachylenie + + + + Mix osc 2 with osc 3 + Miksuj osc 2 z osc 3 + + + Modulate amplitude of osc 3 by osc 2 - + Moduluj amplitudę osc 3 z osc 2 - + Modulate frequency of osc 3 by osc 2 - + Moduluj częstotliwość osc 3 z osc 2 - - Modulate phase of osc 3 by osc 2 - - - - - - - - - - - - - - - - - - - - - + Modulate phase of osc 3 by osc 2 + Moduluj fazę osc 3 z osc 2 + + + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + Modulation amount - Współczynnik modulacji + Wartość modulacji - MultitapEchoControlDialog + lmms::gui::MultitapEchoControlDialog Length @@ -9231,12 +15126,12 @@ Odwiedź witrynę http://lmms.sf.net/wiki for documentation on LMMS. Dry - Suche + Suchy Dry gain: - + Wzmocnienie suchego: @@ -9251,4496 +15146,2894 @@ Odwiedź witrynę http://lmms.sf.net/wiki for documentation on LMMS. Swap inputs - Zamień wejścia + Zamień wyjścia Swap left and right input channels for reflections - + Zamień lewy i prawy kanał wejściowy dla odbić - NesInstrument + lmms::gui::NesInstrumentView - - Channel 1 coarse detune - - - - - Channel 1 volume - Głośność kanału 1 - - - - Channel 1 envelope length - - - - - Channel 1 duty cycle - - - - - Channel 1 sweep amount - - - - - Channel 1 sweep rate - - - - - Channel 2 Coarse detune - Kanał 2 Zgrubne odstrojenie - - - - Channel 2 Volume - Kanał 2 Głośność - - - - Channel 2 envelope length - - - - - Channel 2 duty cycle - - - - - Channel 2 sweep amount - - - - - Channel 2 sweep rate - - - - - Channel 3 coarse detune - - - - - Channel 3 volume - Głośność kanału 3 - - - - Channel 4 volume - Głośność kanału 4 - - - - Channel 4 envelope length - - - - - Channel 4 noise frequency - - - - - Channel 4 noise frequency sweep - - - - - Master volume - Głośność główna - - - - Vibrato - Vibrato - - - - NesInstrumentView - - - - - + + + + Volume Głośność - - - + + + Coarse detune - Odstrojenie zgrubne + - - - + + + Envelope length Długość obwiedni - + Enable channel 1 Włącz kanał 1 - + Enable envelope 1 Włącz obwiednię 1 - + Enable envelope 1 loop - Włącz pętlę obwiedni 1 + - + Enable sweep 1 Włącz wobulację 1 - - + + Sweep amount - Ilość wobulacji + Wartość wobulacji - - + + Sweep rate Częstotliwość wobulacji - - + + 12.5% Duty cycle - 12,5% Cykl pracy + - - + + 25% Duty cycle - 25% Cykl pracy + - - + + 50% Duty cycle - 50% Cykl pracy + - - + + 75% Duty cycle - 75% Cykl pracy + - + Enable channel 2 Włącz kanał 2 - + Enable envelope 2 Włącz obwiednię 2 - + Enable envelope 2 loop - Włącz pętlę obwiedni 2 + - + Enable sweep 2 Włącz wobulację 2 - + Enable channel 3 Włącz kanał 3 - + Noise Frequency Częstotliwość szumu - + Frequency sweep Wobulacja częstotliwości - + Enable channel 4 Włącz kanał 4 - + Enable envelope 4 Włącz obwiednię 4 - + Enable envelope 4 loop - Włącz pętlę obwiedni 4 + - + Quantize noise frequency when using note frequency - Kwantyzuj częstotliwość szumu przy użyciu częstotliwości nuty. + Kwantyzuj częstotliwość szumu przy użyciu częstotliwości nuty - + Use note frequency for noise Użyj częstotliwości nuty dla szumu - + Noise mode Tryb szumu - + Master volume Głośność główna - + Vibrato Vibrato - OpulenzInstrument + lmms::gui::OpulenzInstrumentView - - Patch - Próbka + + + Attack + Narastanie - - Op 1 attack + + + Decay - - Op 1 decay - + + + Release + Opadanie - - - Op 1 sustain - - - - - Op 1 release - - - - - Op 1 level - - - - - Op 1 level scaling - - - - - Op 1 frequency multiplier - - - - - Op 1 feedback - - - - - Op 1 key scaling rate - - - - - Op 1 percussive envelope - - - - - Op 1 tremolo - - - - - Op 1 vibrato - - - - - Op 1 waveform - - - - - Op 2 attack - - - - - Op 2 decay - - - - - Op 2 sustain - - - - - Op 2 release - - - - - Op 2 level - - - - - Op 2 level scaling - - - - - Op 2 frequency multiplier - - - - - Op 2 key scaling rate - - - - - Op 2 percussive envelope - - - - - Op 2 tremolo - - - - - Op 2 vibrato - - - - - Op 2 waveform - - - - - FM - FM - - - - Vibrato depth - - - - - Tremolo depth - - - - - OpulenzInstrumentView - Attack - Atak - - - - - Decay - Zanikanie - - - - - Release - Wybrzmiewanie - - - - Frequency multiplier Mnożnik częstotliwości - OscillatorObject + lmms::gui::OrganicInstrumentView - - Osc %1 waveform - Osc %1 przebieg + + Distortion: + Zniekształcenie: - - Osc %1 harmonic - Osc %1 harmoniczne + + Volume: + Głośność: - - - Osc %1 volume - Osc %1 głośność + + Randomise + Losowo - - - Osc %1 panning - Osc %1 panoramowanie + + + Osc %1 waveform: + - - - Osc %1 fine detuning left - Osc %1 dokładne odstrojenie lewo + + Osc %1 volume: + Głośność osc %1: - - Osc %1 coarse detuning - Osc %1 zgrubne odstrojenie + + Osc %1 panning: + Panoramowanie osc %1: - - Osc %1 fine detuning right - Osc %1 dokładne odstrojenie prawo + + Osc %1 stereo detuning + Odstrojenie stereo osc %1 - - Osc %1 phase-offset - Osc %1 przesunięcie fazowe + + cents + centów - - Osc %1 stereo phase-detuning - Osc %1 odstrojenie fazy stereo - - - - Osc %1 wave shape - Osc %1 kształt fali - - - - Modulation type %1 - Rodzaj modulacji %1 + + Osc %1 harmonic: + - Oscilloscope + lmms::gui::Oscilloscope - + Oscilloscope Oscyloskop - + Click to enable - Naciśnij, aby włączyć + Kliknij, aby włączyć - PatchesDialog + lmms::gui::PatmanView - - Qsynth: Channel Preset - Qsynth: Preset kanału - - - - Bank selector - Selektor banku - - - - Bank - Bank - - - - Program selector - Selektor programu - - - - Patch - Próbka - - - - Name - Nazwa - - - - OK - OK - - - - Cancel - Anuluj - - - - PatmanView - - + Open patch - + Otwórz próbkę - + Loop Pętla - + Loop mode - Tryb zapętlenia + Tryb pętli - + Tune Dostrojenie - + Tune mode Tryb dostrojenia - + No file selected - Nie wybrano żadnego pliku + Nie wybrano pliku - + Open patch file Otwórz plik Patch - + Patch-Files (*.pat) Pliki Patch (*.pat) - MidiClipView + lmms::gui::PatternClipView - - Open in piano-roll - Otwórz w Edytorze Pianolowym + + Open in Pattern Editor + Otwórz w edytorze szablonów - - Set as ghost in piano-roll - - - - - Clear all notes - Wyczyść wszystkie nuty - - - + Reset name - Zresetuj nazwę + Resetuj nazwę - + Change name Zmień nazwę + + + lmms::gui::PatternEditorWindow - - Add steps - Dodaj kroki + + Pattern Editor + Edytor szablonów - + + Play/pause current pattern (Space) + Odtwarzaj/wstrzymaj bieżący szablon (Spacja) + + + + Stop playback of current pattern (Space) + Zatrzymaj odtwarzanie bieżącego szablonu (Spacja) + + + + Pattern selector + Selektor szablonu + + + + Track and step actions + Czynności ścieżki i kroku + + + + New pattern + Nowy szablon + + + + Clone pattern + Klonuj szablon + + + + Add sample-track + Dodaj ścieżkę-próbkę + + + + Add automation-track + Dodaj ścieżkę-automatyki + + + Remove steps Usuń kroki - + + Add steps + Dodaj kroki + + + Clone Steps Klonuj kroki - PeakController + lmms::gui::PeakControllerDialog - - Peak Controller - Kontroler Szczytowy + + PEAK + SZCZ - - - Peak Controller Bug - Błąd Kontrolera Szczytowego - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - Ze względu na błąd w starszej wersji LMMS, kontrolery szczytowe mogą nie być prawidłowo podłączone. Upewnij się, że kontrolery szczytowe są podłączone prawidłowo i zapisz ponownie ten plik. Przepraszamy za wszelkie niedogodności. - - - - PeakControllerDialog - PEAK - PEAK - - - LFO Controller Kontroler LFO - PeakControllerEffectControlDialog + lmms::gui::PeakControllerEffectControlDialog - + BASE BAZA - - - Base: - - - AMNT - ILOŚĆ + Base: + Baza: - - Modulation amount: - Współczynnik modulacji: + + AMNT + WART + Modulation amount: + Wartość modulacji: + + + MULT MNOŻ - - - Amount multiplicator: - - - ATCK - ATAK + Amount multiplicator: + Mnożnik wartości: - - Attack: - Atak: + + ATCK + NARA - DCAY - ZANIK + Attack: + Narastanie: - - Release: - Wybrzmiewanie: + + DCAY + - TRSH - PRÓG: + Release: + Opadanie: - + + TRSH + PRÓG + + + Treshold: Próg: - - - Mute output - Wycisz wyjście - - Absolute value - - - - - PeakControllerEffectControls - - - Base value - Wartość bazowa - - - - Modulation amount - Współczynnik modulacji - - - - Attack - Narastanie - - - - Release - Wybrzmiewanie - - - - Treshold - Próg - - - Mute output Wycisz wyjście - + Absolute value - - - - - Amount multiplicator - + Wartość bezwzględna - PianoRoll + lmms::gui::PeakIndicator - + + -inf + -niesk. + + + + lmms::gui::PianoRoll + + Note Velocity - Głośność Nuty + Głośność nuty - + Note Panning - Panoramowanie Nuty + Panoramowanie nuty - + Mark/unmark current semitone Zaznacz/odznacz bieżący półton - + Mark/unmark all corresponding octave semitones Zaznacz/odznacz wszystkie odpowiadające półtony oktawy - + Mark current scale Zaznacz bieżącą skalę - + Mark current chord Zaznacz bieżący akord - + Unmark all Odznacz wszystko - + Select all notes on this key - Wybierz wszystkie nuty dla tego klucza + Zaznacz wszystkie nuty dla tej tonacji - + Note lock Blokada nuty - + Last note Ostatnia nuta - + No key - Brak klucza + Brak tonacji - + No scale Brak skali - + No chord Brak akordu - + Nudge - + Szturchaj - + Snap - + Przyciągaj - + Velocity: %1% Głośność: %1% - + Panning: %1% left Panoramowanie: %1% w lewo - + Panning: %1% right Panoramowanie: %1% w prawo - + Panning: center - Panoramowanie: centrum + Panoramowanie: środek - + Glue notes failed - + Please select notes to glue first. - + Please open a clip by double-clicking on it! - Otwórz wzorzec podwójnym kliknięciem! + Otwórz klip, klikając na niego dwukrotnie myszką! - - + + Please enter a new value between %1 and %2: - Wprowadź nową wartość pomiędzy %1 a %2: + Wprowadź nową wartość między %1 a %2: - PianoRollWindow + lmms::gui::PianoRollWindow - + Play/pause current clip (Space) - Odtwórz/wstrzymaj obecny wzorzec (spacja) + Odtwarzaj/wstrzymaj bieżący klip (Spacja) - + Record notes from MIDI-device/channel-piano - Nagraj nuty za pomocą urządzenia MIDI/kanału piano + - - Record notes from MIDI-device/channel-piano while playing song or BB track - Nagraj nuty za pomocą urządzenia MIDI/kanału piano podczas odtwarzania kompozycji lub ścieżki perkusji/basu + + Record notes from MIDI-device/channel-piano while playing song or pattern track + - + Record notes from MIDI-device/channel-piano, one step at the time - + Stop playing of current clip (Space) - Zatrzymaj odtwarzanie obecnego wzorca (spacja) + Zatrzymaj odtwarzanie bieżącego klipu (Spacja) - + Edit actions - Edytuj akcje + Edytuj czynności - + Draw mode (Shift+D) Tryb rysowania (Shift+D) - + Erase mode (Shift+E) Tryb wymazywania (Shift+E) - + Select mode (Shift+S) Tryb zaznaczania (Shift+S) - + Pitch Bend mode (Shift+T) - + Tryb pitchbend (Shift+T) - + Quantize Kwantyzuj - + Quantize positions - - - - - Quantize lengths - - - - - File actions - - - - - Import clip - + Kwantyzuj pozycje - - Export clip - - - - - Copy paste controls - Regulacja kopiuj wklej - - - - Cut (%1+X) - - - - - Copy (%1+C) - + Quantize lengths + Kwantyzuj długości + File actions + Czynności pliku + + + + Import clip + Importuj klip + + + + + Export clip + Eksportuj klip + + + + Copy paste controls + + + + + Cut (%1+X) + Wytnij (%1+X) + + + + Copy (%1+C) + Kopiuj (%1+C) + + + Paste (%1+V) - + Wklej (%1+V) - + Timeline controls - Kontrola osi czasu + - + Glue - + Klej - + Knife - + Nóż - + Fill - + Cut overlaps - + Min length as last - + Minimalna długość jako ostatnia - + Max length as last - - - - - Zoom and note controls - Regulacja nut i powiększenia - - - - Horizontal zooming - Powiększenie poziome - - - - Vertical zooming - Powiększenie pionowe + Maksymalna długość jako ostatnia + Zoom and note controls + + + + + Horizontal zooming + Powiększanie poziome + + + + Vertical zooming + Powiększanie pionowe + + + Quantization Kwantyzacja - + Note length Długość nuty - + Key - Klucz + Tonacja - + Scale - + Skala - + Chord - + Akord - + Snap mode - + Tryb przyciągania - + Clear ghost notes - - + + Piano-Roll - %1 - Edytor Pianolowy - %1 + Edytor pianolowy - %1 - - + + Piano-Roll - no clip - Edytor Pianolowy - brak wzorca + Edytor pianolowy - brak klipu - - + + XML clip file (*.xpt *.xptz) - + Plik XML klipu (*.xpt *.xptz) - + Export clip success - + Eksportowanie klipu zakończone pomyślnie - + Clip saved to %1 - - - - - Import clip. - - - - - You are about to import a clip, this will overwrite your current clip. Do you want to continue? - - - - - Open clip - - - - - Import clip success - + Klip zapisany do %1 + Import clip. + Importuj klip + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + Zamierzasz zaimportować klip. To zastąpi Twój bieżący klip. Chcesz kontynuować? + + + + Open clip + Otwórz klip + + + + Import clip success + Importowanie klipu zakończone pomyślnie + + + Imported clip %1! - + Zaimportowano klip %1! - PianoView + lmms::gui::PianoView - + Base note - Nuta podstawowa + Nuta bazowa - + First note Pierwsza nuta - + Last note Ostatnia nuta - Plugin + lmms::gui::PluginBrowser - - Plugin not found - Nie znaleziono wtyczki - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - Wtyczka "%1" Nie została odnaleziona albo nie może zostać załadowana! -Powód: "%2" - - - - Error while loading plugin - Wystąpił błąd podczas ładowania wtyczki - - - - Failed to load plugin "%1"! - Nie można załadować wtyczki "%1"! - - - - PluginBrowser - - + Instrument Plugins Wtyczki instrumentów - + Instrument browser Przeglądarka instrumentów - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - Przeciągnij instrument do Edytora utworu, Edytora perkusji i linii basu lub na istniejącą ścieżkę instrumentu. + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + Przeciągnij instrument do edytora utworu, edytora szablonów lub istniejącej ścieżki instrumentu. - - no description - brak opisu - - - - A native amplifier plugin - Natywna wtyczka wzmacniacza - - - - Simple sampler with various settings for using samples (e.g. drums) in an instrument-track - Prosty sampler z licznymi ustawieniami dla sampli (np. perkusji) w ścieżce instrumentu - - - - Boost your bass the fast and simple way - Łatwo i szybko podbij bas - - - - Customizable wavetable synthesizer - Konfigurowalny syntezator tablicowy (wavetable). - - - - An oversampling bitcrusher - - - - - Carla Patchbay Instrument - - - - - Carla Rack Instrument - - - - - A dynamic range compressor. - - - - - A 4-band Crossover Equalizer - 4-zakresowy korektor krzyżowy - - - - A native delay plugin - Natywna wtyczka opóźnienia - - - - A Dual filter plugin - Wtyczka podwójnego filtra - - - - plugin for processing dynamics in a flexible way - - - - - A native eq plugin - Natywna wtyczka korektora graficznego - - - - A native flanger plugin - Natywna wtyczka flangera - - - - Emulation of GameBoy (TM) APU - Emulator układu APU GameBoy'a (TM). - - - - Player for GIG files - Odtwarzacz plików GIG - - - - Filter for importing Hydrogen files into LMMS - Filtr importujący pliki Hydrogen do LMMS - - - - Versatile drum synthesizer - Wszechstronny syntezator perkusyjny - - - - List installed LADSPA plugins - Pokaż zainstalowane wtyczki LADSPA - - - - plugin for using arbitrary LADSPA-effects inside LMMS. - Wtyczka umożliwiająca załadowanie dowolnego efektu LADSPA wewnątrz LMMS. - - - - Incomplete monophonic imitation TB-303 - Niezupełna monofoniczna emulacja syntezatora TB-303. - - - - plugin for using arbitrary LV2-effects inside LMMS. - - - - - plugin for using arbitrary LV2 instruments inside LMMS. - - - - - Filter for exporting MIDI-files from LMMS - Filtr służący do eksportowania plików MIDI z LMMS - - - - Filter for importing MIDI-files into LMMS - Filtr do importowania plików MIDI do LMMS. - - - - Monstrous 3-oscillator synth with modulation matrix - Potworny 3-oscylatorowy syntezator z macierzą modulacji - - - - A multitap echo delay plugin - - - - - A NES-like synthesizer - Syntezator odwzorowujący NES-a - - - - 2-operator FM Synth - 2-operatorowy syntezator FM - - - - Additive Synthesizer for organ-like sounds - Syntezator Addytywny umożliwiający stworzenie dźwięków zbliżonych brzmieniem do organów. - - - - GUS-compatible patch instrument - Instrument kompatybilny z standardem sampli GUS. - - - - Plugin for controlling knobs with sound peaks - Wtyczka do kontrolowania regulatorów za pośrednictwem szczytów dźwięku. - - - - Reverb algorithm by Sean Costello - Algorytm pogłosu Seana Costello - - - - Player for SoundFont files - Odtwarzacz plików SoundFont. - - - - LMMS port of sfxr - Port sxfr dla LMMS - - - - Emulation of the MOS6581 and MOS8580 SID. -This chip was used in the Commodore 64 computer. - Emulator układu dźwiękowego SID (MOS6581 i MOS8580) -Te układy scalone były stosowane w komputerach Commodore 64. - - - - A graphical spectrum analyzer. - - - - - Plugin for enhancing stereo separation of a stereo input file - Wtyczka rozszerzająca bazę stereo. - - - - Plugin for freely manipulating stereo output - Wtyczka do nieograniczonego manipulowania wyjściami stereofonicznymi. - - - - Tuneful things to bang on - Melodyjny instrument pałeczkowy. - - - - Three powerful oscillators you can modulate in several ways - Trzy potężne oscylatory, które możesz modulować na kilka sposobów - - - - A stereo field visualizer. - - - - - VST-host for using VST(i)-plugins within LMMS - Host VST pozwalający na użycie wtyczek VST(i) w LMMS. - - - - Vibrating string modeler - Symulator drgającej struny. - - - - plugin for using arbitrary VST effects inside LMMS. - wtyczka pozwalająca na korzystanie z efektów VST w LMMS. - - - - 4-oscillator modulatable wavetable synth - 4-oscylatorowy modularny syntezator tablicowy (wavetable) - - - - plugin for waveshaping - wtyczka kształtująca falę - - - - Mathematical expression parser - Instrument przetwarzający wyrażenia matematyczne - - - - Embedded ZynAddSubFX - Wbudowany syntezator ZynAddSubFX. + + Search + Szukaj - PluginDatabaseW + lmms::gui::PluginDescWidget - - Carla - Add New - - - - - Format - - - - - Internal - - - - - LADSPA - LADSPA - - - - DSSI - DSSI - - - - LV2 - LV2 - - - - VST2 - VST2 - - - - VST3 - VST3 - - - - AU - - - - - Sound Kits - - - - - Type - Rodzaj - - - - Effects - Efekty - - - - Instruments - Instrumenty - - - - MIDI Plugins - Wtyczki MIDI - - - - Other/Misc - - - - - Architecture - - - - - Native - - - - - Bridged - - - - - Bridged (Wine) - - - - - Requirements - - - - - With Custom GUI - - - - - With CV Ports - - - - - Real-time safe only - - - - - Stereo only - - - - - With Inline Display - - - - - Favorites only - - - - - (Number of Plugins go here) - - - - - &Add Plugin - &Dodaj Wtyczkę - - - - Cancel - Anuluj - - - - Refresh - - - - - Reset filters - - - - - - - - - - - - - - - - - - - - TextLabel - - - - - Format: - Format: - - - - Architecture: - Architektura: - - - - Type: - Rodzaj: - - - - MIDI Ins: - Wejścia MIDI: - - - - Audio Ins: - Wejścia Audio: - - - - CV Outs: - - - - - MIDI Outs: - Wyjścia MIDI: - - - - Parameter Ins: - - - - - Parameter Outs: - - - - - Audio Outs: - Wyjścia Audio: - - - - CV Ins: - - - - - UniqueID: - - - - - Has Inline Display: - - - - - Has Custom GUI: - - - - - Is Synth: - - - - - Is Bridged: - - - - - Information - - - - - Name - Nazwa - - - - Label/URI - - - - - Maker - - - - - Binary/Filename - - - - - Focus Text Search - - - - - Ctrl+F - Ctrl+F + + Send to new instrument track + Wyślij do nowej ścieżki instrumentu - PluginEdit + lmms::gui::ProjectNotes - - Plugin Editor - - - - - Edit - Edytuj - - - - Control - Regulator - - - - MIDI Control Channel: - - - - - N - - - - - Output dry/wet (100%) - - - - - Output volume (100%) - - - - - Balance Left (0%) - - - - - - Balance Right (0%) - - - - - Use Balance - - - - - Use Panning - - - - - Settings - Ustawienia - - - - Use Chunks - - - - - Audio: - - - - - Fixed-Size Buffer - - - - - Force Stereo (needs reload) - - - - - MIDI: - MIDI: - - - - Map Program Changes - - - - - Send Bank/Program Changes - - - - - Send Control Changes - - - - - Send Channel Pressure - - - - - Send Note Aftertouch - - - - - Send Pitchbend - - - - - Send All Sound/Notes Off - - - - - -Plugin Name - - -Nazwa Wtyczki - - - - - Program: - - - - - MIDI Program: - - - - - Save State - - - - - Load State - - - - - Information - - - - - Label/URI: - - - - - Name: - Nazwa: - - - - Type: - Rodzaj: - - - - Maker: - - - - - Copyright: - - - - - Unique ID: - - - - - PluginFactory - - - Plugin not found. - Nie odnaleziono wtyczki. - - - - LMMS plugin %1 does not have a plugin descriptor named %2! - Wtyczka LMMS %1 nie ma deskryptora wtyczki nazwanego %2! - - - - PluginParameter - - - Form - - - - - Parameter Name - - - - - ... - ... - - - - PluginRefreshW - - - Carla - Refresh - - - - - Search for new... - - - - - LADSPA - LADSPA - - - - DSSI - DSSI - - - - LV2 - LV2 - - - - VST2 - VST2 - - - - VST3 - VST3 - - - - AU - - - - - SF2/3 - SF2/3 - - - - SFZ - SFZ - - - - Native - - - - - POSIX 32bit - - - - - POSIX 64bit - - - - - Windows 32bit - - - - - Windows 64bit - - - - - Available tools: - - - - - python3-rdflib (LADSPA-RDF support) - - - - - carla-discovery-win64 - - - - - carla-discovery-native - - - - - carla-discovery-posix32 - - - - - carla-discovery-posix64 - - - - - carla-discovery-win32 - - - - - Options: - - - - - Carla will run small processing checks when scanning the plugins (to make sure they won't crash). -You can disable these checks to get a faster scanning time (at your own risk). - - - - - Run processing checks while scanning - - - - - Press 'Scan' to begin the search - - - - - Scan - - - - - >> Skip - - - - - Close - Zamkni - - - - PluginWidget - - - - - - - Frame - - - - - Enable - Włącz - - - - On/Off - On/Off - - - - - - - PluginName - - - - - MIDI - MIDI - - - - AUDIO IN - - - - - AUDIO OUT - - - - - GUI - - - - - Edit - Edytuj - - - - Remove - Usuń - - - - Plugin Name - Nazwa Wtyczki - - - - Preset: - - - - - ProjectNotes - - + Project Notes - Pokaż/ukryj notatki projektu + Notatki projektu - + Enter project notes here - Wprowadź notatki dotyczące projektu + Wprowadź tutaj notatki dotyczące projektu + + + + Edit Actions + Edytuj czynności + + + + &Undo + &Cofnij - Edit Actions - Edytuj akcje - - - - &Undo - C&ofnij - - - %1+Z %1+Z - + &Redo - Powtó&rz + &Ponów - + %1+Y %1+Y - + &Copy &Kopiuj - + %1+C %1+C - + Cu&t Wy&tnij - + %1+X %1+X - + &Paste &Wklej - + %1+V %1+V - + Format Actions - Formatowanie + Czynności formatowania - + &Bold - Pogru&bienie + Pogru&biona - + %1+B %1+B - + &Italic - Pochylen&ie + &Kursywa - + %1+I %1+I - + &Underline - P&odkreślenie + &Podkreślona - + %1+U %1+U - + &Left Do &lewej - + %1+L %1+L - + C&enter - &Do środka + &Wyśrodkuj - + %1+E %1+E - + &Right Do p&rawej - + %1+R %1+R - + &Justify Wy&justuj - + %1+J %1+J - + &Color... - &Kolor… + &Kolor... - ProjectRenderer + lmms::gui::RecentProjectsMenu - - WAV (*.wav) - WAV (*.wav) - - - - FLAC (*.flac) - FLAC (*.flac) - - - - OGG (*.ogg) - OGG (*.ogg) - - - - MP3 (*.mp3) - MP3 (*.mp3) - - - - QObject - - - Reload Plugin - Przeładuj Wtyczkę - - - - Show GUI - Pokaż GUI - - - - Help - Pomoc - - - - QWidget - - - - - - Name: - Nazwa: - - - - URI: - URI: - - - - - - Maker: - Twórca: - - - - - - Copyright: - Prawa autorskie: - - - - - Requires Real Time: - Wymaga czasu rzeczywistego: - - - - - - - - - Yes - Tak - - - - - - - - - No - Nie - - - - - Real Time Capable: - Zdolność do pracy w czasie rzeczywistym: - - - - - In Place Broken: - - - - - - Channels In: - Kanały wejściowe: - - - - - Channels Out: - Kanały wyjściowe: - - - - File: %1 - Plik: %1 - - - - File: - Plik: - - - - RecentProjectsMenu - - + &Recently Opened Projects - &Ostatnio Otwierane Projekty + Ostatnio otwa&rte projekty - RenameDialog + lmms::gui::RenameDialog - + Rename... - Zmień nazwę… + Zmień nazwę... - ReverbSCControlDialog + lmms::gui::ReverbSCControlDialog - + Input Wejście - + Input gain: Wzmocnienie wejścia: - + Size Rozmiar - + Size: Rozmiar: - + Color Kolor - + Color: Kolor: - + Output Wyjście - + Output gain: Wzmocnienie wyjścia: - ReverbSCControls + lmms::gui::SaControlsDialog - - Input gain - Wzmocnienie wejścia - - - - Size - Rozmiar - - - - Color - Kolor - - - - Output gain - Wzmocnienie wyścia - - - - SaControls - - + Pause - + Wstrzymaj - - Reference freeze - - - - - Waterfall - - - - - Averaging - - - - - Stereo - Stereo - - - - Peak hold - - - - - Logarithmic frequency - - - - - Logarithmic amplitude - - - - - Frequency range - - - - - Amplitude range - - - - - FFT block size - - - - - FFT window type - - - - - Peak envelope resolution - - - - - Spectrum display resolution - - - - - Peak decay multiplier - - - - - Averaging weight - - - - - Waterfall history size - - - - - Waterfall gamma correction - - - - - FFT window overlap - - - - - FFT zero padding - - - - - - Full (auto) - - - - - - - Audible - - - - - Bass - Basy - - - - Mids - - - - - High - - - - - Extended - - - - - Loud - - - - - Silent - - - - - (High time res.) - - - - - (High freq. res.) - - - - - Rectangular (Off) - - - - - - Blackman-Harris (Default) - - - - - Hamming - - - - - Hanning - - - - - SaControlsDialog - - - Pause - - - - + Pause data acquisition - + Wstrzymaj akwizycję danych - + Reference freeze - + Zamrożenie odniesienia - + Freeze current input as a reference / disable falloff in peak-hold mode. - - - - - Waterfall - - - - - Display real-time spectrogram - - - - - Averaging - + Zamroź bieżące wejście jako odniesienie/wyłącz zanik w trybie utrzymywania wartości szczytowej. - Enable exponential moving average - + Waterfall + Wodospad - + + Display real-time spectrogram + Wyświetlaj spektrogram w czasie rzeczywistym + + + + Averaging + Uśrednianie + + + + Enable exponential moving average + Włącz wykładniczą średnią ruchomą + + + Stereo Stereo - + Display stereo channels separately - - - - - Peak hold - - - - - Display envelope of peak values - + Wyświetlaj kanały stereo oddzielnie - Logarithmic frequency + Peak hold + Display envelope of peak values + Wyświetlaj obwiednię wartości szczytowych + + + + Logarithmic frequency + Częstotliwość logarytmiczna + + + Switch between logarithmic and linear frequency scale - + Przełącz między skalą częstotliwości logarytmicznej i liniowej - - + + Frequency range - + Zakres częstotliwości - + Logarithmic amplitude - + Amplituda logarytmiczna - + Switch between logarithmic and linear amplitude scale - + Przełącz między skalą amplitudy logarytmicznej i liniowej - - + + Amplitude range - + Zakres amplitudy - + + + FFT block size + Rozmiar bloku FFT + + + + + FFT window type + Typ okna FFT + + + Envelope res. - + Rozdz. obwiedni - + Increase envelope resolution for better details, decrease for better GUI performance. - + Zwiększ rozdzielczość obwiedni, aby uzyskać lepsze szczegóły, zmniejsz ją, aby uzyskać lepszą wydajność graficznego interfejsu użytkownika. - - - Draw at most - + + Maximum number of envelope points drawn per pixel: + Maksymalna liczba punktów obwiedni narysowanych na piksel: - - envelope points per pixel - - - - + Spectrum res. - + Rozdz. widma - + Increase spectrum resolution for better details, decrease for better GUI performance. - + Zwiększ rozdzielczość widma, aby uzyskać lepsze szczegóły, zmniejsz ją, aby uzyskać lepszą wydajność graficznego interfejsu użytkownika. - - spectrum points per pixel - + + Maximum number of spectrum points drawn per pixel: + Maksymalna liczba punktów widma narysowanych na piksel: - + Falloff factor - + Współczynnik zaniku - + Decrease to make peaks fall faster. - + Zmniejsz, aby szczyty opadały szybciej. - + Multiply buffered value by - + Pomnóż wartość buforowaną przez - + Averaging weight - + Uśrednianie wagi - + Decrease to make averaging slower and smoother. - + Zmniejsz, aby uśrednianie było wolniejsze i płynniejsze. - + New sample contributes - - - - - Waterfall height - - - - - Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. - - - - - Keep - - - - - lines - - - - - Waterfall gamma - - - - - Decrease to see very weak signals, increase to get better contrast. - + Nowa próbka przyczynia się + Waterfall height + Wysokość wodospadu + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + Zwiększ, aby uzyskać wolniejsze przewijanie, zmniejsz, aby lepiej widzieć szybkie przejścia. Ostrzeżenie: średnie użycie procesora. + + + + Number of lines to keep: + Liczba linii do zachowania: + + + + Waterfall gamma + Gamma wodospadu + + + + Decrease to see very weak signals, increase to get better contrast. + Zmniejsz, aby zobaczyć bardzo słabe sygnały, zwiększ, aby uzyskać lepszy kontrast. + + + Gamma value: - + Wartość gamma: - + Window overlap - + Nakładanie się okien - + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. - + Zwiększ, aby zapobiec pomijaniu szybkich przejść docierających w pobliże krawędzi okna FFT. Ostrzeżenie: wysokie użycie procesora. - - Each sample processed - + + Number of times each sample is processed: + Liczba przetworzenia każdego sampla: - - times - - - - + Zero padding - + Increase to get smoother-looking spectrum. Warning: high CPU usage. - + Zwiększ, aby uzyskać płynniej wyglądające widmo. Ostrzeżenie: wysokie użycie procesora. - + Processing buffer is - + Bufor przetwarzania jest - + steps larger than input block - + krokami większymi niż blok wejściowy - + Advanced settings Ustwawienia zaawansowane - + Access advanced settings - Dostęp do zaawansowanych ustawień - - - - - FFT block size - - - - - - FFT window type - + Dostęp do ustawień zaawansowanych - SampleBuffer + lmms::gui::SampleClipView - - Fail to open file - Nie udało się otworzyć pliku - - - - Audio files are limited to %1 MB in size and %2 minutes of playing time - Pliki dźwiękowe mogą mieć rozmiar do %1 MB i trwać maks. %2 minut(y) - - - - Open audio file - Otwórz plik dźwiękowy - - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - Wszystkie pliki dźwiękowe (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - - Wave-Files (*.wav) - Pliki Wave (*.wav) - - - - OGG-Files (*.ogg) - Pliki OGG (*.ogg) - - - - DrumSynth-Files (*.ds) - Pliki DrumSynth (*.ds) - - - - FLAC-Files (*.flac) - Pliki FLAC (*.flac) - - - - SPEEX-Files (*.spx) - Pliki SPEEX (*.spx) - - - - VOC-Files (*.voc) - Pliki VOC (*.voc) - - - - AIFF-Files (*.aif *.aiff) - Pliki AIFF (*.aif *.aiff) - - - - AU-Files (*.au) - Pliki AU (*.au) - - - - RAW-Files (*.raw) - Pliki RAW (*.raw) - - - - SampleClipView - - + Double-click to open sample - + Kliknij dwukrotnie myszką, aby otworzyć próbkę - - Delete (middle mousebutton) - Usuń (środkowy przycisk myszy) - - - - Delete selection (middle mousebutton) - Usuń zaznaczone (środkowy przycisk myszy) - - - - Cut - Wytnij - - - - Cut selection - Wytnij zaznaczone - - - - Copy - Kopiuj - - - - Copy selection - Kopiuj zaznaczone - - - - Paste - Wklej - - - - Mute/unmute (<%1> + middle click) - Wycisz/cofnij wyciszenie (<%1> + środkowy przycisk myszy) - - - - Mute/unmute selection (<%1> + middle click) - - - - + Reverse sample Odwróć próbkę - - Set clip color + + Set as ghost in automation editor - - - Use track color - Użyj koloru ścieżki - - SampleTrack + lmms::gui::SampleTrackView - - Volume - Głośność - - - - Panning - Panoramowanie - - - + Mixer channel - Kanał FX + Kanał miksera - - - Sample track - Ścieżka audio - - - - SampleTrackView - - + Track volume Głośność ścieżki - + Channel volume: Głośność kanału: - + VOL - VOL + - + Panning Panoramowanie - + Panning: Panoramowanie: - + PAN PAN - - Channel %1: %2 - FX %1: %2 + + %1: %2 + %1: %2 - SampleTrackWindow + lmms::gui::SampleTrackWindow - - GENERAL SETTINGS - GŁÓWNE USTAWIENIA - - - + Sample volume - + Głośność próbki - + Volume: Głośność: - + VOL - VOL + - + Panning Panoramowanie - + Panning: Panoramowanie: - + PAN PAN - + Mixer channel - Kanał FX + Kanał miksera - + CHANNEL - FX + KANAŁ - SaveOptionsWidget + lmms::gui::SaveOptionsWidget - + Discard MIDI connections - + Odrzuć połączenia MIDI - + Save As Project Bundle (with resources) - + Zapisz jako pakiet projektu (z zasobami) - SetupDialog + lmms::gui::SetupDialog - - Reset to default value - - - - - Use built-in NaN handler - - - - + Settings Ustawienia - - + + General - + Ogólne - + Graphical user interface (GUI) - + Graficzny interfejs użytkownika (GUI) - + Display volume as dBFS Wyświetlaj głośność jako dBFS - + Enable tooltips Włącz podpowiedzi - - - Enable master oscilloscope by default - - - - - Enable all note labels in piano roll - Włącz etykiety wszystkich nut w edytorze pianowym. - + Enable master oscilloscope by default + Włącz domyślnie oscyloskop główny + + + + Enable all note labels in piano roll + Włącz etykiety wszystkich nut w edytorze pianolowym + + + Enable compact track buttons Włącz kompaktowe przyciski ścieżek - - - Enable one instrument-track-window mode - - - - - Show sidebar on the right-hand side - - - Let sample previews continue when mouse is released - + Enable one instrument-track-window mode + Włącz tryb jednego okna ścieżki instrumentu + Show sidebar on the right-hand side + Pokaż pasek boczny po prawej stronie + + + + Let sample previews continue when mouse is released + Pozwól na kontynuowanie podglądu próbki po zwolnieniu myszki + + + Mute automation tracks during solo - + Show warning when deleting tracks - + Pokaż ostrzeżenie podczas usuwania ścieżek - - Projects - + + Show warning when deleting a mixer channel that is in use + Pokaż ostrzeżenie podczas usuwania kanału miksera, który jest w użyciu + + + + Dual-button + Podwójny przycisk + + + + Grab closest + Złap najbliższy + Handles + Uchwyty + + + + Loop edit mode + Tryb edycji pętli + + + + Projects + Projekty + + + Compress project files by default Domyślnie kompresuj pliki projektu - + Create a backup file when saving a project - + Utwórz plik kopii zapasowej podczas zapisywania projektu - + Reopen last project on startup - Ponownie otwórz ostatni projekt przy uruchomieniu + Otwórz ponownie ostatni projekt podczas uruchamiania - + Language - + Język - - + + Performance - + Wydajność - + Autosave - + Autozapisywanie - + Enable autosave - Włącz automatyczny zapis + Włącz autozapisywanie - + Allow autosave while playing - + Zezwalaj na autozapisywanie podczas odtwarzania - + User interface (UI) effects vs. performance - + Efekty interfejsu użytkownika (UI) a wydajność - + Smooth scroll in song editor - Płynne przewijanie w edytorze kompozycji + Płynne przewijanie w edytorze utworu - + Display playback cursor in AudioFileProcessor - + Wyświetlaj wskaźnik odtwarzania w AudioFileProcessorze - + Plugins Wtyczki - + VST plugins embedding: - - - - - No embedding - Nie osadzaj - - - - Embed using Qt API - Osadź używając API Qt - - - - Embed using native Win32 API - Osadź używając natywnego API Win32 - - - - Embed using XEmbed protocol - Osądź używając protokołu XEmbed + Osadzanie wtyczek VST: - Keep plugin windows on top when not embedded - + No embedding + Brak osadzania + + + + Embed using Qt API + Osadź za pomocą API Qt - Sync VST plugins to host playback - Synchronizuj wtyczki VST z hostem + Embed using native Win32 API + Osadź za pomocą API Win32 - + + Embed using XEmbed protocol + Osadź za pomocą protokołu XEmbed + + + + Keep plugin windows on top when not embedded + Trzymaj okna wtyczek na wierzchu, gdy nie są osadzone + + + Keep effects running even without input - Pozostaw efekty włączone, nawet bez wejścia + Trzymaj efekty włączone, nawet bez wyjścia - - + + Audio - Audio + Dźwięk - + Audio interface - + Interfejs dźwięku - - HQ mode for output audio device - - - - + Buffer size - + Rozmiar bufora + + + + Reset to default value + Resetuj do wartości domyślnej - + MIDI MIDI - + MIDI interface - + Interfejs MIDI - + Automatically assign MIDI controller to selected track - + Automatyczne przypisywanie kontrolera MIDI do zaznaczonej ścieżki - - LMMS working directory - Katalog roboczy LMMS + + Behavior when recording + Zachowanie podczas nagrywania - - VST plugins directory - Katalog wtyczek VST + + Auto-quantize notes in Piano Roll + Autokwantyzacja nut w edytorze pianolowym - - LADSPA plugins directories - Katalog wtyczek LADSPA + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + Jeśli włączone, nuty będą automatycznie kwantyzowane podczas nagrywania ich z kontrolera MIDI. Jeśli wyłączone, są zawsze nagrywane w najwyższej możliwej rozdzielczości. - - SF2 directory - Katalog SF2 - - - - Default SF2 - Domyślne SF2 - - - - GIG directory - Katalog GIG - - - - Theme directory - Katalog motywu - - - - Background artwork - Grafika w tle - - - - Some changes require restarting. - - - - - Autosave interval: %1 - - - - - Choose the LMMS working directory - - - - - Choose your VST plugins directory - - - - - Choose your LADSPA plugins directory - - - - - Choose your default SF2 - - - - - Choose your theme directory - - - - - Choose your background picture - - - - - + + Paths Ścieżki - + + LMMS working directory + Katalog roboczy LMMS + + + + VST plugins directory + Katalog wtyczek VST + + + + LADSPA plugins directories + Katalog wtyczek LADSPA + + + + SF2 directory + Katalog SF2 + + + + Default SF2 + Domyślny plik SF2 + + + + GIG directory + Katalog GIG + + + + Theme directory + Katalog motywów + + + + Background artwork + Grafika w tle + + + + Some changes require restarting. + Niektóre zmiany wymagają ponownego uruchomienia. + + + OK OK - + Cancel Anuluj - + + minutes + minuty + + + + minute + minuta + + + + Disabled + Wyłączono + + + + Autosave interval: %1 + Częstotliwość autozpisywnia: %1 + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + Aktualnie wybrana wartość nie jest potęgą 2 (32, 64, 128, 256). Niektóre wtyczki mogą być niedostępne. + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + Aktualnie wybrana wartość jest mniejsza lub równa 32. Niektóre wtyczki mogą być niedostępne. + + + Frames: %1 Latency: %2 ms Ramki: %1 Opóźnienie: %2 ms - - Choose your GIG directory - Wybierz katalog GIG + + Choose the LMMS working directory + Wybierz katalog roboczy LMMS - + + Choose your VST plugins directory + Wybierz swój katalog wtyczek VST + + + + Choose your LADSPA plugins directory + Wybierz swój katalog wtyczek LADSPA + + + Choose your SF2 directory Wybierz swój katalog z SF2 - - minutes - minuty + + Choose your default SF2 + Wybierz swój domyślny plik SF2 - - minute - minuta + + Choose your GIG directory + Wybierz swój katalog z plikami GIG - - Disabled - Wyłączono + + Choose your theme directory + Wybierz swój katalog motywów + + + + Choose your background picture + Wybierz swój obraz tła - SidInstrument + lmms::gui::Sf2InstrumentView - - Cutoff frequency - Częstotliwość graniczna + + + Open SoundFont file + Otwórz plik SoundFont - - Resonance - Zafalowanie charakterystyki + + Choose patch + Wybierz próbkę - - Filter type - Rodzaj filtru + + Gain: + Wzmocnienie: - - Voice 3 off - Wyłącz głos 3 + + Apply reverb (if supported) + Zastosuj pogłos (jeśli obsługiwany) - - Volume - Głośność + + Room size: + Rozmiar pokoju: - - Chip model - Rodzaj scalaka + + Damping: + Tłumienie: + + + + Width: + Szerokość: + + + + + Level: + Poziom: + + + + Apply chorus (if supported) + Zastosuj chorus (jeśli obsługiwany) + + + + Voices: + Głosy: + + + + Speed: + Prędkość: + + + + Depth: + Głębia: + + + + SoundFont Files (*.sf2 *.sf3) + Pliki SoundFont (*.sf2 *.sf3) - SidInstrumentView + lmms::gui::SidInstrumentView - + Volume: Głośność: - + Resonance: - Zafalowanie charakterystyki: + Rezonans: - - + + Cutoff frequency: Częstotliwość graniczna: - + High-pass filter - + Band-pass filter - + Low-pass filter - + Voice 3 off - + Wyłącz głos 3 - + MOS6581 SID MOS6581 SID - + MOS8580 SID MOS8580 SID - - + + Attack: - Atak: + Narastanie: - - + + Decay: - Zanikanie: + - + Sustain: - Podtrzymanie: + - - + + Release: - Zwolnienie: + Opadanie: - + Pulse Width: Współczynnik wypełnienia impulsu: - + Coarse: - Zgrubne odstrojenie: - - - - Pulse wave - + + Pulse wave + Fala pulsująca + + + Triangle wave Fala trójkątna - + Saw wave Fala piłokształtna - + Noise Szum - + Sync - Synchronizacja + Zsynchronizuj - + Ring modulation - + Modulacja pierścieniowa - + Filtered Filtrowany - + Test Test - + Pulse width: - + Współczynnik wypełnienia impulsu: - SideBarWidget + lmms::gui::SideBarWidget - + Close - Zamkni + Zamknij - Song + lmms::gui::SlicerTView - - Tempo - Tempo - - - - Master volume - Głośność główna - - - - Master pitch - Odstrojenie główne - - - - Aborting project load + + Slice snap - - Project file contains local paths to plugins, which could be used to run malicious code. + + Set slice snapping for detection - - Can't load project: Project file contains local paths to plugins. + + Sync sample - - LMMS Error report - Zgłoszenie błędu LMMS + + Enable BPM sync + Włącz synchr. BPM - - (repeated %1 times) - (powtórzone %1 razy) + + Original sample BPM + Oryginalna próbka BPM - - The following errors occurred while loading: + + Threshold used for slicing + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + Próg + + + + Fade Out + Ściszenie + + + + Reset + Resetuj + + + + Midi + MIDI + + + + BPM + BPM + + + + Snap + Przyciągaj + - SongEditor + lmms::gui::SlicerTWaveform - + + Click to load sample + Kliknij, aby załadować próbkę + + + + lmms::gui::SongEditor + + Could not open file Nie można otworzyć pliku - + Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. - Nie da się otworzyć pliku %1. Prawdopodobnie nie posiadasz uprawnień do odczytu tego pliku. -Upewnij się, że masz przynajmniej uprawnienia odczytu tego pliku a następnie spróbuj ponownie. + Nie można otworzyć pliku %1. Prawdopodobnie nie masz uprawnień do odczytu tego pliku. +Upewnij się, że masz przynajmniej uprawnienia do odczytu pliku i spróbuj ponownie. - - Operation denied - - - - - A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. - - - - - - Error - BłądBłą - - - - Couldn't create bundle folder. - - - - - Couldn't create resources folder. - + Operation denied + Operacja odrzucona - Failed to copy resources. - - - - - Could not write file - Nie można zapisać pliku + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + Folder pakietu o tej nazwie już istnieje w wybranej ścieżce. Nie można zastąpić pakietu projektu. Wybierz inną nazwę. - Could not open %1 for writing. You probably are not permitted towrite to this file. Please make sure you have write-access to the file and try again. + + + Error + Błąd + + + + Couldn't create bundle folder. + Nie można utworzyć folderu pakietu. + + + + Couldn't create resources folder. + Nie można utworzyć folderu zasobów. + + + + Failed to copy resources. + Nie można skopiować zasobów. + + + + + Could not write file + Nie można zapisać pliku. + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + Nie można otworzyć %1 do zapisu. Prawdopodobnie nie masz uprawnień do zapisu do tego pliku. Upewnij się, że masz uprawnienia do zapisu do pliku i spróbuj ponownie. + + + + An unknown error has occurred and the file could not be saved. - - This %1 was created with LMMS %2 - - - - + Error in file Błąd w pliku - + The file %1 seems to contain errors and therefore can't be loaded. Wygląda na to, że plik %1 zawiera błędy i nie może zostać załadowany. - - Version difference - Różnica wersji - - - + template szablon - + project projekt - + + Version difference + Różnica wersji + + + + This %1 was created with LMMS %2 + %1 został utworzony w LMMS %2. + + + + Zoom + Powiększenie + + + Tempo Tempo - + TEMPO - + TEMPO - + Tempo in BPM - + Tempo w BPM - - High quality mode - Tryb wysokiej jakości - - - - - + + + Master volume Głośność główna - - - - Master pitch - Odstrojenie główne + + + + Global transposition + Transpozycja ogólna - + + 1/%1 Bar + 1/%1 takt + + + + %1 Bars + %1 takty + + + Value: %1% Wartość: %1% - - Value: %1 semitones - Wartość: %1 półtonów + + Value: %1 keys + Wartość: %1 keys - SongEditorWindow + lmms::gui::SongEditorWindow - + Song-Editor - Edytor kompozycji + Edytor utworu + + + + Play song (Space) + Odtwarzaj utwór (Spacja) + + + + Record samples from Audio-device + Nagrywaj próbki z urządzenia dźwiękowego - Play song (Space) - Odtwórz (Spacja) + Record samples from Audio-device while playing song or pattern track + Nagrywaj próbki z urządzenia dźwiękowego podczas odtwarzania utworu lub ścieżki szablonu - Record samples from Audio-device - Nagraj próbki z urządzenia audio - - - - Record samples from Audio-device while playing song or BB track - Nagrywa próbki z urządzenia audio podczas odtwarzania kompozycji lub ścieżki perkusji/basu - - - Stop song (Space) - Zatrzymaj odtwarzanie (Spacja) + Zatrzymaj utwór (Spacja) - + Track actions - Operacje na ścieżce + Czynności ścieżki - - Add beat/bassline - Dodaj linię perkusyjną/basową + + Add pattern-track + Dodaj ścieżkę-szablon - + Add sample-track - Dodaj próbkę + Dodaj ścieżkę-próbkę - + Add automation-track Dodaj ścieżkę automatyki - + Edit actions - Edytuj akcje + Edytuj czynności - + Draw mode Tryb rysowania - + Knife mode (split sample clips) + Tryb noża (podziel klipy próbek) + + + + Edit mode (select and move) + Tryb edycji (zaznacz i przesuń) + + + + Timeline controls - - Edit mode (select and move) - Tryb edycji (zaznacz i przenieś) - - - - Timeline controls - Kontrola osi czasu - - - + Bar insert controls - + Insert bar - + Wstaw takt - + Remove bar + Usuń takt + + + + Zoom controls - - Zoom controls - Kontrola powiększenia - - + - Horizontal zooming - Powiększenie poziome + Zoom + Powiększenie - + Snap controls - - + + Clip snapping size - + Toggle proportional snap on/off - + Base snapping size - StepRecorderWidget + lmms::gui::StepRecorderWidget - + Hint - Wskazówka + Podpowiedź - + Move recording curser using <Left/Right> arrows + Przesuń kursor nagrywania za pomocą strzałek <lewo/prawo> + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + SZEROKOŚĆ + + + + Width: + Szerokość: + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: - SubWindow + lmms::gui::SubWindow - + Close - Zamkni + Zamknij - + Maximize - Minimalizuj + Maksymalizuj - + Restore Przywróć - TabWidget + lmms::gui::TapTempoView - - - Settings for %1 - Ustawienia %1 + + 0 + 0 + + + + + Precision + Precyzja + + + + Display in high precision + Wyświetlaj z wysoką precyzją + + + + 0.0 ms + 0,0 ms + + + + Mute metronome + Wycisz metronom + + + + Mute + Cisza + + + + BPM in milliseconds + BPM w milisekundach + + + + 0 ms + 0 ms + + + + Frequency of BPM + Częstotliwość BPM + + + + 0.0000 hz + 0,0000 hz + + + + Reset + Resetuj + + + + Reset counter and sidebar information + Resetuj licznik i informacje na pasku bocznym + + + + Sync + Zsynchronizuj + + + + Sync with project tempo + Zsynchronizuj z tempem projektu + + + + %1 ms + %1 ms + + + + %1 hz + %1 hz - TemplatesMenu + lmms::gui::TemplatesMenu - + New from template Nowy z szablonu - TempoSyncKnob + lmms::gui::TempoSyncBarModelEditor - - + + Tempo Sync Synchronizacja tempa - + No Sync Brak synchronizacji - + Eight beats Osiem uderzeń - + Whole note Cała nuta - + Half note Półnuta - + Quarter note Ćwierćnuta - + 8th note Ósemka - + 16th note Szesnastka - + 32nd note - Trzydziestka dwójka + Trzydziestodwójka - + Custom... - Własne... + Niestandardowy... - + Custom - Własne + Niestandardowy - + Synced to Eight Beats Zsynchronizowane do ośmiu uderzeń - + Synced to Whole Note Zsynchronizowane do całej nuty - + Synced to Half Note Zsynchronizowane do półnuty - + Synced to Quarter Note Zsynchronizowane do ćwierćnuty - + Synced to 8th Note Zsynchronizowane do ósemki - + Synced to 16th Note Zsynchronizowane do szesnastki - + Synced to 32nd Note - Zsynchronizowane do trzydziestki dwójki + Zsynchronizowane do trzydziestodwójki - TimeDisplayWidget + lmms::gui::TempoSyncKnob - - Time units - + + + Tempo Sync + Synchronizacja tempa - + + No Sync + Brak synchronizacji + + + + Eight beats + Osiem uderzeń + + + + Whole note + Cała nuta + + + + Half note + Półnuta + + + + Quarter note + Ćwierćnuta + + + + 8th note + Ósemka + + + + 16th note + Szesnastka + + + + 32nd note + Trzydziestodwójka + + + + Custom... + Niestandardowy... + + + + Custom + Niestandardowy + + + + Synced to Eight Beats + Zsynchronizowane do ośmiu uderzeń + + + + Synced to Whole Note + Zsynchronizowane do całej nuty + + + + Synced to Half Note + Zsynchronizowane do półnuty + + + + Synced to Quarter Note + Zsynchronizowane do ćwierćnuty + + + + Synced to 8th Note + Zsynchronizowane do ósemki + + + + Synced to 16th Note + Zsynchronizowane do szesnastki + + + + Synced to 32nd Note + Zsynchronizowane do trzydziestodwójki + + + + lmms::gui::TimeDisplayWidget + + + Time units + Jednostki czasu + + + MIN MIN - + SEC SEK - + MSEC - MILISEK + MSEK - + BAR TAKT - + BEAT - RYTM + MIARA - + TICK - TICK + TYK - TimeLineWidget + lmms::gui::TimeLineWidget - + Auto scrolling - + Autoprzewijanie - + + Stepped auto scrolling + Autoprzewijanie stopniowe + + + + Continuous auto scrolling + Autoprzewijanie ciągłe + + + + Auto scrolling disabled + Autoprzewijanie wyłączone + + + Loop points - + Znaczniki zapętlania - + After stopping go back to beginning - + Po zatrzymaniu wróć do początku - + After stopping go back to position at which playing was started - Po zatrzymaniu powróć do pozycji z której rozpoczęto odtwarzanie + Po zatrzymaniu wróć do pozycji, z której rozpoczęto odtwarzanie - + After stopping keep position Po zatrzymaniu zapamiętaj pozycję - + Hint - Wskazówka + Podpowiedź - + Press <%1> to disable magnetic loop points. - Naciśnij <%1> aby wyłączyć magnetyczne punkty pętli. + Naciśnij <%1>, aby wyłączyć punkty pętli magnetycznej. + + + + Set loop begin here + Ustaw początek pętli tutaj + + + + Set loop end here + Ustaw koniec pętli tutaj + + + + Loop edit mode (hold shift) + Tryb edycji pętli (przytrzymaj Shift) + + + + Dual-button + Podwójny przycisk + + + + Grab closest + Złap najbliższy + + + + Handles + Uchwyty - Track + lmms::gui::TrackContentWidget - - Mute - Wycisz - - - - Solo - Solo - - - - TrackContainer - - - Couldn't import file - Nie udało się zaimportować pliku - - - - Couldn't find a filter for importing file %1. -You should convert this file into a format supported by LMMS using another software. - Nie można odnaleźć filtra do zaimportowania pliku %1. -Powinienieś przekonwertować ten plik do formatu wspieranego przez LMMS za pomocą zewnętrznego oprogramowania. - - - - Couldn't open file - Nie udało się otworzyć pliku - - - - Couldn't open file %1 for reading. -Please make sure you have read-permission to the file and the directory containing the file and try again! - Nie da się otworzyć pliku %1 do odczytu. -Upewnij się, że masz uprawnienia do odczytu tego pliku i katalogu zawierającego plik a następnie spróbuj ponownie! - - - - Loading project... - Ładowanie projektu… - - - - - Cancel - Anuluj - - - - - Please wait... - Proszę czekać… - - - - Loading cancelled - Anulowano ładowanie - - - - Project loading was cancelled. - Ładowanie projektu zostało anulowane - - - - Loading Track %1 (%2/Total %3) - Ładowanie utworu %1 (%2/Łącznie %3) - - - - Importing MIDI-file... - Importowanie pliku MIDI… - - - - Clip - - - Mute - Wycisz - - - - ClipView - - - Current position - Obecne położenie - - - - Current length - Obecna dlugość - - - - - %1:%2 (%3:%4 to %5:%6) - %1:%2 (od %3:%4 do 5:%6) - - - - Press <%1> and drag to make a copy. - Przytrzymaj <%1> i przeciągnij, aby skopiować. - - - - Press <%1> for free resizing. - Przytrzymaj <%1> aby dowolnie zmieniać rozmiar. - - - - Hint - Wskazówka - - - - Delete (middle mousebutton) - Usuń (środkowy przycisk myszy) - - - - Delete selection (middle mousebutton) - Usuń zaznaczone (środkowy przycisk myszy) - - - - Cut - Wytnij - - - - Cut selection - Wytnij zaznaczone - - - - Merge Selection - - - - - Copy - Kopiuj - - - - Copy selection - Kopiuj zaznaczone - - - - Paste - Wklej - - - - Mute/unmute (<%1> + middle click) - Wycisz/cofnij wyciszenie (<%1> + środkowy przycisk myszy) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Set clip color - - - - - Use track color - Użyj koloru ścieżki - - - - TrackContentWidget - - + Paste Wklej - TrackOperationsWidget + lmms::gui::TrackOperationsWidget - + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. - + Naciśnij <%1>, klikając jednocześnie na uchwycie przesuwania, aby rozpocząć nową czynność przeciągania i upuszczania. Actions - + Czynności Mute - Wycisz + Cisza @@ -13749,2874 +18042,1030 @@ Upewnij się, że masz uprawnienia do odczytu tego pliku i katalogu zawierające Solo - + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? - + Ścieżki nie można odzyskać po jej usunięciu. Na pewno chcesz usunąć ścieżkę „%1”? - + Confirm removal - + Potwierdź usunięcie - + Don't ask again - + Nie pytaj ponownie - + Clone this track - Sklonuj tą ścieżkę + Klonuj tę ścieżkę - + Remove this track - Usuń tą ścieżkę + Usuń tę ścieżkę + + + + Clear this track + Wyczyść tę ścieżkę - Clear this track - Wyczyść tą ścieżkę - - - Channel %1: %2 - FX %1: %2 + Kanał %1: %2 - - Assign to new mixer Channel - Przypisz do nowego kanału efektów + + Assign to new Mixer Channel + Przypisz do nowego kanału miksera - + Turn all recording on - + Włącz wszystkie nagrania - + Turn all recording off - + Wyłącz wszystkie nagrania + + + + Track color + Kolor ścieżki - Change color - Zmień kolor + Change + Zmień + + + + Reset + Resetuj - Reset color to default - Ustaw kolor domyślny + Pick random + Wybierz losowe - Set random color - Ustaw losowy kolor - - - - Clear clip colors - + Reset clip colors + Resetuj kolory klipu - TripleOscillatorView + lmms::gui::TripleOscillatorView - + Modulate phase of oscillator 1 by oscillator 2 - + Moduluj fazę oscylatora 1 z oscylatorem 2 - + Modulate amplitude of oscillator 1 by oscillator 2 - - - - - Mix output of oscillators 1 & 2 - - - - - Synchronize oscillator 1 with oscillator 2 - Synchronizuj oscylator 1 z oscylatorem 2 + Moduluj amplitudę oscylatora 1 z oscylatorem 2 - Modulate frequency of oscillator 1 by oscillator 2 - + Mix output of oscillators 1 & 2 + Miksuj wyjścia oscylatorów 1 i 2 + + + + Synchronize oscillator 1 with oscillator 2 + Zsynchronizuj oscylator 1 z oscylatorem 2 + Modulate frequency of oscillator 1 by oscillator 2 + Moduluj częstotliwość oscylatora 1 z oscylatorem 2 + + + Modulate phase of oscillator 2 by oscillator 3 - + Moduluj fazę oscylatora 2 z oscylatorem 3 - + Modulate amplitude of oscillator 2 by oscillator 3 - + Moduluj amplitudę oscylatora 2 z oscylatorem 3 - + Mix output of oscillators 2 & 3 - + Miksuj wyjścia oscylatorów 2 i 3 - + Synchronize oscillator 2 with oscillator 3 - Synchronizuj oscylator 2 z oscylatorem 3 + Zsynchronizuj oscylator 2 z oscylatorem 3 - + Modulate frequency of oscillator 2 by oscillator 3 + Moduluj częstotliwość oscylatora 2 z oscylatorem 3 + + + + Osc %1 volume: + Głośność osc %1: + + + + Osc %1 panning: + Panoramowanie osc %1: + + + + Osc %1 coarse detuning: - - Osc %1 volume: - Osc %1 - głośność: - - - - Osc %1 panning: - Osc %1 - panoramowanie: - - - - Osc %1 coarse detuning: - Osc %1 - zgrubne odstrojenie: - - - + semitones - półtony + półtonów - + Osc %1 fine detuning left: - Osc %1 - dokładne odstrojenie w lewo: + - - + + cents - centy + centów - + Osc %1 fine detuning right: - Osc %1 - dokładne odstrojenie w prawo: + - + Osc %1 phase-offset: - Osc %1 - przesunięcie fazowe: + Przesunięcie fazowe osc %1: - - + + degrees stopni - + Osc %1 stereo phase-detuning: - Osc %1 - odstrojenie fazy stereo: + Odstrojenie fazy stereo osc %1: - + Sine wave Fala sinusoidalna - + Triangle wave Fala trójkątna - + Saw wave Fala piłokształtna - + Square wave Fala prostokątna - + Moog-like saw wave - + Fala piłokształtna Mooga - + Exponential wave Fala wykładnicza - + White noise - Biały szum + Szum biały - + User-defined wave - + Fala zdefiniowana przez użytkownika + + + + Use alias-free wavetable oscillators. + Użyj oscylatorów tablicowych wolnych od aliasów. - VecControls - - - Display persistence amount - - - - - Logarithmic scale - - - - - High quality - - - - - VecControlsDialog - - - HQ - - + lmms::gui::VecControlsDialog + HQ + HQ + + + Double the resolution and simulate continuous analog-like trace. Log. scale - + Skala log. Display amplitude on logarithmic scale to better see small values. - + Wyświetlaj amplitudę w skali logarytmicznej, aby lepiej widzieć małe wartości. - + Persist. - + Trace persistence: higher amount means the trace will stay bright for longer time. - + Trace persistence - VersionedSaveDialog + lmms::gui::VersionedSaveDialog - + Increment version number Zwiększ numer wersji o jeden - + Decrement version number Zminiejsz numer wersji o jeden - + Save Options - + Zapisz opcje - + already exists. Do you want to replace it? - już istnieje. Czy chcesz go zastąpić? + już istnieje. Chcesz go zastąpić? - VestigeInstrumentView + lmms::gui::VestigeInstrumentView - - + + Open VST plugin Otwórz wtyczkę VST - + Control VST plugin from LMMS host - + Kontroluj wtyczkę VST z hosta LMMS - + Open VST plugin preset - + Otwórz preset wtyczki VST - + Previous (-) Poprzedni (-) - + Save preset Zapisz preset - + Next (+) Następny (+) - + Show/hide GUI - Pokaż/ukryj GUI + Pokaż/ukryj graficzny interfejs użytkownika - + Turn off all notes Wycisz wszystkie nuty - + DLL-files (*.dll) Pliki DLL (*.dll) - + EXE-files (*.exe) Pliki EXE (*.exe) - - No VST plugin loaded - + + SO-files (*.so) + Pliki SO (*.so) - + + No VST plugin loaded + Nie załadowano wtyczki VST + + + Preset Preset - + by autorstwa - + - VST plugin control - kontrola wtyczki VST - VstEffectControlDialog + lmms::gui::VibedView - + + Enable waveform + Włącz kształt fali + + + + + Smooth waveform + Gładki kształt fali + + + + + Normalize waveform + Normalizuj kształt fali + + + + + Sine wave + Fala sinusoidalna + + + + + Triangle wave + Fala trójkątna + + + + + Saw wave + Fala piłokształtna + + + + + Square wave + Fala prostokątna + + + + + White noise + Szum biały + + + + + User-defined wave + Fala zdefiniowana przez użytkownika + + + + String volume: + Głośność struny: + + + + String stiffness: + Sztywność struny: + + + + Pick position: + Wybierz pozycję: + + + + Pickup position: + + + + + String panning: + Panoramowanie struny: + + + + String detune: + Odstrojenie struny: + + + + String fuzziness: + Rozmycie struny: + + + + String length: + Długość struny: + + + + Impulse Editor + Edytor impulsów + + + + Impulse + Impuls + + + + Enable/disable string + Włącz/wyłącz strunę + + + + Octave + Oktawa + + + + String + Struna + + + + lmms::gui::VstEffectControlDialog + + Show/hide Pokaż/ukryj - + Control VST plugin from LMMS host - + Kontroluj wtyczkę VST z hosta LMMS - + Open VST plugin preset - + Otwórz preset wtyczki VST - + Previous (-) Poprzedni (-) - + Next (+) Następny (+) - + Save preset Zapisz preset - - + + Effect by: - Efekt autorstwa: + Efekt autorstwa: - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - VstPlugin + lmms::gui::WatsynView - - - The VST plugin %1 could not be loaded. - Wtyczka VST %1 nie może zostać załadowana. - - - - Open Preset - Otwórz Preset - - - - - Vst Plugin Preset (*.fxp *.fxb) - Preset wtyczki VST (*.fxp *.fxb) - - - - : default - : domyślne - - - - Save Preset - Zapisz Preset - - - - .fxp - .fxp - - - - .FXP - .FXP - - - - .FXB - .FXB - - - - .fxb - .fxb - - - - Loading plugin - Ładowanie wtyczki - - - - Please wait while loading VST plugin... - Poczekaj, trwa ładowanie wtyczki VST… - - - - WatsynInstrument - - - Volume A1 - Głośność A1 - - - - Volume A2 - Głośność A2 - - - - Volume B1 - Głośność B1 - - - - Volume B2 - Głośność B2 - - - - Panning A1 - Panoramowanie A1 - - - - Panning A2 - Panoramowanie A2 - - - - Panning B1 - Panoramowanie B1 - - - - Panning B2 - Panoramowanie B2 - - - - Freq. multiplier A1 - Mnożnik częst. A1 - - - - Freq. multiplier A2 - Mnożnik częst. A2 - - - - Freq. multiplier B1 - Mnożnik częst. B1 - - - - Freq. multiplier B2 - Mnożnik częst. B2 - - - - Left detune A1 - Odstrojenie w lewo A1 - - - - Left detune A2 - Odstrojenie w lewo A2 - - - - Left detune B1 - Odstrojenie w lewo B1 - - - - Left detune B2 - Odstrojenie w lewo B2 - - - - Right detune A1 - Odstrojenie w prawo A1 - - - - Right detune A2 - Odstrojenie w prawo A2 - - - - Right detune B1 - Odstrojenie w prawo B1 - - - - Right detune B2 - Odstrojenie w prawo B2 - - - - A-B Mix - Miks A-B - - - - A-B Mix envelope amount - A-B Mix ilość obwiedni - - - - A-B Mix envelope attack - A-B Mix atak obwiedni - - - - A-B Mix envelope hold - A-B Mix przetrzymywanie obwiedni - - - - A-B Mix envelope decay - A-B Mix zanikanie obwiedni - - - - A1-B2 Crosstalk - A1-B2 Przesłuch - - - - A2-A1 modulation - A2-A1 Modulacja - - - - B2-B1 modulation - B2-B1 Modulacja - - - - Selected graph - Zaznaczony graf - - - - WatsynView - - - - - + + + + Volume Głośność - - - - + + + + Panning Panoramowanie - - - - + + + + Freq. multiplier Mnożnik częst. - - - - + + + + Left detune Odstrojenie w lewo + + + + + + - - - - - - cents - centy + centów - - - - + + + + Right detune Odstrojenie w prawo - + A-B Mix - Miks A-B + Miksuj A-B - + Mix envelope amount - + Miksuj wartość obwiedni - + Mix envelope attack - + Miksuj narastanie obwiedni - + Mix envelope hold - + Mix envelope decay - + Crosstalk - + Przesłuch - + Select oscillator A1 Wybierz oscylator A1 - + Select oscillator A2 Wybierz oscylator A2 - + Select oscillator B1 Wybierz oscylator B1 - + Select oscillator B2 Wybierz oscylator B2 - + Mix output of A2 to A1 - + Miksuj wyjście A2 do A1 - + Modulate amplitude of A1 by output of A2 - + Moduluj amplitudę A1 z wyjściem A2 - + Ring modulate A1 and A2 - + Modulacja pierścieniowa A1 i A2 - + Modulate phase of A1 by output of A2 - + Moduluj fazę A1 z wyjściem A2 - + Mix output of B2 to B1 - + Miksuj wyjście B2 do B1 - + Modulate amplitude of B1 by output of B2 - + Moduluj amplitudę B1 z wyjściem B2 - + Ring modulate B1 and B2 - + Modulacja pierścieniowa B1 i B2 - + Modulate phase of B1 by output of B2 - + Moduluj fazę B1 z wyjściem B2 - - - - + + + + Draw your own waveform here by dragging your mouse on this graph. - Narysuj swój własny przebieg przeciągając kursorem po tym wykresie. + Narysuj swój własny przebieg fali, przeciągając kursorem po tym wykresie. - + Load waveform Załaduj kształt fali - + Load a waveform from a sample file - + Załaduj kształt fali z przykładowego pliku - + Phase left - + Faza w lewo - + Shift phase by -15 degrees - + Przesuń fazę o -15 stopni - + Phase right - + Faza w prawo - + Shift phase by +15 degrees - + Przesuń fazę o +15 stopni + + + + + Normalize + Normalizuj - Normalize - Normalizacja - - - - Invert Odwróć - - + + Smooth - Wygładzanie + Wygładź - - + + Sine wave Fala sinusoidalna - - - + + + Triangle wave Fala trójkątna - + Saw wave Fala piłokształtna - - + + Square wave Fala prostokątna - Xpressive + lmms::gui::WaveShaperControlDialog - - Selected graph - Zaznaczony graf - - - - A1 - A1 - - - - A2 - A2 - - - - A3 - A3 - - - - W1 smoothing - Wygładzanie W1 - - - - W2 smoothing - Wygładzanie W2 - - - - W3 smoothing - Wygładzanie W3 - - - - Panning 1 - - - - - Panning 2 - - - - - Rel trans - - - - - XpressiveView - - - Draw your own waveform here by dragging your mouse on this graph. - Narysuj swój własny przebieg przeciągając kursorem po tym wykresie. - - - - Select oscillator W1 - Wybierz oscylator W1 - - - - Select oscillator W2 - Wybierz oscylator W2 - - - - Select oscillator W3 - Wybierz oscylator W3 - - - - Select output O1 - - - - - Select output O2 - - - - - Open help window - Otwórz okno pomocy - - - - - Sine wave - Fala sinusoidalna - - - - - Moog-saw wave - - - - - - Exponential wave - Fala wykładnicza - - - - - Saw wave - Fala piłokształtna - - - - - User-defined wave - - - - - - Triangle wave - Fala trójkątna - - - - - Square wave - Fala prostokątna - - - - - White noise - Biały szum - - - - WaveInterpolate - - - - - ExpressionValid - - - - - General purpose 1: - Ogólnego zastosowania 1: - - - - General purpose 2: - Ogólnego zastosowania 2: - - - - General purpose 3: - Ogólnego zastosowania 3: - - - - O1 panning: - Panoramowanie O1: - - - - O2 panning: - Panoramowanie O2: - - - - Release transition: - - - - - Smoothness - - - - - ZynAddSubFxInstrument - - - Portamento - Portamento - - - - Filter frequency - - - - - Filter resonance - - - - - Bandwidth - Szerokość Pasma - - - - FM gain - - - - - Resonance center frequency - - - - - Resonance bandwidth - - - - - Forward MIDI control change events - - - - - ZynAddSubFxView - - - Portamento: - Portamento: - - - - PORT - PORT - - - - Filter frequency: - - - - - FREQ - FREQ - - - - Filter resonance: - - - - - RES - RES - - - - Bandwidth: - Szerokość Pasma: - - - - BW - BW - - - - FM gain: - - - - - FM GAIN - FM GAIN - - - - Resonance center frequency: - Częstotliwość środkowa zafalowania: - - - - RES CF - RES-CF - - - - Resonance bandwidth: - Szerokość pasma zafalowania: - - - - RES BW - RES BW - - - - Forward MIDI control changes - - - - - Show GUI - Pokaż GUI - - - - AudioFileProcessor - - - Amplify - Wzmacniaj - - - - Start of sample - Początek sampla - - - - End of sample - Koniec sampla - - - - Loopback point - Znacznik zapętlenia: - - - - Reverse sample - Odwróć próbkę - - - - Loop mode - Tryb zapętlenia - - - - Stutter - - - - - Interpolation mode - Tryb interpolacji - - - - None - Brak - - - - Linear - Liniowa - - - - Sinc - - - - - Sample not found: %1 - Nie odnaleziono sampla: %1 - - - - BitInvader - - - Sample length - - - - - BitInvaderView - - - Sample length - - - - - Draw your own waveform here by dragging your mouse on this graph. - Narysuj swój własny przebieg przeciągając kursorem po tym wykresie. - - - - - Sine wave - Fala sinusoidalna - - - - - Triangle wave - Fala trójkątna - - - - - Saw wave - Fala piłokształtna - - - - - Square wave - Fala prostokątna - - - - - White noise - Biały szum - - - - - User-defined wave - - - - - - Smooth waveform - Gładki kształt przebiegu - - - - Interpolation - Interpolacja - - - - Normalize - Normalizacja - - - - DynProcControlDialog - - + INPUT WEJŚCIE - + Input gain: Wzmocnienie wejścia: - + OUTPUT WYJŚCIE - - - Output gain: - Wzmocnienie wyjścia: - - - - ATTACK - NARASTANIE - - - - Peak attack time: - - - - - RELEASE - WYBRZMIEWANIE - - - - Peak release time: - - - - - - Reset wavegraph - - - - - - Smooth wavegraph - Płynny wykres falowy - - - - - Increase wavegraph amplitude by 1 dB - - - - - - Decrease wavegraph amplitude by 1 dB - - - - - Stereo mode: maximum - - - - - Process based on the maximum of both stereo channels - - - - - Stereo mode: average - - - - - Process based on the average of both stereo channels - - - - - Stereo mode: unlinked - - - - - Process each stereo channel independently - - - - - DynProcControls - - - Input gain - Wzmocnienie wejścia - - - - Output gain - Wzmocnienie wyścia - - - - Attack time - Czas narastania - - - - Release time - Czas wybrzmiewania - - - - Stereo mode - Tryb stereo - - - - graphModel - - - Graph - Wykres - - - - KickerInstrument - - - Start frequency - Częstotliwość początkowa - - - - End frequency - Częstotliwość końcowa - - - - Length - Długość - - - - Start distortion - - - - - End distortion - - - - - Gain - Wzmocnienie - - - - Envelope slope - - - - - Noise - Szum - - - - Click - Kliknięcie - - - - Frequency slope - - - - - Start from note - Zacznij od nuty - - - - End to note - Zakończ nutą - - - - KickerInstrumentView - - - Start frequency: - Częstotliwość początkowa: - - - - End frequency: - Częstotliwość końcowa: - - - - Frequency slope: - - - - - Gain: - Wzmocnienie: - - - - Envelope length: - - - - - Envelope slope: - - - - - Click: - Kliknięcie: - - - - Noise: - Szum: - - - - Start distortion: - - - - - End distortion: - - - - - LadspaBrowserView - - - - Available Effects - Dostępne Efekty - - - - - Unavailable Effects - Niedostępne Efekty - - - - - Instruments - Instrumenty - - - - - Analysis Tools - Narzędzia Analizujące - - - - - Don't know - Nieznane - - - - Type: - Rodzaj: - - - - LadspaDescription - - - Plugins - Wtyczki - - - - Description - Opis - - - - LadspaPortDialog - - - Ports - Porty - - - - Name - Nazwa - - - - Rate - Tempo - - - - Direction - Kierunek - - - - Type - Rodzaj - - - - Min < Default < Max - Min < Domyślne < Max - - - - Logarithmic - Logarytmiczny - - - - SR Dependent - Zależny od SR - - - - Audio - Audio - - - - Control - Regulator - - - - Input - Wejście - - - - Output - Wyjście - - - - Toggled - Przełączalne - - - - Integer - Całkowite - - - - Float - Zmiennoprzecinkowe - - - - - Yes - Tak - - - - Lb302Synth - - - VCF Cutoff Frequency - Częstotliwość Odcięcia VCF - - - - VCF Resonance - Rezonans VCF - - - - VCF Envelope Mod - Modyfikacja Obwiedni VCF - - - - VCF Envelope Decay - Zanikanie Obwiedni VCF - - - - Distortion - Zniekształcenie - - - - Waveform - Kształt Przebiegu - - - - Slide Decay - Ślizgające Zanikanie - - - - Slide - Ślizganie - - - - Accent - Akcent - - - - Dead - Martwy - - - - 24dB/oct Filter - Filtr 24dB/okt - - - - Lb302SynthView - - - Cutoff Freq: - Częst. Odc.: - - - - Resonance: - Rezonans: - - - - Env Mod: - Mod. Obw.: - - - - Decay: - Zanikanie: - - - - 303-es-que, 24dB/octave, 3 pole filter - 303-es-que, 24dB/oktawę, filtr III rzędu - - - - Slide Decay: - Zanikanie z poślizgiem: - - - - DIST: - DIST: - - - - Saw wave - Fala piłokształtna - - - - Click here for a saw-wave. - Kliknij tutaj, aby przełączyć na przebieg piłokształtny. - - - - Triangle wave - Fala trójkątna - - - - Click here for a triangle-wave. - Kliknij tutaj, aby przełączyć na przebieg trójkątny. - - - - Square wave - Fala prostokątna - - - - Click here for a square-wave. - Kliknij tutaj, aby przełączyć na przebieg prostokątny. - - - - Rounded square wave - Fala prostokątna, zaokrąglona - - - - Click here for a square-wave with a rounded end. - Kliknij tutaj, aby przełączyć na przebieg prostokątny z zaokrąglonymi narożami. - - - - Moog wave - Fala Mooga - - - - Click here for a moog-like wave. - Kliknij tutaj, aby przełączyć na przebieg Mooga. - - - - Sine wave - Fala sinusoidalna - - - - Click for a sine-wave. - Kliknij tutaj, aby przełączyć na przebieg sinusoidalny. - - - - - White noise wave - Biały szum - - - - Click here for an exponential wave. - Kliknij tutaj, aby przełączyć na przebieg wykładniczy. - - - - Click here for white-noise. - Kliknij tutaj, aby przełączyć na przebieg stochastyczny. - - - - Bandlimited saw wave - Fala piłokształtna pasmowo ograniczona - - - - Click here for bandlimited saw wave. - Kliknij tutaj, aby przełączyć na pasmowo ograniczoną falę piłokształtną. - - - - Bandlimited square wave - Fala kwadratowa pasmowo ograniczona - - - - Click here for bandlimited square wave. - Kliknij tutaj, aby przełączyć na pasmowo ograniczoną falę kwadratową. - - - - Bandlimited triangle wave - Fala trójkątna pasmowo ograniczona - - - - Click here for bandlimited triangle wave. - Kliknij tutaj, aby przełączyć na pasmowo ograniczoną falę trójkątną. - - - - Bandlimited moog saw wave - Fala piłokształtna Mooga pasmowo ograniczona - - - - Click here for bandlimited moog saw wave. - Kliknij tutaj, aby przełączyć na pasmowo ograniczoną falę piłokształtną Mooga. - - - - MalletsInstrument - - - Hardness - Twardość - - - - Position - Pozycja - - - - Vibrato gain - - - - - Vibrato frequency - - - - - Stick mix - - - - - Modulator - Modulator - - - - Crossfade - Crossfade - - - - LFO speed - Szybkość LFO - - - - LFO depth - Głębia LFO - - - - ADSR - ADSR - - - - Pressure - Ciśnienie - - - - Motion - Ruch - - - - Speed - Prędkość - - - - Bowed - Pochylenie - - - - Spread - Rozstrzał - - - - Marimba - Marimba - - - - Vibraphone - Wibrafon - - - - Agogo - Agogo - - - - Wood 1 - - - - - Reso - Rezonans - - - - Wood 2 - - - - - Beats - Uderzenia - - - - Two fixed - - - - - Clump - Stąpnięcie - - - - Tubular bells - - - - - Uniform bar - - - - - Tuned bar - - - - - Glass - Harfa Szklana - - - - Tibetan bowl - - - - - MalletsInstrumentView - - - Instrument - Instrument - - - - Spread - Rozstrzał - - - - Spread: - Rozstrzał: - - - - Missing files - Brakujące pliki - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - Instalacja STK wygląda na niekompletną. Upewnij się, że pełny pakiet Stk został zainstalowany. - - - - Hardness - Twardość - - - - Hardness: - Twardość: - - - - Position - Pozycja - - - - Position: - Pozycja: - - - - Vibrato gain - - - - - Vibrato gain: - - - - - Vibrato frequency - - - - - Vibrato frequency: - - - - - Stick mix - - - - - Stick mix: - - - - - Modulator - Modulator - - - - Modulator: - Modulator: - - - - Crossfade - Crossfade - - - - Crossfade: - Crossfade: - - - - LFO speed - Szybkość LFO - - - - LFO speed: - Szybkość LFO: - - - - LFO depth - Głębia LFO - - - - LFO depth: - Głębia LFO: - - - - ADSR - ADSR - - - - ADSR: - ADSR: - - - - Pressure - Ciśnienie - - - - Pressure: - Ciśnienie: - - - - Speed - Prędkość - - - - Speed: - Prędkość: - - - - ManageVSTEffectView - - - - VST parameter control - - kontrola parametrów VST - - - - VST sync - Synchronizacja VST - - - - - Automated - Automatyzowane - - - - Close - Zamknij - - - - ManageVestigeInstrumentView - - - - - VST plugin control - - kontrola wtyczki VST - - - - VST Sync - Synchronizacja VST - - - - - Automated - Automatyzowane - - - - Close - Zamknij - - - - OrganicInstrument - - - Distortion - Zniekształcenie - - - - Volume - Głośność - - - - OrganicInstrumentView - - - Distortion: - Zniekształcenie: - - - - Volume: - Głośność: - - - - Randomise - Randomizuj - - - - - Osc %1 waveform: - Osc %1 przebieg: - - - - Osc %1 volume: - Osc %1 głośność: - - - - Osc %1 panning: - Osc %1 panoramowanie: - - - - Osc %1 stereo detuning - Osc %1 odstrojenie stereo - - - - cents - cent(y) - - - - Osc %1 harmonic: - Osc %1 harmoniczne: - - - - PatchesDialog - - - Qsynth: Channel Preset - Qsynth: Preset kanału - - - - Bank selector - Selektor banku - - - - Bank - Bank - - - - Program selector - Selektor programu - - - - Patch - Próbka - - - - Name - Nazwa - - - - OK - OK - - - - Cancel - Anuluj - - - - Sf2Instrument - - - Bank - Bank - - - - Patch - Próbka - - - - Gain - Wzmocnienie - - - - Reverb - Pogłos - - - - Reverb room size - Rozmiar pomieszczenia - - - - Reverb damping - Tłumienie pogłosu - - - - Reverb width - Rozpiętość pogłosu - - - - Reverb level - Poziom pogłosu - - - - Chorus - Chorus - - - - Chorus voices - - - - - Chorus level - - - - - Chorus speed - - - - - Chorus depth - - - - - A soundfont %1 could not be loaded. - Soundfont %1 nie może zostać załadowany. - - - - Sf2InstrumentView - - - - Open SoundFont file - Otwórz plik SoundFont - - - - Choose patch - Wybierz próbkę - - - - Gain: - Wzmocnienie: - - - - Apply reverb (if supported) - Nałóż pogłos (jeśli wspierane) - - - - Room size: - Rozmiar pokoju: - - - - Damping: - Tłumienie - - - - Width: - Szerokość: - - - - - Level: - Poziom: - - - - Apply chorus (if supported) - Nałóż chorus (jeśli wspierane) - - - - Voices: - Głosy: - - - - Speed: - Prędkość: - - - - Depth: - Rozdzielczość bitowa: - - - - SoundFont Files (*.sf2 *.sf3) - Pliki SoundFont (*.sf2 *.sf3) - - - - SfxrInstrument - - - Wave - Fala - - - - StereoEnhancerControlDialog - - - WIDTH - SZEROKOŚĆ - - - - Width: - Szerokość: - - - - StereoEnhancerControls - - - Width - Szerokość - - - - StereoMatrixControlDialog - - - Left to Left Vol: - Głośność Lewy IN Lewy OUT: - - - - Left to Right Vol: - Głośność Lewy IN Prawy OUT: - - - - Right to Left Vol: - Głośność Prawy IN Lewy OUT: - - - - Right to Right Vol: - Głośność Prawy IN Prawy OUT: - - - - StereoMatrixControls - - - Left to Left - Lewy IN >> Lewy OUT - - - - Left to Right - Lewy IN >> Prawy OUT - - - - Right to Left - Prawy IN >> Lewy OUT - - - - Right to Right - Prawy IN >> Prawy OUT - - - - VestigeInstrument - - - Loading plugin - Ładowanie wtyczki - - - - Please wait while loading the VST plugin... - Proszę poczekać, trwa ładowanie wtyczki VST… - - - - Vibed - - - String %1 volume - String %1 - głośność - - - - String %1 stiffness - String %1 - sztywność - - - - Pick %1 position - Punkt Wymuszenia %1 - - - - Pickup %1 position - Punkt Monitorowania %1 - - - - String %1 panning - - - - - String %1 detune - - - - - String %1 fuzziness - - - - - String %1 length - - - - - Impulse %1 - Impuls %1 - - - - String %1 - - - - - VibedView - - - String volume: - - - - - String stiffness: - Sztywność struny: - - - - Pick position: - Punkt Wymuszenia: - - - - Pickup position: - Punkt Monitorowania: - - - - String panning: - - - - - String detune: - - - - - String fuzziness: - - - - - String length: - - - - - Impulse - Impuls - - - - Octave - Oktawa - - - - Impulse Editor - Edytor Impulsu - - - - Enable waveform - Włącz przebieg - - - - Enable/disable string - - - - - String - Struna - - - - - Sine wave - Przebieg Sinusoidalny - - - - - Triangle wave - Przebieg Trójkątny - - - - - Saw wave - Przebieg Piłokształtny - - - - - Square wave - Przebieg Prostokątny - - - - - White noise - Biały szum - - - - - User-defined wave - - - - - - Smooth waveform - Gładki kształt przebiegu - - - - - Normalize waveform - - - - - VoiceObject - - - Voice %1 pulse width - Współczynnik wypełnienia impulsu głosu %1 - - - - Voice %1 attack - Atak głosu %1 - - - - Voice %1 decay - Zanikanie głosu %1 - - - - Voice %1 sustain - Podtrzymanie głosu %1 - - - - Voice %1 release - Wybrzmiewanie głosu %1 - - - - Voice %1 coarse detuning - Zgrubne odstrojenie głosu %1 - - - - Voice %1 wave shape - Kształt fali głosu %1 - - - - Voice %1 sync - Synchronizacja głosu %1 - - - - Voice %1 ring modulate - Modulacja pierścieniowa głosu %1 - - - - Voice %1 filtered - Filtrowanie głosu %1 - - - - Voice %1 test - Test głosu %1 - - - - WaveShaperControlDialog - - - INPUT - WEJŚCIE - - - - Input gain: - Wzmocnienie wejścia: - - - - OUTPUT - WYJŚCIE - - - - Output gain: - Wzmocnienie wyjścia: - - - Reset wavegraph - + Output gain: + Wzmocnienie wyjścia: + - + Reset wavegraph + Resetuj wykres falowy + + + + Smooth wavegraph Płynny wykres falowy - - - Increase wavegraph amplitude by 1 dB - - - + - - Decrease wavegraph amplitude by 1 dB - + Increase wavegraph amplitude by 1 dB + Zwiększ amplitudę wykresu falowego o 1 dB - + + + Decrease wavegraph amplitude by 1 dB + Zmniejsz amplitudę wykresu falowego o 1 dB + + + Clip input Przytnij wejście - + Clip input signal to 0 dB - + Przytnij sygnał wejścia do 0 dB - WaveShaperControls + lmms::gui::XpressiveView - - Input gain - Wzmocnienie wejścia + + Draw your own waveform here by dragging your mouse on this graph. + Narysuj swój własny przebieg fali, przeciągając kursorem po tym wykresie. - - Output gain - Wzmocnienie wyścia + + Select oscillator W1 + Wybierz oscylator W1 + + + + Select oscillator W2 + Wybierz oscylator W2 + + + + Select oscillator W3 + Wybierz oscylator W3 + + + + Select output O1 + Wybierz wyjście O1 + + + + Select output O2 + Wybierz wyjście O2 + + + + Open help window + Otwórz okno pomocy + + + + + Sine wave + Fala sinusoidalna + + + + + Moog-saw wave + Fala piłokształtna Mooga + + + + + Exponential wave + Fala wykładnicza + + + + + Saw wave + Fala piłokształtna + + + + + User-defined wave + Fala zdefiniowana przez użytkownika + + + + + Triangle wave + Fala trójkątna + + + + + Square wave + Fala prostokątna + + + + + White noise + Szum biały + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + Ogólnego zastosowania 1: + + + + General purpose 2: + Ogólnego zastosowania 2: + + + + General purpose 3: + Ogólnego zastosowania 3: + + + + O1 panning: + Panoramowanie O1: + + + + O2 panning: + Panoramowanie O2: + + + + Release transition: + Przejście do opadania: + + + + Smoothness + Gładkość - + + lmms::gui::ZynAddSubFxView + + + Portamento: + Portamento: + + + + PORT + PORT + + + + Filter frequency: + Częstotliwość filtra: + + + + FREQ + CZĘST + + + + Filter resonance: + Rezonans filtra: + + + + RES + REZ + + + + Bandwidth: + Szerokość pasma: + + + + BW + SP + + + + FM gain: + Wzmocnienie FM: + + + + FM GAIN + WZMOC FM + + + + Resonance center frequency: + Częstotliwość środkowa rezonansu: + + + + RES CF + CŚ REZ + + + + Resonance bandwidth: + Szerokość pasma rezonansu: + + + + RES BW + SP REZ + + + + Forward MIDI control changes + Przekaż zmiany sterowania MIDI + + + + Show GUI + Pokaż graficzny interfejs użytkownika + + + \ No newline at end of file diff --git a/data/locale/pt.ts b/data/locale/pt.ts index d88d0fa24..fe3c1c192 100644 --- a/data/locale/pt.ts +++ b/data/locale/pt.ts @@ -1,4 +1,4 @@ - + AboutDialog @@ -24,12 +24,12 @@ LMMS - easy music production for everyone. - LMMS-produção de música fácil para todos. + LMMS - produção de música fácil para todos. Copyright © %1. - + Copyright © %1. @@ -49,7 +49,7 @@ Contributors ordered by number of commits: - Contribuidores ordenados por número de contribuição: + Contribuidores por número de contribuições: @@ -70,811 +70,48 @@ Se você estiver interessado em traduzir LMMS para outro idioma ou quer melhorar - AmplifierControlDialog + AboutJuceDialog - - VOL - VOL + + About JUCE + Sobre o JUCE - - Volume: - Volume: + + <b>About JUCE</b> + <b>Sobre o JUCE</b> - - PAN - PAN + + This program uses JUCE version 3.x.x. + Este programa usa o JUCE versão 3.x.x. - - Panning: - Panorâmico: + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + JUCE é uma framework de aplicativos C++ multiplataforma de código aberto para a criação de aplicativos desktop e móveis de alta qualidade + +Os módulos principais do JUCE (juce_audio_basics, juce_audio_devices, juce_core e juce_events) são permissivamente licenciados sob os termos da licença ISC. +Outros módulos são cobertos por uma licença GNU GPL 3.0. + +Copyright (C) 2022 Raw Material Software Limited. - - LEFT - ESQUERDA - - - - Left gain: - Ganho na esquerda: - - - - RIGHT - DIREITA - - - - Right gain: - Ganho na Direita: + + This program uses JUCE version + Este programa usa o JUCE versão - AmplifierControls + AudioDeviceSetupWidget - - Volume - Volume - - - - Panning - Panorâmico - - - - Left gain - Ganho na Esquerda - - - - Right gain - Ganho na Direita - - - - AudioAlsaSetupWidget - - - DEVICE - DISPOSITIVO - - - - CHANNELS - CANAIS - - - - AudioFileProcessorView - - - Open sample - Abrir amostra - - - - Reverse sample - Inverter amostra - - - - Disable loop - Desabilitar loop - - - - Enable loop - Habilitar Loop - - - - Enable ping-pong loop - Habilitar loop ping-pong - - - - Continue sample playback across notes - Continua a tocar a amostra entre as notas - - - - Amplify: - Amplificar: - - - - Start point: - Ponto de início: - - - - End point: - Ponto de fim: - - - - Loopback point: - Ponto de auto-retorno: - - - - AudioFileProcessorWaveView - - - Sample length: - Tamanho da amostra: - - - - AudioJack - - - JACK client restarted - Cliente JACK reiniciado - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS foi chutado pelo JACK por alguma razão. Logo que o JACK restaure a comunicação com o LMMS você poderá precisar fazer as conexões manualmente. - - - - JACK server down - O servidor JACK caiu - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - O servidor de áudio JACK parece ter caído e ao reiniciar uma nova instância falhou. De qualquer maneira LMMS é capaz de prosseguir. Certifique-se de salvar seu projeto e reiniciar primeiro o JACK depois o LMMS. - - - - Client name - Nome do cliente - - - - Channels - Canais - - - - AudioOss - - - Device - Dispositivo - - - - Channels - Canais - - - - AudioPortAudio::setupWidget - - - Backend - - - - - Device - Dispositivo - - - - AudioPulseAudio - - - Device - Dispositivo - - - - Channels - Canais - - - - AudioSdl::setupWidget - - - Device - Dispositivo - - - - AudioSndio - - - Device - Dispositivo - - - - Channels - Canais - - - - AudioSoundIo::setupWidget - - - Backend - - - - - Device - Dispositivo - - - - AutomatableModel - - - &Reset (%1%2) - &Resetar (%1%2) - - - - &Copy value (%1%2) - &Copiar valor (%1%2) - - - - &Paste value (%1%2) - C&olar valor (%1%2) - - - - &Paste value - &Colar valor - - - - Edit song-global automation - Editar automação global da música - - - - Remove song-global automation - Apagar automação global da música - - - - Remove all linked controls - Apagar todos os controles linkados - - - - Connected to %1 - Conectado a %1 - - - - Connected to controller - Conectado ao controlador - - - - Edit connection... - Editar conexão... - - - - Remove connection - Apagar conexão - - - - Connect to controller... - Conectado ao controlador... - - - - AutomationEditor - - - Edit Value - Editar Valor - - - - New outValue - - - - - New inValue - - - - - Please open an automation clip with the context menu of a control! - Por favor, abra o sequenciador de automação com o menu de contexto do controle! - - - - AutomationEditorWindow - - - Play/pause current clip (Space) - Tocar/Parar padrão atual (Espaço) - - - - Stop playing of current clip (Space) - Parar de tocar a sequência atual (Espaço) - - - - Edit actions - Editar ações - - - - Draw mode (Shift+D) - Modo desenhar (Shift+D) - - - - Erase mode (Shift+E) - Modo apagar (Shift+E) - - - - Draw outValues mode (Shift+C) - - - - - Flip vertically - Virar verticalmente - - - - Flip horizontally - Virar horizontalmente - - - - Interpolation controls - Controles de interpolação - - - - Discrete progression - Progressão discreta - - - - Linear progression - Progressão linear - - - - Cubic Hermite progression - Progressão Cúbica de Hermite - - - - Tension value for spline - Valor de tensão para a curva - - - - Tension: - Tensão: - - - - Zoom controls - Controles de zoom - - - - Horizontal zooming - Zoom horizontal - - - - Vertical zooming - Zoom vertical - - - - Quantization controls - Controles de quantização - - - - Quantization - Quantização - - - - - Automation Editor - no clip - Editor de Automação - sem padrão - - - - - Automation Editor - %1 - Editor de Automação - %1 - - - - Model is already connected to this clip. - O modelo já está conectado para este padrão. - - - - AutomationClip - - - Drag a control while pressing <%1> - Arraste o controle enquanto pressiona a tecla <%1> - - - - AutomationClipView - - - Open in Automation editor - Abra dentro do Editor de Automação - - - - Clear - Limpar - - - - Reset name - Restaurar nome - - - - Change name - Mudar nome - - - - Set/clear record - Selecionar/limpar gravação - - - - Flip Vertically (Visible) - Virar Verticalmente (Visível) - - - - Flip Horizontally (Visible) - Virar Horizontalmente (Visível) - - - - %1 Connections - %1 Conexões - - - - Disconnect "%1" - Desconectar "%1" - - - - Model is already connected to this clip. - O modelo já está conectado para este padrão. - - - - AutomationTrack - - - Automation track - Pista de Automação - - - - PatternEditor - - - Beat+Bassline Editor - Mostrar/esconder Editor de Bases - - - - Play/pause current beat/bassline (Space) - Tocar/Parar base atual (Espaço) - - - - Stop playback of current beat/bassline (Space) - Parar playback da base atual (Espaço) - - - - Beat selector - Seletor de batida - - - - Track and step actions - Faixa e ações da etapa - - - - Add beat/bassline - Add linha de base - - - - Clone beat/bassline clip - - - - - Add sample-track - Adicionar faixa de amostra - - - - Add automation-track - Add automação de faixa - - - - Remove steps - Remover passo - - - - Add steps - Adicionar passo - - - - Clone Steps - Clonar Etapas - - - - PatternClipView - - - Open in Beat+Bassline-Editor - Abrir Editor de Bases - - - - Reset name - Restaurar nome - - - - Change name - Mudar nome - - - - PatternTrack - - - Beat/Bassline %1 - Batida/Linha de Baixo %1 - - - - Clone of %1 - Clone de %1 - - - - BassBoosterControlDialog - - - FREQ - FREQ - - - - Frequency: - Frequência: - - - - GAIN - GANHO - - - - Gain: - Ganho: - - - - RATIO - RELAÇÃO - - - - Ratio: - Relação: - - - - BassBoosterControls - - - Frequency - Frequência - - - - Gain - Ganho - - - - Ratio - Relação - - - - BitcrushControlDialog - - - IN - DENTRO - - - - OUT - FORA - - - - - GAIN - GANHO - - - - Input gain: - Ganho de entrada: - - - - NOISE - RUÍDO - - - - Input noise: - - - - - Output gain: - Ganho de saída: - - - - CLIP - - - - - Output clip: - - - - - Rate enabled - - - - - Enable sample-rate crushing - - - - - Depth enabled - - - - - Enable bit-depth crushing - - - - - FREQ - FREQ - - - - Sample rate: - Taxa de amostragem: - - - - STEREO - ESTÉREO - - - - Stereo difference: - Diferença de Stereo: - - - - QUANT - - - - - Levels: - Níveis: - - - - BitcrushControls - - - Input gain - Ganho de entrada - - - - Input noise - - - - - Output gain - Ganho de saída - - - - Output clip - clipe de saída - - - - - Sample rate - - - - - Stereo difference - - - - - Levels - Níveis - - - - Rate enabled - - - - - Depth enabled + + [System Default] @@ -893,132 +130,132 @@ Se você estiver interessado em traduzir LMMS para outro idioma ou quer melhorar About text here - + Texto sobre aqui Extended licensing here - + Licença extendida aqui - + Artwork Arte - + Using KDE Oxygen icon set, designed by Oxygen Team. Usando o conjunto de ícones KDE Oxygen, projetado pelo Oxygen Team. - + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. Contém alguns botões, fundos e outras pequenas artes dos projetos Calf Studio Gear, OpenAV e OpenOctave. - + VST is a trademark of Steinberg Media Technologies GmbH. VST é uma marca comercial de Steinberg Media Technologies GmbH. - + Special thanks to António Saraiva for a few extra icons and artwork! Agradecimento especial para António Saraiva por alguns ícones e arte extra! - + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. O logo de LV2 foi projetado por Thorsten Wilms, baseado no conceito de Peter Shorthose. - + MIDI Keyboard designed by Thorsten Wilms. Teclado MIDI projetado por Thorsten Wilms. - + Carla, Carla-Control and Patchbay icons designed by DoosC. Ícones de Carla, Carla-Control e Patchbay projetados por DoosC. - + Features Recursos - + AU/AudioUnit: - + AU/UnidadeAudio - + LADSPA: - - - - - - - - + + + + + + + + TextLabel - + Texto - + VST2: - + DSSI: - + LV2: - + VST3: - + OSC - + Host URLs: - + Valid commands: Comandos válidos: - + valid osc commands here comandos osc válidos aqui - + Example: Exemplo: - + License Licença - + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -1303,50 +540,50 @@ POSSIBILITY OF SUCH DAMAGES. - + OSC Bridge Version - + Versão da Ponte OSC - + Plugin Version - + Versão do Plugin - + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> - + <br>Versão %1<br>Carla é um servidor de plugin de áudio cheio de funcionalidades%2.<br><br>Copyright (C) 2011-2019 falkTX<br> - - + + (Engine not running) - + (Engine não executada) - + Everything! (Including LRDF) - + Tudo! (Incluindo LRDF) - + Everything! (Including CustomData/Chunks) - + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - - - + + + Using Juce host - + About 85% complete (missing vst bank/presets and some minor stuff) @@ -1356,12 +593,12 @@ POSSIBILITY OF SUCH DAMAGES. MainWindow - + JanelaPrincipal Rack - + Rack @@ -1376,565 +613,602 @@ POSSIBILITY OF SUCH DAMAGES. Loading... + Carregando... + + + + Save - + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + Buffer Size: - + Sample Rate: - + ? Xruns - + DSP Load: %p% - + &File &Arquivo - + &Engine - + &Plugin - + Macros (all plugins) - + &Canvas - + Zoom - + &Settings - + &Help Aj&uda - - toolBar + + Tool Bar - + Disk - + Disco - - + + Home Início - + Transport - + Playback Controls - + Time Information - + Frame: - + 000'000'000 - + Time: Tempo: - + 00:00:00 - + BBT: - + 000|00|0000 - + Settings Opções - + BPM - + Use JACK Transport - + Use Ableton Link - + &New &Novo - + Ctrl+N - + &Open... &Abrir... - - + + Open... - + Abrir... - + Ctrl+O - + &Save &Salvar - + Ctrl+S - + Save &As... Salvar &como... - - + + Save As... - + Ctrl+Shift+S - + &Quit Sai&r - + Ctrl+Q - + &Start - + F5 - + St&op - + F6 - + &Add Plugin... - + Ctrl+A - + &Remove All - + Enable - + Disable - + 0% Wet (Bypass) - + 100% Wet - + 0% Volume (Mute) - + 100% Volume - + Center Balance - + Balanço Central - + &Play &Reproduzir - + Ctrl+Shift+P - + &Stop &Parar - + Ctrl+Shift+X - + &Backwards - + Ctrl+Shift+B - + &Forwards - + Ctrl+Shift+F - + &Arrange - + Ctrl+G - - + + &Refresh - + Ctrl+R - + Save &Image... - + Auto-Fit - + Zoom In Aumentar Zoom - + Ctrl++ - + Zoom Out Reduzir Zoom - + Ctrl+- - + Zoom 100% - + Ctrl+1 - + Show &Toolbar - + &Configure Carla &Configurar Carla - + &About &Sobre - + About &JUCE Sobre &JUCE - + About &Qt Sobre &QT - + Show Canvas &Meters - + Show Canvas &Keyboard - + Show Internal - + Show External - + Show Time Panel - + Show &Side Panel - + + Ctrl+P + + + + &Connect... - + Compact Slots - + Expand Slots - + Perform secret 1 - + Perform secret 2 - + Perform secret 3 - + Perform secret 4 - + Perform secret 5 - + Add &JACK Application... - + &Configure driver... - + Panic + Pânico + + + + Open custom driver panel... + Abrir painel de drivers personalizados... + + + + Save Image... (2x zoom) - - Open custom driver panel... + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + Copiar como Imagem para a Área de Transferência + + + + Ctrl+Shift+C CarlaHostWindow - + Export as... Exportar como... - - - - + + + + Error Erro - + Failed to load project - + Falha ao carregar projeto - + Failed to save project - + Falha ao salvar projeto - + Quit Fechar - + Are you sure you want to quit Carla? - + Could not connect to Audio backend '%1', possible reasons: %2 - + Could not connect to Audio backend '%1' - + Warning Aviso - + There are still some plugins loaded, you need to remove them to stop the engine. Do you want to do this now? Ainda existem alguns plugins carregados, você precisa removê-los para interromper o motor. Você quer fazer isso agora? - - CarlaInstrumentView - - - Show GUI - Mostrar GUI - - CarlaSettingsW @@ -1989,19 +1263,19 @@ Você quer fazer isso agora? - + Main - + Canvas - + Engine @@ -2022,1487 +1296,589 @@ Você quer fazer isso agora? - + Experimental Experimental - + <b>Main</b> <b>Principal</b> - + Paths Caminhos - + Default project folder: Pasta padrão do projeto: - + Interface Interface - + + Use "Classic" as default rack skin + + + + Interface refresh interval: Intervalo de atualização da interface: - - + + ms ms - + Show console output in Logs tab (needs engine restart) - + Show a confirmation dialog before quitting - - + + Theme Tema - + Use Carla "PRO" theme (needs restart) Usar tema "PRO" da Carla (precisa reiniciar) - + Color scheme: Esquema de cores: - + Black Preto - + System Sistema - + Enable experimental features - + <b>Canvas</b> - + Bezier Lines Linhas de Bezier - + Theme: Tema: - + Size: Tamanho: - + 775x600 775x600 - + 1550x1200 1550x1200 - + 3100x2400 3100x2400 - + 4650x3600 4650x3600 - + 6200x4800 6200x4800 - + + 12400x9600 + + + + Options Opções - + Auto-hide groups with no ports - + Auto-select items on hover - + Basic eye-candy (group shadows) - + Render Hints - + Anti-Aliasing - + Full canvas repaints (slower, but prevents drawing issues) - + <b>Engine</b> - - + + Core - + Single Client - + Multiple Clients - - + + Continuous Rack - - + + Patchbay - + Audio driver: - + Process mode: - - - - + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog - + Max Parameters: - + ... - + Reset Xrun counter after project load - + Plugin UIs - - + + How much time to wait for OSC GUIs to ping back the host - + UI Bridge Timeout: - + Use OSC-GUI bridges when possible, this way separating the UI from DSP code - + Use UI bridges instead of direct handling when possible - + Make plugin UIs always-on-top - + Make plugin UIs appear on top of Carla (needs restart) - + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS - - + + Restart the engine to load the new settings - + <b>OSC</b> - + Enable OSC - + Enable TCP port - - + + Use specific port: - + Overridden by CARLA_OSC_TCP_PORT env var - - + + Use randomly assigned port - + Enable UDP port - + Overridden by CARLA_OSC_UDP_PORT env var - + DSSI UIs require OSC UDP port enabled - + <b>File Paths</b> - + Audio Áudio - + MIDI MIDI - + Used for the "audiofile" plugin - + Usado para o plugin "audiofile" - + Used for the "midifile" plugin - + Usado para o plugin "midifile" - - + + Add... - - + + Remove - - + + Change... - + <b>Plugin Paths</b> - + LADSPA - + DSSI - + LV2 - + VST2 - + VST3 - + SF2/3 - + SFZ - + + JSFX + + + + + CLAP + + + + Restart Carla to find new plugins - + <b>Wine</b> - + Executable - + Path to 'wine' binary: - + Prefix - + Auto-detect Wine prefix based on plugin filename - + Detectar automaticamente o prefixo Wine baseado no nome de arquivo do plugin - + Fallback: - + Note: WINEPREFIX env var is preferred over this fallback - + Realtime Priority - + Base priority: - + WineServer priority: - + These options are not available for Carla as plugin - + <b>Experimental</b> - + Experimental options! Likely to be unstable! - + Enable plugin bridges - + Enable Wine bridges - + Enable jack applications - + Export single plugins to LV2 - + + Use system/desktop-theme icons (needs restart) + + + + Load Carla backend in global namespace (NOT RECOMMENDED) - + Fancy eye-candy (fade-in/out groups, glow connections) - + Use OpenGL for rendering (needs restart) - + Usar OpenGL para renderização (requer reinicialização) - + High Quality Anti-Aliasing (OpenGL only) - + Antisserrilhamento de Alta Qualidade (apenas OpenGL) - + Render Ardour-style "Inline Displays" - + Force mono plugins as stereo by running 2 instances at the same time. This mode is not available for VST plugins. - + Force mono plugins as stereo - - Prevent plugins from doing bad stuff (needs restart) + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. - - Whenever possible, run the plugins in bridge mode. + + Prevent unsafe calls from plugins (needs restart) - + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + Run plugins in bridge mode when possible - - - - + + + + Add Path - - CompressorControlDialog - - - Threshold: - - - - - Volume at which the compression begins to take place - - - - - Ratio: - Relação: - - - - How far the compressor must turn the volume down after crossing the threshold - - - - - Attack: - Ataque: - - - - Speed at which the compressor starts to compress the audio - - - - - Release: - Relaxamento: - - - - Speed at which the compressor ceases to compress the audio - - - - - Knee: - - - - - Smooth out the gain reduction curve around the threshold - - - - - Range: - - - - - Maximum gain reduction - - - - - Lookahead Length: - - - - - How long the compressor has to react to the sidechain signal ahead of time - - - - - Hold: - Duração: - - - - Delay between attack and release stages - - - - - RMS Size: - - - - - Size of the RMS buffer - - - - - Input Balance: - - - - - Bias the input audio to the left/right or mid/side - - - - - Output Balance: - - - - - Bias the output audio to the left/right or mid/side - - - - - Stereo Balance: - - - - - Bias the sidechain signal to the left/right or mid/side - - - - - Stereo Link Blend: - - - - - Blend between unlinked/maximum/average/minimum stereo linking modes - - - - - Tilt Gain: - - - - - Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. - - - - - Tilt Frequency: - - - - - Center frequency of sidechain tilt filter - - - - - Mix: - - - - - Balance between wet and dry signals - - - - - Auto Attack: - - - - - Automatically control attack value depending on crest factor - - - - - Auto Release: - - - - - Automatically control release value depending on crest factor - - - - - Output gain - Ganho de saída - - - - - Gain - Ganho - - - - Output volume - - - - - Input gain - Ganho de entrada - - - - Input volume - - - - - Root Mean Square - - - - - Use RMS of the input - - - - - Peak - - - - - Use absolute value of the input - - - - - Left/Right - - - - - Compress left and right audio - - - - - Mid/Side - - - - - Compress mid and side audio - - - - - Compressor - - - - - Compress the audio - - - - - Limiter - - - - - Set Ratio to infinity (is not guaranteed to limit audio volume) - - - - - Unlinked - - - - - Compress each channel separately - - - - - Maximum - - - - - Compress based on the loudest channel - - - - - Average - - - - - Compress based on the averaged channel volume - - - - - Minimum - - - - - Compress based on the quietest channel - - - - - Blend - - - - - Blend between stereo linking modes - - - - - Auto Makeup Gain - - - - - Automatically change makeup gain depending on threshold, knee, and ratio settings - - - - - - Soft Clip - - - - - Play the delta signal - - - - - Use the compressor's output as the sidechain input - - - - - Lookahead Enabled - - - - - Enable Lookahead, which introduces 20 milliseconds of latency - - - - - CompressorControls - - - Threshold - - - - - Ratio - Relação - - - - Attack - Ataque - - - - Release - Relaxamento - - - - Knee - - - - - Hold - Espera - - - - Range - - - - - RMS Size - - - - - Mid/Side - - - - - Peak Mode - Modo de Pico - - - - Lookahead Length - - - - - Input Balance - - - - - Output Balance - - - - - Limiter - - - - - Output Gain - - - - - Input Gain - - - - - Blend - - - - - Stereo Balance - - - - - Auto Makeup Gain - - - - - Audition - - - - - Feedback - Retorno - - - - Auto Attack - - - - - Auto Release - - - - - Lookahead - - - - - Tilt - - - - - Tilt Frequency - - - - - Stereo Link - - - - - Mix - Misturar - - - - Controller - - - Controller %1 - Controlador %1 - - - - ControllerConnectionDialog - - - Connection Settings - Configuração das Conexões - - - - MIDI CONTROLLER - CONTROLADOR MIDI - - - - Input channel - Canal de entrada - - - - CHANNEL - CANAL - - - - Input controller - Entrada do controlador - - - - CONTROLLER - CONTROLADOR - - - - - Auto Detect - Auto detectar - - - - MIDI-devices to receive MIDI-events from - Dispositivos MIDI para receber eventos MIDI de - - - - USER CONTROLLER - CONTROLADOR DO USUÁRIO - - - - MAPPING FUNCTION - MAPEAR FUNÇÃO - - - - OK - OK - - - - Cancel - Cancelar - - - - LMMS - LMMS - - - - Cycle Detected. - Ciclo Detectado. - - - - ControllerRackView - - - Controller Rack - Estante de Controladores - - - - Add - Adicionar - - - - Confirm Delete - Confirmação para Apagar - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Confirmar apagar? Há conexão existente(s) associada a este controlador. Não há maneira de desfazer. - - - - ControllerView - - - Controls - Controles - - - - Rename controller - Renomear controlador - - - - Enter the new name for this controller - Adicione um novo nome para este controlador - - - - LFO - LFO - - - - &Remove this controller - &Remover este controlador - - - - Re&name this controller - Re&nomear este controlador - - - - CrossoverEQControlDialog - - - Band 1/2 crossover: - - - - - Band 2/3 crossover: - - - - - Band 3/4 crossover: - - - - - Band 1 gain - - - - - Band 1 gain: - - - - - Band 2 gain - - - - - Band 2 gain: - - - - - Band 3 gain - - - - - Band 3 gain: - - - - - Band 4 gain - - - - - Band 4 gain: - - - - - Band 1 mute - - - - - Mute band 1 - - - - - Band 2 mute - - - - - Mute band 2 - - - - - Band 3 mute - - - - - Mute band 3 - - - - - Band 4 mute - - - - - Mute band 4 - - - - - DelayControls - - - Delay samples - - - - - Feedback - Retorno - - - - LFO frequency - - - - - LFO amount - - - - - Output gain - Ganho de saída - - - - DelayControlsDialog - - - DELAY - ATRASO - - - - Delay time - - - - - FDBK - RTRN - - - - Feedback amount - - - - - RATE - TAXA - - - - LFO frequency - - - - - AMNT - QNTD - - - - LFO amount - - - - - Out gain - - - - - Gain - Ganho - - Dialog - - - Add JACK Application - - - - - Note: Features not implemented yet are greyed out - - - - - Application - - - - - Name: - - - - - Application: - - - - - From template - - - - - Custom - - - - - Template: - - - - - Command: - - - - - Setup - - - - - Session Manager: - - - - - None - Nenhum - - - - Audio inputs: - - - - - MIDI inputs: - - - - - Audio outputs: - - - - - MIDI outputs: - - - - - Take control of main application window - - - - - Workarounds - - - - - Wait for external application start (Advanced, for Debug only) - - - - - Capture only the first X11 Window - - - - - Use previous client output buffer as input for the next client - - - - - Simulate 16 JACK MIDI outputs, with MIDI channel as port index - - - - - Error here - - Carla Control - Connect @@ -3528,27 +1904,6 @@ This mode is not available for VST plugins. TCP Port: - - - Reported host - - - - - Automatic - - - - - Custom: - - - - - In some networks (like USB connections), the remote system cannot reach the local network. You can specify here which hostname or IP to make the remote Carla connect to. -If you are unsure, leave it as 'Automatic'. - - Set value @@ -3575,7 +1930,7 @@ If you are unsure, leave it as 'Automatic'. Device: - + Dispositivo: @@ -3603,948 +1958,6 @@ If you are unsure, leave it as 'Automatic'. - - DualFilterControlDialog - - - - FREQ - FREQ - - - - - Cutoff frequency - Frequência de corte - - - - - RESO - RESS - - - - - Resonance - Ressonância - - - - - GAIN - GANHO - - - - - Gain - Ganho - - - - MIX - MISTURAR - - - - Mix - Misturar - - - - Filter 1 enabled - Filtro 1 habilitado - - - - Filter 2 enabled - Filtro 2 habilitado - - - - Enable/disable filter 1 - - - - - Enable/disable filter 2 - - - - - DualFilterControls - - - Filter 1 enabled - Filtro 1 habilitado - - - - Filter 1 type - Filtro 1 Tipo - - - - Cutoff frequency 1 - - - - - Q/Resonance 1 - Q/Ressonância 1 - - - - Gain 1 - Ganho 1 - - - - Mix - Misturar - - - - Filter 2 enabled - Filtro 2 habilitado - - - - Filter 2 type - Filtro 2 Tipo - - - - Cutoff frequency 2 - - - - - Q/Resonance 2 - Q/Ressonância 2 - - - - Gain 2 - Ganho 2 - - - - - Low-pass - - - - - - Hi-pass - - - - - - Band-pass csg - - - - - - Band-pass czpg - - - - - - Notch - Vale - - - - - All-pass - - - - - - Moog - Moog - - - - - 2x Low-pass - - - - - - RC Low-pass 12 dB/oct - - - - - - RC Band-pass 12 dB/oct - - - - - - RC High-pass 12 dB/oct - - - - - - RC Low-pass 24 dB/oct - - - - - - RC Band-pass 24 dB/oct - - - - - - RC High-pass 24 dB/oct - - - - - - Vocal Formant - - - - - - 2x Moog - - - - - - SV Low-pass - - - - - - SV Band-pass - - - - - - SV High-pass - - - - - - SV Notch - - - - - - Fast Formant - Formato Rápido - - - - - Tripole - - - - - Editor - - - Transport controls - Controles de transporte - - - - Play (Space) - Tocar (Espaço) - - - - Stop (Space) - Parar (Espaço) - - - - Record - Gravar - - - - Record while playing - Gravar enquanto toca - - - - Toggle Step Recording - - - - - Effect - - - Effect enabled - Efeito ativado - - - - Wet/Dry mix - Mix Processada/Limpa - - - - Gate - Portal - - - - Decay - Decaimento - - - - EffectChain - - - Effects enabled - Efeitos ativados - - - - EffectRackView - - - EFFECTS CHAIN - CADEIA DE EFEITOS - - - - Add effect - Adicionar Efeito - - - - EffectSelectDialog - - - Add effect - Adicionar Efeito - - - - - Name - Nome - - - - Type - Tipo - - - - Description - Descrição - - - - Author - Autor - - - - EffectView - - - On/Off - Liga/Desliga - - - - W/D - P/L - - - - Wet Level: - Nível de Processamento: - - - - DECAY - DEC - - - - Time: - Tempo: - - - - GATE - PORTAL - - - - Gate: - Portal: - - - - Controls - Controles - - - - Move &up - Para &Cima - - - - Move &down - Para &Baixo - - - - &Remove this plugin - &Remover este plugin - - - - EnvelopeAndLfoParameters - - - Env pre-delay - - - - - Env attack - - - - - Env hold - - - - - Env decay - - - - - Env sustain - - - - - Env release - - - - - Env mod amount - - - - - LFO pre-delay - - - - - LFO attack - - - - - LFO frequency - - - - - LFO mod amount - - - - - LFO wave shape - - - - - LFO frequency x 100 - - - - - Modulate env amount - - - - - EnvelopeAndLfoView - - - - DEL - ATRASO - - - - - Pre-delay: - - - - - - ATT - ATQ - - - - - Attack: - Ataque: - - - - HOLD - DURAR - - - - Hold: - Duração: - - - - DEC - DEC - - - - Decay: - Decaimento: - - - - SUST - SUST - - - - Sustain: - Sustentação: - - - - REL - REL - - - - Release: - Relaxamento: - - - - - AMT - QNT - - - - - Modulation amount: - Quantidade de modulação: - - - - SPD - VEL - - - - Frequency: - Frequência: - - - - FREQ x 100 - FREQ x 100 - - - - Multiply LFO frequency by 100 - - - - - MODULATE ENV AMOUNT - - - - - Control envelope amount by this LFO - - - - - ms/LFO: - ms/LFO: - - - - Hint - Sugestão - - - - Drag and drop a sample into this window. - - - - - EqControls - - - Input gain - Ganho de entrada - - - - Output gain - Ganho de saída - - - - Low-shelf gain - - - - - Peak 1 gain - Ganho 1 pico - - - - Peak 2 gain - Ganho 2 pico - - - - Peak 3 gain - Ganho 3 pico - - - - Peak 4 gain - Ganho 4 pico - - - - High-shelf gain - - - - - HP res - - - - - Low-shelf res - - - - - Peak 1 BW - - - - - Peak 2 BW - - - - - Peak 3 BW - - - - - Peak 4 BW - - - - - High-shelf res - - - - - LP res - - - - - HP freq - - - - - Low-shelf freq - - - - - Peak 1 freq - - - - - Peak 2 freq - - - - - Peak 3 freq - - - - - Peak 4 freq - - - - - High-shelf freq - - - - - LP freq - - - - - HP active - - - - - Low-shelf active - - - - - Peak 1 active - - - - - Peak 2 active - - - - - Peak 3 active - - - - - Peak 4 active - - - - - High-shelf active - - - - - LP active - LP ativo - - - - LP 12 - LP 12 - - - - LP 24 - LP 24 - - - - LP 48 - LP 48 - - - - HP 12 - HP 12 - - - - HP 24 - HP 24 - - - - HP 48 - HP 48 - - - - Low-pass type - - - - - High-pass type - - - - - Analyse IN - - - - - Analyse OUT - - - - - EqControlsDialog - - - HP - HP - - - - Low-shelf - - - - - Peak 1 - - - - - Peak 2 - - - - - Peak 3 - - - - - Peak 4 - - - - - High-shelf - - - - - LP - LP - - - - Input gain - Ganho de entrada - - - - - - Gain - Ganho - - - - Output gain - Ganho de saída - - - - Bandwidth: - Largura de Banda: - - - - Octave - Oitava - - - - Resonance : - Ressonância: - - - - Frequency: - Frequência: - - - - LP group - - - - - HP group - - - - - EqHandle - - - Reso: - Reso: - - - - BW: - BW: - - - - - Freq: - Freq: - - ExportProjectDialog @@ -4555,7 +1968,7 @@ If you are unsure, leave it as 'Automatic'. Export as loop (remove extra bar) - + Exportar como loop (remove o compasso extra) @@ -4565,17 +1978,17 @@ If you are unsure, leave it as 'Automatic'. Render Looped Section: - + Renderizar Sessão de Loop time(s) - + vez(es) File format settings - + Ajuste no formato do arquivo @@ -4585,7 +1998,7 @@ If you are unsure, leave it as 'Automatic'. Sampling rate: - + Taxa de amostragem @@ -4615,22 +2028,22 @@ If you are unsure, leave it as 'Automatic'. Bit depth: - + Profundidade de Bits 16 Bit integer - + Inteiro 16 Bits 24 Bit integer - + Inteiro 24 Bits 32 Bit float - + Flutuante 32 Bits @@ -4650,12 +2063,12 @@ If you are unsure, leave it as 'Automatic'. Joint stereo - + Joint stereo Compression level: - + Nível de compressão @@ -4695,7 +2108,7 @@ If you are unsure, leave it as 'Automatic'. Use variable bitrate - + Usar taxa de bits variável @@ -4710,2143 +2123,670 @@ If you are unsure, leave it as 'Automatic'. Zero order hold - + Retentor de Ordem Zero Sinc worst (fastest) - + Sinc pior (mais rápida) Sinc medium (recommended) - + Sinc média (recomendada) Sinc best (slowest) - + Sinc melhor (mais lenta) - - Oversampling: - - - - - 1x (None) - 1x (Nada) - - - - 2x - 2x - - - - 4x - 4x - - - - 8x - 8x - - - + Start Começar - + Cancel Cancelar - - - Could not open file - Não é possível abrir o arquivo - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - - - - - Export project to %1 - Exportar projeto para %1 - - - - ( Fastest - biggest ) - - - - - ( Slowest - smallest ) - - - - - Error - Erro - - - - Error while determining file-encoder device. Please try to choose a different output format. - Erro ao determinar o aparelho codificador de arquivos. Por favor, tente escolher um formato de saída diferente. - - - - Rendering: %1% - Renderizando: %1% - - - - Fader - - - Set value - - - - - Please enter a new value between %1 and %2: - Por favor coloque com um novo valor entre %1 e %2: - - - - FileBrowser - - - User content - - - - - Factory content - - - - - Browser - Navegador - - - - Search - - - - - Refresh list - - - - - FileBrowserTreeWidget - - - Send to active instrument-track - Enviar para a faixa de instrumento ativa - - - - Open containing folder - - - - - Song Editor - Mostrar/esconder Editor de Arranjo - - - - BB Editor - - - - - Send to new AudioFileProcessor instance - - - - - Send to new instrument track - - - - - (%2Enter) - - - - - Send to new sample track (Shift + Enter) - - - - - Loading sample - Carregando amostra - - - - Please wait, loading sample for preview... - Por favor aguarde, carregando amostra para visualização... - - - - Error - Erro - - - - %1 does not appear to be a valid %2 file - - - - - --- Factory files --- - --- Arquivos de fábrica --- - - - - FlangerControls - - - Delay samples - - - - - LFO frequency - - - - - Seconds - Segundos - - - - Stereo phase - - - - - Regen - - - - - Noise - Ruído - - - - Invert - Inverter - - - - FlangerControlsDialog - - - DELAY - ATRASO - - - - Delay time: - - - - - RATE - TAXA - - - - Period: - - - - - AMNT - QNTD - - - - Amount: - Quantidade: - - - - PHASE - - - - - Phase: - - - - - FDBK - RTRN - - - - Feedback amount: - - - - - NOISE - RUÍDO - - - - White noise amount: - - - - - Invert - Inverter - - - - FreeBoyInstrument - - - Sweep time - Varredura temporal - - - - Sweep direction - Direção da varredura - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle - - - - - Channel 1 volume - Canal 1 volume - - - - - - Volume sweep direction - Direção da varredura de volume - - - - - - Length of each step in sweep - Tamanho de cada passo na varredura - - - - Channel 2 volume - Canal 2 volume - - - - Channel 3 volume - Canal 3 volume - - - - Channel 4 volume - Canal 4 volume - - - - Shift Register width - Desconsiderar Tamanho do registro - - - - Right output level - - - - - Left output level - - - - - Channel 1 to SO2 (Left) - Canal 1 para SO2 (Esquerda) - - - - Channel 2 to SO2 (Left) - Canal 2 para SO2 (Esquerda) - - - - Channel 3 to SO2 (Left) - Canal 3 para SO2 (Esquerda) - - - - Channel 4 to SO2 (Left) - Canal 4 para SO2 (Esquerda) - - - - Channel 1 to SO1 (Right) - Canal 1 para SO1 (Direita) - - - - Channel 2 to SO1 (Right) - Canal 2 para SO1 (Direita) - - - - Channel 3 to SO1 (Right) - Canal 3 para SO1 (Direita) - - - - Channel 4 to SO1 (Right) - Canal 4 para SO1 (Direita) - - - - Treble - Agudo - - - - Bass - Grave - - - - FreeBoyInstrumentView - - - Sweep time: - - - - - Sweep time - Varredura temporal - - - - Sweep rate shift amount: - - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle: - - - - - - Wave pattern duty cycle - - - - - Square channel 1 volume: - - - - - Square channel 1 volume - - - - - - - Length of each step in sweep: - Tamanho de cada passo na varredura: - - - - - - Length of each step in sweep - Tamanho de cada passo na varredura - - - - Square channel 2 volume: - - - - - Square channel 2 volume - - - - - Wave pattern channel volume: - - - - - Wave pattern channel volume - - - - - Noise channel volume: - - - - - Noise channel volume - - - - - SO1 volume (Right): - - - - - SO1 volume (Right) - - - - - SO2 volume (Left): - - - - - SO2 volume (Left) - - - - - Treble: - Agudo: - - - - Treble - Agudo - - - - Bass: - Grave: - - - - Bass - Grave - - - - Sweep direction - Direção da varredura - - - - - - - - Volume sweep direction - Direção da varredura de volume - - - - Shift register width - - - - - Channel 1 to SO1 (Right) - Canal 1 para SO1 (Direita) - - - - Channel 2 to SO1 (Right) - Canal 2 para SO1 (Direita) - - - - Channel 3 to SO1 (Right) - Canal 3 para SO1 (Direita) - - - - Channel 4 to SO1 (Right) - Canal 4 para SO1 (Direita) - - - - Channel 1 to SO2 (Left) - Canal 1 para SO2 (Esquerda) - - - - Channel 2 to SO2 (Left) - Canal 2 para SO2 (Esquerda) - - - - Channel 3 to SO2 (Left) - Canal 3 para SO2 (Esquerda) - - - - Channel 4 to SO2 (Left) - Canal 4 para SO2 (Esquerda) - - - - Wave pattern graph - - - - - MixerChannelView - - - Channel send amount - Quantidade de envio de canal - - - - Move &left - - - - - Move &right - - - - - Rename &channel - Renomear canal - - - - R&emove channel - Remover canal - - - - Remove &unused channels - Remover canais não utilizados - - - - Set channel color - - - - - Remove channel color - - - - - Pick random channel color - - - - - MixerChannelLcdSpinBox - - - Assign to: - Atribuir a: - - - - New mixer Channel - Novo Canal FX - - - - Mixer - - - Master - Mestre - - - - - - Channel %1 - FX %1 - - - - Volume - Volume - - - - Mute - Mudo - - - - Solo - Solo - - - - MixerView - - - Mixer - Mixer de Efeitos - - - - Fader %1 - FX Fader %1 - - - - Mute - Mudo - - - - Mute this mixer channel - Este canal FX mudo - - - - Solo - Solo - - - - Solo mixer channel - Canal FX solo - - - - MixerRoute - - - - Amount to send from channel %1 to channel %2 - Quantidade para enviar do canal %1 para o canal %2 - - - - GigInstrument - - - Bank - Banco - - - - Patch - Programação - - - - Gain - Ganho - - - - GigInstrumentView - - - - Open GIG file - Abrir arquivo GIG - - - - Choose patch - - - - - Gain: - Ganho: - - - - GIG Files (*.gig) - Arquivos GIG (*.gig) - - - - GuiApplication - - - Working directory - Diretório de trabalho - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - - - - - Preparing UI - Preparando UI - - - - Preparing song editor - Preparando o editor de som - - - - Preparing mixer - Preparando o misturador - - - - Preparing controller rack - - - - - Preparing project notes - Preparando notas do projeto - - - - Preparing beat/bassline editor - Preparando editor de batida/base - - - - Preparing piano roll - - - - - Preparing automation editor - Preparando editor de automação - - - - InstrumentFunctionArpeggio - - - Arpeggio - Arpegio - - - - Arpeggio type - Tipo de Arpegio - - - - Arpeggio range - Escala de Arpejo - - - - Note repeats - - - - - Cycle steps - - - - - Skip rate - - - - - Miss rate - - - - - Arpeggio time - Tempo de Arpejo - - - - Arpeggio gate - Portal de Arpejo - - - - Arpeggio direction - Direção do Arpejo - - - - Arpeggio mode - Modo de Arpejo - - - - Up - Para Cima - - - - Down - Para Baixo - - - - Up and down - Para cima e para baixo - - - - Down and up - Para baixo e para cima - - - - Random - Aleatório - - - - Free - Livre - - - - Sort - Tipo - - - - Sync - Sincronização - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - ARPEGIO - - - - RANGE - EXTENSÃO - - - - Arpeggio range: - Extensão do arpejo: - - - - octave(s) - oitava(s) - - - - REP - - - - - Note repeats: - - - - - time(s) - - - - - CYCLE - - - - - Cycle notes: - - - - - note(s) - nota(s) - - - - SKIP - - - - - Skip rate: - - - - - - - % - % - - - - MISS - - - - - Miss rate: - - - - - TIME - TEMPO - - - - Arpeggio time: - Tempo de arpejo: - - - - ms - ms - - - - GATE - PORTAL - - - - Arpeggio gate: - Portal de arpejo: - - - - Chord: - Acorde: - - - - Direction: - Direção: - - - - Mode: - Modo: - InstrumentFunctionNoteStacking - + octave oitava - - + + Major Maior - + Majb5 Maior b5 - + minor menor - + minb5 menor b5 - + sus2 sus2 - + sus4 sus4 - + aug aum - + augsus4 aum sus4 - + tri tríade - + 6 6 - + 6sus4 6sus4 - + 6add9 6(9) - + m6 m6 - + m6add9 m6(9) - + 7 7 - + 7sus4 7 sus4 - + 7#5 7(#5) - + 7b5 7(b5) - + 7#9 7(#9) - + 7b9 7(b9) - + 7#5#9 7(#5, #9) - + 7#5b9 7(#5, b9) - + 7b5b9 7(b5, b9) - + 7add11 7(11) - + 7add13 7(13) - + 7#11 7(#11) - + Maj7 7M - + Maj7b5 7M(b5) - + Maj7#5 7M(#5) - + Maj7#11 7M(#11) - + Maj7add13 7M(13) - + m7 m7 - + m7b5 m7(b5) - + m7b9 m7(b9) - + m7add11 m7(11) - + m7add13 m7(13) - + m-Maj7 m-7M - + m-Maj7add11 m-7M(11) - + m-Maj7add13 m-7M(13) - + 9 9 - + 9sus4 9 sus4 - + add9 (9) - + 9#5 (9, #5) - + 9b5 (9, b5) - + 9#11 (9, #11) - + 9b13 (b9, 13) - + Maj9 9M - + Maj9sus4 9M sus4 - + Maj9#5 9M(#5) - + Maj9#11 9M(#11) - + m9 m9 - + madd9 m(9) - + m9b5 m(9, b5) - + m9-Maj7 m(9,7M) - + 11 11 - + 11b9 11(b9) - + Maj11 Acorde de 11 - + m11 m(11) - + m-Maj11 m (11M) - + 13 13 - + 13#9 13(#9) - + 13b9 13(b9) - + 13b5b9 13(b5, b9) - + Maj13 13M - + m13 m(13) - + m-Maj13 m (13M) - + Harmonic minor Menor Harmônica - + Melodic minor Menor Melódica - + Whole tone Tons inteiros - + Diminished Diminuta - + Major pentatonic Pentatônica maior - + Minor pentatonic Pentatônica menor - + Jap in sen Insen Japonesa - + Major bebop Bebop maior - + Dominant bebop Bebop dominante - + Blues Blues - + Arabic Árabe - + Enigmatic Enigmática - + Neopolitan Napolitana - + Neopolitan minor Neopolitana menor - + Hungarian minor Húngara menor - + Dorian Dório - + Phrygian - + Frígio - + Lydian Lídio - + Mixolydian Mixolídio - + Aeolian Eólio - + Locrian Lócrio - + Minor Menor - + Chromatic Cromático - + Half-Whole Diminished - + Mínima-Diminuída - + 5 5 - + Phrygian dominant - + Frígio dominante - + Persian Persa - - - Chords - Acordes - - - - Chord type - Tipo de acorde - - - - Chord range - Extensão do acorde - - - - InstrumentFunctionNoteStackingView - - - STACKING - EMPILHAMENTO - - - - Chord: - Acorde: - - - - RANGE - EXTENSÃO - - - - Chord range: - Extensão do acorde: - - - - octave(s) - oitava(s) - - - - InstrumentMidiIOView - - - ENABLE MIDI INPUT - HABILITAR ENTRADA MIDI - - - - ENABLE MIDI OUTPUT - HABILITAR SAÍDA MIDI - - - - - CHAN - This string must be be short, its width must be less than * width of LCD spin-box of two digits - - - - - - VELOC - This string must be be short, its width must be less than * width of LCD spin-box of three digits - - - - - PROG - This string must be be short, its width must be less than the * width of LCD spin-box of three digits - - - - - NOTE - This string must be be short, its width must be less than * width of LCD spin-box of three digits - NOTA - - - - MIDI devices to receive MIDI events from - Dispositivos MIDI para receber eventos MIDI de - - - - MIDI devices to send MIDI events to - Dispositivos MIDI para mandar eventos MIDI para - - - - CUSTOM BASE VELOCITY - - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. - - - - - BASE VELOCITY - - - - - InstrumentTuningView - - - MASTER PITCH - - - - - Enables the use of master pitch - - InstrumentSoundShaping - + VOLUME VOLUME - + Volume Volume - + CUTOFF CORTE - - + Cutoff frequency Frequência de corte - + RESO RESS - + Resonance Ressonância - - - Envelopes/LFOs - Envelopes/LFOs - - - - Filter type - Tipo de filtro - - - - Q/Resonance - Q/Ressonância - - - - Low-pass - - - - - Hi-pass - - - - - Band-pass csg - - - - - Band-pass czpg - - - - - Notch - Vale - - - - All-pass - - - - - Moog - Moog - - - - 2x Low-pass - - - - - RC Low-pass 12 dB/oct - - - - - RC Band-pass 12 dB/oct - - - - - RC High-pass 12 dB/oct - - - - - RC Low-pass 24 dB/oct - - - - - RC Band-pass 24 dB/oct - - - - - RC High-pass 24 dB/oct - - - - - Vocal Formant - - - - - 2x Moog - - - - - SV Low-pass - - - - - SV Band-pass - - - - - SV High-pass - - - - - SV Notch - - - - - Fast Formant - Formato Rápido - - - - Tripole - - - InstrumentSoundShapingView + JackAppDialog - - TARGET - OBJETO - - - - FILTER - FILTRO - - - - FREQ - FREQ - - - - Cutoff frequency: - Frequência de corte: - - - - Hz - Hz - - - - Q/RESO + + Add JACK Application - - Q/Resonance: + + Note: Features not implemented yet are greyed out - - Envelopes, LFOs and filters are not supported by the current instrument. - - - - - InstrumentTrack - - - - unnamed_track - pista_sem_nome - - - - Base note - Nota base - - - - First note + + Application - - Last note - Última nota - - - - Volume - Volume - - - - Panning - Panorâmico - - - - Pitch - Altura - - - - Pitch range - Extensão - - - - Mixer channel - Canal de Efeitos - - - - Master pitch - Altura Final - - - - Enable/Disable MIDI CC + + Name: - - CC Controller %1 + + Application: - - - Default preset - Pré configuração padrão - - - - InstrumentTrackView - - - Volume - Volume - - - - Volume: - Volume: - - - - VOL - VOL - - - - Panning - Panorâmico - - - - Panning: - Panorâmico: - - - - PAN - PAN - - - - MIDI - MIDI - - - - Input - Entradas - - - - Output - Saídas - - - - Open/Close MIDI CC Rack + + From template - - Channel %1: %2 - FX %1: %2 - - - - InstrumentTrackWindow - - - GENERAL SETTINGS - AJUSTES GERAIS - - - - Volume - Volume - - - - Volume: - Volume: - - - - VOL - VOL - - - - Panning - Panorâmico - - - - Panning: - Panorâmico: - - - - PAN - PAN - - - - Pitch - Altura - - - - Pitch: - Altura: - - - - cents - centésimos - - - - PITCH - ALTURA - - - - Pitch range (semitones) - Extensão (semitons) - - - - RANGE - EXTENSÃO - - - - Mixer channel - Canal de Efeitos - - - - CHANNEL - EFEITOS - - - - Save current instrument track settings in a preset file + + Custom - - SAVE - SALVAR - - - - Envelope, filter & LFO + + Template: - - Chord stacking & arpeggio + + Command: - - Effects - Efeitos - - - - MIDI - MIDI - - - - Miscellaneous - Miscelânea - - - - Save preset - Salvar pré definição - - - - XML preset file (*.xpf) - Arquivo de pré definições XML (*.xpf) - - - - Plugin + + Setup - - - JackApplicationW - + + Session Manager: + + + + + None + + + + + Audio inputs: + + + + + MIDI inputs: + Entradas MIDI: + + + + Audio outputs: + + + + + MIDI outputs: + Saídas MIDI: + + + + Take control of main application window + + + + + Workarounds + Gambiarras + + + + Wait for external application start (Advanced, for Debug only) + + + + + Capture only the first X11 Window + Capturar apenas a primeira Janela X11 + + + + Use previous client output buffer as input for the next client + + + + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + + + + + Error here + Erro aqui + + + NSM applications cannot use abstract or absolute paths - + NSM applications cannot use CLI arguments - + You need to save the current Carla project before NSM can be used @@ -6854,957 +2794,22 @@ Please make sure you have write permission to the file and the directory contain JuceAboutW - - About JUCE - - - - - <b>About JUCE</b> - - - - - This program uses JUCE version 3.x.x. - - - - - JUCE (Jules' Utility Class Extensions) is an all-encompassing C++ class library for developing cross-platform software. - -It contains pretty much everything you're likely to need to create most applications, and is particularly well-suited for building highly-customised GUIs, and for handling graphics and sound. - -JUCE is licensed under the GNU Public Licence version 2.0. -One module (juce_core) is permissively licensed under the ISC. - -Copyright (C) 2017 ROLI Ltd. - - - - + This program uses JUCE version %1. - - Knob - - - Set linear - Definir linear - - - - Set logarithmic - Definir logarítmico - - - - - Set value - - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - - - - - Please enter a new value between %1 and %2: - Por favor coloque um novo valor entre %1 e %2: - - - - LadspaControl - - - Link channels - Conectar canais - - - - LadspaControlDialog - - - Link Channels - Conectar Canais - - - - Channel - Canal - - - - LadspaControlView - - - Link channels - Conectar canais - - - - Value: - Valor: - - - - LadspaEffect - - - Unknown LADSPA plugin %1 requested. - Plugin LADSPA %1 desconhecido requisitado. - - - - LcdFloatSpinBox - - - Set value - - - - - Please enter a new value between %1 and %2: - Por favor coloque um novo valor entre %1 e %2: - - - - LcdSpinBox - - - Set value - - - - - Please enter a new value between %1 and %2: - Por favor coloque um novo valor entre %1 e %2: - - - - LeftRightNav - - - - - Previous - Anterior - - - - - - Next - Próximo - - - - Previous (%1) - Anterior (%1) - - - - Next (%1) - Próximo (%1) - - - - LfoController - - - LFO Controller - Controlador de LFO - - - - Base value - Valor base - - - - Oscillator speed - Velocidade do oscilador - - - - Oscillator amount - Quantidade do oscilador - - - - Oscillator phase - Fase do oscilador - - - - Oscillator waveform - Forma de onda do oscilador - - - - Frequency Multiplier - Multiplicador de frequência - - - - LfoControllerDialog - - - LFO - LFO - - - - BASE - CENTRO - - - - Base: - - - - - FREQ - FREQ - - - - LFO frequency: - - - - - AMNT - QNTD - - - - Modulation amount: - Quantidade de modulação: - - - - PHS - DFS - - - - Phase offset: - Defasamento: - - - - degrees - - - - - Sine wave - Onda senoidal - - - - Triangle wave - Onda triangular - - - - Saw wave - Onda dente de serra - - - - Square wave - Onda quadrada - - - - Moog saw wave - - - - - Exponential wave - Onda exponencial - - - - White noise - - - - - User-defined shape. -Double click to pick a file. - - - - - Mutliply modulation frequency by 1 - - - - - Mutliply modulation frequency by 100 - - - - - Divide modulation frequency by 100 - - - - - Engine - - - Generating wavetables - - - - - Initializing data structures - Inicializando estruturas de dados - - - - Opening audio and midi devices - Abrindo dispositivos áudio e midi - - - - Launching mixer threads - Lançando threads do misturador - - - - MainWindow - - - Configuration file - Arquivo de configuração - - - - Error while parsing configuration file at line %1:%2: %3 - Erro ao analisar arquivo de configuração na linha %1:%2: %3 - - - - Could not open file - Não é possível abrir o arquivo - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - - - - - Project recovery - Recuperação de projeto - - - - There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - - - - - - Recover - Recuperar - - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - - - - - - Discard - Descartar - - - - Launch a default session and delete the restored files. This is not reversible. - - - - - Version %1 - Versão %1 - - - - Preparing plugin browser - Preparando navegador de plugin - - - - Preparing file browsers - Preparando navegadores de arquivos - - - - My Projects - Meus Projetos - - - - My Samples - Minhas Amostras - - - - My Presets - Minhas predefinições - - - - My Home - Meu Início - - - - Root directory - Diretório raiz - - - - Volumes - Volumes - - - - My Computer - Meu Computador - - - - &File - &Arquivo - - - - &New - &Novo - - - - &Open... - &Abrir... - - - - Loading background picture - - - - - &Save - &Salvar - - - - Save &As... - Salvar &como... - - - - Save as New &Version - Salvar como Nova &Versão - - - - Save as default template - Salvar como modelo padrão - - - - Import... - Importar... - - - - E&xport... - &Renderizar... - - - - E&xport Tracks... - Exportar Faixas... - - - - Export &MIDI... - Exportar &MIDI... - - - - &Quit - Sai&r - - - - &Edit - &Editar - - - - Undo - Desfazer - - - - Redo - Refazer - - - - Settings - Opções - - - - &View - &Ver - - - - &Tools - &Ferramentas - - - - &Help - Aj&uda - - - - Online Help - Ajuda Online - - - - Help - Ajuda - - - - About - Sobre - - - - Create new project - Criar novo projeto - - - - Create new project from template - Criar novo projeto a partir de um modelo - - - - Open existing project - Abrir projeto existente - - - - Recently opened projects - Projetos usados recentemente - - - - Save current project - Salvar projeto atual - - - - Export current project - Exportar projeto atual - - - - Metronome - Metrônomo - - - - - Song Editor - Mostrar/esconder Editor de Arranjo - - - - - Beat+Bassline Editor - Mostrar/esconder Editor de Bases - - - - - Piano Roll - Mostrar/esconder Editor de Notas MIDI - - - - - Automation Editor - Mostrar/esconder Editor de Automação - - - - - Mixer - Mostrar/esconder Mixer de Efeitos - - - - Show/hide controller rack - - - - - Show/hide project notes - Mostrar/ocultar notas do projeto - - - - Untitled - Sem_nome - - - - Recover session. Please save your work! - - - - - LMMS %1 - LMMS %1 - - - - Recovered project not saved - - - - - This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? - - - - - Project not saved - Projeto não salvo - - - - The current project was modified since last saving. Do you want to save it now? - O projeto atual foi modificado. Quer salvá-lo agora? - - - - Open Project - Abrir Projeto - - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - - Save Project - Salvar Projeto - - - - LMMS Project - Projeto LMMS - - - - LMMS Project Template - Modelo de Projeto LMMS - - - - Save project template - Salvar modelo do projeto - - - - Overwrite default template? - - - - - This will overwrite your current default template. - - - - - Help not available - Ajuda não disponível - - - - Currently there's no help available in LMMS. -Please visit http://lmms.sf.net/wiki for documentation on LMMS. - Atualmente não há ajuda disponível no LMMS. -Por favor visite http://lmms.sf.net/wiki para ter acesso a mais infromações sobre LMMS. - - - - Controller Rack - Mostrar/esconder a Estante de Controladorer - - - - Project Notes - Mostrar/esconder comentários do projeto - - - - Fullscreen - - - - - Volume as dBFS - Volume como dBFS - - - - Smooth scroll - Rolagem suave - - - - Enable note labels in piano roll - - - - - MIDI File (*.mid) - Arquivo MIDI (*.mid) - - - - - untitled - sem título - - - - - Select file for project-export... - - - - - Select directory for writing exported tracks... - - - - - Save project - Guardar projeto - - - - Project saved - Projeto salvo - - - - The project %1 is now saved. - O projeto %1 está salvo. - - - - Project NOT saved. - Projeto NÃO salvo. - - - - The project %1 was not saved! - O projeto %1 não foi salvo! - - - - Import file - Importar arquivo - - - - MIDI sequences - Sequências MIDI - - - - Hydrogen projects - Projetos Hydrogen - - - - All file types - Todos os tipos de arquivos - - - - MeterDialog - - - - Meter Numerator - Numerador Métrico - - - - Meter numerator - - - - - - Meter Denominator - Denominador Métrico - - - - Meter denominator - - - - - TIME SIG - COMPASSO - - - - MeterModel - - - Numerator - Numerador - - - - Denominator - Denominador - - - - MidiCCRackView - - - - MIDI CC Rack - %1 - - - - - MIDI CC Knobs: - - - - - CC %1 - - - - - MidiController - - - MIDI Controller - Controlador MIDI - - - - unnamed_midi_controller - controlador-midi-sem-nome - - - - MidiImport - - - - Setup incomplete - Configuração incompleta - - - - You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. - - - - - You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - Você não compilou o LMMS com suporte a SoundFont2 player, que é usado para adicionar sons por padrão a arquivos MIDI importados. Desta maneira nenhum som será executado depois de importar arquivos MIDI. - - - - MIDI Time Signature Numerator - - - - - MIDI Time Signature Denominator - - - - - Numerator - Numerador - - - - Denominator - Denominador - - - - Track - Faixa - - - - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - O servidor JACK caiu - - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - O servidor JACK parece estar encerrado. - - MidiPatternW MIDI Pattern - + Padrão MIDI Time Signature: - + Fórmula de Compasso: @@ -7841,7 +2846,7 @@ Por favor visite http://lmms.sf.net/wiki para ter acesso a mais infromações so Measures: - + Medidas: @@ -7928,7 +2933,7 @@ Por favor visite http://lmms.sf.net/wiki para ter acesso a mais infromações so Default Length: - + Tamanho Padrão: @@ -7981,7 +2986,7 @@ Por favor visite http://lmms.sf.net/wiki para ter acesso a mais infromações so Quantize: - + Quantizar: @@ -7999,2731 +3004,370 @@ Por favor visite http://lmms.sf.net/wiki para ter acesso a mais infromações so Sai&r - - &Insert Mode + + Esc + &Insert Mode + &Modo de Inserção + + + F - + &Velocity Mode - + D - + Select All - + A - - MidiPort - - - Input channel - Canal de entrada - - - - Output channel - Canal de saída - - - - Input controller - Entrada do controlador - - - - Output controller - Saída do controlador - - - - Fixed input velocity - Intensidade fixa de entrada - - - - Fixed output velocity - Intensidade fixa de saída - - - - Fixed output note - Nota fixa na saída - - - - Output MIDI program - Saída do programa MIDI - - - - Base velocity - Velocidade base - - - - Receive MIDI-events - Receber eventos MIDI - - - - Send MIDI-events - Enviar eventos MIDI - - - - MidiSetupWidget - - - Device - Dispositivo - - - - MonstroInstrument - - - Osc 1 volume - - - - - Osc 1 panning - - - - - Osc 1 coarse detune - - - - - Osc 1 fine detune left - - - - - Osc 1 fine detune right - - - - - Osc 1 stereo phase offset - - - - - Osc 1 pulse width - - - - - Osc 1 sync send on rise - - - - - Osc 1 sync send on fall - - - - - Osc 2 volume - - - - - Osc 2 panning - - - - - Osc 2 coarse detune - - - - - Osc 2 fine detune left - - - - - Osc 2 fine detune right - - - - - Osc 2 stereo phase offset - - - - - Osc 2 waveform - - - - - Osc 2 sync hard - - - - - Osc 2 sync reverse - - - - - Osc 3 volume - - - - - Osc 3 panning - - - - - Osc 3 coarse detune - - - - - Osc 3 Stereo phase offset - - - - - Osc 3 sub-oscillator mix - - - - - Osc 3 waveform 1 - - - - - Osc 3 waveform 2 - - - - - Osc 3 sync hard - - - - - Osc 3 Sync reverse - - - - - LFO 1 waveform - - - - - LFO 1 attack - - - - - LFO 1 rate - - - - - LFO 1 phase - - - - - LFO 2 waveform - - - - - LFO 2 attack - - - - - LFO 2 rate - - - - - LFO 2 phase - - - - - Env 1 pre-delay - - - - - Env 1 attack - - - - - Env 1 hold - - - - - Env 1 decay - - - - - Env 1 sustain - - - - - Env 1 release - - - - - Env 1 slope - - - - - Env 2 pre-delay - - - - - Env 2 attack - - - - - Env 2 hold - - - - - Env 2 decay - - - - - Env 2 sustain - - - - - Env 2 release - - - - - Env 2 slope - - - - - Osc 2+3 modulation - - - - - Selected view - Vista selecionada - - - - Osc 1 - Vol env 1 - - - - - Osc 1 - Vol env 2 - - - - - Osc 1 - Vol LFO 1 - - - - - Osc 1 - Vol LFO 2 - - - - - Osc 2 - Vol env 1 - - - - - Osc 2 - Vol env 2 - - - - - Osc 2 - Vol LFO 1 - - - - - Osc 2 - Vol LFO 2 - - - - - Osc 3 - Vol env 1 - - - - - Osc 3 - Vol env 2 - - - - - Osc 3 - Vol LFO 1 - - - - - Osc 3 - Vol LFO 2 - - - - - Osc 1 - Phs env 1 - - - - - Osc 1 - Phs env 2 - - - - - Osc 1 - Phs LFO 1 - - - - - Osc 1 - Phs LFO 2 - - - - - Osc 2 - Phs env 1 - - - - - Osc 2 - Phs env 2 - - - - - Osc 2 - Phs LFO 1 - - - - - Osc 2 - Phs LFO 2 - - - - - Osc 3 - Phs env 1 - - - - - Osc 3 - Phs env 2 - - - - - Osc 3 - Phs LFO 1 - - - - - Osc 3 - Phs LFO 2 - - - - - Osc 1 - Pit env 1 - - - - - Osc 1 - Pit env 2 - - - - - Osc 1 - Pit LFO 1 - - - - - Osc 1 - Pit LFO 2 - - - - - Osc 2 - Pit env 1 - - - - - Osc 2 - Pit env 2 - - - - - Osc 2 - Pit LFO 1 - - - - - Osc 2 - Pit LFO 2 - - - - - Osc 3 - Pit env 1 - - - - - Osc 3 - Pit env 2 - - - - - Osc 3 - Pit LFO 1 - - - - - Osc 3 - Pit LFO 2 - - - - - Osc 1 - PW env 1 - - - - - Osc 1 - PW env 2 - - - - - Osc 1 - PW LFO 1 - - - - - Osc 1 - PW LFO 2 - - - - - Osc 3 - Sub env 1 - - - - - Osc 3 - Sub env 2 - - - - - Osc 3 - Sub LFO 1 - - - - - Osc 3 - Sub LFO 2 - - - - - - Sine wave - Onda senoidal - - - - Bandlimited Triangle wave - - - - - Bandlimited Saw wave - - - - - Bandlimited Ramp wave - - - - - Bandlimited Square wave - - - - - Bandlimited Moog saw wave - - - - - - Soft square wave - - - - - Absolute sine wave - - - - - - Exponential wave - Onda exponencial - - - - White noise - - - - - Digital Triangle wave - - - - - Digital Saw wave - - - - - Digital Ramp wave - - - - - Digital Square wave - - - - - Digital Moog saw wave - - - - - Triangle wave - Onda triangular - - - - Saw wave - Onda dente de serra - - - - Ramp wave - Onda de rampa - - - - Square wave - Onda quadrada - - - - Moog saw wave - - - - - Abs. sine wave - - - - - Random - Aleatório - - - - Random smooth - - - - - MonstroView - - - Operators view - Visão do operador - - - - Matrix view - Ver matriz - - - - - - Volume - Volume - - - - - - Panning - Panorâmico - - - - - - Coarse detune - - - - - - - semitones - semitons - - - - - Fine tune left - - - - - - - - cents - - - - - - Fine tune right - - - - - - - Stereo phase offset - - - - - - - - - deg - - - - - Pulse width - - - - - Send sync on pulse rise - - - - - Send sync on pulse fall - - - - - Hard sync oscillator 2 - - - - - Reverse sync oscillator 2 - - - - - Sub-osc mix - - - - - Hard sync oscillator 3 - - - - - Reverse sync oscillator 3 - - - - - - - - Attack - Ataque - - - - - Rate - Taxa - - - - - Phase - Fase - - - - - Pre-delay - - - - - - Hold - Espera - - - - - Decay - Decaimento - - - - - Sustain - Sustentação - - - - - Release - Relaxamento - - - - - Slope - - - - - Mix osc 2 with osc 3 - - - - - Modulate amplitude of osc 3 by osc 2 - - - - - Modulate frequency of osc 3 by osc 2 - - - - - Modulate phase of osc 3 by osc 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Modulation amount - Quantidade de modulação - - - - MultitapEchoControlDialog - - - Length - Comprimento - - - - Step length: - - - - - Dry - Seco - - - - Dry gain: - - - - - Stages - Estágios - - - - Low-pass stages: - - - - - Swap inputs - - - - - Swap left and right input channels for reflections - - - - - NesInstrument - - - Channel 1 coarse detune - - - - - Channel 1 volume - Canal 1 volume - - - - Channel 1 envelope length - - - - - Channel 1 duty cycle - - - - - Channel 1 sweep amount - - - - - Channel 1 sweep rate - - - - - Channel 2 Coarse detune - - - - - Channel 2 Volume - Canal 2 Volume - - - - Channel 2 envelope length - - - - - Channel 2 duty cycle - - - - - Channel 2 sweep amount - - - - - Channel 2 sweep rate - - - - - Channel 3 coarse detune - - - - - Channel 3 volume - Canal 3 volume - - - - Channel 4 volume - Canal 4 volume - - - - Channel 4 envelope length - - - - - Channel 4 noise frequency - - - - - Channel 4 noise frequency sweep - - - - - Master volume - Volume Final - - - - Vibrato - Vibrato - - - - NesInstrumentView - - - - - - Volume - Volume - - - - - - Coarse detune - - - - - - - Envelope length - - - - - Enable channel 1 - Ativar canal 1 - - - - Enable envelope 1 - - - - - Enable envelope 1 loop - - - - - Enable sweep 1 - - - - - - Sweep amount - - - - - - Sweep rate - - - - - - 12.5% Duty cycle - - - - - - 25% Duty cycle - - - - - - 50% Duty cycle - - - - - - 75% Duty cycle - - - - - Enable channel 2 - Ativar canal 2 - - - - Enable envelope 2 - - - - - Enable envelope 2 loop - - - - - Enable sweep 2 - - - - - Enable channel 3 - Ativar canal 3 - - - - Noise Frequency - Ruído de Frequência - - - - Frequency sweep - - - - - Enable channel 4 - Ativar canal 4 - - - - Enable envelope 4 - - - - - Enable envelope 4 loop - - - - - Quantize noise frequency when using note frequency - - - - - Use note frequency for noise - Usar frequência de nota para ruído - - - - Noise mode - Modo de ruído - - - - Master volume - Volume Final - - - - Vibrato - Vibrato - - - - OpulenzInstrument - - - Patch - Programação - - - - Op 1 attack - - - - - Op 1 decay - - - - - Op 1 sustain - - - - - Op 1 release - - - - - Op 1 level - - - - - Op 1 level scaling - - - - - Op 1 frequency multiplier - - - - - Op 1 feedback - - - - - Op 1 key scaling rate - - - - - Op 1 percussive envelope - - - - - Op 1 tremolo - - - - - Op 1 vibrato - - - - - Op 1 waveform - - - - - Op 2 attack - - - - - Op 2 decay - - - - - Op 2 sustain - - - - - Op 2 release - - - - - Op 2 level - - - - - Op 2 level scaling - - - - - Op 2 frequency multiplier - - - - - Op 2 key scaling rate - - - - - Op 2 percussive envelope - - - - - Op 2 tremolo - - - - - Op 2 vibrato - - - - - Op 2 waveform - - - - - FM - FM - - - - Vibrato depth - - - - - Tremolo depth - - - - - OpulenzInstrumentView - - - - Attack - Ataque - - - - - Decay - Decaimento - - - - - Release - Relaxamento - - - - - Frequency multiplier - - - - - OscillatorObject - - - Osc %1 waveform - Forma de Onda Osc %1 - - - - Osc %1 harmonic - - - - - - Osc %1 volume - Volume Osc %1 - - - - - Osc %1 panning - Panorâmico Osc %1 - - - - - Osc %1 fine detuning left - Ajuste fino esquerdo Osc %1 - - - - Osc %1 coarse detuning - Ajuste bruto Osc %1 - - - - Osc %1 fine detuning right - Ajuste fino direito %1 - - - - Osc %1 phase-offset - Defasamento Osc %1 - - - - Osc %1 stereo phase-detuning - Ajuste de fase estéreo Osc %1 - - - - Osc %1 wave shape - Formato de onda Osc %1 - - - - Modulation type %1 - Tipo de modulação %1 - - - - Oscilloscope - - - Oscilloscope - - - - - Click to enable - Clique para habilitar - - PatchesDialog + Qsynth: Channel Preset + Bank selector - + Selecionar banco + Bank Banco + Program selector - + Selecionar programa + Patch Programação + Name Nome + OK OK + Cancel Cancelar - - PatmanView - - - Open patch - - - - - Loop - Loop - - - - Loop mode - Modo de loop - - - - Tune - Afinar - - - - Tune mode - Modo de afinação - - - - No file selected - Nenhum arquivo selecionado - - - - Open patch file - Abrir arquivo de patch - - - - Patch-Files (*.pat) - Arquivos de Patch (*.pat) - - - - MidiClipView - - - Open in piano-roll - Abrir no Editor de Notas MIDI - - - - Set as ghost in piano-roll - - - - - Clear all notes - Limpar todas as notas - - - - Reset name - Restaurar nome - - - - Change name - Mudar nome - - - - Add steps - Adicionar passo - - - - Remove steps - Remover passo - - - - Clone Steps - Clonar Etapas - - - - PeakController - - - Peak Controller - Controlador de Picos - - - - Peak Controller Bug - Problema no Controlador de Picos - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - Devido a um problema na versão mais antiga do LMMS, os controladores de pico não pode se conectar corretamente. Certifique-se de que os controladores de pico estão conectados corretamente e volte a salvar este arquivo. Desculpe por qualquer inconveniente causado. - - - - PeakControllerDialog - - - PEAK - Pico - - - - LFO Controller - Controlador de LFO - - - - PeakControllerEffectControlDialog - - - BASE - BASE - - - - Base: - - - - - AMNT - QNTD - - - - Modulation amount: - Quantidade de modulação: - - - - MULT - MULT - - - - Amount multiplicator: - - - - - ATCK - ATQU - - - - Attack: - Ataque: - - - - DCAY - DCAI - - - - Release: - Relaxamento: - - - - TRSH - - - - - Treshold: - - - - - Mute output - Deixar saída muda - - - - Absolute value - - - - - PeakControllerEffectControls - - - Base value - Valor base - - - - Modulation amount - Quantidade de modulação - - - - Attack - Ataque - - - - Release - Relaxamento - - - - Treshold - - - - - Mute output - Deixar saída muda - - - - Absolute value - - - - - Amount multiplicator - - - - - PianoRoll - - - Note Velocity - Volume da nota - - - - Note Panning - Panorâmico da nota - - - - Mark/unmark current semitone - Marcar/desmarcar o semitom atual - - - - Mark/unmark all corresponding octave semitones - - - - - Mark current scale - Marcar a escala atual - - - - Mark current chord - Marcar o acorde atual - - - - Unmark all - Desmarcar tudo - - - - Select all notes on this key - Selecionar todas as notas desta chave - - - - Note lock - Travar nota - - - - Last note - Última nota - - - - No key - - - - - No scale - Sem escala - - - - No chord - Sem acorde - - - - Nudge - - - - - Snap - - - - - Velocity: %1% - Velocidade: %1% - - - - Panning: %1% left - Panorâmico: %1% Esquerda - - - - Panning: %1% right - Panorâmico: %1% Direita - - - - Panning: center - Panorâmico: Centro - - - - Glue notes failed - - - - - Please select notes to glue first. - - - - - Please open a clip by double-clicking on it! - Por favor abra um a sequência com um duplo clique sobre ela! - - - - - Please enter a new value between %1 and %2: - Por favor coloque um valor entre %1 e %2: - - - - PianoRollWindow - - - Play/pause current clip (Space) - Tocar/Parar padrão atual (Espaço) - - - - Record notes from MIDI-device/channel-piano - Grave notas do dispositivo MIDI / Canal de piano - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - Grave notas do dispositivo MIDI / Canal de piano enquanto toca sons ou faixas de batida da linha de baixo - - - - Record notes from MIDI-device/channel-piano, one step at the time - - - - - Stop playing of current clip (Space) - Parar de tocar a sequência atual (Espaço) - - - - Edit actions - Editar ações - - - - Draw mode (Shift+D) - Desenhar modo (Shift+D) - - - - Erase mode (Shift+E) - Apagar modo (Shift+E) - - - - Select mode (Shift+S) - Modo de seleção (Shift+S) - - - - Pitch Bend mode (Shift+T) - - - - - Quantize - Quantizar - - - - Quantize positions - - - - - Quantize lengths - - - - - File actions - - - - - Import clip - - - - - - Export clip - - - - - Copy paste controls - - - - - Cut (%1+X) - - - - - Copy (%1+C) - - - - - Paste (%1+V) - - - - - Timeline controls - Controles de cronograma - - - - Glue - - - - - Knife - - - - - Fill - - - - - Cut overlaps - - - - - Min length as last - - - - - Max length as last - - - - - Zoom and note controls - Controles de Zoom e nota - - - - Horizontal zooming - Zoom horizontal - - - - Vertical zooming - Zoom vertical - - - - Quantization - Quantização - - - - Note length - - - - - Key - - - - - Scale - Escala - - - - Chord - Acorde - - - - Snap mode - - - - - Clear ghost notes - - - - - - Piano-Roll - %1 - - - - - - Piano-Roll - no clip - - - - - - XML clip file (*.xpt *.xptz) - - - - - Export clip success - - - - - Clip saved to %1 - - - - - Import clip. - - - - - You are about to import a clip, this will overwrite your current clip. Do you want to continue? - - - - - Open clip - - - - - Import clip success - - - - - Imported clip %1! - - - - - PianoView - - - Base note - Nota base - - - - First note - - - - - Last note - Última nota - - - - Plugin - - - Plugin not found - Plugin não encontrado - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - O plugin "%1" não pode ser carregado! -Motivo: "%2" - - - - Error while loading plugin - Erro ao carregar plugin - - - - Failed to load plugin "%1"! - Falha ao carregar o plugin "%1"! - - PluginBrowser - - Instrument Plugins - - - - - Instrument browser - Navegador de Instrumento - - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - - - - + no description sem descrição - + A native amplifier plugin - + Um plugin amplificador nativo - + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track - + Amostrador simples com várias configurações para usar amostras (ex. Percussão) em uma trilha de instrumento - + Boost your bass the fast and simple way - + Aumente os graves de forma rápida e simples - + Customizable wavetable synthesizer Sintetizador de formas de onda customizáveis - + An oversampling bitcrusher - + Carla Patchbay Instrument - + Instrumento do Carla Patchbay - + Carla Rack Instrument - Instrumento do Rack Carla + Instrumento do Carla Rack - + A dynamic range compressor. - + A 4-band Crossover Equalizer - + Um Equalizador Crossover de 4 bandas - + A native delay plugin - + Plugin de delay nativo - + A Dual filter plugin - + Plugin de filtro duplo - + plugin for processing dynamics in a flexible way - + plugin para processamento dinâmico de um jeito flexível - + A native eq plugin - + Um plugin equalizador nativo - + A native flanger plugin - + Emulation of GameBoy (TM) APU Emulação do GameBoy (TM) APU - + Player for GIG files Tocador para arquivos GIG - + Filter for importing Hydrogen files into LMMS Filtro para importação de arquivos do Hydrogen para o LMMS - + Versatile drum synthesizer - + Sintetizador de Bateria Versátil - + List installed LADSPA plugins Lista dos plugins LADSPA instalados - + plugin for using arbitrary LADSPA-effects inside LMMS. plugin para uso de efeitos LADSPA arbitrários dentro do LMMS. - + Incomplete monophonic imitation TB-303 - Imitação monofônica incompleta de TB-303 + Imitação monofônica incompleta do TB-303 - + plugin for using arbitrary LV2-effects inside LMMS. - + plugin para usar efeitos LV2 arbitrários no LMMS - + plugin for using arbitrary LV2 instruments inside LMMS. - + plugin para usar instrumentos LV2 arbitrários no LMMS - + Filter for exporting MIDI-files from LMMS - + Filtro para exportar arquivos MIDI do LMMS - + Filter for importing MIDI-files into LMMS Filtro para importação de arquivos MIDI para o LMMS - + Monstrous 3-oscillator synth with modulation matrix - + Sintetizador monstruoso de 3 osciladores com matriz de modulação - + A multitap echo delay plugin - + Um plugin de delay multi ecos - + A NES-like synthesizer - + Um sintetizador como o Nintendinho - + 2-operator FM Synth Dois Operadores de Síntese FM - + Additive Synthesizer for organ-like sounds Síntetizador de Síntese Aditiva para sons tipo de órgão - + GUS-compatible patch instrument Pré definição de instrumento compatível com GUS (Gravis Ultrasound) - + Plugin for controlling knobs with sound peaks Plugin para controlar botões com os picos sonoros - + Reverb algorithm by Sean Costello - + Algoritmo de reverberação por Sean Costello - + Player for SoundFont files - Tocador de arquivos de SounFont + Tocador para arquivos SoundFont - + LMMS port of sfxr sfxr para LMMS - + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Emulação do MOS6581 e do MOS8580 SID. Este chip foi utilizado no computador Commodore 64. - + A graphical spectrum analyzer. - + Um analisador gráfico de espectro - + Plugin for enhancing stereo separation of a stereo input file Plugin para melhorar a separação estéreo de um arquivo de entrada estéreo - + Plugin for freely manipulating stereo output Plugin para livre manipulação das saídas estéreo - + Tuneful things to bang on Instrumentos percussivos com afinação para você usar - + Three powerful oscillators you can modulate in several ways - + Três osciladores poderosos que você pode modular em diversas formas - + A stereo field visualizer. - + Um visualizador do campo estéreo - + VST-host for using VST(i)-plugins within LMMS Servidor (host) VST para usar plugins VST(i) com o LMMS - + Vibrating string modeler Modelador de Cordas vibrantes - + plugin for using arbitrary VST effects inside LMMS. - + plugin para uso de efeitos VST arbitrários no LMMS - + 4-oscillator modulatable wavetable synth - + Sintetizador de tabela ondulatória com 4 osciladores moduláveis - + plugin for waveshaping - + plugin para formas de ondas - + Mathematical expression parser - + Analisador de expressões matemáticas - + Embedded ZynAddSubFX Poderoso sintetizador ZynAddSubFx embutido no LMMS - - - PluginDatabaseW - - Carla - Add New + + An all-pass filter allowing for extremely high orders. - - Format + + Granular pitch shifter - - Internal + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. - - LADSPA + + Basic Slicer - - DSSI - - - - - LV2 - - - - - VST2 - - - - - VST3 - - - - - AU - - - - - Sound Kits - - - - - Type - Tipo - - - - Effects - Efeitos - - - - Instruments - Instrumentos - - - - MIDI Plugins - - - - - Other/Misc - - - - - Architecture - - - - - Native - - - - - Bridged - - - - - Bridged (Wine) - - - - - Requirements - - - - - With Custom GUI - - - - - With CV Ports - - - - - Real-time safe only - - - - - Stereo only - - - - - With Inline Display - - - - - Favorites only - - - - - (Number of Plugins go here) - - - - - &Add Plugin - - - - - Cancel - Cancelar - - - - Refresh - - - - - Reset filters - - - - - - - - - - - - - - - - - - - - TextLabel - - - - - Format: - - - - - Architecture: - - - - - Type: - Tipo: - - - - MIDI Ins: - - - - - Audio Ins: - - - - - CV Outs: - - - - - MIDI Outs: - - - - - Parameter Ins: - - - - - Parameter Outs: - - - - - Audio Outs: - - - - - CV Ins: - - - - - UniqueID: - - - - - Has Inline Display: - - - - - Has Custom GUI: - - - - - Is Synth: - - - - - Is Bridged: - - - - - Information - - - - - Name - Nome - - - - Label/URI - - - - - Maker - - - - - Binary/Filename - - - - - Focus Text Search - - - - - Ctrl+F - + + Tap to the beat + Toque no ritmo @@ -10731,7 +3375,7 @@ Este chip foi utilizado no computador Commodore 64. Plugin Editor - + Editor de Plugin @@ -10821,93 +3465,98 @@ Este chip foi utilizado no computador Commodore 64. - Send Bank/Program Changes + Send Notes - Send Control Changes + Send Bank/Program Changes - Send Channel Pressure + Send Control Changes - Send Note Aftertouch + Send Channel Pressure - Send Pitchbend + Send Note Aftertouch + Send Pitchbend + + + + Send All Sound/Notes Off - + Plugin Name - + Program: - + MIDI Program: - + Programa MIDI: - + Save State - + Load State - + Information - + Label/URI: - + Name: - + Type: Tipo: - + Maker: - + Copyright: - + Unique ID: @@ -10915,16 +3564,457 @@ Plugin Name PluginFactory - + Plugin not found. Plugin não achado. - + LMMS plugin %1 does not have a plugin descriptor named %2! + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + Apenas estéreo + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + Atualizar + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + Plugins MIDI + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + Descobrindo kits SF2 + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + PluginParameter @@ -10939,157 +4029,61 @@ Plugin Name + TextLabel + + + + ... - PluginRefreshW + PluginRefreshDialog - - Carla - Refresh + + Plugin Refresh - - Search for new... + + Search for: - - LADSPA + + All plugins, ignoring cache - - DSSI + + Updated plugins only - - LV2 + + Check previously invalid plugins - - VST2 - - - - - VST3 - - - - - AU - - - - - SF2/3 - - - - - SFZ - - - - - Native - - - - - POSIX 32bit - - - - - POSIX 64bit - - - - - Windows 32bit - - - - - Windows 64bit - - - - - Available tools: - - - - - python3-rdflib (LADSPA-RDF support) - - - - - carla-discovery-win64 - - - - - carla-discovery-native - - - - - carla-discovery-posix32 - - - - - carla-discovery-posix64 - - - - - carla-discovery-win32 - - - - - Options: - - - - - Carla will run small processing checks when scanning the plugins (to make sure they won't crash). -You can disable these checks to get a faster scanning time (at your own risk). - - - - - Run processing checks while scanning - - - - + Press 'Scan' to begin the search - + Scan - + >> Skip - + Close - Fechar + @@ -11104,50 +4098,50 @@ You can disable these checks to get a faster scanning time (at your own risk). - + Enable - + On/Off Liga/Desliga - + - + PluginName - + MIDI MIDI - + AUDIO IN - + AUDIO OUT - + GUI - + Edit - + Remove @@ -11162,2285 +4156,13561 @@ You can disable these checks to get a faster scanning time (at your own risk). - - ProjectNotes - - - Project Notes - Mostrar/esconder comentários do projeto - - - - Enter project notes here - - - - - Edit Actions - Editar ações - - - - &Undo - &Desfazer - - - - %1+Z - %1+Z - - - - &Redo - &Refazer - - - - %1+Y - %1+Y - - - - &Copy - &Copiar - - - - %1+C - %1+C - - - - Cu&t - &Cortar - - - - %1+X - %1+X - - - - &Paste - &Colar - - - - %1+V - %1+V - - - - Format Actions - - - - - &Bold - &Negrito - - - - %1+B - %1+B - - - - &Italic - &Itálico - - - - %1+I - %1+I - - - - &Underline - &Underline - - - - %1+U - %1+U - - - - &Left - &Esquerda - - - - %1+L - %1+L - - - - C&enter - &Centro - - - - %1+E - %1+E - - - - &Right - &Direita - - - - %1+R - %1+R - - - - &Justify - &Justificar - - - - %1+J - %1+J - - - - &Color... - &Cor... - - ProjectRenderer - + WAV (*.wav) - + FLAC (*.flac) - + OGG (*.ogg) - + MP3 (*.mp3) + + QGroupBox + + + + Settings for %1 + + + QObject - + Reload Plugin - + Recarregar Plugin - + Show GUI Mostrar GUI - + Help Ajuda + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + Abrir arquivo de áudio + + + + Error loading sample + + + + + %1 (unsupported) + + QWidget - - - - + + Name: Nome: - - URI: - - - - - - + Maker: Marcador: - - - + Copyright: Direitos autorais: - - + Requires Real Time: Requer Processamento em Tempo Real: - - - - - - + + + Yes Sim - - - - - - + + + No Não - - + Real Time Capable: Capacitado para Processamento em Tempo Real: - - + In Place Broken: Com Local Quebrado: - - + Channels In: Canais de Entrada: - - + Channels Out: Canais de Saída: - + File: %1 Arquivo: %1 - + File: Arquivo: - RecentProjectsMenu + XYControllerW - - &Recently Opened Projects - &Projetos Abertos Recentes - - - - RenameDialog - - - Rename... - Renomear... - - - - ReverbSCControlDialog - - - Input - Entradas - - - - Input gain: - Ganho de entrada: - - - - Size - Tamanho - - - - Size: - Tamanho: - - - - Color - Cor - - - - Color: - Cor: - - - - Output - Saídas - - - - Output gain: - Ganho de saída: - - - - ReverbSCControls - - - Input gain - Ganho de entrada - - - - Size - Tamanho - - - - Color - Cor - - - - Output gain - Ganho de saída - - - - SaControls - - - Pause - Pausar - - - - Reference freeze + + XY Controller + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + &Arquivo + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + + + + + lmms::AmplifierControls + + + Volume + Volume + + + + Panning + Panorâmico + + + + Left gain + Ganho esquerdo + + + + Right gain + Ganho direito + + + + lmms::AudioFileProcessor + + + Amplify + Amplificar + + + + Start of sample + Início da amostra + + + + End of sample + Fim da amostra + + + + Loopback point + Ponto de retorno + + + + Reverse sample + Inverter amostra + + + + Loop mode + Modo de loop + + + + Stutter + + + + + Interpolation mode + Modo de interpolação + + + + None + Nenhum + + + + Linear + Linear + + + + Sinc + Sinc + + + + Sample not found + Amostra não encontrada + + + + lmms::AudioJack + + + JACK client restarted + Cliente JACK reiniciou + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + + + + + Client name + Nome do cliente + + + + Channels + Canais + + + + lmms::AudioOss + + + Device + Dispositivos + + + + Channels + Canais + + + + lmms::AudioPortAudio::setupWidget + + + Backend + Backend + + + + Device + + + + + lmms::AudioPulseAudio + + + Device + + + + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + + + + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + Editar automação global da música + + + + Remove song-global automation + Apagar automação global da música + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + Trilha de Automação + + + + lmms::BassBoosterControls + + + Frequency + + + + + Gain + + + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + + Interpolation + Interpolação + + + + Normalize + Normalizar + + + + lmms::BitcrushControls + + + Input gain + + + + + Input noise + + + + + Output gain + + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + Quantidade + + + + Frequency + Frequência + + + + Resonance + Ressonância + + + + Feedback + Retorno + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + + + + + Output gain + + + + + Attack time + + + + + Release time + + + + + Stereo mode + + + + + lmms::Effect + + + Effect enabled + + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + Abrindo áudio e dispositivos midi + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + Ruído + + + + Invert + Inverter + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + Ativar/Desativar MIDI CC + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + Ruído + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + Vidro + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + Numerador + + + + Denominator + Denominador + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + Controlador MIDI + + + + unnamed_midi_controller + controlador_midi_sem_nome + + + + lmms::MidiImport + + + + Setup incomplete + Configuração incompleta + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + Você não definiu um soundfont padrão no diálogo de configurações (Editar->Configurações). Portanto nenhum som irá tocar após importar este arquivo MIDI. Você deve baixar um soundfont MIDI Geral, especifique-o no diálogo de configurações e tente novamente. + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + Você não compilou o LMMS com suporte para o tocador SoundFont2, que é usado para adicionar som padrão aos arquivos MIDI importados. Portanto nenhum som irá tocar após importar este arquivo MIDI. + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + Programa de saída MIDI + + + + Base velocity + + + + + Receive MIDI-events + Receber eventos MIDI + + + + Send MIDI-events + Enviar eventos MIDI + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + Ruído branco + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain + + + + + Size + + + + + Color + + + + + Output gain + + + + + lmms::SaControls - Waterfall + Pause + Reference freeze + + + + + Waterfall + + + + Averaging - - - Stereo - Estéreo - - - - Peak hold - - - Logarithmic frequency + Stereo - Logarithmic amplitude + Peak hold + + + + + Logarithmic frequency - Frequency range - - - - - Amplitude range - - - - - FFT block size + Logarithmic amplitude - FFT window type + Frequency range + + + + + Amplitude range + + + + + FFT block size - Peak envelope resolution - - - - - Spectrum display resolution - - - - - Peak decay multiplier + FFT window type - Averaging weight + Peak envelope resolution - Waterfall history size + Spectrum display resolution - Waterfall gamma correction + Peak decay multiplier - FFT window overlap + Averaging weight + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + FFT zero padding - - + + Full (auto) - - + + Audible - + Bass - Grave + - + Mids - + High - + Extended - + Loud - + Silent - + (High time res.) - + (High freq. res.) - + Rectangular (Off) - + Blackman-Harris (Default) - + Hamming - + Hanning - SaControlsDialog + lmms::SampleClip - - Pause - Pausar - - - - Pause data acquisition - Pausar aquisição de dados - - - - Reference freeze - - - - - Freeze current input as a reference / disable falloff in peak-hold mode. - - - - - Waterfall - - - - - Display real-time spectrogram - - - - - Averaging - - - - - Enable exponential moving average - - - - - Stereo - Estéreo - - - - Display stereo channels separately - - - - - Peak hold - - - - - Display envelope of peak values - - - - - Logarithmic frequency - - - - - Switch between logarithmic and linear frequency scale - - - - - - Frequency range - - - - - Logarithmic amplitude - - - - - Switch between logarithmic and linear amplitude scale - - - - - - Amplitude range - - - - - Envelope res. - - - - - Increase envelope resolution for better details, decrease for better GUI performance. - - - - - - Draw at most - - - - - envelope points per pixel - - - - - Spectrum res. - - - - - Increase spectrum resolution for better details, decrease for better GUI performance. - - - - - spectrum points per pixel - - - - - Falloff factor - - - - - Decrease to make peaks fall faster. - - - - - Multiply buffered value by - - - - - Averaging weight - - - - - Decrease to make averaging slower and smoother. - - - - - New sample contributes - - - - - Waterfall height - - - - - Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. - - - - - Keep - Manter - - - - lines - linhas - - - - Waterfall gamma - - - - - Decrease to see very weak signals, increase to get better contrast. - - - - - Gamma value: - Valor gama: - - - - Window overlap - - - - - Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. - - - - - Each sample processed - - - - - times - - - - - Zero padding - - - - - Increase to get smoother-looking spectrum. Warning: high CPU usage. - - - - - Processing buffer is - - - - - steps larger than input block - - - - - Advanced settings - - - - - Access advanced settings - - - - - - FFT block size - - - - - - FFT window type + + Sample not found - SampleBuffer + lmms::SampleTrack - - Fail to open file - - - - - Audio files are limited to %1 MB in size and %2 minutes of playing time - - - - - Open audio file - Abrir arquivo de áudio - - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - Todos Arquivos de Áudio (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - - Wave-Files (*.wav) - Arquivos Wave (*.wav) - - - - OGG-Files (*.ogg) - Arquivos OGG (*.ogg) - - - - DrumSynth-Files (*.ds) - Arquivos DrumSynth (*.ds) - - - - FLAC-Files (*.flac) - Arquivos FLAC (*.flac) - - - - SPEEX-Files (*.spx) - Arquivos SPEEX (*.spx) - - - - VOC-Files (*.voc) - Arquivos VOC (*.voc) - - - - AIFF-Files (*.aif *.aiff) - Arquivos AIFF (*.aif *.aiff) - - - - AU-Files (*.au) - Arquivos AU (*.au) - - - - RAW-Files (*.raw) - Arquivos RAW (*.raw) - - - - SampleClipView - - - Double-click to open sample - - - - - Delete (middle mousebutton) - Excluir (botão do meio do mouse) - - - - Delete selection (middle mousebutton) - - - - - Cut - Recortar - - - - Cut selection - - - - - Copy - Copiar - - - - Copy selection - - - - - Paste - Colar - - - - Mute/unmute (<%1> + middle click) - Mudo/Não Mudo (<%1> + middle click) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Reverse sample - Amostra reversa - - - - Set clip color - - - - - Use track color - - - - - SampleTrack - - + Volume - Volume + - + Panning - Panorâmico + - + Mixer channel - Canal de Efeitos + - - + + Sample track - Áudio Amostras + Trilha de Amostras - SampleTrackView + lmms::Scale - - Track volume - Volume da pista - - - - Channel volume: - Volume do canal: - - - - VOL - VOL - - - - Panning - Panorâmico - - - - Panning: - Panorâmico: - - - - PAN - PAN - - - - Channel %1: %2 - FX %1: %2 - - - - SampleTrackWindow - - - GENERAL SETTINGS - AJUSTES GERAIS - - - - Sample volume - - - - - Volume: - Volume: - - - - VOL - VOL - - - - Panning - Panorâmico - - - - Panning: - Panorâmico: - - - - PAN - PAN - - - - Mixer channel - Canal de Efeitos - - - - CHANNEL - EFEITOS - - - - SaveOptionsWidget - - - Discard MIDI connections - - - - - Save As Project Bundle (with resources) + + empty - SetupDialog + lmms::Sf2Instrument - - Reset to default value + + Bank - - Use built-in NaN handler + + Patch - - Settings - Opções - - - - - General + + Gain - - Graphical user interface (GUI) + + Reverb - - Display volume as dBFS + + Reverb room size - - Enable tooltips - Ativar Dicas - - - - Enable master oscilloscope by default + + Reverb damping - - Enable all note labels in piano roll + + Reverb width - - Enable compact track buttons + + Reverb level - - Enable one instrument-track-window mode + + Chorus - - Show sidebar on the right-hand side + + Chorus voices - - Let sample previews continue when mouse is released + + Chorus level - - Mute automation tracks during solo + + Chorus speed - - Show warning when deleting tracks + + Chorus depth - - Projects - - - - - Compress project files by default - - - - - Create a backup file when saving a project - - - - - Reopen last project on startup - - - - - Language - - - - - - Performance - - - - - Autosave - - - - - Enable autosave - - - - - Allow autosave while playing - - - - - User interface (UI) effects vs. performance - - - - - Smooth scroll in song editor - - - - - Display playback cursor in AudioFileProcessor - - - - - Plugins - Plugins - - - - VST plugins embedding: - - - - - No embedding - - - - - Embed using Qt API - - - - - Embed using native Win32 API - - - - - Embed using XEmbed protocol - - - - - Keep plugin windows on top when not embedded - - - - - Sync VST plugins to host playback - - - - - Keep effects running even without input - - - - - - Audio - Áudio - - - - Audio interface - - - - - HQ mode for output audio device - - - - - Buffer size - - - - - - MIDI - MIDI - - - - MIDI interface - - - - - Automatically assign MIDI controller to selected track - - - - - LMMS working directory - Diretório de trabalho LMMS - - - - VST plugins directory - - - - - LADSPA plugins directories - - - - - SF2 directory - Diretório SF2 - - - - Default SF2 - - - - - GIG directory - Diretório GIG - - - - Theme directory - - - - - Background artwork - - - - - Some changes require restarting. - - - - - Autosave interval: %1 - - - - - Choose the LMMS working directory - - - - - Choose your VST plugins directory - - - - - Choose your LADSPA plugins directory - - - - - Choose your default SF2 - - - - - Choose your theme directory - - - - - Choose your background picture - - - - - - Paths - Caminhos - - - - OK - OK - - - - Cancel - Cancelar - - - - Frames: %1 -Latency: %2 ms - - - - - Choose your GIG directory - Escolha seu diretório GIG - - - - Choose your SF2 directory - Escolha seu diretório SF2 - - - - minutes - minutos - - - - minute - minuto - - - - Disabled - Desativado + + A soundfont %1 could not be loaded. + Um soundfont %1 não pôde ser carregado. - SidInstrument + lmms::SfxrInstrument - + + Wave + Onda + + + + lmms::SidInstrument + + Cutoff frequency Frequência de corte - + Resonance Ressonância - + Filter type Tipo de filtro - + Voice 3 off - Voz 3 desligada + - + Volume - Volume + - + Chip model - Modelo do chip - - - - SidInstrumentView - - - Volume: - Volume: - - - - Resonance: - Ressonância: - - - - - Cutoff frequency: - Frequência de corte: - - - - High-pass filter - - - - - Band-pass filter - - - - - Low-pass filter - - - - - Voice 3 off - - - - - MOS6581 SID - - - - - MOS8580 SID - - - - - - Attack: - Ataque: - - - - - Decay: - Decaimento: - - - - Sustain: - Sustentação: - - - - - Release: - Relaxamento: - - - - Pulse Width: - Tamanho do Pulso: - - - - Coarse: - Ajuste Bruto: - - - - Pulse wave - - - - - Triangle wave - Onda triangular - - - - Saw wave - Onda dente de serra - - - - Noise - Ruído - - - - Sync - Sincronização - - - - Ring modulation - - - - - Filtered - Filtrado - - - - Test - Teste - - - - Pulse width: - SideBarWidget + lmms::SlicerT - - Close - Fechar + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + - Song + lmms::Song - + Tempo - Andamento + - + Master volume - Volume Final + - + Master pitch - Altura Final - - - - Aborting project load + Aborting project load + + + + Project file contains local paths to plugins, which could be used to run malicious code. - + Can't load project: Project file contains local paths to plugins. - + LMMS Error report - Reportar erro LMMS + - + (repeated %1 times) - + The following errors occurred while loading: - SongEditor + lmms::StereoEnhancerControls - - Could not open file - Não é possível abrir o arquivo + + Width + + + + + lmms::StereoMatrixControls + + + Left to Left + - + + Left to Right + + + + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + Não foi possível importar o arquivo + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + Não foi possível abrir o arquivo + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + Carregando projeto + + + + + Cancel + Cancelar + + + + + Please wait... + Por favor espere... + + + + Loading cancelled + Carregamento cancelado + + + + Project loading was cancelled. + Carregamento do projeto foi cancelado + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + Importando arquivo MIDI + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + Escala logarítmica + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + Carregando plugin + + + + Please wait while loading the VST plugin... + Por favor espere enquanto o plugin VST carrega... + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + Abrir Predefinição + + + + + VST Plugin Preset (*.fxp *.fxb) + Predefinição de Plugin VST (*.fxp *.fxb) + + + + : default + + + + + Save Preset + Salvar Predefinição + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + Por favor espere enquanto o plugin VST carrega... + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + Abrir amostra + + + + Reverse sample + Inverter amostra + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + Amplificar: + + + + Start point: + Ponto inicial: + + + + End point: + Ponto final: + + + + Loopback point: + Ponto de retorno: + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + Tamanho da amostra + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + Abrir no editor de Automação + + + + Clear + + + + + Reset name + Restaurar nome + + + + Change name + Mudar nome + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + Modo desenho (Shift+D) + + + + Erase mode (Shift+E) + Modo Apagar (Shift+E) + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + Editor de Automação - %1 + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + Ruído branco + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + RUÍDO + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + CONTROLADOR MIDI + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + Dispositivos MIDI recebem eventos MIDI de + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + QNT + + + + Number of all-pass filters + Números de filtros all-pass + + + + FREQ + + + + + Frequency: + Frequência: + + + + RESO + RESS + + + + Resonance: + Ressonância: + + + + FEED + RTRN + + + + Feedback: + Retorno: + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + Não foi possível abrir o arquivo + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + Abrir pasta contendo + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + --- Arquivos de fábrica --- + + + + lmms::gui::FileDialog + + + %1 files + %1 arquivos + + + + All audio files + + + + + Other files + Outros arquivos + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + RUÍDO + + + + White noise amount: + Quantidade de ruído branco: + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + Abrir arquivo GIG + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + Preparando o editor de automação + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + ATIVAR ENTRADA MIDI + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + ATIVAR SAÍDA MIDI + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + Dispositivos MIDI recebem eventos MIDI de + + + + MIDI devices to send MIDI events to + Dispositivos MIDI enviam eventos MIDI para + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + Abrir/Fechar Rack MIDI CC + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + Arquivo de predefinição XML (*.xpf) + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + Ruído: + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + Clique aqui para ruído-branco + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + Ruído branco + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + Arquivo de configuração + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + Não foi possível abrir o arquivo + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + Há um arquivo de recuperação presente. Parece que a última sessão não terminou devidamente ou outra instância do LMMS está em execução. Você quer recuperar o projeto desta sessão? + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + Recuperar o arquivo. Por favor não execute múltiplas instâncias do LMMS quando fizer isto. + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + Abrir uma sessão padrão e apagar os arquivos restaurados. Isto não é reversível. + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + Preparando exploradores de arquivo + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + &Arquivo + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + Abrir projeto existente + + + + Recently opened projects + Projetos abertos recentemente + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + Editor de Automação + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + O projeto atual foi modificado desde o último salvamento. Gostaria de salvar agora? + + + + Open Project + Abrir Projeto + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + Arquivo MIDI (*.mid) + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + Limpar todas as notas + + + + Reset name + + + + + Change name + Mudar nome + + + + Add steps + Adicionar passos + + + + Remove steps + Remover passos + + + + Clone Steps + Clonar Passos + + + + lmms::gui::MidiSetupWidget + + + Device + Dispositivo + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + Cor + + + + Change + Mudar + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + Não perguntar novamente + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + Taxa + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + Frequência de Ruído + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + Modo de ruído + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + Nenhum arquivo selecionado + + + + Open patch file + + + + + Patch-Files (*.pat) + Arquivos-Patch (*.pat) + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + Adicionar trilha de automação + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + Grava notas de um dispositivo MIDI/canal de piano + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + Gravar notas de um dispositivo MIDI/canal de piano enquanto toca a música ou Base + + + + Record notes from MIDI-device/channel-piano, one step at the time + Gravar notas de um dispositivo MIDI/canal de piano um passo por vez + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + Lâmina + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + Enviar para uma nova trilha de instrumento + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + &Projetos Abertos Recentemente + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + Duplo clique para abrir amostra + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + Silenciar trilhas de automação durante solo + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + Mostrar aviso ao deletar um canal mixer que está em uso + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + Interface MIDI + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + Diretório SF2 + + + + Default SF2 + SF2 padrão + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + Escolha seu diretório SF2 + + + + Choose your default SF2 + Escolha seu SF2 padrão + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + Abrir arquivo SoundFont + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + Arquivos SoundFont (*.sf2 *.sf3) + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + Ruído + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + Não foi possível abrir o arquivo + + + Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. - Não foi possível abrir o arquivo %1. Provavelmente você não tem permissão para ler este arquivo. - Por favor certifique-se que você tenha permissão de leitura para o arquivo e tente novamente. + - + Operation denied - + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. - - - + + + Error - Erro + - + Couldn't create bundle folder. - + Couldn't create resources folder. - + Failed to copy resources. - + + Could not write file - Não é possivel salvar o arquivo - - - - Could not open %1 for writing. You probably are not permitted towrite to this file. Please make sure you have write-access to the file and try again. - - This %1 was created with LMMS %2 + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. - + + An unknown error has occurred and the file could not be saved. + + + + Error in file Erro no arquivo - + The file %1 seems to contain errors and therefore can't be loaded. - O arquivo %1 parece conter erros e por isso não pode ser carregado. + - + + template + + + + + project + + + + Version difference - - template - modelo + + This %1 was created with LMMS %2 + - - project - projeto + + Zoom + - + Tempo - Andamento + - + TEMPO - + Tempo in BPM - - High quality mode - Modo de alta qualidade - - - - - + + + Master volume - Volume Final + - - - - Master pitch - Altura Final + + + + Global transposition + - + + 1/%1 Bar + + + + + %1 Bars + + + + Value: %1% - Valor: %1% + - - Value: %1 semitones - Valor: %1 semitons + + Value: %1 keys + - SongEditorWindow + lmms::gui::SongEditorWindow - + Song-Editor - Editor de Som + + + + + Play song (Space) + + + + + Record samples from Audio-device + Gravar amostras de um dispositivo de áudio - Play song (Space) - Tocar som (Espaço) + Record samples from Audio-device while playing song or pattern track + Gravar amostras de um dispositivo enquanto toca a música ou uma Base - Record samples from Audio-device - - - - - Record samples from Audio-device while playing song or BB track - - - - Stop song (Space) - Parar som (Espaço) + - + Track actions - - Add beat/bassline - Add linha de base + + Add pattern-track + - + Add sample-track - Adicionar faixa de amostra + - + Add automation-track - Add automação de faixa + Adicionar trilha de automação - + Edit actions - Editar ações + + + + + Draw mode + + + + + Knife mode (split sample clips) + Modo lâmina (cortar clipes de amostra) - Draw mode - Modo de desenho - - - - Knife mode (split sample clips) - Modo faca (separar clipes de sample) - - - Edit mode (select and move) - Editar modo (selecionar e mover) + - + Timeline controls - Controles de cronograma + - + Bar insert controls - + Insert bar - + Remove bar - + Zoom controls - Controles de zoom + + - Horizontal zooming - Zoom horizontal + Zoom + - + Snap controls - - + + Clip snapping size - + Toggle proportional snap on/off - + Base snapping size - StepRecorderWidget + lmms::gui::StepRecorderWidget - + Hint - Sugestão + - + Move recording curser using <Left/Right> arrows - SubWindow + lmms::gui::StereoEnhancerControlDialog - + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + Close - Fechar + - + Maximize - Maximizar + - + Restore - Restaurar + - TabWidget + lmms::gui::TapTempoView - - - Settings for %1 - Opções para %1 + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + Silenciar metrônomo + + + + Mute + Silenciar + + + + BPM in milliseconds + BPM em milissegundos + + + + 0 ms + + + + + Frequency of BPM + Frequência do BPM + + + + 0.0000 hz + + + + + Reset + Resetar + + + + Reset counter and sidebar information + Resetar contador e informação da barra lateral + + + + Sync + Sincronizar + + + + Sync with project tempo + Sincronizar com o andamento do projeto + + + + %1 ms + + + + + %1 hz + - TemplatesMenu + lmms::gui::TemplatesMenu - + New from template - Novo modelo + - TempoSyncKnob + lmms::gui::TempoSyncBarModelEditor - - + + Tempo Sync - Sincronia + - + No Sync - Sem Sincronia + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + No Sync + + + + Eight beats - Oito batidas + - + Whole note - Nota inteira + - + Half note - Meia nota + - + Quarter note - 1/4 de nota + - + 8th note - 8ª nota - - - - 16th note - 16ª nota + + 16th note + + + + 32nd note - 32ª nota + - + Custom... - Personalizado... + - + Custom - Personalizado - - - - Synced to Eight Beats - Sincronizado com Oito Batidas + - Synced to Whole Note - Sincronizado com a Nota Inteira + Synced to Eight Beats + - Synced to Half Note - Sincronizado com Meia Nota + Synced to Whole Note + - Synced to Quarter Note - Sincronizado com 1/4 de Nota + Synced to Half Note + - Synced to 8th Note - Sincronizado com a 8ª Nota + Synced to Quarter Note + - Synced to 16th Note - Sincronizado com a 16ª Nota + Synced to 8th Note + + Synced to 16th Note + + + + Synced to 32nd Note - Sincronizado com a 32ª Nota + - TimeDisplayWidget + lmms::gui::TimeDisplayWidget - + Time units - - - MIN - MIN - - SEC - SEC + MIN + + SEC + + + + MSEC - + BAR - + BEAT - + TICK - TimeLineWidget + lmms::gui::TimeLineWidget - + Auto scrolling - + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + Loop points - + After stopping go back to beginning - + After stopping go back to position at which playing was started - + After stopping keep position - + Hint - Sugestão + - + Press <%1> to disable magnetic loop points. - - - Track - - Mute - Mudo + + Set loop begin here + - - Solo - Solo + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + - TrackContainer + lmms::gui::TrackContentWidget - - Couldn't import file - não foi possivel importar arquivo - - - - Couldn't find a filter for importing file %1. -You should convert this file into a format supported by LMMS using another software. - Não foi possível encontrar um filtro para inportar o arquivo %1. -Você poderia converter este arquivo em um formato suportado pelo LMMS usando outro aplicativo. - - - - Couldn't open file - Não é possível abrir o arquivo - - - - Couldn't open file %1 for reading. -Please make sure you have read-permission to the file and the directory containing the file and try again! - Não foi possível abrir o arquivo %1 para leitura. -Por favor certifique-se que você tem permissões de leitura para o arquivo e para a pasta e tente novamente! - - - - Loading project... - Carregando projeto... - - - - - Cancel - Cancelar - - - - - Please wait... - Por favor aguarde... - - - - Loading cancelled - - - - - Project loading was cancelled. - - - - - Loading Track %1 (%2/Total %3) - - - - - Importing MIDI-file... - Importando arquivo MIDI... - - - - Clip - - - Mute - Mudo - - - - ClipView - - - Current position - Posição atual - - - - Current length - - - - - - %1:%2 (%3:%4 to %5:%6) - %1:%2 (%3:%4 to %5:%6) - - - - Press <%1> and drag to make a copy. - - - - - Press <%1> for free resizing. - - - - - Hint - Sugestão - - - - Delete (middle mousebutton) - Excluir (botão do meio do mouse) - - - - Delete selection (middle mousebutton) - - - - - Cut - Recortar - - - - Cut selection - - - - - Merge Selection - - - - - Copy - Copiar - - - - Copy selection - - - - + Paste - Colar - - - - Mute/unmute (<%1> + middle click) - Mudo/Não Mudo (<%1> + middle click) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Set clip color - - - - - Use track color - TrackContentWidget + lmms::gui::TrackOperationsWidget - - Paste - Colar - - - - TrackOperationsWidget - - + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. @@ -13453,257 +17723,249 @@ Por favor certifique-se que você tem permissões de leitura para o arquivo e pa Mute - Mudo + Solo - Solo + - + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? - + Confirm removal - + Don't ask again - + Clone this track - Clonar esta faixa + - + Remove this track - Remover esta faixa + + + + + Clear this track + - Clear this track - Desmarcar esta faixa - - - Channel %1: %2 - FX %1: %2 + - - Assign to new mixer Channel - Atribuir novo Canal FX + + Assign to new Mixer Channel + - + Turn all recording on - + Turn all recording off - - Change color - Mudar cor - - - - Reset color to default - Reiniciar para a cor padrão - - - - Set random color + + Track color - - Clear clip colors + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors - TripleOscillatorView + lmms::gui::TripleOscillatorView - + Modulate phase of oscillator 1 by oscillator 2 - + Modulate amplitude of oscillator 1 by oscillator 2 - + Mix output of oscillators 1 & 2 - + Synchronize oscillator 1 with oscillator 2 - Sincronize o oscilador 1 com o oscilador 2 - - - - Modulate frequency of oscillator 1 by oscillator 2 + Modulate frequency of oscillator 1 by oscillator 2 + + + + Modulate phase of oscillator 2 by oscillator 3 - + Modulate amplitude of oscillator 2 by oscillator 3 - + Mix output of oscillators 2 & 3 - + Synchronize oscillator 2 with oscillator 3 - Sincronize o oscilador 2 com o oscilador 3 + - + Modulate frequency of oscillator 2 by oscillator 3 - + Osc %1 volume: - Volume Osc %1: + - + Osc %1 panning: - Panorâmico Osc %1: + - - Osc %1 coarse detuning: - Ajuste bruto Osc %1: - - - - semitones - semitons - - - - Osc %1 fine detuning left: - Ajuste fino esquerdo Osc %1: - - - + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + cents - centésimos + - + Osc %1 fine detuning right: - Ajuste fino direito %1: + - + Osc %1 phase-offset: - Defasamento Osc %1: + - - + + degrees - graus + - + Osc %1 stereo phase-detuning: - Defasamento estéreo Osc %1: + - + Sine wave - Onda senoidal + - + Triangle wave - Onda triangular + - + Saw wave - Onda dente de serra + - + Square wave - Onda quadrada + - + Moog-like saw wave - + Exponential wave - Onda exponencial - - - - White noise - + + White noise + Ruído branco + + + User-defined wave - - - VecControls - - Display persistence amount - - - - - Logarithmic scale - - - - - High quality + + Use alias-free wavetable oscillators. - VecControlsDialog + lmms::gui::VecControlsDialog - + HQ - + Double the resolution and simulate continuous analog-like trace. @@ -13718,2618 +17980,782 @@ Por favor certifique-se que você tem permissões de leitura para o arquivo e pa - + Persist. - + Trace persistence: higher amount means the trace will stay bright for longer time. - + Trace persistence - VersionedSaveDialog - - - Increment version number - Incrementar número da versão - + lmms::gui::VersionedSaveDialog - Decrement version number - Decrementar número da versão + Increment version number + - + + Decrement version number + + + + Save Options - + already exists. Do you want to replace it? - VestigeInstrumentView + lmms::gui::VestigeInstrumentView - - + + Open VST plugin - + Abrir plugin VST - + Control VST plugin from LMMS host - + Open VST plugin preset + Abrir predefinição de plugin VST + + + + Previous (-) - - Previous (-) - Anterior (-) - - - + Save preset - Salvar pré definição + - + Next (+) - Próximo (+) + - + Show/hide GUI - Mostrar/esconder GUI + - + Turn off all notes - Desligar todas as notas + - + DLL-files (*.dll) - Arquivos DLL (*.dll) + - + EXE-files (*.exe) - Arquivos EXE (*.exe) + - + + SO-files (*.so) + + + + No VST plugin loaded - + Preset - Pré definição + - + by - por + - + - VST plugin control - - Controle de plugins VST + - VstEffectControlDialog + lmms::gui::VibedView - - Show/hide - Mostrar/esconder + + Enable waveform + - + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + Ruído branco + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + + + + Control VST plugin from LMMS host - + Open VST plugin preset - + Abrir predefinição de plugin VST - + Previous (-) - Anterior (-) + - + Next (+) - Próximo (+) + - + Save preset - Salvar pré definição + - - + + Effect by: - Efeito por: + - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - - - - VstPlugin - - - - The VST plugin %1 could not be loaded. - - - - - Open Preset - Abrir pré definição - - - - - Vst Plugin Preset (*.fxp *.fxb) - Pré definição de Plugin VST (*.fxp *.fxb) - - - - : default - : padrão - - - - Save Preset - Salvar pré definição - - - - .fxp - .fxp - - - - .FXP - .FXP - - - - .FXB - .FXB - - - - .fxb - .fxb - - - - Loading plugin - Carregando plugin - - - - Please wait while loading VST plugin... - Por favor aguarde enquanto carrega o plugin VST... - - - - WatsynInstrument - - - Volume A1 - Volume A1 - - - - Volume A2 - Volume A2 - - - - Volume B1 - Volume B1 - - - - Volume B2 - Volume B2 - - - - Panning A1 - Panorâmico A1 - - - - Panning A2 - Panorâmico A2 - - - - Panning B1 - Panorâmico B1 - - - - Panning B2 - Panorâmico B2 - - - - Freq. multiplier A1 - Multiplicador de freq. A1 - - - - Freq. multiplier A2 - Multiplicador de freq. A2 - - - - Freq. multiplier B1 - Multiplicador de freq. B1 - - - - Freq. multiplier B2 - Multiplicador de freq. B2 - - - - Left detune A1 - - - - - Left detune A2 - - - - - Left detune B1 - - - - - Left detune B2 - - - - - Right detune A1 - - - - - Right detune A2 - - - - - Right detune B1 - - - - - Right detune B2 - - - - - A-B Mix - - - - - A-B Mix envelope amount - - - - - A-B Mix envelope attack - - - - - A-B Mix envelope hold - - - - - A-B Mix envelope decay - - - - - A1-B2 Crosstalk - - - - - A2-A1 modulation - - - - - B2-B1 modulation - - - - - Selected graph - WatsynView + lmms::gui::WatsynView + + + + + Volume + + + + + - - - Volume - Volume + Panning + + + - - - Panning - Panorâmico - - - - - - Freq. multiplier - - - - + + + + Left detune + + + + + + - - - - - - cents - - - - + + + + Right detune - + A-B Mix - + Mix envelope amount - + Mix envelope attack - + Mix envelope hold - + Mix envelope decay - + Crosstalk - + Select oscillator A1 - + Select oscillator A2 - + Select oscillator B1 - + Select oscillator B2 - + Mix output of A2 to A1 - + Modulate amplitude of A1 by output of A2 - + Ring modulate A1 and A2 - + Modulate phase of A1 by output of A2 - + Mix output of B2 to B1 - + Modulate amplitude of B1 by output of B2 - + Ring modulate B1 and B2 - + Modulate phase of B1 by output of B2 - - - - + + + + Draw your own waveform here by dragging your mouse on this graph. - Desenhe sua própria forma de onda aqui utilizando seu mouse no gráfico. + - + Load waveform - + Load a waveform from a sample file - + Phase left - Fase esquerda + - + Shift phase by -15 degrees - + Phase right - Fase direita + - + Shift phase by +15 degrees + + + + Normalize + + - Normalize - Normalização - - - - Invert - Inverter + - - + + Smooth - Suave + - - + + Sine wave - Onda senoidal + - - - + + + Triangle wave - Onda triangular + - + Saw wave - Onda dente de serra + - - + + Square wave - Onda quadrada - - - - Xpressive - - - Selected graph - - - - - A1 - - - - - A2 - - - - - A3 - - - - - W1 smoothing - - - - - W2 smoothing - - - - - W3 smoothing - - - - - Panning 1 - - - - - Panning 2 - - - - - Rel trans - XpressiveView + lmms::gui::WaveShaperControlDialog - - Draw your own waveform here by dragging your mouse on this graph. - Desenhe sua própria forma de onda aqui utilizando seu mouse no gráfico. - - - - Select oscillator W1 - - - - - Select oscillator W2 - - - - - Select oscillator W3 - - - - - Select output O1 - - - - - Select output O2 - - - - - Open help window - - - - - - Sine wave - Onda senoidal - - - - - Moog-saw wave - - - - - - Exponential wave - Onda exponencial - - - - - Saw wave - Onda dente de serra - - - - - User-defined wave - - - - - - Triangle wave - Onda triangular - - - - - Square wave - Onda quadrada - - - - - White noise - - - - - WaveInterpolate - - - - - ExpressionValid - - - - - General purpose 1: - - - - - General purpose 2: - - - - - General purpose 3: - - - - - O1 panning: - - - - - O2 panning: - - - - - Release transition: - - - - - Smoothness - - - - - ZynAddSubFxInstrument - - - Portamento - - - - - Filter frequency - - - - - Filter resonance - - - - - Bandwidth - Largura da Banda - - - - FM gain - - - - - Resonance center frequency - - - - - Resonance bandwidth - - - - - Forward MIDI control change events - - - - - ZynAddSubFxView - - - Portamento: - - - - - PORT - - - - - Filter frequency: - - - - - FREQ - FREQ - - - - Filter resonance: - - - - - RES - - - - - Bandwidth: - Largura da Banda: - - - - BW - LBnd - - - - FM gain: - - - - - FM GAIN - GANHO FM - - - - Resonance center frequency: - Frequência Central de Ressonância: - - - - RES CF - RES FC - - - - Resonance bandwidth: - Banda de Ressonância: - - - - RES BW - RES Bnd - - - - Forward MIDI control changes - - - - - Show GUI - Mostrar GUI - - - - AudioFileProcessor - - - Amplify - Amplificar - - - - Start of sample - Início da amostra - - - - End of sample - Fim da amostra - - - - Loopback point - - - - - Reverse sample - Amostra reversa - - - - Loop mode - Modo de loop - - - - Stutter - Gaguejar - - - - Interpolation mode - Modo de interpolação - - - - None - Nenhum - - - - Linear - Linear - - - - Sinc - - - - - Sample not found: %1 - - - - - BitInvader - - - Sample length - - - - - BitInvaderView - - - Sample length - - - - - Draw your own waveform here by dragging your mouse on this graph. - Desenhe sua própria forma de onda aqui utilizando seu mouse no gráfico. - - - - - Sine wave - Onda senoidal - - - - - Triangle wave - Onda triangular - - - - - Saw wave - Onda dente de serra - - - - - Square wave - Onda quadrada - - - - - White noise - - - - - - User-defined wave - - - - - - Smooth waveform - - - - - Interpolation - Interpolação - - - - Normalize - Normalização - - - - DynProcControlDialog - - + INPUT - ENTRADA + - + Input gain: - Ganho de entrada: + - + OUTPUT - SAÍDA - - - - Output gain: - Ganho de saída: - - - - ATTACK - ATAQUE - - - - Peak attack time: - - - RELEASE - LANÇAMENTO - - - - Peak release time: - - - - - - Reset wavegraph - - - - - - Smooth wavegraph - - - - - - Increase wavegraph amplitude by 1 dB - - - - - - Decrease wavegraph amplitude by 1 dB - - - - - Stereo mode: maximum - Modo estéreo: máximo - - - - Process based on the maximum of both stereo channels - Processo baseado no máximo de ambos canais estéreo - - - - Stereo mode: average - Modo estéreo: médio - - - - Process based on the average of both stereo channels - - - - - Stereo mode: unlinked - Modo estéreo: desvinculado - - - - Process each stereo channel independently - Processo de cada canal estéreo independentemente - - - - DynProcControls - - - Input gain - Ganho de entrada - - - - Output gain - Ganho de saída - - - - Attack time - Tempo de ataque - - - - Release time - Tempo de lançamento - - - - Stereo mode - Modo Estéreo - - - - graphModel - - - Graph - Gráfico - - - - KickerInstrument - - - Start frequency - Frequência de partida - - - - End frequency - Frequência final - - - - Length - Comprimento - - - - Start distortion - - - - - End distortion - - - - - Gain - Ganho - - - - Envelope slope - - - - - Noise - Ruído - - - - Click - Clique - - - - Frequency slope - - - - - Start from note - - - - - End to note - - - - - KickerInstrumentView - - - Start frequency: - Frequência de partida: - - - - End frequency: - Frequência final: - - - - Frequency slope: - - - - - Gain: - Ganho: - - - - Envelope length: - - - - - Envelope slope: - - - - - Click: - Clique: - - - - Noise: - Ruído: - - - - Start distortion: - - - - - End distortion: - - - - - LadspaBrowserView - - - - Available Effects - Efeitos Disponíveis - - - - - Unavailable Effects - Efeitos Indisponíveis - - - - - Instruments - Instrumentos - - - - - Analysis Tools - Ferramentas de Análise - - - - - Don't know - Sei lá.. - - - - Type: - Tipo: - - - - LadspaDescription - - - Plugins - Plugins - - - - Description - Descrição - - - - LadspaPortDialog - - - Ports - Portas - - - - Name - Nome - - - - Rate - Taxa - - - - Direction - Direção - - - - Type - Tipo - - - - Min < Default < Max - Min < Padrão < Máx - - - - Logarithmic - Logarítmico - - - - SR Dependent - Dependente de SR - - - - Audio - Áudio - - - - Control - Controle - - - - Input - Entradas - - - - Output - Saídas - - - - Toggled - Alternado - - - - Integer - Inteiro - - - - Float - Decimal - - - - - Yes - Sim - - - - Lb302Synth - - - VCF Cutoff Frequency - VCF - Frequência de corte - - - - VCF Resonance - VCF - Ressonância - - - - VCF Envelope Mod - VCF - Modulação do Envelope - - - - VCF Envelope Decay - VCF - Decaimento do Envelope - - - - Distortion - Distorção - - - - Waveform - Forma de onda - - - - Slide Decay - Decaimento gradual - - - - Slide - Gradual - - - - Accent - Realce - - - - Dead - Morto - - - - 24dB/oct Filter - Filtro 24dB/oct - - - - Lb302SynthView - - - Cutoff Freq: - Freq Corte: - - - - Resonance: - Ressonância: - - - - Env Mod: - Mod Env: - - - - Decay: - Decaimento: - - - - 303-es-que, 24dB/octave, 3 pole filter - 303-es-que, 24dB/octave, filtro 3 pole - - - - Slide Decay: - Decaimento gradual: - - - - DIST: - - - - - Saw wave - Onda dente de serra - - - - Click here for a saw-wave. - Clique aqui para usar uma onda dente de serra. - - - - Triangle wave - Onda triangular - - - - Click here for a triangle-wave. - Clique aqui para usar uma onda triangular. - - - - Square wave - Onda quadrada - - - - Click here for a square-wave. - Clique aqui para usar uma onda quadrada. - - - - Rounded square wave - Onda quadrada arredondada - - - - Click here for a square-wave with a rounded end. - Clique aqui para usar uma onda quadrada arredondada. - - - - Moog wave - Onda Moog - - - - Click here for a moog-like wave. - Clique aqui para usar uma onda tipo moog. - - - - Sine wave - Onda senoidal - - - - Click for a sine-wave. - Clique aqui para usar uma onda senoidal. - - - - - White noise wave - Ruído branco - - - - Click here for an exponential wave. - Clique aqui para usar uma onda exponencial. - - - - Click here for white-noise. - Clique aqui para usar um ruído branco. - - - - Bandlimited saw wave - - - - - Click here for bandlimited saw wave. - - - - - Bandlimited square wave - - - - - Click here for bandlimited square wave. - - - - - Bandlimited triangle wave - - - - - Click here for bandlimited triangle wave. - - - - - Bandlimited moog saw wave - - - - - Click here for bandlimited moog saw wave. - - - - - MalletsInstrument - - - Hardness - Dificuldade - - - - Position - Posição - - - - Vibrato gain - - - - - Vibrato frequency - - - - - Stick mix - - - - - Modulator - Modulador - - - - Crossfade - Transição - - - - LFO speed - LFO - Velocidade - - - - LFO depth - - - - - ADSR - ADSR - - - - Pressure - Pressão - - - - Motion - Movimento - - - - Speed - Velocidade - - - - Bowed - De Arco - - - - Spread - Propagação - - - - Marimba - Marimba - - - - Vibraphone - Vibrafone - - - - Agogo - Agogo - - - - Wood 1 - - - - - Reso - Resso - - - - Wood 2 - - - - - Beats - Batidas - - - - Two fixed - - - - - Clump - - - - - Tubular bells - - - - - Uniform bar - - - - - Tuned bar - - - - - Glass - Taça - - - - Tibetan bowl - - - - - MalletsInstrumentView - - - Instrument - Instrumento - - - - Spread - Propagação - - - - Spread: - Propagação: - - - - Missing files - Arquivos ausentes - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - - - - - Hardness - Dificuldade - - - - Hardness: - Dificuldade: - - - - Position - Posição - - - - Position: - Posição: - - - - Vibrato gain - - - - - Vibrato gain: - - - - - Vibrato frequency - - - - - Vibrato frequency: - - - - - Stick mix - - - - - Stick mix: - - - - - Modulator - Modulador - - - - Modulator: - Modulador: - - - - Crossfade - Transição - - - - Crossfade: - Transição: - - - - LFO speed - LFO - Velocidade - - - - LFO speed: - Velocidade do LFO: - - - - LFO depth - - - - - LFO depth: - - - - - ADSR - ADSR - - - - ADSR: - - - - - Pressure - Pressão - - - - Pressure: - Pressão: - - - - Speed - Velocidade - - - - Speed: - Velocidade: - - - - ManageVSTEffectView - - - - VST parameter control - - Controle de parâmetros de VST's - - - - VST sync - - - - - - Automated - Automatizado - - - - Close - Fechar - - - - ManageVestigeInstrumentView - - - - - VST plugin control - - Controle de plugins VST - - - - VST Sync - Sincronização VST - - - - - Automated - Automatizado - - - - Close - Fechar - - - - OrganicInstrument - - - Distortion - Distorção - - - - Volume - Volume - - - - OrganicInstrumentView - - - Distortion: - Distorção: - - - - Volume: - Volume: - - - - Randomise - Aleatorizar - - - - - Osc %1 waveform: - Forma de Onda Osc %1: - - - - Osc %1 volume: - Volume Osc %1: - - - - Osc %1 panning: - Panorâmico Osc %1: - - - - Osc %1 stereo detuning - - - - - cents - centésimos - - - - Osc %1 harmonic: - - - - - PatchesDialog - - - Qsynth: Channel Preset - - - - - Bank selector - - - - - Bank - Banco - - - - Program selector - - - - - Patch - Programação - - - - Name - Nome - - - - OK - OK - - - - Cancel - Cancelar - - - - Sf2Instrument - - - Bank - Banco - - - - Patch - Programação - - - - Gain - Ganho - - - - Reverb - Reverberação - - - - Reverb room size - - - - - Reverb damping - - - - - Reverb width - - - - - Reverb level - - - - - Chorus - Chorus - - - - Chorus voices - - - - - Chorus level - - - - - Chorus speed - - - - - Chorus depth - - - - - A soundfont %1 could not be loaded. - - - - - Sf2InstrumentView - - - - Open SoundFont file - Abrir o arquivo SoundFont - - - - Choose patch - - - - - Gain: - Ganho: - - - - Apply reverb (if supported) - Aplicar reverberação (se suportado) - - - - Room size: - - - - - Damping: - - - - - Width: - Largura: - - - - - Level: - - - - - Apply chorus (if supported) - Aplicar chorus (se suportado) - - - - Voices: - - - - - Speed: - Velocidade: - - - - Depth: - Precisão: - - - - SoundFont Files (*.sf2 *.sf3) - - - - - SfxrInstrument - - - Wave - - - - - StereoEnhancerControlDialog - - - WIDTH - - - - - Width: - Largura: - - - - StereoEnhancerControls - - - Width - Largura - - - - StereoMatrixControlDialog - - - Left to Left Vol: - Esq para Esq Vol: - - - - Left to Right Vol: - Esq para Dir Vol: - - - - Right to Left Vol: - Dir para Esq Vol: - - - - Right to Right Vol: - Dir para Dir Vol: - - - - StereoMatrixControls - - - Left to Left - Esq para Esq - - - - Left to Right - Esq para Dir - - - - Right to Left - Dir para Esq - - - - Right to Right - Dir para Dir - - - - VestigeInstrument - - - Loading plugin - Carregando plugin - - - - Please wait while loading the VST plugin... - - - - - Vibed - - - String %1 volume - Cordas %1 volume - - - - String %1 stiffness - Cordas %1 dureza - - - - Pick %1 position - Pegada %1 posição - - - - Pickup %1 position - Super Pegada %1 posição - - - - String %1 panning - - - - - String %1 detune - - - - - String %1 fuzziness - - - - - String %1 length - - - - - Impulse %1 - Impulso %1 - - - - String %1 - - - - - VibedView - - - String volume: - - - - - String stiffness: - Dureza da corda: - - - - Pick position: - Escolher pinçada: - - - - Pickup position: - Posição do captador: - - - - String panning: - - - - - String detune: - - - - - String fuzziness: - - - - - String length: - - - - - Impulse - - - - - Octave - Oitava - - - - Impulse Editor - Editor de Impulso - - - - Enable waveform - Habilitar forma de onda - - - - Enable/disable string - - - - - String - Corda - - - - - Sine wave - Onda senoidal - - - - - Triangle wave - Onda triangular - - - - - Saw wave - Onda dente de serra - - - - - Square wave - Onda quadrada - - - - - White noise - - - - - - User-defined wave - - - - - - Smooth waveform - - - - - - Normalize waveform - - - - - VoiceObject - - - Voice %1 pulse width - Voz %1 tamanho do pulso - - - - Voice %1 attack - Voz %1 ataque - - - - Voice %1 decay - Voz %1 decaimento - - - - Voice %1 sustain - Voz %1 sustentação - - - - Voice %1 release - Voz %1 relaxamento - - - - Voice %1 coarse detuning - Voz %1 ajuste bruto - - - - Voice %1 wave shape - Voz %1 forma da onda - - - - Voice %1 sync - Voz %1 sincronizada - - - - Voice %1 ring modulate - Voz %1 modulada em anel - - - - Voice %1 filtered - Voz %1 filtrada - - - - Voice %1 test - Voz %1 teste - - - - WaveShaperControlDialog - - - INPUT - ENTRADA - - - - Input gain: - Ganho de entrada: - - - - OUTPUT - SAÍDA - - - - Output gain: - Ganho de saída: - - + Output gain: + + + + + Reset wavegraph - - + + Smooth wavegraph - - + + Increase wavegraph amplitude by 1 dB - - + + Decrease wavegraph amplitude by 1 dB - + Clip input - + Clip input signal to 0 dB - WaveShaperControls + lmms::gui::XpressiveView - - Input gain - Ganho de entrada + + Draw your own waveform here by dragging your mouse on this graph. + - - Output gain - Ganho de saída + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + Abrir janela de ajuda + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + Ruído branco + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + - + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + + + + \ No newline at end of file diff --git a/data/locale/ru.ts b/data/locale/ru.ts index dee2b8482..5c3af4e83 100644 --- a/data/locale/ru.ts +++ b/data/locale/ru.ts @@ -1,4 +1,4 @@ - + AboutDialog @@ -63,8 +63,7 @@ If you're interested in translating LMMS in another language or want to imp Хотите перевести LMMS на другой язык или улучшить существующий перевод — всегда пожалуйста! Свяжитесь с командой переводчиков: https://www.transifex.com/lmms/teams/61632/ru/ https://matrix.to/#/#lmms.ru.team:matrix.org - -На русский язык переводили : +На русский язык переводили: Алексей Кузнецов (2006) Symbiants / OeAi (2014) @@ -82,811 +81,44 @@ Simple88 (2016) - AmplifierControlDialog + AboutJuceDialog - - VOL - ГРОМ - - - - Volume: - Громкость: - - - - PAN - БАЛАНС - - - - Panning: - Баланс: - - - - LEFT - СЛЕВА - - - - Left gain: - Усиление левого канала: - - - - RIGHT - СПРАВА - - - - Right gain: - Усиление правого канала: - - - - AmplifierControls - - - Volume - Громкость - - - - Panning - Баланс - - - - Left gain - Усиление (Л) - - - - Right gain - Усиление (П) - - - - AudioAlsaSetupWidget - - - DEVICE - УСТРОЙСТВО - - - - CHANNELS - КАНАЛЫ - - - - AudioFileProcessorView - - - Open sample - Открыть сэмпл - - - - Reverse sample - Развернуть сэмпл - - - - Disable loop - Отключить петлю - - - - Enable loop - Включить петлю - - - - Enable ping-pong loop - Включить петлю «вперёд-назад» - - - - Continue sample playback across notes - Продолжить воспроизведение сэмпла по нотам - - - - Amplify: - Усиление: - - - - Start point: - Начальная точка: - - - - End point: - Конечная точка: - - - - Loopback point: - Точка возврата петли: - - - - AudioFileProcessorWaveView - - - Sample length: - Длительность сэмпла: - - - - AudioJack - - - JACK client restarted - JACK-клиент перезапущен - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS не был подключен к JACK по какой-то причине, поэтому подключение LMMS к JACK было перезапущено. Вам придётся заново вручную создать соединения. - - - - JACK server down - JACK-сервер недоступен - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - Возможно JACK-сервер был выключен и запуск нового процесса не удался, поэтому LMMS не может продолжить работу. Вам следует сохранить проект и перезапустить JACK и LMMS. - - - - Client name - Имя клиента - - - - Channels - Каналы - - - - AudioOss - - - Device - Устройство - - - - Channels - Каналы - - - - AudioPortAudio::setupWidget - - - Backend - Интерфейс - - - - Device - Устройство - - - - AudioPulseAudio - - - Device - Устройство - - - - Channels - Каналы - - - - AudioSdl::setupWidget - - - Device - Устройство - - - - AudioSndio - - - Device - Устройство - - - - Channels - Каналы - - - - AudioSoundIo::setupWidget - - - Backend - Интерфейс - - - - Device - Устройство - - - - AutomatableModel - - - &Reset (%1%2) - &Сбросить (%1%2) - - - - &Copy value (%1%2) - &Копировать значение (%1%2) - - - - &Paste value (%1%2) - &Вставить значение (%1%2) - - - - &Paste value - &Вставить значение - - - - Edit song-global automation - Изменить глобальную автоматизацию - - - - Remove song-global automation - Убрать глобальную автоматизацию - - - - Remove all linked controls - Убрать всё присоединенное управление - - - - Connected to %1 - Соединено с «%1» - - - - Connected to controller - Соединено с контроллером - - - - Edit connection... - Изменить соединение… - - - - Remove connection - Удалить соединение - - - - Connect to controller... - Соединить с контроллером... - - - - AutomationEditor - - - Edit Value + + About JUCE - - New outValue + + <b>About JUCE</b> - - New inValue + + This program uses JUCE version 3.x.x. - - Please open an automation clip with the context menu of a control! - Откройте редактор автоматизации через контекстное меню регулятора! - - - - AutomationEditorWindow - - - Play/pause current clip (Space) - Игра/пауза текущей мелодии (Пробел) - - - - Stop playing of current clip (Space) - Остановить воспроизведение текущего паттерна (пробел) - - - - Edit actions - Панель правки - - - - Draw mode (Shift+D) - Режим рисования (Shift+D) - - - - Erase mode (Shift+E) - Режим стирания (Shift+E) - - - - Draw outValues mode (Shift+C) + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. - - Flip vertically - Перевернуть вертикально - - - - Flip horizontally - Перевернуть горизонтально - - - - Interpolation controls - Управление интерполяцией - - - - Discrete progression - Дискретная прогрессия - - - - Linear progression - Линейная прогрессия - - - - Cubic Hermite progression - Кубическая Эрмитова прогрессия - - - - Tension value for spline - Жёсткость на изгибе - - - - Tension: - Жёсткость: - - - - Zoom controls - Управление приближением - - - - Horizontal zooming - Горизонтальное приближение - - - - Vertical zooming - Вертикальное приближение - - - - Quantization controls - Управление квантованием - - - - Quantization - Квантование - - - - - Automation Editor - no clip - Редактор автоматизации — без паттерна - - - - - Automation Editor - %1 - Редактор автоматизации — %1 - - - - Model is already connected to this clip. - Модель уже подключена к этому паттерну. - - - - AutomationClip - - - Drag a control while pressing <%1> - Перетащите элемент управления, удерживая <%1> - - - - AutomationClipView - - - Open in Automation editor - Открыть в редакторе автоматизации - - - - Clear - Очистить - - - - Reset name - Сбросить название - - - - Change name - Переименовать - - - - Set/clear record - Установить/очистить запись - - - - Flip Vertically (Visible) - Перевернуть вертикально (Видимое) - - - - Flip Horizontally (Visible) - Перевернуть горизонтально (Видимое) - - - - %1 Connections - Соединения %1 - - - - Disconnect "%1" - Отсоединить «%1» - - - - Model is already connected to this clip. - Модель уже подключена к этому паттерну. - - - - AutomationTrack - - - Automation track - Дорожка автоматизации - - - - PatternEditor - - - Beat+Bassline Editor - Ритм+Бас Композитор - - - - Play/pause current beat/bassline (Space) - Игра/пауза текущей линии ритма/баса (пробел) - - - - Stop playback of current beat/bassline (Space) - Остановить воспроизведение текущей линии ритм-баса (ПРОБЕЛ) - - - - Beat selector - Выбор бита - - - - Track and step actions - Действия для дорожки или такта - - - - Add beat/bassline - Добавить ритм/бас - - - - Clone beat/bassline clip + + This program uses JUCE version - - - Add sample-track - Добавить дорожку записи - - - - Add automation-track - Добавить дорожку автоматизации - - - - Remove steps - Убрать такты - - - - Add steps - Добавить такты - - - - Clone Steps - Клонировать такты - - PatternClipView + AudioDeviceSetupWidget - - Open in Beat+Bassline-Editor - Открыть в Композиторе-Ритм+Баса - - - - Reset name - Сбросить название - - - - Change name - Переименовать - - - - PatternTrack - - - Beat/Bassline %1 - Ритм/Бас Линия %1 - - - - Clone of %1 - Копия %1 - - - - BassBoosterControlDialog - - - FREQ - ЧАСТ - - - - Frequency: - Частота: - - - - GAIN - УСИЛ - - - - Gain: - Усиление: - - - - RATIO - ОТНОШ - - - - Ratio: - Отношение: - - - - BassBoosterControls - - - Frequency - Частота - - - - Gain - Усиление - - - - Ratio - Отношение - - - - BitcrushControlDialog - - - IN - ВХ - - - - OUT - ВЫХ - - - - - GAIN - УСИЛ - - - - Input gain: - Входная мощность: - - - - NOISE - ШУМ - - - - Input noise: - Входящий шум: - - - - Output gain: - Выходная мощность: - - - - CLIP - СРЕЗ - - - - Output clip: - Выходная обрезка: - - - - Rate enabled - Частота выборки включена - - - - Enable sample-rate crushing - Включить дробление частоты дискретизации - - - - Depth enabled - Глубина включена - - - - Enable bit-depth crushing - Включить дробление битовой глубины - - - - FREQ - ЧАСТ - - - - Sample rate: - Частота сэмплирования: - - - - STEREO - СТЕРЕО - - - - Stereo difference: - Стерео разница: - - - - QUANT - КВАНТ - - - - Levels: - Уровни: - - - - BitcrushControls - - - Input gain - Входная мощность - - - - Input noise - Входной шум - - - - Output gain - Выходная мощность - - - - Output clip - Выходная обрезка - - - - Sample rate - Частота сэмплирования - - - - Stereo difference - Разница стерео - - - - Levels - Уровни - - - - Rate enabled - Частота выборки включена - - - - Depth enabled - Глубина включена + + [System Default] + @@ -909,127 +141,127 @@ Simple88 (2016) Extended licensing here - + Расширенное лицензирование здесь - + Artwork Художественное оформление - + Using KDE Oxygen icon set, designed by Oxygen Team. Использует набор значков KDE Oxygen, созданный Oxygen Team. - + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. - + Содержит некоторые регуляторы, фоны и другие небольшие иллюстрации из проектов Calf Studio Gear, OpenAV и OpenOctave. - + VST is a trademark of Steinberg Media Technologies GmbH. VST является торговой маркой Steinberg Media Technologies GmbH. - + Special thanks to António Saraiva for a few extra icons and artwork! - + Отдельное спасибо Антониу Сараиве за несколько дополнительных иконок и иллюстраций! - + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. - + Логотип LV2 был разработан Торстеном Вильмсом на основе концепта Петера Шортозе. - + MIDI Keyboard designed by Thorsten Wilms. - - - - - Carla, Carla-Control and Patchbay icons designed by DoosC. - + MIDI-клавиатура, разработанная Торстеном Уилмсом. + Carla, Carla-Control and Patchbay icons designed by DoosC. + Иконки Carla, Carla-Control и Patchbay разработаны DoosC. + + + Features Возможности - + AU/AudioUnit: - + AU/AudioUnit: - + LADSPA: LADSPA: - - - - - - - - + + + + + + + + TextLabel - + ТекстоваяМетка - + VST2: VST2: - + DSSI: DSSI: - + LV2: LV2: - + VST3: VST3: - - - OSC - - - - - Host URLs: - - - - - Valid commands: - - - valid osc commands here - + OSC + OSC - + + Host URLs: + Адреса хостов: + + + + Valid commands: + Допустимые команды: + + + + valid osc commands here + допустимые команды osc здесь + + + Example: Пример: - + License Лицензия - + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -1314,52 +546,52 @@ POSSIBILITY OF SUCH DAMAGES. - + OSC Bridge Version - + Версия OSC Bridge - + Plugin Version Версия плагина - + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> <br>Версия %1<br>Carla — полнофункциональный хост аудио-плагинов%2.<br><br>Copyright © 2011–2019 falkTX<br> - - + + (Engine not running) (Движок не запущен) - + Everything! (Including LRDF) Всё! (Включая LRDF) - + Everything! (Including CustomData/Chunks) Всё! (Включая CustomData/Chunks) - + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> Завершено около 110&#37; (с пользовательскими расширениями)<br/>Реализованные функции и расширения:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - - - + + + Using Juce host - + Использование узла Juce - + About 85% complete (missing vst bank/presets and some minor stuff) - + Примерно на 85% (не хватает vst банка/пресетов и некоторых мелочей) @@ -1367,585 +599,622 @@ POSSIBILITY OF SUCH DAMAGES. MainWindow - + ГлавноеОкно Rack - + Стойка Patchbay - + Патчбэй Logs - + Журналы Loading... + Загрузка… + + + + Save - + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + Buffer Size: Размер буфера: - + Sample Rate: - + Частота сэмплирования: - + ? Xruns - + DSP Load: %p% - + Загрузка DSP: %p% - + &File &Файл - + &Engine - + Движо&к - + &Plugin - + &Плагин - + Macros (all plugins) - + Макросы (все плагины) - + &Canvas - + &Холст - + Zoom - + Масштаб - + &Settings - + &Настройки - + &Help &Справка - - toolBar + + Tool Bar - + Disk - + Диск - - + + Home Home - + Transport - + Playback Controls - + Элементы управления воспроизведением - + Time Information - + Информации о времени - + Frame: - + Кадр: - + 000'000'000 - + 000'000'000 - + Time: Время: - + 00:00:00 00:00:00 - + BBT: - + 000|00|0000 000|00|0000 - + Settings Настройки - + BPM - + BPM - + Use JACK Transport - + Использовать транспорт JACK - + Use Ableton Link - + Использовать Ableton Link - + &New &Создать - + Ctrl+N Ctrl+N - + &Open... &Открыть... - - + + Open... Открыть… - + Ctrl+O Ctrl+O - + &Save Со&хранить - + Ctrl+S Ctrl+S - + Save &As... Сохранить &как... - - + + Save As... Сохранить как… - + Ctrl+Shift+S Ctrl+Shift+S - + &Quit &Выход - + Ctrl+Q Ctrl+Q - + &Start - + &Начать - + F5 F5 - + St&op - + Ст&оп - + F6 F6 - + &Add Plugin... - + &Добавить плагин… - + Ctrl+A Ctrl+A - + &Remove All - + &Удалить все - + Enable Включить - + Disable Отключить - + 0% Wet (Bypass) - + 100% Wet - + 0% Volume (Mute) 0% громкости (приглушить) - + 100% Volume 100% громкости - + Center Balance - + Центрировать баланс - + &Play - + &Играть - + Ctrl+Shift+P Ctrl+Shift+P - + &Stop - + &Стоп - + Ctrl+Shift+X Ctrl+Shift+X - + &Backwards - + &Назад - + Ctrl+Shift+B Ctrl+Shift+B - + &Forwards - + &Вперёд - + Ctrl+Shift+F Ctrl+Shift+F - + &Arrange - + Ра&сположить - + Ctrl+G Ctrl+G - - + + &Refresh - + &Обновить - + Ctrl+R Ctrl+R - + Save &Image... - + Сохранить &изображение… - + Auto-Fit Вписать - + Zoom In Увеличить - + Ctrl++ Ctrl++ - + Zoom Out Уменьшить - + Ctrl+- Ctrl+- - + Zoom 100% Исходный размер - + Ctrl+1 Ctrl+1 - + Show &Toolbar - + Показать панель инструментов - + &Configure Carla - + &Настроить Carla - + &About &О программе - + About &JUCE О &JUCE - + About &Qt О &Qt - + Show Canvas &Meters - + Show Canvas &Keyboard - + Show Internal - + Показать внутренний - + Show External - + Показать внешний - + Show Time Panel - + Показать панель времени - + Show &Side Panel + Показать боковую панель + + + + Ctrl+P - + &Connect... - + &Подключить… - + Compact Slots - + Компактные слоты - + Expand Slots - + Развернуть слоты - + Perform secret 1 - + Выполнить секрет 1 - + Perform secret 2 - + Выполнить секрет 2 - + Perform secret 3 - + Выполнить секрет 3 - + Perform secret 4 - + Выполнить секрет 4 - + Perform secret 5 - + Выполнить секрет 5 - + Add &JACK Application... - + Добавить приложение JACK - + &Configure driver... - + &Настроить драйвер... - + Panic + Паника + + + + Open custom driver panel... + Открыть панель пользовательского драйвера… + + + + Save Image... (2x zoom) - - Open custom driver panel... + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C CarlaHostWindow - + Export as... Экспортировать как… - - - - + + + + Error Ошибка - + Failed to load project Не удалось загрузить проект - + Failed to save project Не удалось сохранить проект - + Quit Покинуть - + Are you sure you want to quit Carla? Закрыть Carla? - + Could not connect to Audio backend '%1', possible reasons: %2 - + Could not connect to Audio backend '%1' - + Warning Предупреждение - + There are still some plugins loaded, you need to remove them to stop the engine. Do you want to do this now? Имеются загруженные плагины. Нужно удалить их, чтобы остановить движок. Сделать это сейчас? - - CarlaInstrumentView - - - Show GUI - Показать интерфейс - - CarlaSettingsW @@ -1956,12 +1225,12 @@ Do you want to do this now? main - + главное canvas - + холст @@ -1976,55 +1245,55 @@ Do you want to do this now? file-paths - + пути-файлов plugin-paths - + пути-плагинов wine - + wine experimental - + экспериментально Widget - + Виджет - + Main - + Главное - + Canvas - + Холсты - + Engine Движок File Paths - + Пути файлов Plugin Paths - + Пути плагинов @@ -2033,1487 +1302,590 @@ Do you want to do this now? - + Experimental - + Экспериментально - + <b>Main</b> - + <b>Главное</b> - + Paths Пути - + Default project folder: - + Стандартная папка проекта: - + Interface Интерфейс - + + Use "Classic" as default rack skin + + + + Interface refresh interval: Интервал обновления интерфейса: - - + + ms мс - + Show console output in Logs tab (needs engine restart) - + Показывать вывод консоли на вкладке "Журналы" (требуется перезапуск движка) - + Show a confirmation dialog before quitting - + Показать окно подтверждения перед выходом - - + + Theme Тема - + Use Carla "PRO" theme (needs restart) Использовать тему Carla “PRO” (требуется перезагрузка) - + Color scheme: Цветовая схема: - + Black Чёрная - + System Системная - + Enable experimental features Включить экспериментальные функции - + <b>Canvas</b> - + <b>Холст</b> - + Bezier Lines - + Кривые Безье - + Theme: Тема: - + Size: Размер: - + 775x600 775×600 - + 1550x1200 1550×1200 - + 3100x2400 3100×2400 - + 4650x3600 4650×3600 - + 6200x4800 6200×4800 - + + 12400x9600 + + + + Options Опции - + Auto-hide groups with no ports - + Автоматическое скрытие групп без портов - + Auto-select items on hover - + Автоматический выбор элементов при наведении - + Basic eye-candy (group shadows) - + Render Hints - + Подсказки по рендерингу - + Anti-Aliasing Сглаживание - + Full canvas repaints (slower, but prevents drawing issues) - + Полная перерисовка холста (медленно, но предотвращает проблемы с рисованием) - + <b>Engine</b> <b>Движок</b> - - + + Core Ядро - + Single Client - + Один клиент - + Multiple Clients - - + + Continuous Rack - - + + Patchbay - + Патчбэй - + Audio driver: Звуковой драйвер: - + Process mode: Режим обработки: - - - - + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog - + Максимальное количество параметров, разрешенных во встроенном диалоге 'Редактировать' - + Max Parameters: - + Макс. параметров: - + ... - + Reset Xrun counter after project load - + Сбрасывать счётчик Xrun после загрузки проекта - + Plugin UIs - + Оболочки плагинов - - + + How much time to wait for OSC GUIs to ping back the host - + UI Bridge Timeout: - + Use OSC-GUI bridges when possible, this way separating the UI from DSP code - + Use UI bridges instead of direct handling when possible - + Make plugin UIs always-on-top - + Make plugin UIs appear on top of Carla (needs restart) - + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS - - + + Restart the engine to load the new settings Перезапустите движок, чтобы загрузить новые настройки - + <b>OSC</b> - + Enable OSC - + Включить OSC - + Enable TCP port Включить порт TCP - - + + Use specific port: Использовать указанный порт: - + Overridden by CARLA_OSC_TCP_PORT env var - - + + Use randomly assigned port - + Enable UDP port Включить порт UDP - + Overridden by CARLA_OSC_UDP_PORT env var - + DSSI UIs require OSC UDP port enabled - + <b>File Paths</b> - + <b>Пути файлов</b> - + Audio Аудио - + MIDI MIDI - + Used for the "audiofile" plugin - + Used for the "midifile" plugin - - + + Add... Добавить… - - + + Remove Удалить - - + + Change... Изменить… - + <b>Plugin Paths</b> - + <b>Пути плагинов</b> - + LADSPA LADSPA - + DSSI DSSI - + LV2 LV2 - + VST2 VST2 - + VST3 VST3 - + SF2/3 SF2/3 - + SFZ SFZ - + + JSFX + + + + + CLAP + + + + Restart Carla to find new plugins Перезапустите Carla, чтобы найти новые плагины - + <b>Wine</b> - + <b>Wine</b> - + Executable - + Исполняемый - + Path to 'wine' binary: - + Prefix - + Префикс - + Auto-detect Wine prefix based on plugin filename - + Автоматически определять префикс Wine на основе имени файла плагина - + Fallback: - + Запасной: - + Note: WINEPREFIX env var is preferred over this fallback - + Realtime Priority - + Приоритет в реальном времени - + Base priority: - + Базовый приоритет: - + WineServer priority: - + These options are not available for Carla as plugin - + <b>Experimental</b> - + <b>Экспериментально</b> - + Experimental options! Likely to be unstable! - + Экспериментальные возможности! Скорее всего, будут нестабильными! - + Enable plugin bridges - + Включить мосты для плагина - + Enable Wine bridges - + Enable jack applications - + Export single plugins to LV2 + Экспорт отдельных плагинов в LV2 + + + + Use system/desktop-theme icons (needs restart) - + Load Carla backend in global namespace (NOT RECOMMENDED) - + Fancy eye-candy (fade-in/out groups, glow connections) - + Модное (затухания/появления групп, светящиеся подключения) - + Use OpenGL for rendering (needs restart) - + High Quality Anti-Aliasing (OpenGL only) - + Высококачественное сглаживание (только OpenGL) - + Render Ardour-style "Inline Displays" - + Force mono plugins as stereo by running 2 instances at the same time. This mode is not available for VST plugins. - + Принудительное преобразование монофонических плагинов в стереофонические путем одновременного запуска двух экземпляров. +Этот режим недоступен для VST-плагинов. - + Force mono plugins as stereo + Принудительное преобразование моно плагинов в стерео + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. - - Prevent plugins from doing bad stuff (needs restart) + + Prevent unsafe calls from plugins (needs restart) - - Whenever possible, run the plugins in bridge mode. + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. - + Run plugins in bridge mode when possible - + По возможности запускать плагины в режиме моста - - - - + + + + Add Path Добавить путь - - CompressorControlDialog - - - Threshold: - - - - - Volume at which the compression begins to take place - - - - - Ratio: - Отношение: - - - - How far the compressor must turn the volume down after crossing the threshold - - - - - Attack: - Атака: - - - - Speed at which the compressor starts to compress the audio - - - - - Release: - Затухание: - - - - Speed at which the compressor ceases to compress the audio - - - - - Knee: - - - - - Smooth out the gain reduction curve around the threshold - - - - - Range: - - - - - Maximum gain reduction - - - - - Lookahead Length: - - - - - How long the compressor has to react to the sidechain signal ahead of time - - - - - Hold: - Удержание: - - - - Delay between attack and release stages - - - - - RMS Size: - - - - - Size of the RMS buffer - - - - - Input Balance: - - - - - Bias the input audio to the left/right or mid/side - - - - - Output Balance: - - - - - Bias the output audio to the left/right or mid/side - - - - - Stereo Balance: - - - - - Bias the sidechain signal to the left/right or mid/side - - - - - Stereo Link Blend: - - - - - Blend between unlinked/maximum/average/minimum stereo linking modes - - - - - Tilt Gain: - - - - - Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. - - - - - Tilt Frequency: - - - - - Center frequency of sidechain tilt filter - - - - - Mix: - - - - - Balance between wet and dry signals - - - - - Auto Attack: - - - - - Automatically control attack value depending on crest factor - - - - - Auto Release: - - - - - Automatically control release value depending on crest factor - - - - - Output gain - Выходное усиление - - - - - Gain - Усиление - - - - Output volume - - - - - Input gain - Входное усиление - - - - Input volume - - - - - Root Mean Square - - - - - Use RMS of the input - - - - - Peak - - - - - Use absolute value of the input - - - - - Left/Right - - - - - Compress left and right audio - - - - - Mid/Side - - - - - Compress mid and side audio - - - - - Compressor - - - - - Compress the audio - - - - - Limiter - - - - - Set Ratio to infinity (is not guaranteed to limit audio volume) - - - - - Unlinked - - - - - Compress each channel separately - - - - - Maximum - - - - - Compress based on the loudest channel - - - - - Average - - - - - Compress based on the averaged channel volume - - - - - Minimum - - - - - Compress based on the quietest channel - - - - - Blend - - - - - Blend between stereo linking modes - - - - - Auto Makeup Gain - - - - - Automatically change makeup gain depending on threshold, knee, and ratio settings - - - - - - Soft Clip - - - - - Play the delta signal - - - - - Use the compressor's output as the sidechain input - - - - - Lookahead Enabled - - - - - Enable Lookahead, which introduces 20 milliseconds of latency - - - - - CompressorControls - - - Threshold - - - - - Ratio - Отношение - - - - Attack - Атака - - - - Release - Затухание - - - - Knee - - - - - Hold - Удержание - - - - Range - - - - - RMS Size - - - - - Mid/Side - - - - - Peak Mode - - - - - Lookahead Length - - - - - Input Balance - - - - - Output Balance - - - - - Limiter - - - - - Output Gain - Выходная мощность - - - - Input Gain - Входная мощность - - - - Blend - - - - - Stereo Balance - - - - - Auto Makeup Gain - - - - - Audition - - - - - Feedback - Возврат - - - - Auto Attack - - - - - Auto Release - - - - - Lookahead - - - - - Tilt - - - - - Tilt Frequency - - - - - Stereo Link - - - - - Mix - Микс - - - - Controller - - - Controller %1 - Контроллер %1 - - - - ControllerConnectionDialog - - - Connection Settings - Параметры соединения - - - - MIDI CONTROLLER - MIDI-КОНТРОЛЛЕР - - - - Input channel - Канал ввода - - - - CHANNEL - КАНАЛ - - - - Input controller - Контроллер ввода - - - - CONTROLLER - КОНТРОЛЛЕР - - - - - Auto Detect - Автоопределение - - - - MIDI-devices to receive MIDI-events from - Устройства MIDI для приёма событий - - - - USER CONTROLLER - ПОЛЬЗ. КОНТРОЛЛЕР - - - - MAPPING FUNCTION - ЗАДАТЬ ФУНКЦИЮ - - - - OK - ОК - - - - Cancel - Отмена - - - - LMMS - LMMS - - - - Cycle Detected. - Обнаружен цикл. - - - - ControllerRackView - - - Controller Rack - Стойка контроллеров - - - - Add - Добавить - - - - Confirm Delete - Подтвердить удаление - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Подтверждаете удаление? Есть возможные соединения с этим контроллером, возврата не будет. - - - - ControllerView - - - Controls - Контроль - - - - Rename controller - Переименовать контроллер - - - - Enter the new name for this controller - Введите новое название для контроллера - - - - LFO - LFO - - - - &Remove this controller - &Убрать этот контроллер - - - - Re&name this controller - Пере&именовать этот контроллер - - - - CrossoverEQControlDialog - - - Band 1/2 crossover: - Пересечение 1/2 Полосы: - - - - Band 2/3 crossover: - Пересечение 2/3 Полосы: - - - - Band 3/4 crossover: - Пересечение 3/4 Полосы: - - - - Band 1 gain - Полоса 1 усиление - - - - Band 1 gain: - Полоса 1 усиление: - - - - Band 2 gain - Полоса 2 усиление - - - - Band 2 gain: - Полоса 2 усиление: - - - - Band 3 gain - Полоса 3 усиление - - - - Band 3 gain: - Полоса 3 усиление: - - - - Band 4 gain - Полоса 4 усиление - - - - Band 4 gain: - Полоса 4 усиление: - - - - Band 1 mute - Полоса 1 заглушена - - - - Mute band 1 - Заглушить полосу 1 - - - - Band 2 mute - Полоса 2 заглушена - - - - Mute band 2 - Заглушить полосу 2 - - - - Band 3 mute - Полоса 3 заглушена - - - - Mute band 3 - Заглушить полосу 3 - - - - Band 4 mute - Полоса 4 заглушена - - - - Mute band 4 - Заглушить полосу 4 - - - - DelayControls - - - Delay samples - Задержка сэмплов - - - - Feedback - Возврат - - - - LFO frequency - Частота LFO - - - - LFO amount - Объём LFO - - - - Output gain - Выходная мощность - - - - DelayControlsDialog - - - DELAY - ЗАДЕРЖ - - - - Delay time - Время задержки - - - - FDBK - ВОЗВ - - - - Feedback amount - Уровень возврата - - - - RATE - ЧАСТ - - - - LFO frequency - Частота LFO - - - - AMNT - ГЛУБ - - - - LFO amount - Объём LFO - - - - Out gain - Усиление на выходе - - - - Gain - Усиление - - Dialog - - - Add JACK Application - - - - - Note: Features not implemented yet are greyed out - Не реализованные функции отмечены серым цветом - - - - Application - Приложение - - - - Name: - Название: - - - - Application: - Приложение: - - - - From template - Из шаблона - - - - Custom - Настраиваемый - - - - Template: - Шаблон: - - - - Command: - Команда: - - - - Setup - Настройка - - - - Session Manager: - - - - - None - Нет - - - - Audio inputs: - Звуковые входы: - - - - MIDI inputs: - Входы MIDI: - - - - Audio outputs: - Звуковые выходы: - - - - MIDI outputs: - Выходы MIDI: - - - - Take control of main application window - - - - - Workarounds - - - - - Wait for external application start (Advanced, for Debug only) - - - - - Capture only the first X11 Window - - - - - Use previous client output buffer as input for the next client - - - - - Simulate 16 JACK MIDI outputs, with MIDI channel as port index - - - - - Error here - - Carla Control - Connect @@ -3522,7 +1894,7 @@ This mode is not available for VST plugins. Remote setup - + Удалённая настройка @@ -3539,28 +1911,6 @@ This mode is not available for VST plugins. TCP Port: Порт TCP: - - - Reported host - - - - - Automatic - Автоматически - - - - Custom: - - - - - In some networks (like USB connections), the remote system cannot reach the local network. You can specify here which hostname or IP to make the remote Carla connect to. -If you are unsure, leave it as 'Automatic'. - В некоторых сетях (например, USB-соединения) удалённая система не может связаться с локальной сетью. Здесь можно указать, к какому хосту или IP подключать удалённую Carla. -Если не уверены, оставьте «Автоматически». - Set value @@ -3569,7 +1919,7 @@ If you are unsure, leave it as 'Automatic'. TextLabel - + ТекстоваяМетка @@ -3615,948 +1965,6 @@ If you are unsure, leave it as 'Automatic'. Перезапустите движок, чтобы загрузить новые настройки - - DualFilterControlDialog - - - - FREQ - ЧАСТ - - - - - Cutoff frequency - Частота среза - - - - - RESO - RESO - - - - - Resonance - Резонанс - - - - - GAIN - УСИЛ - - - - - Gain - Усиление - - - - MIX - МИКС - - - - Mix - Микс - - - - Filter 1 enabled - Фильтр 1 включен - - - - Filter 2 enabled - Фильтр 2 включен - - - - Enable/disable filter 1 - Вкл/Выкл фильтр 1 - - - - Enable/disable filter 2 - Вкл/Выкл фильтр 2 - - - - DualFilterControls - - - Filter 1 enabled - Фильтр 1 включен - - - - Filter 1 type - Фильтр 1 тип - - - - Cutoff frequency 1 - Частота среза 1 - - - - Q/Resonance 1 - Q/Резонанс 1 - - - - Gain 1 - Усиление 1 - - - - Mix - Микс - - - - Filter 2 enabled - Фильтр 2 включен - - - - Filter 2 type - Фильтр 2 тип - - - - Cutoff frequency 2 - Частота среза 2 - - - - Q/Resonance 2 - Q/Резонанс 2 - - - - Gain 2 - Усиление 2 - - - - - Low-pass - Пропуск низких - - - - - Hi-pass - Пропуск высоких - - - - - Band-pass csg - Полосовой csg - - - - - Band-pass czpg - Полосовой czpg - - - - - Notch - Полосно-заграждающий - - - - - All-pass - Фазовый - - - - - Moog - Муг - - - - - 2x Low-pass - 2x ФНЧ - - - - - RC Low-pass 12 dB/oct - RC ФНЧ 12дБ/окт - - - - - RC Band-pass 12 dB/oct - RC полосовой 12 дБ/окт - - - - - RC High-pass 12 dB/oct - RC ФВЧ 12 дБ/окт - - - - - RC Low-pass 24 dB/oct - RC ФНЧ 24 дБ/окт - - - - - RC Band-pass 24 dB/oct - RC полосовой 24 дБ/окт - - - - - RC High-pass 24 dB/oct - RC ФВЧ 24 дБ/окт - - - - - Vocal Formant - Формантный - - - - - 2x Moog - 2x Муг - - - - - SV Low-pass - SV нижних частот - - - - - SV Band-pass - SV полосовой - - - - - SV High-pass - SV верхних частот - - - - - SV Notch - SV режекторный (полосно-заграждающий) - - - - - Fast Formant - Быстрый формантный - - - - - Tripole - Трёхполюсный - - - - Editor - - - Transport controls - Управление транспортом - - - - Play (Space) - Игра (Пробел) - - - - Stop (Space) - Стоп (Пробел) - - - - Record - Запись - - - - Record while playing - Запись при игре - - - - Toggle Step Recording - Вкл пошаговую запись - - - - Effect - - - Effect enabled - Эффект включён - - - - Wet/Dry mix - Микс чистый/обраб звук - - - - Gate - Порог - - - - Decay - Спад - - - - EffectChain - - - Effects enabled - Эффекты включены - - - - EffectRackView - - - EFFECTS CHAIN - ЦЕПЬ ЭФФЕКТОВ - - - - Add effect - Добавить эффект - - - - EffectSelectDialog - - - Add effect - Добавить эффект - - - - - Name - Имя - - - - Type - Тип - - - - Description - Описание - - - - Author - Автор - - - - EffectView - - - On/Off - Вкл/Выкл - - - - W/D - МИКС - - - - Wet Level: - Уровень обработанного звука: - - - - DECAY - СПАД - - - - Time: - Время: - - - - GATE - ПОРОГ - - - - Gate: - Порог: - - - - Controls - Контроль - - - - Move &up - Переместить &выше - - - - Move &down - Переместить &ниже - - - - &Remove this plugin - &Убрать фильтр - - - - EnvelopeAndLfoParameters - - - Env pre-delay - Огиб предзадержка - - - - Env attack - Атака огиб. - - - - Env hold - Удержание огиб. - - - - Env decay - Спад огиб. - - - - Env sustain - Выдержка огиб. - - - - Env release - Затухание огиб. - - - - Env mod amount - Объём мод огиба - - - - LFO pre-delay - LFO предзадержка - - - - LFO attack - Атака LFO - - - - LFO frequency - Частота LFO - - - - LFO mod amount - Глубина мод LFO - - - - LFO wave shape - Форма LFO волны - - - - LFO frequency x 100 - Частота x 100 LFO - - - - Modulate env amount - Модулировать уровень огибающей - - - - EnvelopeAndLfoView - - - - DEL - DEL - - - - - Pre-delay: - Предзадержка: - - - - - ATT - ATT - - - - - Attack: - Атака: - - - - HOLD - УДЕРЖ - - - - Hold: - Удержание: - - - - DEC - DEC - - - - Decay: - Спад: - - - - SUST - SUST - - - - Sustain: - Выдержка: - - - - REL - REL - - - - Release: - Затухание: - - - - - AMT - AMT - - - - - Modulation amount: - Глубина модуляции: - - - - SPD - СКРСТ - - - - Frequency: - Частота: - - - - FREQ x 100 - ЧАСТ x 100 - - - - Multiply LFO frequency by 100 - Умножить частоту LFO на 100 - - - - MODULATE ENV AMOUNT - МОДУЛИР УР ОГИБАЮЩ - - - - Control envelope amount by this LFO - Управлять объёмом огибающей через этот LFO - - - - ms/LFO: - мс/LFO: - - - - Hint - Подсказка - - - - Drag and drop a sample into this window. - Перетащить сэмпл в это окно. - - - - EqControls - - - Input gain - Входная мощность - - - - Output gain - Выходная мощность - - - - Low-shelf gain - Усиление уровня низких - - - - Peak 1 gain - Пик 1 усиление - - - - Peak 2 gain - Пик 2 усиление - - - - Peak 3 gain - Пик 3 усиление - - - - Peak 4 gain - Пик 4 усиление - - - - High-shelf gain - Усиление уровня высоких - - - - HP res - ВЧ резон - - - - Low-shelf res - Резо уровня низких - - - - Peak 1 BW - Пик 1 ДИАП - - - - Peak 2 BW - Пик 2 ДИАП - - - - Peak 3 BW - Пик 3 ДИАП - - - - Peak 4 BW - Пик 4 ДИАП - - - - High-shelf res - Резо уровня высоких - - - - LP res - НЧ резо - - - - HP freq - ВЧ част - - - - Low-shelf freq - Уровень низких част - - - - Peak 1 freq - Пик 1 част - - - - Peak 2 freq - Пик 2 част - - - - Peak 3 freq - Пик 3 част - - - - Peak 4 freq - Пик 4 част - - - - High-shelf freq - Уровень высоких част - - - - LP freq - НЧ част - - - - HP active - ВЧ активна - - - - Low-shelf active - Уровень низких активен - - - - Peak 1 active - Пик 1 активен - - - - Peak 2 active - Пик 2 активен - - - - Peak 3 active - Пик 3 активен - - - - Peak 4 active - Пик 4 активен - - - - High-shelf active - Уровень высоких активен - - - - LP active - НЧ активна - - - - LP 12 - НЧ 12 - - - - LP 24 - НЧ 24 - - - - LP 48 - НЧ 48 - - - - HP 12 - ВЧ 12 - - - - HP 24 - ВЧ 24 - - - - HP 48 - ВЧ 48 - - - - Low-pass type - Тип прохождения низких (LP) - - - - High-pass type - Тип прохождения высоких (HP) - - - - Analyse IN - Анализировать ВХОД - - - - Analyse OUT - Анализировать ВЫХОД - - - - EqControlsDialog - - - HP - ВЧ - - - - Low-shelf - Уровень низких - - - - Peak 1 - Пик 1 - - - - Peak 2 - Пик 2 - - - - Peak 3 - Пик 3 - - - - Peak 4 - Пик 4 - - - - High-shelf - Уровень высоких - - - - LP - НЧ - - - - Input gain - Входная мощность - - - - - - Gain - Усиление - - - - Output gain - Выходная мощность - - - - Bandwidth: - Полоса пропускания: - - - - Octave - Октава - - - - Resonance : - Резонанс: - - - - Frequency: - Частота: - - - - LP group - Группа НЧ (LoPass) - - - - HP group - Группа ВЧ (HiPass) - - - - EqHandle - - - Reso: - Резон: - - - - BW: - ДИАП: - - - - - Freq: - Част: - - ExportProjectDialog @@ -4740,2125 +2148,652 @@ If you are unsure, leave it as 'Automatic'. Sinc лучший (медленно) - - Oversampling: - Сверхсэмплирование: - - - - 1x (None) - 1х (Нет) - - - - 2x - - - - - 4x - - - - - 8x - - - - + Start Начать - + Cancel Отмена - - - Could not open file - Не могу открыть файл - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Невозможно открыть файл %1 для записи. Пожалуйста, убедитесь, что у вас есть разрешение на запись в файл и содержащую его директорию, и попробуйте снова. - - - - Export project to %1 - Экспорт проекта в %1 - - - - ( Fastest - biggest ) - (Быстрее - больше) - - - - ( Slowest - smallest ) - (Медленнее - меньше) - - - - Error - Ошибка - - - - Error while determining file-encoder device. Please try to choose a different output format. - Ошибка при определении кодека файла. Попробуйте выбрать другой формат вывода. - - - - Rendering: %1% - Обработка: %1% - - - - Fader - - - Set value - Установить значение - - - - Please enter a new value between %1 and %2: - Введите новое значение от %1 до %2: - - - - FileBrowser - - - User content - - - - - Factory content - - - - - Browser - Обозреватель файлов - - - - Search - Поиск - - - - Refresh list - Обновить список - - - - FileBrowserTreeWidget - - - Send to active instrument-track - Отправить на активную инструментальную-дорожку - - - - Open containing folder - - - - - Song Editor - Композитор - - - - BB Editor - - - - - Send to new AudioFileProcessor instance - - - - - Send to new instrument track - - - - - (%2Enter) - - - - - Send to new sample track (Shift + Enter) - - - - - Loading sample - Загрузка сэмпла - - - - Please wait, loading sample for preview... - Ждите, сэмпл загружается для просмотра... - - - - Error - Ошибка - - - - %1 does not appear to be a valid %2 file - %1 не похож на правильный %2 файл - - - - --- Factory files --- - --- Заводские файлы --- - - - - FlangerControls - - - Delay samples - Задержка сэмплов - - - - LFO frequency - Частота LFO - - - - Seconds - Секунды - - - - Stereo phase - - - - - Regen - Восстан - - - - Noise - Шум - - - - Invert - Инвертировать - - - - FlangerControlsDialog - - - DELAY - Задержка - - - - Delay time: - Время дилэя: - - - - RATE - ЧАСТ - - - - Period: - Период: - - - - AMNT - ГЛУБ - - - - Amount: - Величина: - - - - PHASE - - - - - Phase: - - - - - FDBK - ВОЗВ - - - - Feedback amount: - Уровень возврата: - - - - NOISE - ШУМ - - - - White noise amount: - Уровень белого шума: - - - - Invert - Инвертировать - - - - FreeBoyInstrument - - - Sweep time - Время колебаний - - - - Sweep direction - Направление колебаний - - - - Sweep rate shift amount - Величина сдвига частоты колебаний - - - - - Wave pattern duty cycle - Рабочий цикл волны - - - - Channel 1 volume - Громкость 1 канала - - - - - - Volume sweep direction - Объём направления колебаний - - - - - - Length of each step in sweep - Длина каждого такта колебаний - - - - Channel 2 volume - Громкость 2 канала - - - - Channel 3 volume - Громкость 3 канала - - - - Channel 4 volume - Громкость 4 канала - - - - Shift Register width - Сдвиг ширины регистра - - - - Right output level - Правый выходной уровень - - - - Left output level - Левый уровень выхода - - - - Channel 1 to SO2 (Left) - Канал 1 к SO2 (Слева) - - - - Channel 2 to SO2 (Left) - Канал 2 к SO2 (Слева) - - - - Channel 3 to SO2 (Left) - Канал 3 к SO2 (Слева) - - - - Channel 4 to SO2 (Left) - Канал 4 к SO2 (Слева) - - - - Channel 1 to SO1 (Right) - Канал 1 к SO1 (Справа) - - - - Channel 2 to SO1 (Right) - Канал 2 к SO1 (Справа) - - - - Channel 3 to SO1 (Right) - Канал 3 к SO1 (Справа) - - - - Channel 4 to SO1 (Right) - Канал 4 к SO1 (Справа) - - - - Treble - Верхние - - - - Bass - Нижние - - - - FreeBoyInstrumentView - - - Sweep time: - Время колебаний: - - - - Sweep time - Время колебаний - - - - Sweep rate shift amount: - Величина сдвига частоты колебаний: - - - - Sweep rate shift amount - Величина сдвига частоты колебаний - - - - - Wave pattern duty cycle: - Рабочий цикл волны: - - - - - Wave pattern duty cycle - Рабочий цикл волны - - - - Square channel 1 volume: - Квадрат канал 1 громкость: - - - - Square channel 1 volume - Квадрат канал 1 громкость - - - - - - Length of each step in sweep: - Длина каждого такта колебаний: - - - - - - Length of each step in sweep - Длина каждого такта колебаний - - - - Square channel 2 volume: - Квадрат канал 2 громкость: - - - - Square channel 2 volume - Квадрат канал 2 громкость - - - - Wave pattern channel volume: - Громкость канала шаблонной волны: - - - - Wave pattern channel volume - Громкость канала шаблонной волны - - - - Noise channel volume: - Громкость канала помех: - - - - Noise channel volume - Громкость канала помех - - - - SO1 volume (Right): - Громкость SO1 (Справа): - - - - SO1 volume (Right) - Громкость SO1 (Справа) - - - - SO2 volume (Left): - Громкость SO2 (Слева): - - - - SO2 volume (Left) - Громкость SO2 (Слева): - - - - Treble: - Верхние: - - - - Treble - Верхние - - - - Bass: - Нижние: - - - - Bass - Нижние - - - - Sweep direction - Направление колебаний - - - - - - - - Volume sweep direction - Объём направления колебаний - - - - Shift register width - Сместить ширину регистра - - - - Channel 1 to SO1 (Right) - Канал 1 к SO1 (Справа) - - - - Channel 2 to SO1 (Right) - Канал 2 к SO1 (Справа) - - - - Channel 3 to SO1 (Right) - Канал 3 к SO1 (Справа) - - - - Channel 4 to SO1 (Right) - Канал 4 к SO1 (Справа) - - - - Channel 1 to SO2 (Left) - Канал 1 к SO2 (Слева) - - - - Channel 2 to SO2 (Left) - Канал 2 к SO2 (Слева) - - - - Channel 3 to SO2 (Left) - Канал 3 к SO2 (Слева) - - - - Channel 4 to SO2 (Left) - Канал 4 к SO2 (Слева) - - - - Wave pattern graph - Рисунок волны - - - - MixerChannelView - - - Channel send amount - Величина отправки канала - - - - Move &left - Подвинуть в&лево - - - - Move &right - Подвинуть в&право - - - - Rename &channel - Пере&именовать канал - - - - R&emove channel - &Удалить канал - - - - Remove &unused channels - Удалить &неиспользуемые каналы - - - - Set channel color - Установить цвет канала - - - - Remove channel color - Удалить цвет канала - - - - Pick random channel color - Выбрать случайный цвет канала - - - - MixerChannelLcdSpinBox - - - Assign to: - Назначить на: - - - - New mixer Channel - Новый канал ЭФ - - - - Mixer - - - Master - Главный - - - - - - Channel %1 - ЭФ %1 - - - - Volume - Громкость - - - - Mute - Тихо - - - - Solo - Соло - - - - MixerView - - - Mixer - Микшер Эффектов - - - - Fader %1 - Регулятор ЭФ %1 - - - - Mute - Заглушить - - - - Mute this mixer channel - Заглушить этот канал ЭФ - - - - Solo - Соло - - - - Solo mixer channel - Соло канал ЭФ - - - - MixerRoute - - - - Amount to send from channel %1 to channel %2 - Величина отправки с канала %1 на канал %2 - - - - GigInstrument - - - Bank - Банк - - - - Patch - Патч - - - - Gain - Усиление - - - - GigInstrumentView - - - - Open GIG file - Открыть GIG файл - - - - Choose patch - Выбрать патч - - - - Gain: - Усиление: - - - - GIG Files (*.gig) - GIG Файлы (*.gig) - - - - GuiApplication - - - Working directory - Рабочий каталог - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - Рабочий каталог LMMS (%1) не существует. Создать его? Позже вы сможете сменить его через Правка -> Параметры. - - - - Preparing UI - Подготовка UI - - - - Preparing song editor - Подготовка композитора - - - - Preparing mixer - Подготовка микшера - - - - Preparing controller rack - Подготовка стойки управления - - - - Preparing project notes - Подготовка заметок проекта - - - - Preparing beat/bassline editor - Подготовка Ритм+Бас композитора - - - - Preparing piano roll - Подготовка редактора нот - - - - Preparing automation editor - Подготовка редактора автоматизации - - - - InstrumentFunctionArpeggio - - - Arpeggio - Арпеджио - - - - Arpeggio type - Тип арпеджио - - - - Arpeggio range - Диапазон арпеджио - - - - Note repeats - - - - - Cycle steps - Шагов в цикле - - - - Skip rate - Частота пропуска - - - - Miss rate - Частость обхода - - - - Arpeggio time - Период арпеджио - - - - Arpeggio gate - Шлюз арпеджио - - - - Arpeggio direction - Направление арпеджио - - - - Arpeggio mode - Режим арпеджио - - - - Up - Вверх - - - - Down - Вниз - - - - Up and down - Вверх и вниз - - - - Down and up - Вниз и вверх - - - - Random - Случайно - - - - Free - Свободно - - - - Sort - Упорядочить - - - - Sync - Синхронизировать - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - ARPEGGIO - - - - RANGE - RANGE - - - - Arpeggio range: - Диапазон арпеджио: - - - - octave(s) - Октав[а/ы] - - - - REP - - - - - Note repeats: - - - - - time(s) - - - - - CYCLE - ЦИКЛ - - - - Cycle notes: - Нот в цикле: - - - - note(s) - нота(ы) - - - - SKIP - ПРОПУСК - - - - Skip rate: - Частота пропуска: - - - - - - % - % - - - - MISS - MISS - - - - Miss rate: - Частость обхода: - - - - TIME - ВРЕМЯ - - - - Arpeggio time: - Период арпеджио: - - - - ms - мс - - - - GATE - GATE - - - - Arpeggio gate: - Шлюз арпеджио: - - - - Chord: - Аккорд: - - - - Direction: - Направление: - - - - Mode: - Режим: - InstrumentFunctionNoteStacking - + octave Октава - - + + Major Мажорный - + Majb5 Majb5 - + minor минорный - + minb5 minb5 - + sus2 sus2 - + sus4 sus4 - + aug aug - + augsus4 augsus4 - + tri tri - + 6 6 - + 6sus4 6sus4 - + 6add9 6add9 - + m6 m6 - + m6add9 m6add9 - + 7 7 - + 7sus4 7sus4 - + 7#5 7#5 - + 7b5 7b5 - + 7#9 7#9 - + 7b9 7b9 - + 7#5#9 7#5#9 - + 7#5b9 7#5b9 - + 7b5b9 7b5b9 - + 7add11 7add11 - + 7add13 7add13 - + 7#11 7#11 - + Maj7 Maj7 - + Maj7b5 Maj7b5 - + Maj7#5 Maj7#5 - + Maj7#11 Maj7#11 - + Maj7add13 Maj7add13 - + m7 m7 - + m7b5 m7b5 - + m7b9 m7b9 - + m7add11 m7add11 - + m7add13 m7add13 - + m-Maj7 m-Maj7 - + m-Maj7add11 m-Maj7add11 - + m-Maj7add13 m-Maj7add13 - + 9 9 - + 9sus4 9sus4 - + add9 add9 - + 9#5 9#5 - + 9b5 9b5 - + 9#11 9#11 - + 9b13 9b13 - + Maj9 Maj9 - + Maj9sus4 Maj9sus4 - + Maj9#5 Maj9#5 - + Maj9#11 Maj9#11 - + m9 m9 - + madd9 madd9 - + m9b5 m9b5 - + m9-Maj7 m9-Maj7 - + 11 11 - + 11b9 11b9 - + Maj11 Maj11 - + m11 m11 - + m-Maj11 m-Maj11 - + 13 13 - + 13#9 13#9 - + 13b9 13b9 - + 13b5b9 13b5b9 - + Maj13 Maj13 - + m13 m13 - + m-Maj13 m-Maj13 - + Harmonic minor Гармонический минор - + Melodic minor Мелодический минор - + Whole tone Целый тон - + Diminished Пониженный - + Major pentatonic Мажорная пентатоника - + Minor pentatonic Минорная пентатоника - + Jap in sen Японский лад Ин Сен - + Major bebop Мажор бибоп - + Dominant bebop Бибоп доминанта - + Blues Блюз - + Arabic Арабский - + Enigmatic Загадочный - + Neopolitan Неополитанский - + Neopolitan minor Неополитанский минор - + Hungarian minor Венгерский минор - + Dorian Дорийский лад - + Phrygian Фригийский лад - + Lydian Лидийский лад - + Mixolydian Миксолидийский лад - + Aeolian Эолийский лад - + Locrian Локрийский лад - + Minor Минор - + Chromatic Хроматический - + Half-Whole Diminished Вполовину уменьшенный - + 5 5 - + Phrygian dominant Фригийская доминанта - + Persian Персидский - - - Chords - Аккорды - - - - Chord type - Тип аккорда - - - - Chord range - Диапазон аккорда - - - - InstrumentFunctionNoteStackingView - - - STACKING - СКЛАДЫВ. - - - - Chord: - Аккорд: - - - - RANGE - ДИАП - - - - Chord range: - Диапазон аккорда: - - - - octave(s) - Октав[а/ы] - - - - InstrumentMidiIOView - - - ENABLE MIDI INPUT - ВКЛ MIDI ВВОД - - - - ENABLE MIDI OUTPUT - ВКЛ MIDI ВЫВОД - - - - - CHAN - This string must be be short, its width must be less than * width of LCD spin-box of two digits - - - - - - VELOC - This string must be be short, its width must be less than * width of LCD spin-box of three digits - - - - - PROG - This string must be be short, its width must be less than the * width of LCD spin-box of three digits - - - - - NOTE - This string must be be short, its width must be less than * width of LCD spin-box of three digits - НОТА - - - - MIDI devices to receive MIDI events from - MIDI-устройства — источники событий - - - - MIDI devices to send MIDI events to - MIDI-устройства для отправки событий на них - - - - CUSTOM BASE VELOCITY - ПРОИЗВОЛЬНАЯ БАЗОВАЯ СКОРОСТЬ - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. - Указать нормализацию базовой силы нажатия MIDI-инструментов на 100% силы нажатия. - - - - BASE VELOCITY - БАЗОВ. СКОРОСТЬ - - - - InstrumentTuningView - - - MASTER PITCH - ОСНОВНОЙ ТОН - - - - Enables the use of master pitch - Использовать основной тон - InstrumentSoundShaping - + VOLUME ГРОМКОСТЬ - + Volume Громкость - + CUTOFF CUTOFF - - + Cutoff frequency Срез частоты - + RESO РЕЗО - + Resonance Резонанс - - - Envelopes/LFOs - Огибание/LFO - - - - Filter type - Тип фильтра - - - - Q/Resonance - Ур/Резонанса - - - - Low-pass - Уровень низких - - - - Hi-pass - Уровень высоких - - - - Band-pass csg - Полосовой csg - - - - Band-pass czpg - Полосовой czpg - - - - Notch - Notch (вырез) - - - - All-pass - Пропускать все - - - - Moog - Муг - - - - 2x Low-pass - 2x ФНЧ - - - - RC Low-pass 12 dB/oct - RC ФНЧ 12дБ/окт - - - - RC Band-pass 12 dB/oct - RC полосовой 12 дБ/окт - - - - RC High-pass 12 dB/oct - RC ФВЧ 12 дБ/окт - - - - RC Low-pass 24 dB/oct - RC ФНЧ 24 дБ/окт - - - - RC Band-pass 24 dB/oct - RC полосовой 24 дБ/окт - - - - RC High-pass 24 dB/oct - RC ФВЧ 24 дБ/окт - - - - Vocal Formant - Формантный - - - - 2x Moog - 2x Муг - - - - SV Low-pass - SV нижних частот - - - - SV Band-pass - SV полосовой - - - - SV High-pass - SV верхних частот - - - - SV Notch - SV Notch (вырез) - - - - Fast Formant - Быстрый формантный - - - - Tripole - Трёхполюсный - - InstrumentSoundShapingView + JackAppDialog - - TARGET - РАЗМЕТКА - - - - FILTER - ФИЛЬТР - - - - FREQ - ЧАСТ - - - - Cutoff frequency: - Частота среза: - - - - Hz - Гц - - - - Q/RESO - УР/РЕЗО - - - - Q/Resonance: - УР/Резонанса: - - - - Envelopes, LFOs and filters are not supported by the current instrument. - Огибающие, LFO и фильтры не поддерживаются этим инструментом. - - - - InstrumentTrack - - - - unnamed_track - дорожка без имени - - - - Base note - Опорная нота - - - - First note + + Add JACK Application - - Last note - По посл. ноте - - - - Volume - Громкость - - - - Panning - Стерео - - - - Pitch - Тональность - - - - Pitch range - Диапазон тональности - - - - Mixer channel - Канал ЭФ - - - - Master pitch - Основной тон - - - - Enable/Disable MIDI CC + + Note: Features not implemented yet are greyed out - - CC Controller %1 + + Application - - - Default preset - Основная предустановка - - - - InstrumentTrackView - - - Volume - Громкость - - - - Volume: - Уровень громкости: - - - - VOL - УР - - - - Panning - Баланс - - - - Panning: - Баланс: - - - - PAN - БАЛ - - - - MIDI - MIDI - - - - Input - Вход - - - - Output - Выход - - - - Open/Close MIDI CC Rack + + Name: - - Channel %1: %2 - ЭФ %1: %2 - - - - InstrumentTrackWindow - - - GENERAL SETTINGS - ОСНОВНЫЕ НАСТРОЙКИ + + Application: + - - Volume - Громкость + + From template + - - Volume: - Громкость: + + Custom + - - VOL - ГРОМ + + Template: + - - Panning - Баланс + + Command: + - - Panning: - Баланс: + + Setup + - - PAN - БАЛ + + Session Manager: + - - Pitch - Тональность + + None + - - Pitch: - Тональность: + + Audio inputs: + - - cents - сотые + + MIDI inputs: + - - PITCH - ТОН + + Audio outputs: + - - Pitch range (semitones) - Диапазон тональности (полутона) + + MIDI outputs: + - - RANGE - ДИАП + + Take control of main application window + - - Mixer channel - Канал ЭФ + + Workarounds + - - CHANNEL - ЭФ + + Wait for external application start (Advanced, for Debug only) + - - Save current instrument track settings in a preset file - Сохранить текущую инструментаьную дорожку в файл предустановок + + Capture only the first X11 Window + - - SAVE - Сохранить + + Use previous client output buffer as input for the next client + - - Envelope, filter & LFO - Огибающ., фильтр и LFO + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + - - Chord stacking & arpeggio - Аккорды и арпеджио + + Error here + - - Effects - Эффекты - - - - MIDI - MIDI - - - - Miscellaneous - Разное - - - - Save preset - Сохранить предустановку - - - - XML preset file (*.xpf) - XML файл настроек (*.xpf) - - - - Plugin - Модуль - - - - JackApplicationW - - + NSM applications cannot use abstract or absolute paths - + NSM applications cannot use CLI arguments - + You need to save the current Carla project before NSM can be used @@ -6866,967 +2801,22 @@ Please make sure you have write permission to the file and the directory contain JuceAboutW - - About JUCE - О JUCE - - - - <b>About JUCE</b> - <b>О JUCE</b> - - - - This program uses JUCE version 3.x.x. - Эта программа использует JUCE версии 3.*.*. - - - - JUCE (Jules' Utility Class Extensions) is an all-encompassing C++ class library for developing cross-platform software. - -It contains pretty much everything you're likely to need to create most applications, and is particularly well-suited for building highly-customised GUIs, and for handling graphics and sound. - -JUCE is licensed under the GNU Public Licence version 2.0. -One module (juce_core) is permissively licensed under the ISC. - -Copyright (C) 2017 ROLI Ltd. - JUCE (Jules' Utility Class Extensions) — это всеобъемлющая библиотека классов C++ для разработки кроссплатформенного ПО. - -Она содержит практически всё, что может понадобиться для создания большинства приложений, и особенно хорошо подходит для настраиваемых графических интерфейсов, обработки графики и звука. - -JUCE лицензируется в соответствии с GNU Public License версии 2.0. -Один модуль (juce_core) лицензирован в соответствии с ISC. - -Copyright © 2017 ROLI Ltd. - - - + This program uses JUCE version %1. Эта программа использует JUCE версии %1. - - Knob - - - Set linear - Установить линейно - - - - Set logarithmic - Установить логарифмически - - - - - Set value - Установить величину - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - Введите новое значение от –96,0 дБВ до 6,0 дБВ: - - - - Please enter a new value between %1 and %2: - Введите новое значение от %1 до %2: - - - - LadspaControl - - - Link channels - Связать каналы - - - - LadspaControlDialog - - - Link Channels - Связать каналы - - - - Channel - Канал - - - - LadspaControlView - - - Link channels - Связать каналы - - - - Value: - Значение: - - - - LadspaEffect - - - Unknown LADSPA plugin %1 requested. - Запрошен неизвестный модуль LADSPA «%1». - - - - LcdFloatSpinBox - - - Set value - Установить значение - - - - Please enter a new value between %1 and %2: - Новое значение от %1 до %2: - - - - LcdSpinBox - - - Set value - Установить величину - - - - Please enter a new value between %1 and %2: - Введите новое значение от %1 до %2: - - - - LeftRightNav - - - - - Previous - Предыдущий - - - - - - Next - Следующий - - - - Previous (%1) - Предыдущий (%1) - - - - Next (%1) - Следующий (%1) - - - - LfoController - - - LFO Controller - Контроллер LFO - - - - Base value - Основное значение - - - - Oscillator speed - Скорость волны - - - - Oscillator amount - Размер волны - - - - Oscillator phase - Фаза волны - - - - Oscillator waveform - Форма волны - - - - Frequency Multiplier - Множитель частоты - - - - LfoControllerDialog - - - LFO - LFO - - - - BASE - BASE - - - - Base: - Основа: - - - - FREQ - FREQ - - - - LFO frequency: - Частота LFO: - - - - AMNT - ГЛУБ - - - - Modulation amount: - Глубина модуляции: - - - - PHS - ФАЗА - - - - Phase offset: - Сдвиг фазы: - - - - degrees - градусы - - - - Sine wave - Синусоида - - - - Triangle wave - Треугольная волна - - - - Saw wave - Пило-волна - - - - Square wave - Квадрат - - - - Moog saw wave - Муг пило-волна - - - - Exponential wave - Экспоненциальная волна - - - - White noise - Белый шум - - - - User-defined shape. -Double click to pick a file. - Пользовательская форма. -Выбрать файл двойным кликом. - - - - Mutliply modulation frequency by 1 - Умножить частоту модуляции на 1 - - - - Mutliply modulation frequency by 100 - Умножить частоту модуляции на 100 - - - - Divide modulation frequency by 100 - Разделить частоту модуляции на 100 - - - - Engine - - - Generating wavetables - Генерация волновых таблиц - - - - Initializing data structures - Инициализация структуры данных - - - - Opening audio and midi devices - Открываем аудио и MIDI-устройства - - - - Launching mixer threads - Запускаем потоки микшера - - - - MainWindow - - - Configuration file - Файл настроек - - - - Error while parsing configuration file at line %1:%2: %3 - Ошибка во время обработки файла настроек в строке %1:%2: %3 - - - - Could not open file - Не могу открыть файл - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Невозможно открыть файл %1 для записи. Пожалуйста, убедитесь, что у вас есть разрешение на запись в файл и содержащую его директорию, и попробуйте снова. - - - - Project recovery - Восстановление проекта - - - - There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - Остался файл для восстановления. Похоже последняя сессия не была нормально завершена или запущен ещё один процесс LMMS. -Хотите восстановить проект из этой сессии? - - - - - Recover - Восстановить - - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - Восстановить файл. Пожалуйства, не запускайте несколько процессов ЛММС во время этого. - - - - - Discard - Отклонить - - - - Launch a default session and delete the restored files. This is not reversible. - Запустить обычную сессию и удалить восстановленные файлы. Это безвозвратно. - - - - Version %1 - Версия %1 - - - - Preparing plugin browser - Подготовка обзора плагинов - - - - Preparing file browsers - Подготовка обзора файлов - - - - My Projects - Мои проекты - - - - My Samples - Мои сэмплы - - - - My Presets - Мои предустановки - - - - My Home - Моя домашняя папка - - - - Root directory - Корневая директория - - - - Volumes - Громкости - - - - My Computer - Мой компьютер - - - - &File - &Файл - - - - &New - &Создать - - - - &Open... - &Открыть... - - - - Loading background picture - Загружается фоновая картинка - - - - &Save - Со&хранить - - - - Save &As... - Сохранить &как... - - - - Save as New &Version - Сохранить как новую &версию - - - - Save as default template - Сохранить как начальный шаблон - - - - Import... - Импорт... - - - - E&xport... - &Экспорт... - - - - E&xport Tracks... - Экспорт &дорожек... - - - - Export &MIDI... - Экс&порт MIDI... - - - - &Quit - В&ыход - - - - &Edit - &Правка - - - - Undo - Отменить действие - - - - Redo - Вернуть действие - - - - Settings - Параметры - - - - &View - &Вид - - - - &Tools - С&ервис - - - - &Help - &Справка - - - - Online Help - Помощь онлайн - - - - Help - Справка - - - - About - О программе - - - - Create new project - Создать новый проект - - - - Create new project from template - Создать новый проект по шаблону - - - - Open existing project - Открыть существующий проект - - - - Recently opened projects - Недавние проекты - - - - Save current project - Сохранить текущий проект - - - - Export current project - Экспорт проекта - - - - Metronome - Метроном - - - - - Song Editor - Композитор - - - - - Beat+Bassline Editor - Ритм+Бас Композитор - - - - - Piano Roll - Редактор нот - - - - - Automation Editor - Редактор автоматизации - - - - - Mixer - Микшер Эффектов - - - - Show/hide controller rack - Показать/скрыть стойку контроллеров - - - - Show/hide project notes - Показать/скрыть Заметки к проекту - - - - Untitled - Без названия - - - - Recover session. Please save your work! - Восстановление сессии. Пожалуйста, сохраните свою работу! - - - - LMMS %1 - LMMS %1 - - - - Recovered project not saved - Восстановленный проект не сохранён. - - - - This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? - Проект был восстановлен из предыдущей сессии. Сейчас он не сохранён и будет потерян, если его не сохранить. -Хотите сохранить его сейчас? - - - - Project not saved - Проект не сохранён - - - - The current project was modified since last saving. Do you want to save it now? - Проект был изменён с момента последнего сохранения. Сохранить его сейчас? - - - - Open Project - Открыть проект - - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - - Save Project - Сохранить проект - - - - LMMS Project - ЛММС Проект - - - - LMMS Project Template - Шаблон ЛММС Проекта - - - - Save project template - Сохранить шаблон проекта - - - - Overwrite default template? - Перезаписать обычный шаблон? - - - - This will overwrite your current default template. - Это перезапишет текущий обычный шаблон. - - - - Help not available - Справка недоступна - - - - Currently there's no help available in LMMS. -Please visit http://lmms.sf.net/wiki for documentation on LMMS. - Пока что справка для LMMS не написана. -Вероятно, Вы сможете найти нужные материалы на http://lmms.sf.net/wiki . - - - - Controller Rack - Стойка контроллеров - - - - Project Notes - Заметки к проекту - - - - Fullscreen - На весь экран - - - - Volume as dBFS - Громкость в дБ - - - - Smooth scroll - Плавная прокрутка - - - - Enable note labels in piano roll - Включить обозначение нот в музыкальном редакторе - - - - MIDI File (*.mid) - MIDI-файл (*.mid) - - - - - untitled - без названия - - - - - Select file for project-export... - Выбор файла для экспорта проекта... - - - - Select directory for writing exported tracks... - Выберите папку для записи экспортированных дорожек... - - - - Save project - Сохранить проект - - - - Project saved - Проект сохранён - - - - The project %1 is now saved. - Проект %1 сохранён. - - - - Project NOT saved. - Проект НЕ СОХРАНЁН. - - - - The project %1 was not saved! - Проект %1 не был сохранён! - - - - Import file - Импорт файла - - - - MIDI sequences - MIDI-последовательности - - - - Hydrogen projects - Hydrogen проекты - - - - All file types - Все типы файлов - - - - MeterDialog - - - - Meter Numerator - Доли - - - - Meter numerator - Число долей - - - - - Meter Denominator - Длительность - - - - Meter denominator - Длительность доли - - - - TIME SIG - ТАКТ - - - - MeterModel - - - Numerator - Число долей - - - - Denominator - Длительность доли - - - - MidiCCRackView - - - - MIDI CC Rack - %1 - - - - - MIDI CC Knobs: - - - - - CC %1 - - - - - MidiController - - - MIDI Controller - Контроллер MIDI - - - - unnamed_midi_controller - MIDI-контроллер без имени - - - - MidiImport - - - - Setup incomplete - Установка не завершена - - - - You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. - Вы не установили основной SoundFont в настройках (Правка -> Параметры). Поэтому звук не будет воспроизводиться после импортирования этого MIDI-файла. Вам следует загрузить General MIDI SoundFont, определить его в настройках и попробовать снова. - - - - You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - Вы не включили поддержку проигрывателя SoundFont2 при компиляции LMMS, он используется для добавления основного звука в импортируемые MIDI-файлы, поэтому звука не будет после импорта этого MIDI-файла. - - - - MIDI Time Signature Numerator - Число долей времени MIDI - - - - MIDI Time Signature Denominator - Длительность доли времени MIDI - - - - Numerator - Число долей - - - - Denominator - Длительность доли - - - - Track - Дорожка - - - - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - JACK-сервер не доступен - - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - JACK-сервер, похоже, не запущен. - - MidiPatternW MIDI Pattern - + Шаблон MIDI Time Signature: - + Временная сигнатура: @@ -8003,7 +2993,7 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Quantize: - + Квантовать: @@ -8021,2732 +3011,371 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. В&ыход - - &Insert Mode + + Esc + &Insert Mode + + + + F - + &Velocity Mode - + D Ре-диез D - + Select All Выбрать всё - + A Ля диез A - - MidiPort - - - Input channel - Канал входа - - - - Output channel - Канал выхода - - - - Input controller - Контроллер входа - - - - Output controller - Контроллер выхода - - - - Fixed input velocity - Постоянная скорость ввода - - - - Fixed output velocity - Постоянная скорость вывода - - - - Fixed output note - Постоянный вывод нот - - - - Output MIDI program - Программа для вывода MIDI - - - - Base velocity - Базовая скорость - - - - Receive MIDI-events - Принимать события MIDI - - - - Send MIDI-events - Отправлять события MIDI - - - - MidiSetupWidget - - - Device - Устройство - - - - MonstroInstrument - - - Osc 1 volume - Ген 1 громкость - - - - Osc 1 panning - Ген 1 баланс - - - - Osc 1 coarse detune - Ген 1 грубая подстройка - - - - Osc 1 fine detune left - Ген 1 точная подстройка слева - - - - Osc 1 fine detune right - Ген 1 точная подстройка справа - - - - Osc 1 stereo phase offset - Ген 1 сдвиг стерео-фазы - - - - Osc 1 pulse width - Осц 1 длина импульса - - - - Osc 1 sync send on rise - Осц 1 посыл синхро на подъёме - - - - Osc 1 sync send on fall - Осц 1 посыл синхро на спаде - - - - Osc 2 volume - Ген 2 громкость - - - - Osc 2 panning - Ген 2 баланс - - - - Osc 2 coarse detune - Ген 2 грубая подстройка - - - - Osc 2 fine detune left - Ген 2 точная подстройка слева - - - - Osc 2 fine detune right - Ген 2 точная подстройка справа - - - - Osc 2 stereo phase offset - Ген 2 сдвиг стерео-фазы - - - - Osc 2 waveform - Осц 2 форма волны - - - - Osc 2 sync hard - Осц 2 синхро сильная - - - - Osc 2 sync reverse - Осц 2 синхро обратная - - - - Osc 3 volume - Ген 3 громкость - - - - Osc 3 panning - Ген 3 баланс - - - - Osc 3 coarse detune - Ген 3 грубая подстройка - - - - Osc 3 Stereo phase offset - Ген 3 сдвиг стерео-фазы - - - - Osc 3 sub-oscillator mix - Осц 3 доп-осциллятор микс - - - - Osc 3 waveform 1 - Осц 3 форма волны 1 - - - - Osc 3 waveform 2 - Осц 3 форма волны 2 - - - - Osc 3 sync hard - Осц 3 синхр сильная - - - - Osc 3 Sync reverse - Осц 3 синхр обратная - - - - LFO 1 waveform - Форма 1 LFO волны - - - - LFO 1 attack - LFO 1 атака - - - - LFO 1 rate - LFO 1 частота - - - - LFO 1 phase - LFO 1 фаза - - - - LFO 2 waveform - Форма 2 LFO волны - - - - LFO 2 attack - LFO 2 атака - - - - LFO 2 rate - LFO 2 частота - - - - LFO 2 phase - LFO 2 фаза - - - - Env 1 pre-delay - Огиб 1 предзадержка - - - - Env 1 attack - Огиб 1 атака - - - - Env 1 hold - Огиб. 1 удержание - - - - Env 1 decay - Огиб. 1 спад - - - - Env 1 sustain - Огиб. 1 выдержка - - - - Env 1 release - Огиб. 1 затухание - - - - Env 1 slope - Огиб 1 уклон - - - - Env 2 pre-delay - Огиб 2 предзадержка - - - - Env 2 attack - Огиб 2 атака - - - - Env 2 hold - Огиб. 2 удержание - - - - Env 2 decay - Огиб. 2 спад - - - - Env 2 sustain - Огиб. 2 выдержка - - - - Env 2 release - Огиб. 2 затухание - - - - Env 2 slope - Огиб 2 уклон - - - - Osc 2+3 modulation - Осц 2+3 модуляция - - - - Selected view - Выбранный вид - - - - Osc 1 - Vol env 1 - Ген 1 - Громк. огиб. 1 - - - - Osc 1 - Vol env 2 - Ген 1 - Громк. огиб. 2 - - - - Osc 1 - Vol LFO 1 - Ген 1 - Громк. LFO 1 - - - - Osc 1 - Vol LFO 2 - Ген 1 - Громк. LFO 2 - - - - Osc 2 - Vol env 1 - Ген 2 - Громк. огиб. 1 - - - - Osc 2 - Vol env 2 - Ген 2 - Громк. огиб. 2 - - - - Osc 2 - Vol LFO 1 - Ген 2 - Громк. LFO 1 - - - - Osc 2 - Vol LFO 2 - Ген 2 - Громк. LFO 2 - - - - Osc 3 - Vol env 1 - Ген 3 - Громк. огиб. 1 - - - - Osc 3 - Vol env 2 - Ген 3 - Громк. огиб. 2 - - - - Osc 3 - Vol LFO 1 - Ген 3 - Громк. LFO 1 - - - - Osc 3 - Vol LFO 2 - Ген 3 - Громк. LFO 2 - - - - Osc 1 - Phs env 1 - Ген 1 - Фаза огиб. 1 - - - - Osc 1 - Phs env 2 - Ген 1 - Фаза огиб. 2 - - - - Osc 1 - Phs LFO 1 - Ген 1 - Фаза LFO 1 - - - - Osc 1 - Phs LFO 2 - Ген 1 - Фаза LFO 2 - - - - Osc 2 - Phs env 1 - Ген 2 - Фаза огиб. 1 - - - - Osc 2 - Phs env 2 - Ген 2 - Фаза огиб. 2 - - - - Osc 2 - Phs LFO 1 - Ген 2 - Фаза LFO 1 - - - - Osc 2 - Phs LFO 2 - Ген 2 - Фаза LFO 2 - - - - Osc 3 - Phs env 1 - Ген 3 - Фаза огиб. 1 - - - - Osc 3 - Phs env 2 - Ген 3 - Фаза огиб. 2 - - - - Osc 3 - Phs LFO 1 - Ген 3 - Фаза LFO 1 - - - - Osc 3 - Phs LFO 2 - Ген 3 - Фаза LFO 2 - - - - Osc 1 - Pit env 1 - Осц 1 - Pit огиб 1 - - - - Osc 1 - Pit env 2 - Осц 1 - Pit огиб 2 - - - - Osc 1 - Pit LFO 1 - Осц 1 - Pit LFO 1 - - - - Osc 1 - Pit LFO 2 - Осц 1 - Pit LFO 2 - - - - Osc 2 - Pit env 1 - Осц 2 - Pit огиб 1 - - - - Osc 2 - Pit env 2 - Осц 2 - Pit огиб 2 - - - - Osc 2 - Pit LFO 1 - Осц 2 - Pit LFO 1 - - - - Osc 2 - Pit LFO 2 - Осц 2 - Pit LFO 2 - - - - Osc 3 - Pit env 1 - Осц 3 - Pit огиб 1 - - - - Osc 3 - Pit env 2 - Осц 3 - Pit огиб 2 - - - - Osc 3 - Pit LFO 1 - Осц 3 - Pit LFO 1 - - - - Osc 3 - Pit LFO 2 - Осц 3 - Pit LFO 2 - - - - Osc 1 - PW env 1 - Осц 1 - PW Огиб 1 - - - - Osc 1 - PW env 2 - Осц 1 - PW Огиб 2 - - - - Osc 1 - PW LFO 1 - Осц 1 - PW LFO 1 - - - - Osc 1 - PW LFO 2 - Осц 1 - PW LFO 2 - - - - Osc 3 - Sub env 1 - Осц 3 - Доп огиб 1 - - - - Osc 3 - Sub env 2 - Осц 3 - Доп огиб 2 - - - - Osc 3 - Sub LFO 1 - Осц 3 - Доп LFO 1 - - - - Osc 3 - Sub LFO 2 - Осц 3 - Доп LFO 2 - - - - - Sine wave - Синусоида - - - - Bandlimited Triangle wave - Тембр. треугольная волна - - - - Bandlimited Saw wave - Тембр. пило-волна - - - - Bandlimited Ramp wave - Тембр. пологая волна - - - - Bandlimited Square wave - Тембр. квадратная волна - - - - Bandlimited Moog saw wave - Тембр. Муг пило-волна - - - - - Soft square wave - Сглаженная квадратная волна - - - - Absolute sine wave - Идеальная синусоида - - - - - Exponential wave - Экспоненциальная волна - - - - White noise - Белый шум - - - - Digital Triangle wave - Цифровая треугольная волна - - - - Digital Saw wave - Цифровая пило-волна - - - - Digital Ramp wave - Цифровая пологая волна - - - - Digital Square wave - Цифровая квадратная волна - - - - Digital Moog saw wave - Цифровая Муг пило-волна - - - - Triangle wave - Треугольная волна - - - - Saw wave - Пило-волна - - - - Ramp wave - Пологая волна - - - - Square wave - Квадрат - - - - Moog saw wave - Муг пило-волна - - - - Abs. sine wave - Идеальная синусоида - - - - Random - Случайно - - - - Random smooth - Случайное сглаживание - - - - MonstroView - - - Operators view - Операторский вид - - - - Matrix view - Матричный вид - - - - - - Volume - Громкость - - - - - - Panning - Баланс - - - - - - Coarse detune - Грубая подстройка - - - - - - semitones - полутона - - - - - Fine tune left - Точная настройка слева - - - - - - - cents - Центы - - - - - Fine tune right - Точная настройка справа - - - - - - Stereo phase offset - Сдвиг стерео фазы - - - - - - - - deg - град - - - - Pulse width - Длительность импульса - - - - Send sync on pulse rise - Выдача синхронизации по нарастанию импульса - - - - Send sync on pulse fall - Выдача синхронизации по спаду импульса - - - - Hard sync oscillator 2 - Жёсткая синхр осциллятора 2 - - - - Reverse sync oscillator 2 - Обратная синхр осциллятора 2 - - - - Sub-osc mix - Микс доп-осц - - - - Hard sync oscillator 3 - Жёсткая синхр генератора 3 - - - - Reverse sync oscillator 3 - Обратная синхр генератора 3 - - - - - - - Attack - Атака - - - - - Rate - Частота выборки - - - - - Phase - Фаза - - - - - Pre-delay - Предзадержка - - - - - Hold - Удержание - - - - - Decay - Спад - - - - - Sustain - Выдержка - - - - - Release - Затухание - - - - - Slope - Фронт - - - - Mix osc 2 with osc 3 - Смешать осц. 2 с осц. 3 - - - - Modulate amplitude of osc 3 by osc 2 - Модулировать амплитуду осц. 3 сигналом с 2 - - - - Modulate frequency of osc 3 by osc 2 - Модулировать частоту осц. 3 сигналом с 2 - - - - Modulate phase of osc 3 by osc 2 - Модулировать фазу осц. 3 сигналом с 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Modulation amount - Глубина модуляции - - - - MultitapEchoControlDialog - - - Length - Длина - - - - Step length: - Длина шага: - - - - Dry - Чистый - - - - Dry gain: - Чистый звук усиление: - - - - Stages - Уровни - - - - Low-pass stages: - Уровни прохода низких: - - - - Swap inputs - Переставить входы местами - - - - Swap left and right input channels for reflections - Поменять левый и правый каналы входа для отражений - - - - NesInstrument - - - Channel 1 coarse detune - Грубая подстройка канала 1 - - - - Channel 1 volume - Громкость канала 1 - - - - Channel 1 envelope length - Длительность огибающей канала 1 - - - - Channel 1 duty cycle - Рабочий цикл канала 1 - - - - Channel 1 sweep amount - Уровень колебаний канала 1 - - - - Channel 1 sweep rate - Частота колебаний канала 1 - - - - Channel 2 Coarse detune - Грубая подстройка канала 2 - - - - Channel 2 Volume - Громкость канала 2 - - - - Channel 2 envelope length - Длительность огибающей канала 2 - - - - Channel 2 duty cycle - Рабочий цикл канала 2 - - - - Channel 2 sweep amount - Уровень колебаний канала 2 - - - - Channel 2 sweep rate - Частота колебаний канала 2 - - - - Channel 3 coarse detune - Грубая подстройка канала 3 - - - - Channel 3 volume - Громкость канала 3 - - - - Channel 4 volume - Громкость канала 4 - - - - Channel 4 envelope length - Длительность огибающей канала 4 - - - - Channel 4 noise frequency - Частота шума канала 4 - - - - Channel 4 noise frequency sweep - Частота помех колебаний канала 4 - - - - Master volume - Главная громкость - - - - Vibrato - Вибрато - - - - NesInstrumentView - - - - - - Volume - Громкость - - - - - - Coarse detune - Грубая подстройка - - - - - - Envelope length - Длина огибающей - - - - Enable channel 1 - Включить канал 1 - - - - Enable envelope 1 - Включить огибающую 1 - - - - Enable envelope 1 loop - Включить петлю огибающей 1 - - - - Enable sweep 1 - Включить колебание 1 - - - - - Sweep amount - Амплитуда колебаний - - - - - Sweep rate - Частота колебаний - - - - - 12.5% Duty cycle - 12.5% Рабочий цикл - - - - - 25% Duty cycle - 25% Рабочий цикл - - - - - 50% Duty cycle - 50% Рабочий цикл - - - - - 75% Duty cycle - 75% Рабочий цикл - - - - Enable channel 2 - Включить канал 2 - - - - Enable envelope 2 - Включить огибающую 2 - - - - Enable envelope 2 loop - Включить петлю огибающей 2 - - - - Enable sweep 2 - Включить колебание 2 - - - - Enable channel 3 - Включить канал 3 - - - - Noise Frequency - Частота шума - - - - Frequency sweep - Частота колебаний - - - - Enable channel 4 - Включить канал 4 - - - - Enable envelope 4 - Включить огибающую 4 - - - - Enable envelope 4 loop - Включить петлю огибающей 4 - - - - Quantize noise frequency when using note frequency - Квантовать частоту шума при использовании частоты ноты - - - - Use note frequency for noise - Использовние частоты ноты для шума - - - - Noise mode - Режим шума - - - - Master volume - Главная громкость - - - - Vibrato - Вибрато - - - - OpulenzInstrument - - - Patch - Патч - - - - Op 1 attack - Оп 1 атака - - - - Op 1 decay - Оп 1 спад - - - - Op 1 sustain - Оп 1 выдержка - - - - Op 1 release - Оп 1 затухание - - - - Op 1 level - Оп 1 уровень - - - - Op 1 level scaling - Оп 1 увеличение уровня - - - - Op 1 frequency multiplier - Оп 1 множитель частоты - - - - Op 1 feedback - Оп 1 возврат - - - - Op 1 key scaling rate - Оп 1 скорость увеличения нот - - - - Op 1 percussive envelope - Оп 1 огибающая ударников - - - - Op 1 tremolo - Оп 1 тремоло - - - - Op 1 vibrato - Оп 1 вибрато - - - - Op 1 waveform - Оп 1 форма волны - - - - Op 2 attack - Оп 2 атака - - - - Op 2 decay - Оп 2 спад - - - - Op 2 sustain - Оп 2 выдержка - - - - Op 2 release - Оп 2 затухание - - - - Op 2 level - Оп 2 уровень - - - - Op 2 level scaling - Оп 2 увеличение уровня - - - - Op 2 frequency multiplier - Оп 2 множитель частоты - - - - Op 2 key scaling rate - Оп 2 скорость увеличения нот - - - - Op 2 percussive envelope - Оп 2 огибающая ударников - - - - Op 2 tremolo - Оп 2 Тремоло - - - - Op 2 vibrato - Оп 2 Вибрато - - - - Op 2 waveform - Оп 2 Волна - - - - FM - FM - - - - Vibrato depth - Глубина вибрато - - - - Tremolo depth - Глубина тремоло - - - - OpulenzInstrumentView - - - - Attack - Атака - - - - - Decay - Спад - - - - - Release - Затухание - - - - - Frequency multiplier - Множитель частоты - - - - OscillatorObject - - - Osc %1 waveform - Форма сигнала осциллятора %1 - - - - Osc %1 harmonic - Осц %1 гармонический - - - - - Osc %1 volume - Громкость осциллятора %1 - - - - - Osc %1 panning - Стереобаланс для осциллятора %1 - - - - - Osc %1 fine detuning left - Тонкая подстройка осц %1 слева - - - - Osc %1 coarse detuning - Подстройка осц %1 грубая - - - - Osc %1 fine detuning right - Тонкая подстройка осц %1 справа - - - - Osc %1 phase-offset - Сдвиг фазы для осц %1 - - - - Osc %1 stereo phase-detuning - Подстройка стерео-фазы осц %1 - - - - Osc %1 wave shape - Гладкость сигнала осц %1 - - - - Modulation type %1 - Тип модуляции %1 - - - - Oscilloscope - - - Oscilloscope - Осциллограф - - - - Click to enable - Включить мышью - - PatchesDialog + Qsynth: Channel Preset Qsynth: преднастройка канала + Bank selector Выбор банка + Bank Банк + Program selector Выбор программы + Patch Патч + Name Имя + OK ОК + Cancel Отмена - - PatmanView - - - Open patch - Открыть патч - - - - Loop - Петля - - - - Loop mode - Режим петли - - - - Tune - Подстроить - - - - Tune mode - Режим подстройки - - - - No file selected - Не выбран файл - - - - Open patch file - Открыть патч-файл - - - - Patch-Files (*.pat) - Патч-файлы (*.pat) - - - - MidiClipView - - - Open in piano-roll - Открыть в редакторе нот - - - - Set as ghost in piano-roll - Установить как призрак в пиано-ролл - - - - Clear all notes - Очистить все ноты - - - - Reset name - Сбросить название - - - - Change name - Переименовать - - - - Add steps - Добавить такты - - - - Remove steps - Удалить такты - - - - Clone Steps - Клонировать такты - - - - PeakController - - - Peak Controller - Пиковый контроллер - - - - Peak Controller Bug - Ошибка в пиковом контроллере - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - Из-за ошибки в более старой версии LMMS пиковые контроллеры могут быть подключены неправильно. Убедитесь, что пиковые контроллеры подключены правильно, и повторно сохраните этот файл. Извините за причинённые неудобства. - - - - PeakControllerDialog - - - PEAK - ПИК - - - - LFO Controller - Контроллер LFO - - - - PeakControllerEffectControlDialog - - - BASE - БАЗА - - - - Base: - Основа: - - - - AMNT - ГЛУБ. - - - - Modulation amount: - Глубина модуляции: - - - - MULT - МНОЖ. - - - - Amount multiplicator: - Множитель: - - - - ATCK - АТК - - - - Attack: - Атака: - - - - DCAY - СПАД - - - - Release: - Затухание: - - - - TRSH - ПОРОГ - - - - Treshold: - Порог: - - - - Mute output - Заглушить вывод - - - - Absolute value - Абсолютное значение - - - - PeakControllerEffectControls - - - Base value - Опорное значение - - - - Modulation amount - Глубина модуляции - - - - Attack - Атака - - - - Release - Затухание - - - - Treshold - Порог - - - - Mute output - Заглушить вывод - - - - Absolute value - Абсолютное значение - - - - Amount multiplicator - Множитель - - - - PianoRoll - - - Note Velocity - Сила нажатия нот - - - - Note Panning - Стерео-баланс нот - - - - Mark/unmark current semitone - Поставить или снять отметку с этого полутона - - - - Mark/unmark all corresponding octave semitones - Поставить или снять отметку с этого полутона во всех октавах - - - - Mark current scale - Отметить выбранную гамму - - - - Mark current chord - Отметить выбранный аккорд - - - - Unmark all - Снять всё выделение - - - - Select all notes on this key - Выбрать все ноты на этой клавише - - - - Note lock - Фиксация нот - - - - Last note - По посл. ноте - - - - No key - - - - - No scale - Без гаммы - - - - No chord - Без аккорда - - - - Nudge - - - - - Snap - - - - - Velocity: %1% - Сила нажатия: %1% - - - - Panning: %1% left - Баланс: %1% слева - - - - Panning: %1% right - Баланс: %1% справа - - - - Panning: center - Баланс: центр - - - - Glue notes failed - - - - - Please select notes to glue first. - - - - - Please open a clip by double-clicking on it! - Откройте паттерн двойным щелчком! - - - - - Please enter a new value between %1 and %2: - Новое значение от %1 до %2: - - - - PianoRollWindow - - - Play/pause current clip (Space) - Игра/пауза текущей мелодии (пробел) - - - - Record notes from MIDI-device/channel-piano - Записать ноты с MIDI-устройства или с канала фортепиано - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - Записать ноты с MIDI-устройства или с канала фортепиано во время воспроизведения композиции или дорожки Ритм-Баса - - - - Record notes from MIDI-device/channel-piano, one step at the time - Записать ноты с MIDI-устройства или с канала фортепиано, по одному шагу за раз - - - - Stop playing of current clip (Space) - Остановить воспроизведение текущей мелодии (пробел) - - - - Edit actions - Панель правки - - - - Draw mode (Shift+D) - Режим рисования (Shift+D) - - - - Erase mode (Shift+E) - Режим стирания (Shift+E) - - - - Select mode (Shift+S) - Режим выбора нот (Shift+S) - - - - Pitch Bend mode (Shift+T) - Режим изгиба высоты тона (Shift+T) - - - - Quantize - Квантовать - - - - Quantize positions - - - - - Quantize lengths - - - - - File actions - - - - - Import clip - - - - - - Export clip - - - - - Copy paste controls - Копировать-вставить управление - - - - Cut (%1+X) - Вырезать (%1+X) - - - - Copy (%1+C) - Копировать (%1+C) - - - - Paste (%1+V) - Вставить (%1+V) - - - - Timeline controls - Панель графика - - - - Glue - - - - - Knife - - - - - Fill - - - - - Cut overlaps - - - - - Min length as last - - - - - Max length as last - - - - - Zoom and note controls - Панель масштабирования и нот - - - - Horizontal zooming - Горизонтальный масштаб - - - - Vertical zooming - Вертикальное приближение - - - - Quantization - Квантование - - - - Note length - Длительность ноты - - - - Key - - - - - Scale - Гамма - - - - Chord - Аккорд - - - - Snap mode - - - - - Clear ghost notes - Очистить призрачные ноты - - - - - Piano-Roll - %1 - Нотный редактор — %1 - - - - - Piano-Roll - no clip - Нотный редактор — нет паттерна - - - - - XML clip file (*.xpt *.xptz) - - - - - Export clip success - - - - - Clip saved to %1 - - - - - Import clip. - - - - - You are about to import a clip, this will overwrite your current clip. Do you want to continue? - - - - - Open clip - - - - - Import clip success - - - - - Imported clip %1! - - - - - PianoView - - - Base note - Опорная нота - - - - First note - - - - - Last note - По посл. ноте - - - - Plugin - - - Plugin not found - Модуль не найден - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - Модуль «%1» отсутствует либо не может быть загружен! -Причина: «%2» - - - - Error while loading plugin - Ошибка загрузки плагина - - - - Failed to load plugin "%1"! - Не удалось загрузить модуль «%1»! - - PluginBrowser - - Instrument Plugins - Плагины инструментов - - - - Instrument browser - Инструменты - - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - Вы можете переносить нужные вам инструменты из этой панели в Композитор, Ритм+Бас или в существующую дорожку инструмента. - - - + no description описание отсутствует - + A native amplifier plugin Родной плагин усилителя - + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track Простой сэмплер с разными установками по использованию сэмплов (как барабаны) в инструментальной дорожке - + Boost your bass the fast and simple way Накачай свой бас быстро и просто - + Customizable wavetable synthesizer Настраиваемый синтезатор звукозаписей (wavetable) - + An oversampling bitcrusher Бит-дробилка с передискретизацией - + Carla Patchbay Instrument Инструмент Carla Patchbay - + Carla Rack Instrument Инструментальная стойка Carla - + A dynamic range compressor. - + A 4-band Crossover Equalizer 4-полосный переходный эквалайзер - + A native delay plugin Встроенный плагин задержки - + A Dual filter plugin Плагин двойного фильтра - + plugin for processing dynamics in a flexible way Плагин для гибкой обработки динамики - + A native eq plugin Встроенный плагин эквалайзера - + A native flanger plugin Встроенный плагин фланжера - + Emulation of GameBoy (TM) APU Эмуляция GameBoy™ APU - + Player for GIG files Проигрыватель GIG-файлов - + Filter for importing Hydrogen files into LMMS Фильтр для импорта файлов Hydrogen в LMMS - + Versatile drum synthesizer Универсальный барабанный синтезатор - + List installed LADSPA plugins Показать установленные модули LADSPA - + plugin for using arbitrary LADSPA-effects inside LMMS. - Модуль, позволяющий использовать в LMMS любые эффекты LADSPA. + Плагин для использования произвольных LADSPA-эффектов внутри LMMS. - + Incomplete monophonic imitation TB-303 - Незавершённая монофоническая имитация TB-303 + - + plugin for using arbitrary LV2-effects inside LMMS. - + plugin for using arbitrary LV2 instruments inside LMMS. - + Filter for exporting MIDI-files from LMMS Фильтр для экспорта MIDI-файлов из LMMS - + Filter for importing MIDI-files into LMMS Фильтр для импорта MIDI-файлов в LMMS - + Monstrous 3-oscillator synth with modulation matrix Чудовищный 3-осциляторный синт с матрицей модуляции - + A multitap echo delay plugin Плагин многократной задержки эха - + A NES-like synthesizer Синтезатор типа NES - + 2-operator FM Synth 2-параметровый FM-синт - + Additive Synthesizer for organ-like sounds Синтезатор звуков вроде органа - + GUS-compatible patch instrument Патч-инструмент, совместимый с GUS - + Plugin for controlling knobs with sound peaks Модуль для установки значений регуляторов по пикам громкости - + Reverb algorithm by Sean Costello Алгоритм реверберации Шона Костелло - + Player for SoundFont files Проигрыватель файлов SoundFont - + LMMS port of sfxr LMMS-порт SFXR - + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Эмуляция SID MOS6581 и MOS8580. Этот чип использовался в компьютере Commodore 64. - + A graphical spectrum analyzer. Графический анализатор спектра - + Plugin for enhancing stereo separation of a stereo input file Модуль, усиливающий разницу между каналами стереозаписи - + Plugin for freely manipulating stereo output Модуль для произвольного управления стереовыходом - + Tuneful things to bang on Мелодичные ударные - + Three powerful oscillators you can modulate in several ways Три мощных осциллятора, модулируемые несколькими способами - + A stereo field visualizer. - + VST-host for using VST(i)-plugins within LMMS VST-хост для поддержки модулей VST(i) в LMMS - + Vibrating string modeler Моделирование вибрирующих струн - + plugin for using arbitrary VST effects inside LMMS. Плагин для использования любых VST-эффектов в LMMS - + 4-oscillator modulatable wavetable synth 4-осцилляторный модулируемый волновой синтезатор - + plugin for waveshaping Плагин для сглаживания волн - + Mathematical expression parser Анализатор математических выражений - + Embedded ZynAddSubFX Встроенный ZynAddSubFX - - - PluginDatabaseW - - Carla - Add New + + An all-pass filter allowing for extremely high orders. - - Format - Формат - - - - Internal + + Granular pitch shifter - - LADSPA - LADSPA - - - - DSSI - DSSI - - - - LV2 - LV2 - - - - VST2 - VST2 - - - - VST3 - VST3 - - - - AU - AU - - - - Sound Kits + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. - - Type - Тип - - - - Effects - Эффекты - - - - Instruments - Инструменты - - - - MIDI Plugins + + Basic Slicer - - Other/Misc + + Tap to the beat - - - Architecture - Архитектура - - - - Native - - - - - Bridged - - - - - Bridged (Wine) - - - - - Requirements - Требования - - - - With Custom GUI - - - - - With CV Ports - - - - - Real-time safe only - - - - - Stereo only - - - - - With Inline Display - - - - - Favorites only - - - - - (Number of Plugins go here) - - - - - &Add Plugin - - - - - Cancel - Отмена - - - - Refresh - Обновить - - - - Reset filters - Сбросить фильтры - - - - - - - - - - - - - - - - - - - TextLabel - - - - - Format: - Формат: - - - - Architecture: - Архитектура: - - - - Type: - Тип: - - - - MIDI Ins: - - - - - Audio Ins: - - - - - CV Outs: - - - - - MIDI Outs: - - - - - Parameter Ins: - - - - - Parameter Outs: - - - - - Audio Outs: - - - - - CV Ins: - - - - - UniqueID: - - - - - Has Inline Display: - - - - - Has Custom GUI: - - - - - Is Synth: - - - - - Is Bridged: - - - - - Information - Информация - - - - Name - Имя - - - - Label/URI - - - - - Maker - - - - - Binary/Filename - - - - - Focus Text Search - - - - - Ctrl+F - Ctrl+F - PluginEdit @@ -10783,7 +3412,7 @@ This chip was used in the Commodore 64 computer. Output volume (100%) - + Выходная громкость (100 %) @@ -10819,12 +3448,12 @@ This chip was used in the Commodore 64 computer. Audio: - + Аудио: Fixed-Size Buffer - + Буфер фиксированного размера @@ -10843,36 +3472,41 @@ This chip was used in the Commodore 64 computer. - Send Bank/Program Changes + Send Notes - Send Control Changes + Send Bank/Program Changes - Send Channel Pressure + Send Control Changes - Send Note Aftertouch + Send Channel Pressure - Send Pitchbend + Send Note Aftertouch + Send Pitchbend + + + + Send All Sound/Notes Off - + Plugin Name @@ -10881,80 +3515,521 @@ Plugin Name - + Program: Программа: - + MIDI Program: - + Save State Сохранить состояние - + Load State Загрузить состояние - + Information Информация - + Label/URI: - + Метка/адрес: - + Name: Название: - + Type: Тип: - + Maker: - + Автор: - + Copyright: - + Авторское право: - + Unique ID: - + Уникальный ИД: PluginFactory - + Plugin not found. Плагин не найден. - + LMMS plugin %1 does not have a plugin descriptor named %2! Плагин LMMS «%1» не имеет дескриптора с именем «%2»! + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + PluginParameter Form - + Форма @@ -10963,158 +4038,61 @@ Plugin Name + TextLabel + + + + ... - PluginRefreshW + PluginRefreshDialog - - Carla - Refresh - Carla — обновление - - - - Search for new... + + Plugin Refresh - - LADSPA - LADSPA - - - - DSSI - DSSI - - - - LV2 - LV2 - - - - VST2 - VST2 - - - - VST3 - VST3 - - - - AU - AU - - - - SF2/3 - SF2/3 - - - - SFZ - SFZ - - - - Native + + Search for: - - POSIX 32bit - POSIX 32-бит + + All plugins, ignoring cache + - - POSIX 64bit - POSIX 64-бит + + Updated plugins only + - - Windows 32bit - Windows 32-бит + + Check previously invalid plugins + - - Windows 64bit - Windows 64-бит - - - - Available tools: - Доступные инструменты: - - - - python3-rdflib (LADSPA-RDF support) - python3-rdflib (поддержка LADSPA-RDF) - - - - carla-discovery-win64 - carla-discovery-win64 - - - - carla-discovery-native - carla-discovery-native - - - - carla-discovery-posix32 - carla-discovery-posix32 - - - - carla-discovery-posix64 - carla-discovery-posix64 - - - - carla-discovery-win32 - carla-discovery-win32 - - - - Options: - Опции: - - - - Carla will run small processing checks when scanning the plugins (to make sure they won't crash). -You can disable these checks to get a faster scanning time (at your own risk). - Во время сканирования Carla будет проверять плагины (чтобы убедиться, что они не вылетят). -Чтобы ускорить сканирование, эти проверки можно отключить (на свой страх и риск). - - - - Run processing checks while scanning - Выполнять проверки во время сканирования - - - + Press 'Scan' to begin the search - Нажмите «Сканировать», чтобы начать поиск + - + Scan - Сканировать + - + >> Skip - >> Пропустить + - + Close - Закрыть + @@ -11126,53 +4104,53 @@ You can disable these checks to get a faster scanning time (at your own risk). Frame - + Кадр - + Enable Включить - + On/Off Вкл/Выкл - + - + PluginName - + ИмяПлагина - + MIDI MIDI - + AUDIO IN - + ВХОД ЗВУКА - + AUDIO OUT - + ВЫХОД ЗВУКА - + GUI - + Графический интерфейс - + Edit Правка - + Remove Удалить @@ -11187,2287 +4165,13561 @@ You can disable these checks to get a faster scanning time (at your own risk).Пресет: - - ProjectNotes - - - Project Notes - Заметки к проекту - - - - Enter project notes here - Напишите заметки, касающиеся проекта, здесь - - - - Edit Actions - Панель правки - - - - &Undo - &Отменить - - - - %1+Z - %1+Z - - - - &Redo - Ве&рнуть - - - - %1+Y - %1+Y - - - - &Copy - &Копировать - - - - %1+C - %1+C - - - - Cu&t - &Вырезать - - - - %1+X - %1+X - - - - &Paste - Вст&авить - - - - %1+V - %1+V - - - - Format Actions - Панель форматирования - - - - &Bold - &Жирный - - - - %1+B - %1+B - - - - &Italic - &Курсив - - - - %1+I - %1+I - - - - &Underline - Под&чёркнутый - - - - %1+U - %1+U - - - - &Left - По &левому краю - - - - %1+L - %1+L - - - - C&enter - По &центру - - - - %1+E - %1+E - - - - &Right - По &правому краю - - - - %1+R - %1+R - - - - &Justify - По &ширине - - - - %1+J - %1+J - - - - &Color... - Ц&вет... - - ProjectRenderer - + WAV (*.wav) WAV (*.wav) - + FLAC (*.flac) FLAC (*.flac) - + OGG (*.ogg) OGG (*.ogg) - + MP3 (*.mp3) MP3 (*.mp3) + + QGroupBox + + + + Settings for %1 + + + QObject - + Reload Plugin - + Show GUI Показать интерфейс - + Help Справка + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + QWidget - - - - + + Name: Название: - - URI: - - - - - - + Maker: Автор: - - - + Copyright: Авторское право: - - + Requires Real Time: Требует работать в реальном времени: - - - - - - + + + Yes да - - - - - - + + + No нет - - + Real Time Capable: Работа в реальном времени: - - + In Place Broken: Неисправен: - - + Channels In: Каналов на входе: - - + Channels Out: Каналов на выходе: - + File: %1 Файл: %1 - + File: Файл: - RecentProjectsMenu + XYControllerW - - &Recently Opened Projects - &Недавние проекты + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + - RenameDialog + lmms::AmplifierControls - - Rename... - Переименовать... + + Volume + Громкость + + + + Panning + Баланс + + + + Left gain + Усиление (Л) + + + + Right gain + Усиление (П) - ReverbSCControlDialog + lmms::AudioFileProcessor - - Input - Вход + + Amplify + Усиление - - Input gain: - Входное усиление: + + Start of sample + Начало сэмпла - - Size - Размер + + End of sample + Конец сэмпла - - Size: - Размер: + + Loopback point + Точка петли - - Color - Цвет + + Reverse sample + Перевернуть сэмпл - - Color: - Цвет: + + Loop mode + Режим повтора - - Output - Выход + + Stutter + Запинание - - Output gain: - Выходное усиление: + + Interpolation mode + Режим интерполяции + + + + None + Нет + + + + Linear + Линейный + + + + Sinc + Приёмник + + + + Sample not found + - ReverbSCControls + lmms::AudioJack - + + JACK client restarted + Клиент JACK перезапущен + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + LMMS не был подключен к JACK по какой-то причине, поэтому подключение LMMS к JACK было перезапущено. Вам придётся заново вручную создать соединения. + + + + JACK server down + Cервер JACK выключен + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + Возможно JACK-сервер был выключен и запуск нового процесса не удался, поэтому LMMS не может продолжить работу. Вам следует сохранить проект и перезапустить JACK и LMMS. + + + + Client name + Имя клиента + + + + Channels + Каналы + + + + lmms::AudioOss + + + Device + Устройство + + + + Channels + Каналы + + + + lmms::AudioPortAudio::setupWidget + + + Backend + Интерфейс + + + + Device + Устройство + + + + lmms::AudioPulseAudio + + + Device + Устройство + + + + Channels + Каналы + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + Устройство + + + + Channels + Каналы + + + + lmms::AudioSoundIo::setupWidget + + + Backend + Интерфейс + + + + Device + Устройство + + + + lmms::AutomatableModel + + + &Reset (%1%2) + &Сбросить (%1%2) + + + + &Copy value (%1%2) + &Копировать значение (%1%2) + + + + &Paste value (%1%2) + &Вставить значение (%1%2) + + + + &Paste value + &Вставить значение + + + + Edit song-global automation + Изменить глобальную автоматизацию + + + + Remove song-global automation + Убрать глобальную автоматизацию + + + + Remove all linked controls + Убрать всё присоединенное управление + + + + Connected to %1 + Подключено к %1 + + + + Connected to controller + Соединено с контроллером + + + + Edit connection... + Изменить соединение… + + + + Remove connection + Удалить соединение + + + + Connect to controller... + Соединить с контроллером... + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + Перетащите элемент управления, удерживая <%1> + + + + lmms::AutomationTrack + + + Automation track + Дорожка автоматизации + + + + lmms::BassBoosterControls + + + Frequency + Частота + + + + Gain + Усиление + + + + Ratio + Соотношение + + + + lmms::BitInvader + + + Sample length + Длина сэмпла + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + Input gain Входное усиление - - Size - Размер + + Input noise + Входной шум - - Color - Цвет + + Output gain + Выходное усиление - + + Output clip + Выходная обрезка + + + + Sample rate + Частота сэмплирования + + + + Stereo difference + Разница стерео + + + + Levels + Уровни + + + + Rate enabled + Частота выборки включена + + + + Depth enabled + Глубина включена + + + + lmms::Clip + + + Mute + Заглушить + + + + lmms::CompressorControls + + + Threshold + Пороговый уровень + + + + Ratio + Соотношение + + + + Attack + Атака + + + + Release + Затухание + + + + Knee + + + + + Hold + Удержание + + + + Range + Диапазон + + + + RMS Size + + + + + Mid/Side + Середина/стороны + + + + Peak Mode + Держать пик + + + + Lookahead Length + + + + + Input Balance + Входной баланс: + + + + Output Balance + Выходной баланс + + + + Limiter + Лимитер + + + + Output Gain + Выходная мощность + + + + Input Gain + Входная мощность + + + + Blend + Смешать + + + + Stereo Balance + Баланс стерео + + + + Auto Makeup Gain + + + + + Audition + Прослушивание + + + + Feedback + Обратная связь + + + + Auto Attack + Автоатака + + + + Auto Release + Убывание + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + Фильтр Частот + + + + Stereo Link + + + + + Mix + Микс + + + + lmms::Controller + + + Controller %1 + Контроллер %1 + + + + lmms::DelayControls + + + Delay samples + Задержка сэмплов + + + + Feedback + Обратная связь + + + + LFO frequency + Частота LFO + + + + LFO amount + Объём LFO + + + Output gain Выходное усиление - SaControls + lmms::DispersionControls - - Pause - Пауза + + Amount + Величина - - Reference freeze - Заморозить эталон + + Frequency + Частота - - Waterfall - Спад - - - - Averaging - Усреднение - - - - Stereo - Стерео - - - - Peak hold - Держать пик - - - - Logarithmic frequency - Логарифмическая частота - - - - Logarithmic amplitude - Логарифмическая амплитуда - - - - Frequency range - Диапазон частот - - - - Amplitude range - Диапазон амплитуд - - - - FFT block size - Размер блока FFT - - - - FFT window type - Тип окна FFT - - - - Peak envelope resolution - Разрешение огибающей пика - - - - Spectrum display resolution - Разрешение отображения спектра - - - - Peak decay multiplier - Множитель спада пика - - - - Averaging weight - Средний вес - - - - Waterfall history size - Размер истории спада - - - - Waterfall gamma correction - Гамма-коррекция спада - - - - FFT window overlap - Перекрытие окон FFT - - - - FFT zero padding - FFT нулевой отступ - - - - - Full (auto) - Полностью (авто) - - - - - - Audible - Слышимые - - - - Bass - Басы - - - - Mids - Средние - - - - High - Высокие - - - - Extended - Расширенно - - - - Loud - Громкие - - - - Silent - Тихие - - - - (High time res.) - (Высокое разрешение по времени) - - - - (High freq. res.) - (Высокое разрешение по частоте) - - - - Rectangular (Off) - Прямоугольный (откл.) - - - - - Blackman-Harris (Default) - Блэкман-Харрис (по умолчанию) - - - - Hamming - Хэмминг (Сглажив) - - - - Hanning - Хэннинга (Сглажив) - - - - SaControlsDialog - - - Pause - Пауза - - - - Pause data acquisition - Приостановить сбор данных - - - - Reference freeze - Заморозить эталон - - - - Freeze current input as a reference / disable falloff in peak-hold mode. - Заморозить текущий входной сигнал в качестве эталона; отключить спад в режиме удержания пика. - - - - Waterfall - Спад - - - - Display real-time spectrogram - Показать спектрограмму в реальном времени - - - - Averaging - Усреднение - - - - Enable exponential moving average - Включить экспоненциальное скользящее среднее - - - - Stereo - Стерео - - - - Display stereo channels separately - Отображать стерео-каналы раздельно - - - - Peak hold - Держать пик - - - - Display envelope of peak values - Показать огибающую пиковых значений - - - - Logarithmic frequency - Логарифмическая частота - - - - Switch between logarithmic and linear frequency scale - Переключиться между логарифмической и линейной шкалой частоты - - - - - Frequency range - Диапазон частот - - - - Logarithmic amplitude - Логарифмическая амплитуда - - - - Switch between logarithmic and linear amplitude scale - Переключить между логарифмическим и линейным усилением амплитуды - - - - - Amplitude range - Диапазон амплитуд - - - - Envelope res. - Разрешение огибающей - - - - Increase envelope resolution for better details, decrease for better GUI performance. - Увеличьте разрешение огибающей, чтобы улучшить детализацию, или уменьшите, чтобы улучшить производительность графического интерфейса. - - - - - Draw at most - Максимально точек на пиксель в спектре : - - - - envelope points per pixel - точки огибающей на пиксель - - - - Spectrum res. - Разрешение спектра - - - - Increase spectrum resolution for better details, decrease for better GUI performance. - Увеличьте разрешение спектра, чтобы улучшить детализацию, или уменьшите, чтобы улучшить производительность графического интерфейса. - - - - spectrum points per pixel - точки спектра на пиксель - - - - Falloff factor - Коэффициент спада - - - - Decrease to make peaks fall faster. - Снизьте, чтобы пики спадали быстрее - - - - Multiply buffered value by - Умножить значение буфера на - - - - Averaging weight - Средний вес - - - - Decrease to make averaging slower and smoother. - Уменьшите, чтобы усреднение было медленнее и плавнее. - - - - New sample contributes - Вхождения нового сэмпла - - - - Waterfall height - Высота спада - - - - Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. - Увеличьте, чтобы получить более плавные движения, и уменьшите, чтобы лучше видеть быстрые переходы. Внимание: средняя загрузка ЦП. - - - - Keep - Оставить - - - - lines - линии - - - - Waterfall gamma - Гамма спада - - - - Decrease to see very weak signals, increase to get better contrast. - Снизьте, чтобы увидеть очень слабые сигналы, и увеличьте, чтобы получить лучший контраст. - - - - Gamma value: - Гамма значение: - - - - Window overlap - Перекрытие окна - - - - Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. - Увеличьте, чтобы не пропускать быстрые переходы, которые приближаются к краям окна FFT. Внимание: сильно нагружает процессор! - - - - Each sample processed - Количество раз обработки сэмпла: - - - - times - раз - - - - Zero padding - Нулевой отступ - - - - Increase to get smoother-looking spectrum. Warning: high CPU usage. - Увеличьте, чтобы получить более плавный спектр. Внимание: сильно нагружает процессор. - - - - Processing buffer is - Буфер обработки - - - - steps larger than input block - Шагов больше, чем в блоке ввода - - - - Advanced settings - Расширенные настройки - - - - Access advanced settings - Доступ к расширенным настройкам - - - - - FFT block size - Размер блока FFT - - - - - FFT window type - Тип окна FFT - - - - SampleBuffer - - - Fail to open file - Не удается открыть файл - - - - Audio files are limited to %1 MB in size and %2 minutes of playing time - Звуковые файлы ограничены размером %1 МБ и длительностью %2 мин. - - - - Open audio file - Открыть звуковой файл - - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - Все звуковые файлы (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - - Wave-Files (*.wav) - Файлы Wave (*.wav) - - - - OGG-Files (*.ogg) - Файлы OGG (*.ogg) - - - - DrumSynth-Files (*.ds) - Файлы DrumSynth (*.ds) - - - - FLAC-Files (*.flac) - Файлы FLAC (*.flac) - - - - SPEEX-Files (*.spx) - Файлы SPEEX (*.spx) - - - - VOC-Files (*.voc) - Файлы VOC (*.voc) - - - - AIFF-Files (*.aif *.aiff) - Файлы AIFF (*.aif *.aiff) - - - - AU-Files (*.au) - Файлы AU (*.au) - - - - RAW-Files (*.raw) - Файлы RAW (*.raw) - - - - SampleClipView - - - Double-click to open sample - Дважды щелкните, чтобы открыть сэмпл - - - - Delete (middle mousebutton) - Удалить (средняя кнопка мыши) - - - - Delete selection (middle mousebutton) - Удалить выделенное (средняя кнопка мыши) - - - - Cut - Вырезать - - - - Cut selection - Вырезать выделенное - - - - Copy - Копировать - - - - Copy selection - Копировать выделенное - - - - Paste - Вставить - - - - Mute/unmute (<%1> + middle click) - Тихо/громко (<%1> + щелчок средней кнопкой) - - - - Mute/unmute selection (<%1> + middle click) - Отключить или включить звук для выделенного (<%1> + средняя кнопка мыши) - - - - Reverse sample - Перевернуть сэмпл - - - - Set clip color - Установить цвет клипа - - - - Use track color - Использовать цвет дорожки - - - - SampleTrack - - - Volume - Громкость - - - - Panning - Баланс - - - - Mixer channel - Канал ЭФ - - - - - Sample track - Дорожка записи - - - - SampleTrackView - - - Track volume - Громкость дорожки - - - - Channel volume: - Громкость канала: - - - - VOL - УР - - - - Panning - Баланс - - - - Panning: - Баланс: - - - - PAN - БАЛ - - - - Channel %1: %2 - ЭФ %1: %2 - - - - SampleTrackWindow - - - GENERAL SETTINGS - ОСНОВНЫЕ НАСТРОЙКИ - - - - Sample volume - Громкость сэмпла - - - - Volume: - Громкость: - - - - VOL - ГРОМК - - - - Panning - Баланс - - - - Panning: - Баланс: - - - - PAN - БАЛ - - - - Mixer channel - Канал ЭФ - - - - CHANNEL - ЭФ - - - - SaveOptionsWidget - - - Discard MIDI connections - Отклонить MIDI-соединения - - - - Save As Project Bundle (with resources) - - - - - SetupDialog - - - Reset to default value - Сбросить до настроек по умолчанию - - - - Use built-in NaN handler - Использовать встроенный Nan-обработчик - - - - Settings - Настройки - - - - - General - Основные - - - - Graphical user interface (GUI) - Графический интерфейс пользователя (GUI) - - - - Display volume as dBFS - Отображать громкость в децибелах - - - - Enable tooltips - Включить подсказки - - - - Enable master oscilloscope by default - - - - - Enable all note labels in piano roll - - - - - Enable compact track buttons - - - - - Enable one instrument-track-window mode - - - - - Show sidebar on the right-hand side - Показывать боковую панель справа - - - - Let sample previews continue when mouse is released - - - - - Mute automation tracks during solo - Отключать дорожки автоматизации во время соло - - - - Show warning when deleting tracks - - - - - Projects - Проекты - - - - Compress project files by default - По умолчанию сжимать файлы проекта - - - - Create a backup file when saving a project - Создавать резервные копии при сохранении проекта - - - - Reopen last project on startup - Открывать последний проект при запуске - - - - Language - Язык - - - - - Performance - Производительность - - - - Autosave - Автосохранение - - - - Enable autosave - Включить автоматическое сохранение - - - - Allow autosave while playing - Разрешить автосохранение во время воспроизведения. - - - - User interface (UI) effects vs. performance - Эффекты интерфейса и производительность - - - - Smooth scroll in song editor - Плавная прокрутка в редакторе композиции - - - - Display playback cursor in AudioFileProcessor - Показывать указатель воспроизведения в процессоре звуковых файлов - - - - Plugins - Модули - - - - VST plugins embedding: - Встраивание VST-плагинов: - - - - No embedding - Не встраивать - - - - Embed using Qt API - Встроить с использованием Qt API - - - - Embed using native Win32 API - Встроить с использованием Win32 API - - - - Embed using XEmbed protocol - Встроить с использованием протокола XEmbed - - - - Keep plugin windows on top when not embedded - Держать окна плагинов поверху, если не встроены - - - - Sync VST plugins to host playback - Синхронизировать VST плагины с хостом воспроизведения - - - - Keep effects running even without input - Продолжать работу эффектов даже без входящего сигнала - - - - - Audio - Аудио - - - - Audio interface - Аудио-интерфейс - - - - HQ mode for output audio device - Высококачественный режим аудио-устройства - - - - Buffer size - Размер буфера - - - - - MIDI - MIDI - - - - MIDI interface - Интерфейс MIDI - - - - Automatically assign MIDI controller to selected track - Автоматически назначать MIDI-контроллер на выбранную дорожку - - - - LMMS working directory - Рабочий каталог LMMS - - - - VST plugins directory - Каталог модулей VST - - - - LADSPA plugins directories - Каталог модулей LADSPA - - - - SF2 directory - Папка SF2 - - - - Default SF2 - Файл SF2 по умолчанию - - - - GIG directory - Папка GIG - - - - Theme directory - Папка для тем - - - - Background artwork - Фоновое изображение - - - - Some changes require restarting. - Некоторые изменения требуют перезагрузки программы. - - - - Autosave interval: %1 - Интервал автосохранения: %1 - - - - Choose the LMMS working directory - Выбрать рабочий каталог LMMS - - - - Choose your VST plugins directory - Выбрать каталог плагинов VST - - - - Choose your LADSPA plugins directory - Выбрать каталог плагинов LADSPA - - - - Choose your default SF2 - Выберите основной SF2 - - - - Choose your theme directory - Выберите свою папку для тем - - - - Choose your background picture - Выберите свою картинку фона - - - - - Paths - Пути - - - - OK - ОК - - - - Cancel - Отмена - - - - Frames: %1 -Latency: %2 ms - Фрагментов: %1 -Отклик: %2 мс - - - - Choose your GIG directory - Выберите вашу папку GIG - - - - Choose your SF2 directory - Выберите вашу папку SF2 - - - - minutes - Минуты - - - - minute - Минута - - - - Disabled - Отключено - - - - SidInstrument - - - Cutoff frequency - Частота среза - - - + Resonance Резонанс - - Filter type - Тип фильтра + + Feedback + Обратная связь - - Voice 3 off - Голос 3 откл. - - - - Volume - Громкость - - - - Chip model - Модель чипа + + DC Offset Removal + - SidInstrumentView + lmms::DualFilterControls - - Volume: - Уровень громкости: + + Filter 1 enabled + Фильтр 1 включен - - Resonance: - Резонанс: + + Filter 1 type + Фильтр 1 тип - - - Cutoff frequency: - Частота среза: + + Cutoff frequency 1 + Частота среза 1 - - High-pass filter - Фильтр верхних частот + + Q/Resonance 1 + Q/Резонанс 1 - - Band-pass filter - Полосовой фильтр + + Gain 1 + Усиление 1 - - Low-pass filter - Фильтр нижних частот + + Mix + Микс - - Voice 3 off - Голос 3 откл. + + Filter 2 enabled + Фильтр 2 включен - - MOS6581 SID - MOS6581 SID + + Filter 2 type + Фильтр 2 тип - - MOS8580 SID - MOS8580 SID + + Cutoff frequency 2 + Частота среза 2 - - - Attack: - Атака: + + Q/Resonance 2 + Q/Резонанс 2 - - - Decay: - Спад: + + Gain 2 + Усиление 2 - - Sustain: - Выдержка: + + + Low-pass + Пропуск низких - - - Release: - Затухание: + + + Hi-pass + Пропуск высоких - - Pulse Width: - Длина импульса: + + + Band-pass csg + - - Coarse: - Грубо: + + + Band-pass czpg + - - Pulse wave - Пульсирующая волна + + + Notch + Вырез - - Triangle wave - Треугольная волна + + + All-pass + Пропускать все - - Saw wave - Пило-волна + + + Moog + Муг - + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + RC полосовой 12 дБ/окт + + + + + RC High-pass 12 dB/oct + RC ФВЧ 12 дБ/окт + + + + + RC Low-pass 24 dB/oct + RC ФНЧ 24 дБ/окт + + + + + RC Band-pass 24 dB/oct + RC полосовой 24 дБ/окт + + + + + RC High-pass 24 dB/oct + RC ФВЧ 24 дБ/окт + + + + + Vocal Formant + Формантный + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + Трёхполюсный + + + + lmms::DynProcControls + + + Input gain + Входное усиление + + + + Output gain + Выходное усиление + + + + Attack time + Время атаки + + + + Release time + Время затухания + + + + Stereo mode + Режим стерео + + + + lmms::Effect + + + Effect enabled + Эффект включён + + + + Wet/Dry mix + + + + + Gate + Порог + + + + Decay + Спад + + + + lmms::EffectChain + + + Effects enabled + Эффекты включены + + + + lmms::Engine + + + Generating wavetables + Генерация волновых таблиц + + + + Initializing data structures + Инициализация структуры данных + + + + Opening audio and midi devices + Открываем аудио и MIDI-устройства + + + + Launching audio engine threads + Запускаем потоки микшера + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + Огиб предзадержка + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + LFO предзадержка + + + + LFO attack + Атака LFO + + + + LFO frequency + Частота LFO + + + + LFO mod amount + Глубина мод LFO + + + + LFO wave shape + Форма LFO волны + + + + LFO frequency x 100 + Частота x 100 LFO + + + + Modulate env amount + Модулировать уровень огибающей + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + Входное усиление + + + + Output gain + Выходное усиление + + + + Low-shelf gain + Усиление уровня низких + + + + Peak 1 gain + Пик 1 усиление + + + + Peak 2 gain + Пик 2 усиление + + + + Peak 3 gain + Пик 3 усиление + + + + Peak 4 gain + Пик 4 усиление + + + + High-shelf gain + Усиление уровня высоких + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + НЧ активна + + + + LP 12 + НЧ 12 + + + + LP 24 + НЧ 24 + + + + LP 48 + НЧ 48 + + + + HP 12 + ВЧ 12 + + + + HP 24 + ВЧ 24 + + + + HP 48 + ВЧ 48 + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + Фаза стерео + + + + Feedback + + + + Noise Шум - + + Invert + Инвертировать + + + + lmms::FreeBoyInstrument + + + Sweep time + Время колебаний + + + + Sweep direction + Направление колебаний + + + + Sweep rate shift amount + Величина сдвига частоты колебаний + + + + + Wave pattern duty cycle + Рабочий цикл волны + + + + Channel 1 volume + Громкость 1 канала + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + Громкость 2 канала + + + + Channel 3 volume + Громкость 3 канала + + + + Channel 4 volume + Громкость 4 канала + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + Верхние + + + + Bass + Басы + + + + lmms::GigInstrument + + + Bank + Банк + + + + Patch + Патч + + + + Gain + Усиление + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + Арпеджио + + + + Arpeggio type + Тип арпеджио + + + + Arpeggio range + Диапазон арпеджио + + + + Note repeats + + + + + Cycle steps + Шагов в цикле + + + + Skip rate + Частота пропуска + + + + Miss rate + Частость обхода + + + + Arpeggio time + Период арпеджио + + + + Arpeggio gate + Шлюз арпеджио + + + + Arpeggio direction + Направление арпеджио + + + + Arpeggio mode + Режим арпеджио + + + + Up + Вверх + + + + Down + Вниз + + + + Up and down + Вверх и вниз + + + + Down and up + Вниз и вверх + + + + Random + Случайно + + + + Free + Свободно + + + + Sort + Упорядочить + + + Sync Синхро + + + lmms::InstrumentFunctionNoteStacking - - Ring modulation - Круговая модуляция + + Chords + Аккорды - - Filtered - Фильтр. + + Chord type + Тип аккорда - - Test - Тест - - - - Pulse width: - Длина импульса + + Chord range + Диапазон аккорда - SideBarWidget + lmms::InstrumentSoundShaping - - Close - Закрыть + + Envelopes/LFOs + Огибание/LFO + + + + Filter type + Тип фильтра + + + + Cutoff frequency + Частота среза + + + + Q/Resonance + Q/Резонанс + + + + Low-pass + Пропуск низких + + + + Hi-pass + Пропуск высоких + + + + Band-pass csg + Полосовой csg + + + + Band-pass czpg + Полосовой czpg + + + + Notch + Вырез + + + + All-pass + Пропускать все + + + + Moog + Муг + + + + 2x Low-pass + 2x ФНЧ + + + + RC Low-pass 12 dB/oct + RC ФНЧ 12дБ/окт + + + + RC Band-pass 12 dB/oct + RC полосовой 12 дБ/окт + + + + RC High-pass 12 dB/oct + RC ФВЧ 12 дБ/окт + + + + RC Low-pass 24 dB/oct + RC ФНЧ 24 дБ/окт + + + + RC Band-pass 24 dB/oct + RC полосовой 24 дБ/окт + + + + RC High-pass 24 dB/oct + RC ФВЧ 24 дБ/окт + + + + Vocal Formant + Формантный + + + + 2x Moog + 2x Муг + + + + SV Low-pass + SV нижних частот + + + + SV Band-pass + SV полосовой + + + + SV High-pass + SV верхних частот + + + + SV Notch + SV Notch (вырез) + + + + Fast Formant + Быстрый формантный + + + + Tripole + Трёхполюсный - Song + lmms::InstrumentTrack - - Tempo - Темп + + + unnamed_track + дорожка без имени - - Master volume - Главная громкость + + Base note + Опорная нота - + + First note + Первая нота + + + + Last note + + + + + Volume + Громкость + + + + Panning + Баланс + + + + Pitch + Тональность + + + + Pitch range + Диапазон тональности + + + + Mixer channel + Канал микшера + + + Master pitch Основной тон - - Aborting project load + + Enable/Disable MIDI CC - - Project file contains local paths to plugins, which could be used to run malicious code. + + CC Controller %1 - - Can't load project: Project file contains local paths to plugins. - - - - - LMMS Error report - Отчет об ошибке LMMS - - - - (repeated %1 times) - - - - - The following errors occurred while loading: - Во время загрузки произошли следующие ошибки: + + + Default preset + Основная предустановка - SongEditor + lmms::Keymap - - Could not open file - Не удалось открыть файл + + empty + пусто + + + + lmms::KickerInstrument + + + Start frequency + Начальная частота - - Could not open file %1. You probably have no permissions to read this file. - Please make sure to have at least read permissions to the file and try again. - Не удалось открыть файл %1. Вероятно, у вас нет прав на его чтение. -Проверьте, есть ли у вас права на чтение этого файла и попробуйте снова. + + End frequency + Конечная частота - - Operation denied + + Length + Длина + + + + Start distortion + Начало перегруза + + + + End distortion + Конец перегруза + + + + Gain + Усиление + + + + Envelope slope + Уклон огибающей + + + + Noise + Шум + + + + Click + Щелчок + + + + Frequency slope + Уклон частоты + + + + Start from note + Начать с ноты + + + + End to note + Закончить нотой + + + + lmms::LOMMControls + + + Depth - - A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + Time - - - - Error - Ошибка - - - - Couldn't create bundle folder. + + Input Volume - - Couldn't create resources folder. + + Output Volume - - Failed to copy resources. + + Upward Depth - - Could not write file - Не удалось записать файл - - - - Could not open %1 for writing. You probably are not permitted towrite to this file. Please make sure you have write-access to the file and try again. + + Downward Depth - - This %1 was created with LMMS %2 + + High/Mid Split - - Error in file - Ошибка в файле + + Mid/Low Split + - - The file %1 seems to contain errors and therefore can't be loaded. - Файл %1 возможно содержит ошибки, поэтому не может загрузиться. + + Enable High/Mid Split + - - Version difference - Различия версий + + Enable Mid/Low Split + - - template - шаблон + + Enable High Band + - - project - проект + + Enable Mid Band + - + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + Связать каналы + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + Запрошен неизвестный плагин LADSPA %1. + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + Частота среза VCF + + + + VCF Resonance + Резонанс VCF + + + + VCF Envelope Mod + Мод Огибающей VCF + + + + VCF Envelope Decay + Спад огибающей VCF + + + + Distortion + Перегруз + + + + Waveform + Форма волны + + + + Slide Decay + Сдвиг спада + + + + Slide + Сдвиг + + + + Accent + Акцент + + + + Dead + Глухо + + + + 24dB/oct Filter + 24дБ/окт фильтр + + + + lmms::LfoController + + + LFO Controller + Контроллер LFO + + + + Base value + Опорное значение + + + + Oscillator speed + Скорость волны + + + + Oscillator amount + Размер волны + + + + Oscillator phase + Фаза волны + + + + Oscillator waveform + Форма волны + + + + Frequency Multiplier + Множитель частоты + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + Жёсткость + + + + Position + Позиция + + + + Vibrato gain + Усиление вибрато + + + + Vibrato frequency + Частота вибрато + + + + Stick mix + + + + + Modulator + Модулятор + + + + Crossfade + Переход + + + + LFO speed + Скорость LFO + + + + LFO depth + Глубина LFO + + + + ADSR + ADSR + + + + Pressure + Давление + + + + Motion + Движение + + + + Speed + Скорость + + + + Bowed + Наклон + + + + Instrument + + + + + Spread + Разброс + + + + Randomness + + + + + Marimba + Маримба + + + + Vibraphone + Вибрафон + + + + Agogo + Агого + + + + Wood 1 + Дерево 1 + + + + Reso + Резо + + + + Wood 2 + Дерево 2 + + + + Beats + Удары + + + + Two fixed + Два постоянно + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + Стекло + + + + Tibetan bowl + Тибетская чаша + + + + lmms::MeterModel + + + Numerator + Число долей + + + + Denominator + Длительность доли + + + + lmms::Microtuner + + + Microtuner + Микротюнер + + + + Microtuner on / off + Микротюнер вкл/выкл + + + + Selected scale + Выбранный масштаб + + + + Selected keyboard mapping + Выбранная раскладка клавиатуры + + + + lmms::MidiController + + + MIDI Controller + Контроллер MIDI + + + + unnamed_midi_controller + MIDI-контроллер без имени + + + + lmms::MidiImport + + + + Setup incomplete + Установка не завершена + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + Вы не установили основной SoundFont в настройках (Правка -> Параметры). Поэтому звук не будет воспроизводиться после импортирования этого MIDI-файла. Вам следует загрузить General MIDI SoundFont, определить его в настройках и попробовать снова. + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + Вы не включили поддержку проигрывателя SoundFont2 при компиляции LMMS, он используется для добавления основного звука в импортируемые MIDI-файлы, поэтому звука не будет после импорта этого MIDI-файла. + + + + MIDI Time Signature Numerator + Число долей времени MIDI + + + + MIDI Time Signature Denominator + Длительность доли времени MIDI + + + + Numerator + Число долей + + + + Denominator + Длительность доли + + + + Tempo Темп - - TEMPO - ТЕМП - - - - Tempo in BPM - Темп в BPM - - - - High quality mode - Высокое качество - - - - - - Master volume - Главная громкость - - - - - - Master pitch - Основной тон - - - - Value: %1% - Значение: %1% - - - - Value: %1 semitones - Полутонов: %1 + + Track + Дорожка - SongEditorWindow + lmms::MidiJack - - Song-Editor - Композитор + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + Cервер JACK выключен - - Play song (Space) - Играть песню (пробел) - - - - Record samples from Audio-device - Записать сэмпл со звукового устройства - - - - Record samples from Audio-device while playing song or BB track - Записать сэмпл с аудио-устройства во время воспроизведения -в музыкальном или ритм/бас редакторе - - - - Stop song (Space) - Остановить песню (пробел) - - - - Track actions - Панель трека - - - - Add beat/bassline - Добавить ритм/бас - - - - Add sample-track - Добавить дорожку записи - - - - Add automation-track - Добавить дорожку автоматизации - - - - Edit actions - Панель правки - - - - Draw mode - Режим рисования - - - - Knife mode (split sample clips) - - - - - Edit mode (select and move) - Режим исправлений (выбирать и двигать) - - - - Timeline controls - Контроль таймлайна - - - - Bar insert controls - - - - - Insert bar - - - - - Remove bar - - - - - Zoom controls - Управление приближением. - - - - Horizontal zooming - Горизонтальное приближение - - - - Snap controls - Контроль выравнивания - - - - - Clip snapping size - Ограничить размер выравнивания - - - - Toggle proportional snap on/off - Вкл./выкл. пропорциональное выравнивание - - - - Base snapping size - Базовый размер выравнивания + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + JACK-сервер, похоже, не запущен. - StepRecorderWidget + lmms::MidiPort - - Hint - Подсказка + + Input channel + Канал входа - - Move recording curser using <Left/Right> arrows - Двигать курсор записи стрелками влево-вправо + + Output channel + Канал выхода + + + + Input controller + Контроллер входа + + + + Output controller + Контроллер выхода + + + + Fixed input velocity + Постоянная скорость ввода + + + + Fixed output velocity + Постоянная скорость вывода + + + + Fixed output note + Постоянный вывод нот + + + + Output MIDI program + Программа для вывода MIDI + + + + Base velocity + Базовая скорость + + + + Receive MIDI-events + Принимать события MIDI + + + + Send MIDI-events + Отправлять события MIDI - SubWindow + lmms::Mixer - - Close - Закрыть + + Master + Главный - - Maximize - Развернуть + + + + Channel %1 + Канал %1 - - Restore - Восстановить - - - - TabWidget - - - - Settings for %1 - Настройки для %1 - - - - TemplatesMenu - - - New from template - Создать на основе шаблона - - - - TempoSyncKnob - - - - Tempo Sync - Синхронизация темпа + + Volume + Громкость - - No Sync - Без синхронизации - - - - Eight beats - Восемь ударов - - - - Whole note - Целая нота - - - - Half note - Половинная нота - - - - Quarter note - Четвертная нота - - - - 8th note - Восьмая нота - - - - 16th note - 1/16 нота - - - - 32nd note - 1/32 нота - - - - Custom... - Своя... - - - - Custom - Своя - - - - Synced to Eight Beats - Синхро по 8 ударам - - - - Synced to Whole Note - Синхро по целой ноте - - - - Synced to Half Note - Синхро по половинной ноте - - - - Synced to Quarter Note - Синхро по четвертной ноте - - - - Synced to 8th Note - Синхро по 1/8 ноте - - - - Synced to 16th Note - Синхро по 1/16 ноте - - - - Synced to 32nd Note - Синхро по 1/32 ноте - - - - TimeDisplayWidget - - - Time units - Единицы времени - - - - MIN - МИН - - - - SEC - СЕК - - - - MSEC - мСЕК - - - - BAR - ДЕЛЕНИЕ - - - - BEAT - БИТ - - - - TICK - ТИК - - - - TimeLineWidget - - - Auto scrolling - Авто-перемотка - - - - Loop points - Точки петли - - - - After stopping go back to beginning - После остановки возвращаться в начало - - - - After stopping go back to position at which playing was started - После остановки переходить к месту, с которого началось воспроизведение - - - - After stopping keep position - Оставаться на месте остановки - - - - Hint - Подсказка - - - - Press <%1> to disable magnetic loop points. - Нажмите <%1>, чтобы убрать прилипание точек петли. - - - - Track - - + Mute Заглушить - + Solo Соло - TrackContainer + lmms::MixerRoute - - Couldn't import file - Не удалось импортировать файл + + + Amount to send from channel %1 to channel %2 + Величина отправки с канала %1 на канал %2 + + + + lmms::MonstroInstrument + + + Osc 1 volume + - + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + Синусоида + + + + Bandlimited Triangle wave + Тембр. треугольная волна + + + + Bandlimited Saw wave + Тембр. пило-волна + + + + Bandlimited Ramp wave + Тембр. пологая волна + + + + Bandlimited Square wave + Тембр. квадратная волна + + + + Bandlimited Moog saw wave + Тембр. Муг пило-волна + + + + + Soft square wave + Сглаженная квадратная волна + + + + Absolute sine wave + Идеальная синусоида + + + + + Exponential wave + Экспоненциальная волна + + + + White noise + Белый шум + + + + Digital Triangle wave + Цифровая треугольная волна + + + + Digital Saw wave + Цифровая пило-волна + + + + Digital Ramp wave + Цифровая пологая волна + + + + Digital Square wave + Цифровая квадратная волна + + + + Digital Moog saw wave + Цифровая Муг пило-волна + + + + Triangle wave + Треугольная волна + + + + Saw wave + Пилообразная волна + + + + Ramp wave + Пологая волна + + + + Square wave + Квадратная волна + + + + Moog saw wave + Муг пило-волна + + + + Abs. sine wave + Идеальная синусоида + + + + Random + Случайно + + + + Random smooth + Случайное сглаживание + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + Грубая подстройка канала 1 + + + + Channel 1 volume + Громкость 1 канала + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + Длительность огибающей канала 1 + + + + Channel 1 duty cycle + Рабочий цикл канала 1 + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + Уровень колебаний канала 1 + + + + Channel 1 sweep rate + Частота колебаний канала 1 + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + Длительность огибающей канала 2 + + + + Channel 2 duty cycle + Рабочий цикл канала 2 + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + Уровень колебаний канала 2 + + + + Channel 2 sweep rate + Частота колебаний канала 2 + + + + Channel 3 enable + + + + + Channel 3 coarse detune + Грубая подстройка канала 3 + + + + Channel 3 volume + Громкость 3 канала + + + + Channel 4 enable + + + + + Channel 4 volume + Громкость 4 канала + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + Длительность огибающей канала 4 + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + Частота шума канала 4 + + + + Channel 4 noise frequency sweep + Частота помех колебаний канала 4 + + + + Channel 4 quantize + + + + + Master volume + Главная громкость + + + + Vibrato + Вибрато + + + + lmms::OpulenzInstrument + + + Patch + Патч + + + + Op 1 attack + Оп 1 атака + + + + Op 1 decay + Оп 1 спад + + + + Op 1 sustain + Оп 1 выдержка + + + + Op 1 release + Оп 1 затухание + + + + Op 1 level + Оп 1 уровень + + + + Op 1 level scaling + Оп 1 увеличение уровня + + + + Op 1 frequency multiplier + Оп 1 множитель частоты + + + + Op 1 feedback + Оп 1 возврат + + + + Op 1 key scaling rate + Оп 1 скорость увеличения нот + + + + Op 1 percussive envelope + Оп 1 огибающая ударников + + + + Op 1 tremolo + Оп 1 тремоло + + + + Op 1 vibrato + Оп 1 вибрато + + + + Op 1 waveform + Оп 1 форма волны + + + + Op 2 attack + Оп 2 атака + + + + Op 2 decay + Оп 2 спад + + + + Op 2 sustain + Оп 2 выдержка + + + + Op 2 release + Оп 2 затухание + + + + Op 2 level + Оп 2 уровень + + + + Op 2 level scaling + Оп 2 увеличение уровня + + + + Op 2 frequency multiplier + Оп 2 множитель частоты + + + + Op 2 key scaling rate + Оп 2 скорость увеличения нот + + + + Op 2 percussive envelope + Оп 2 огибающая ударников + + + + Op 2 tremolo + Оп 2 Тремоло + + + + Op 2 vibrato + Оп 2 Вибрато + + + + Op 2 waveform + Оп 2 Волна + + + + FM + FM + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + Перегруз + + + + Volume + Громкость + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + Атака + + + + Release + Затухание + + + + Treshold + Порог + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain + + + + + Size + Размер + + + + Color + Цвет + + + + Output gain + + + + + lmms::SaControls + + + Pause + Пауза + + + + Reference freeze + + + + + Waterfall + Спад + + + + Averaging + Усреднение + + + + Stereo + Стерео + + + + Peak hold + + + + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type + + + + + Peak envelope resolution + + + + + Spectrum display resolution + + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + + + + + + + Audible + Слышимые + + + + Bass + Басы + + + + Mids + Средние + + + + High + Высокие + + + + Extended + Расширенно + + + + Loud + Громкие + + + + Silent + Тихие + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + Хэмминг (Сглажив) + + + + Hanning + Хэннинга (Сглажив) + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + Громкость + + + + Panning + Баланс + + + + Mixer channel + + + + + + Sample track + + + + + lmms::Scale + + + empty + пусто + + + + lmms::Sf2Instrument + + + Bank + Банк + + + + Patch + Патч + + + + Gain + Усиление + + + + Reverb + Реверберация + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + Хорус + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + Волна + + + + lmms::SidInstrument + + + Cutoff frequency + + + + + Resonance + Резонанс + + + + Filter type + + + + + Voice 3 off + + + + + Volume + Громкость + + + + Chip model + + + + + lmms::SlicerT + + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + + + + + lmms::Song + + + Tempo + Темп + + + + Master volume + + + + + Master pitch + + + + + Aborting project load + + + + + Project file contains local paths to plugins, which could be used to run malicious code. + + + + + Can't load project: Project file contains local paths to plugins. + + + + + LMMS Error report + + + + + (repeated %1 times) + + + + + The following errors occurred while loading: + + + + + lmms::StereoEnhancerControls + + + Width + Ширина + + + + lmms::StereoMatrixControls + + + Left to Left + + + + + Left to Right + + + + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + Заглушить + + + + Solo + Соло + + + + lmms::TrackContainer + + + Couldn't import file + + + + Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software. - Не удалось найти фильтр для импорта файла %1. -Преобразуйте его в формат, поддерживаемый LMMS, используя стороннее ПО. + - + Couldn't open file - Не удалось открыть файл + - + Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! - Не удалось открыть файл %1 для записи. -Проверьте, обладаете ли вы правами на чтение файла и содержащий его каталог и попробуйте снова! + - + Loading project... - Загрузка проекта... + - - + + Cancel Отмена - - + + Please wait... - Подождите, пожалуйста... + - + Loading cancelled - Загрузка отменена. + - + Project loading was cancelled. - Загрузка проекта была отменена. + - + Loading Track %1 (%2/Total %3) - Загружается дорожка %1 (%2 из %3) + - + Importing MIDI-file... - Импортирую файл MIDI... + - Clip + lmms::TripleOscillator - - Mute - Заглушить + + Sample not found + - ClipView + lmms::VecControls - + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + .fxp + + + + .FXP + .FXP + + + + .FXB + .FXB + + + + .fxb + .fxb + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + A1 + + + + A2 + A2 + + + + A3 + A3 + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + Портаменто + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + Полоса пропускания + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + Граф + + + + lmms::gui::AmplifierControlDialog + + + VOL + ГРОМК + + + + Volume: + Громкость: + + + + PAN + БАЛ + + + + Panning: + Баланс: + + + + LEFT + СЛЕВА + + + + Left gain: + + + + + RIGHT + СПРАВА + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + Усиление: + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + Очистить + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + Жёсткость: + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + Квантование + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + ЧАСТ + + + + Frequency: + Частота: + + + + GAIN + УСИЛ + + + + Gain: + Усиление: + + + + RATIO + ОТНОШ + + + + Ratio: + Отношение: + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + Интерполяция + + + + Normalize + Нормализовать + + + + lmms::gui::BitcrushControlDialog + + + IN + ВХ + + + + OUT + ВЫХ + + + + + GAIN + УСИЛ + + + + Input gain: + + + + + NOISE + ШУМ + + + + Input noise: + + + + + Output gain: + + + + + CLIP + СРЕЗ + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + ЧАСТ + + + + Sample rate: + + + + + STEREO + СТЕРЕО + + + + Stereo difference: + + + + + QUANT + КВАНТ + + + + Levels: + Уровни: + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + Поиск.. + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + Current position - Текущая позиция + - + Current length - Текущая длительность + - - + + %1:%2 (%3:%4 to %5:%6) - %1:%2 (от %3:%4 до %5:%6) + - + Press <%1> and drag to make a copy. - Удерживайте <%1> при перетаскивании, чтобы создать копию. + - + Press <%1> for free resizing. - Для свободного изменения размера нажмите <%1>. + - + Hint Подсказка - + Delete (middle mousebutton) - Удалить (средняя кнопка мыши) + - + Delete selection (middle mousebutton) - Удалить выделенное (средняя кнопка мыши) + - + Cut Вырезать - + Cut selection - Вырезать выделенное + - + Merge Selection - + Copy Копировать - + Copy selection - Копировать выделенное + - + Paste Вставить - + Mute/unmute (<%1> + middle click) - Тихо/громко (<%1> + щелчок средней кнопкой) + - + Mute/unmute selection (<%1> + middle click) - Отключить или включить звук для выделенного (<%1> + средняя кнопка мыши) + - - Set clip color - Установить цвет клипа + + Clip color + - - Use track color - Использовать цвет дорожки + + Change + Изменить + + + + Reset + Сброс + + + + Pick random + - TrackContentWidget + lmms::gui::CompressorControlDialog - + + Threshold: + Пороговый уровень: + + + + Volume at which the compression begins to take place + + + + + Ratio: + Отношение: + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + Атака: + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + Затухание: + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + Диапазон: + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + Удержание: + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + Микс: + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + Усиление + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + Пик + + + + Use absolute value of the input + + + + + Left/Right + Левый/правый + + + + Compress left and right audio + + + + + Mid/Side + Середина/стороны + + + + Compress mid and side audio + + + + + Compressor + Компрессор + + + + Compress the audio + + + + + Limiter + Лимитер + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + Максимум + + + + Compress based on the loudest channel + + + + + Average + Среднее + + + + Compress based on the averaged channel volume + + + + + Minimum + Минимум + + + + Compress based on the quietest channel + + + + + Blend + Смешать + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + КАНАЛ + + + + Input controller + + + + + CONTROLLER + КОНТРОЛЛЕР + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + ОК + + + + Cancel + Отмена + + + + LMMS + LMMS + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + Добавить + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + Контроль + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + ГНЧ + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + ЗАДЕРЖ + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + ЧАСТ + + + + LFO frequency + + + + + AMNT + ГЛУБ + + + + LFO amount + + + + + Out gain + + + + + Gain + Усиление + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + ЧАСТ + + + + + Cutoff frequency + + + + + + RESO + РЕЗО + + + + + Resonance + Резонанс + + + + + GAIN + УСИЛ + + + + + Gain + Усиление + + + + MIX + МИКС + + + + Mix + Микс + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + ВХОД + + + + Input gain: + + + + + OUTPUT + ВЫХОД + + + + Output gain: + + + + + ATTACK + АТАКА + + + + Peak attack time: + + + + + RELEASE + ЗАТУХАНИЕ + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + Запись + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + Имя + + + + Type + Тип + + + + All + + + + + Search + + + + + Description + Описание + + + + Author + Автор + + + + lmms::gui::EffectView + + + On/Off + Вкл/Выкл + + + + W/D + + + + + Wet Level: + + + + + DECAY + СПАД + + + + Time: + Время: + + + + GATE + ПОРОГ + + + + Gate: + Порог: + + + + Controls + Контроль + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + КОЛ + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + Предзадержка: + + + + + ATT + АТАК + + + + + Attack: + Атака: + + + + HOLD + УДЕРЖ + + + + Hold: + Удержание: + + + + DEC + СПАД + + + + Decay: + Спад: + + + + SUST + ВЫДЕРЖ + + + + Sustain: + Выдержка: + + + + REL + ЗАТУХ + + + + Release: + Затухание: + + + + SPD + СКРСТ + + + + Frequency: + Частота: + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + Подсказка + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + ВЧ + + + + Low-shelf + Уровень низких + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + Уровень высоких + + + + LP + НЧ + + + + Input gain + + + + + + + Gain + Усиление + + + + Output gain + + + + + Bandwidth: + Полоса пропускания: + + + + Octave + Октава + + + + Resonance: + + + + + Frequency: + Частота: + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + Резон: + + + + BW: + ДИАП: + + + + + Freq: + Част: + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + Ошибка + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + Проводник + + + + Search + Поиск + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + Ошибка + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + ЗАДЕРЖ + + + + Delay time: + + + + + RATE + ЧАСТ + + + + Period: + Период: + + + + AMNT + ВЕЛИЧ + + + + Amount: + Величина: + + + + PHASE + ФАЗА + + + + Phase: + Фаза: + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + ШУМ + + + + White noise amount: + + + + + Invert + Инвертировать + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + Верхние: + + + + Treble + Верхние + + + + Bass: + Нижние: + + + + Bass + Нижние + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + Усиление: + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + ARPEGGIO + + + + RANGE + ДИАП + + + + Arpeggio range: + + + + + octave(s) + октав(а/ы) + + + + REP + + + + + Note repeats: + + + + + time(s) + время + + + + CYCLE + ЦИКЛ + + + + Cycle notes: + + + + + note(s) + нота(ы) + + + + SKIP + ПРОПУСК + + + + Skip rate: + + + + + + + % + % + + + + MISS + + + + + Miss rate: + + + + + TIME + ВРЕМЯ + + + + Arpeggio time: + + + + + ms + мс + + + + GATE + ПОРОГ + + + + Arpeggio gate: + + + + + Chord: + Аккорд: + + + + Direction: + Направление: + + + + Mode: + Режим: + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + СКЛАДЫВ. + + + + Chord: + Аккорд: + + + + RANGE + ДИАП + + + + Chord range: + + + + + octave(s) + октав(а/ы) + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + УСКОР. + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + НОТА + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + РАЗМЕТКА + + + + FILTER + ФИЛЬТР + + + + FREQ + ЧАСТ + + + + Cutoff frequency: + + + + + Hz + Гц + + + + Q/RESO + УР/РЕЗО + + + + Q/Resonance: + УР/Резонанса: + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + Громкость + + + + Volume: + Громкость: + + + + VOL + ГРОМК + + + + Panning + Баланс + + + + Panning: + Баланс: + + + + PAN + БАЛ + + + + MIDI + MIDI + + + + Input + Вход + + + + Output + Выход + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + Громкость + + + + Volume: + Громкость: + + + + VOL + ГРОМК + + + + Panning + Баланс + + + + Panning: + Баланс: + + + + PAN + БАЛ + + + + Pitch + Тональность + + + + Pitch: + Тональность: + + + + cents + цент[а,ов] + + + + PITCH + ТОН + + + + Pitch range (semitones) + + + + + RANGE + ДИАП + + + + Mixer channel + + + + + CHANNEL + КАНАЛ + + + + Save current instrument track settings in a preset file + + + + + SAVE + СОХРАНИТЬ + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + Эффекты + + + + MIDI + MIDI + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + Плагин + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + Усиление: + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + Щелчок: + + + + Noise: + Шум: + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + Инструменты + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + Тип: + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + Канал + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + Значение: + + + + lmms::gui::LadspaDescription + + + Plugins + Плагины + + + + Description + Описание + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + Порты + + + + Name + Имя + + + + Rate + Частота + + + + Direction + Направление + + + + Type + Тип + + + + Min < Default < Max + + + + + Logarithmic + Логарифмический + + + + SR Dependent + + + + + Audio + Аудио + + + + Control + Контроль + + + + Input + Вход + + + + Output + Выход + + + + Toggled + Включено + + + + Integer + Целое + + + + Float + Дробное + + + + + Yes + Да + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + Резонанс: + + + + Env Mod: + + + + + Decay: + Спад: + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + Предыдущий + + + + + + Next + Следующий + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + ГНЧ + + + + BASE + БАЗА + + + + Base: + Основа: + + + + FREQ + ЧАСТ + + + + LFO frequency: + + + + + AMNT + ВЕЛИЧ + + + + Modulation amount: + + + + + PHS + ФАЗА + + + + Phase offset: + + + + + degrees + градусы + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + Восстановить + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + Отклонить + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + Громкости + + + + My Computer + + + + + Loading background picture + + + + + &File + &Файл + + + + &New + &Создать + + + + &Open... + &Открыть... + + + + &Save + &Сохранить + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + Импорт... + + + + E&xport... + &Экспорт... + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + &Выход + + + + &Edit + &Правка + + + + Undo + Отменить действие + + + + Redo + Вернуть действие + + + + Scales and keymaps + + + + + Settings + Настройки + + + + &View + &Вид + + + + &Tools + &Инструменты + + + + &Help + &Справка + + + + Online Help + + + + + Help + Справка + + + + About + О программе + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + Метроном + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + Громкость как dBFS + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + Позиция + + + + Position: + Позиция: + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + Модулятор + + + + Modulator: + Модулятор: + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + Устройство + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + Отправить на новую инструментальную дорожку + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + КАНАЛ + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + Настройки + + + + + General + Главное + + + + Graphical user interface (GUI) + Интерфейс + + + + Display volume as dBFS + Показывать громкость как dBFS + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + Показывать предупреждение при удалении используемого канала микшера + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + Проекты + + + + Compress project files by default + Сжимать файлы проекта по умолчанию + + + + Create a backup file when saving a project + Создать файл восстановления когда проект сохраняется + + + + Reopen last project on startup + + + + + Language + Язык + + + + + Performance + Производительность + + + + Autosave + Автосохранение + + + + Enable autosave + Включить автосохранение + + + + Allow autosave while playing + Разрешить автосохранение при воспроизведении + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + Плавная прокрутка в редакторе музыки + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + Плагины + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + Аудио + + + + Audio interface + Аудио-интерфейс + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + Каталоги плагинов LADSPA + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + ОК + + + + Cancel + Отмена + + + + minutes + минуты + + + + minute + минута + + + + Disabled + Отключено + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + Выберите каталог плагинов LADSPA + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + Выбрать фоновое изображение + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + Усиление: + + + + Apply reverb (if supported) + Применить реверберацию (если поддерживается) + + + + Room size: + Размер комнаты: + + + + Damping: + Приглушение: + + + + Width: + Ширина: + + + + + Level: + Уровень: + + + + Apply chorus (if supported) + Применить хорус (если поддерживается) + + + + Voices: + Голоса: + + + + Speed: + Скорость: + + + + Depth: + Глубина: + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + Громкость: + + + + Resonance: + Резонанс: + + + + + Cutoff frequency: + Частота среза: + + + + High-pass filter + Фильтр верхних частот + + + + Band-pass filter + Фильтр средних частот + + + + Low-pass filter + Фильтр нижних частот + + + + Voice 3 off + Голос 3 откл. + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + Атака: + + + + + Decay: + Спад: + + + + Sustain: + Выдержка: + + + + + Release: + Затухание: + + + + Pulse Width: + Длина импульса: + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + Шум + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + Тест + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + Закрыть + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + Ошибка + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + Ошибка в файле + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + + + + + Draw mode + Режим рисования + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + Режим исправлений (выбирать и двигать) + + + + Timeline controls + Контроль таймлайна + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + Управление приближением + + + + + Zoom + Масштаб + + + + Snap controls + Контроль выравнивания + + + + + Clip snapping size + Ограничить размер выравнивания + + + + Toggle proportional snap on/off + Вкл./выкл. пропорциональное выравнивание + + + + Base snapping size + Базовый размер выравнивания + + + + lmms::gui::StepRecorderWidget + + + Hint + Подсказка + + + + Move recording curser using <Left/Right> arrows + Двигать курсор записи стрелками влево-вправо + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + ШИРИНА + + + + Width: + Ширина: + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + От левого на левый: + + + + Left to Right Vol: + От левого на правый: + + + + Right to Left Vol: + От правого на левый: + + + + Right to Right Vol: + От правого на правый: + + + + lmms::gui::SubWindow + + + Close + Закрыть + + + + Maximize + Развернуть + + + + Restore + Восстановить + + + + lmms::gui::TapTempoView + + + 0 + + + + + + Precision + Точность + + + + Display in high precision + Отображение с высокой точностью + + + + 0.0 ms + + + + + Mute metronome + Выключить метроном + + + + Mute + Заглушить + + + + BPM in milliseconds + BPM в миллисекундах + + + + 0 ms + + + + + Frequency of BPM + Частота BPM + + + + 0.0000 hz + + + + + Reset + Сброс + + + + Reset counter and sidebar information + Сбросить счетчик и информацию на боковой панели + + + + Sync + + + + + Sync with project tempo + Синхронизация с темпом проекта + + + + %1 ms + + + + + %1 hz + + + + + lmms::gui::TemplatesMenu + + + New from template + + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + Своя... + + + + Custom + Своя + + + + Synced to Eight Beats + Синхро по 8 ударам + + + + Synced to Whole Note + Синхро по целой ноте + + + + Synced to Half Note + Синхро по половинной ноте + + + + Synced to Quarter Note + Синхро по четвертной ноте + + + + Synced to 8th Note + Синхро по 1/8 ноте + + + + Synced to 16th Note + Синхро по 1/16 ноте + + + + Synced to 32nd Note + Синхро по 1/32 ноте + + + + lmms::gui::TimeDisplayWidget + + + Time units + Единицы времени + + + + MIN + МИН + + + + SEC + СЕК + + + + MSEC + мСЕК + + + + BAR + ДЕЛЕНИЕ + + + + BEAT + БИТ + + + + TICK + ТИК + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + Авто-перемотка + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + Точки петли + + + + After stopping go back to beginning + После остановки возвращаться в начало + + + + After stopping go back to position at which playing was started + После остановки переходить к месту, с которого началось воспроизведение + + + + After stopping keep position + Оставаться на месте остановки + + + + Hint + Подсказка + + + + Press <%1> to disable magnetic loop points. + Нажмите <%1>, чтобы убрать прилипание точек петли. + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + Paste Вставить - TrackOperationsWidget + lmms::gui::TrackOperationsWidget - + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. Удерживайте нажатой клавишу <%1> при щелчке по захвату перемещения, чтобы начать новое перетаскивание. @@ -13489,248 +17741,240 @@ Please make sure you have read-permission to the file and the directory containi Соло - + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? - + Удалённый трек будет невозможно восстановить. Удалить трек «%1»? - + Confirm removal - + Подтвердить удаление - + Don't ask again - + Больше не спрашивать - + Clone this track Клонировать дорожку - + Remove this track Удалить дорожку - + Clear this track Очистить эту дорожку - + Channel %1: %2 - ЭФ %1: %2 + Канал %1: %2 - - Assign to new mixer Channel - Назначить на другой канал ЭФфектов + + Assign to new Mixer Channel + Назначить на новый канал микшера - + Turn all recording on Включить всё на запись - + Turn all recording off Выключить всю запись + + + Track color + Цвет дорожки + - Change color - Изменить цвет + Change + Изменить + + + + Reset + Сброс - Reset color to default - Установить цвет по умолчанию + Pick random + Выбрать случайно - Set random color - Выбрать случайный цвет - - - - Clear clip colors - Очистить цвета клипа + Reset clip colors + Сбросить цвета клипа - TripleOscillatorView + lmms::gui::TripleOscillatorView - + Modulate phase of oscillator 1 by oscillator 2 Модулировать фазу осциллятора 1 сигналом с 2 - + Modulate amplitude of oscillator 1 by oscillator 2 Модулировать амплитуду осциллятора 1 сигналом с 2 - + Mix output of oscillators 1 & 2 Смешать выход осцилляторов 1 и 2 - + Synchronize oscillator 1 with oscillator 2 Синхронизировать осциллятор 1 с осц 2 - + Modulate frequency of oscillator 1 by oscillator 2 Модулировать частоту осциллятора 1 сигналом с 2 - + Modulate phase of oscillator 2 by oscillator 3 Модулировать фазу осциллятора 2 сигналом с 3 - + Modulate amplitude of oscillator 2 by oscillator 3 Модулировать амплитуду осциллятора 2 сигналом с 3 - + Mix output of oscillators 2 & 3 Смешать выход осцилляторов 2 и 3 - + Synchronize oscillator 2 with oscillator 3 Синхронизировать осциллятор 2 с осц 3 - + Modulate frequency of oscillator 2 by oscillator 3 Модулировать частоту осциллятора 2 сигналом с 3 - + Osc %1 volume: Громкость осц %1: - + Osc %1 panning: Баланс осц %1: - + Osc %1 coarse detuning: Грубая подстройка осц %1: - + semitones - полутон[а,ов] + полутона - + Osc %1 fine detuning left: Точная подстройка осц %1 слева: - - + + cents цент[а,ов] - + Osc %1 fine detuning right: Точная подстройка осц %1 справа: - + Osc %1 phase-offset: Сдвиг фазы осц %1: - - + + degrees ° - + Osc %1 stereo phase-detuning: Подстройка стерео-фазы осциллятора %1: - + Sine wave Синусоида - + Triangle wave Треугольная волна - + Saw wave - Пило-волна + Пилообразная волна - + Square wave - Квадрат-волна + Квадратная волна - + Moog-like saw wave Типа муг пило-волна - + Exponential wave Экспоненциальная волна - + White noise Белый шум - + User-defined wave - Своя волна + Пользовательская волна + + + + Use alias-free wavetable oscillators. + - VecControls - - - Display persistence amount - - - - - Logarithmic scale - Логарифмическая шкала - - - - High quality - Высокое качество - - - - VecControlsDialog - - - HQ - - + lmms::gui::VecControlsDialog + HQ + HQ + + + Double the resolution and simulate continuous analog-like trace. Удвоить разрешение и смоделировать непрерывное аналоговое отслеживание. @@ -13745,2618 +17989,782 @@ Please make sure you have read-permission to the file and the directory containi Отображать амплитуду на логарифмической шкале, чтобы лучше видеть маленькие значения. - + Persist. - + Trace persistence: higher amount means the trace will stay bright for longer time. - + Trace persistence - VersionedSaveDialog + lmms::gui::VersionedSaveDialog - + Increment version number Увеличить номер версии - + Decrement version number Уменьшить номер версии - + Save Options Параметры сохранения - + already exists. Do you want to replace it? уже существует. Заменить? - VestigeInstrumentView + lmms::gui::VestigeInstrumentView - - + + Open VST plugin Открыть VST-плагин - + Control VST plugin from LMMS host Контроль VST-модуля из хоста LMMS - + Open VST plugin preset Открыть пресет VST-плагина - + Previous (-) Предыдущий (−) - + Save preset - Сохранить настройку + Сохранить пресет - + Next (+) Следующий (+) - + Show/hide GUI Показать/скрыть интерфейс - + Turn off all notes Выключить все ноты - + DLL-files (*.dll) Библиотеки DLL (*.dll) - + EXE-files (*.exe) Программы EXE (*.exe) - + + SO-files (*.so) + Файлы SO (*.so) + + + No VST plugin loaded Нет загруженного VST-модуля - + Preset Предустановка - + by от - + - VST plugin control - управление VST-плагином - VstEffectControlDialog + lmms::gui::VibedView - + + Enable waveform + Включить форму волны + + + + + Smooth waveform + Сгладить волну + + + + + Normalize waveform + Нормализовать форму волны + + + + + Sine wave + Синусоида + + + + + Triangle wave + Треугольная волна + + + + + Saw wave + Пилообразная волна + + + + + Square wave + Квадратная волна + + + + + White noise + Белый шум + + + + + User-defined wave + Пользовательская волна + + + + String volume: + Громкость струны: + + + + String stiffness: + Натяжение струны: + + + + Pick position: + Выберите позицию: + + + + Pickup position: + Положение звукоснимателя: + + + + String panning: + Стерео-баланс струны: + + + + String detune: + Подстройка струны: + + + + String fuzziness: + Расплывчатость струны: + + + + String length: + Длина струны: + + + + Impulse Editor + Редактор импульса + + + + Impulse + Импульс + + + + Enable/disable string + Включить/отключить струну + + + + Octave + Октава + + + + String + Струна + + + + lmms::gui::VstEffectControlDialog + + Show/hide Показать/скрыть - + Control VST plugin from LMMS host Контроль VST-модуля из хоста LMMS - + Open VST plugin preset Открыть пресет VST-плагина - + Previous (-) Предыдущий (−) - + Next (+) Следующий (+) - + Save preset - Сохранить настройку + Сохранить пресет - - + + Effect by: - Эффекты по: + Эффекты от: - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - VstPlugin + lmms::gui::WatsynView - - - The VST plugin %1 could not be loaded. - VST-плагин %1 не загружается. - - - - Open Preset - Открыть предустановку - - - - - Vst Plugin Preset (*.fxp *.fxb) - Предустановка VST-плагина (*.fxp *.fxb) - - - - : default - : основные - - - - Save Preset - Сохранить настройку - - - - .fxp - .fxp - - - - .FXP - .FXP - - - - .FXB - .FXB - - - - .fxb - .fxb - - - - Loading plugin - Загрузка плагина - - - - Please wait while loading VST plugin... - Пожалуйста, подождите пока грузится VST-плагин... - - - - WatsynInstrument - - - Volume A1 - Громкость А1 - - - - Volume A2 - Громкость А2 - - - - Volume B1 - Громкость B1 - - - - Volume B2 - Громкость B2 - - - - Panning A1 - Панорама А1 - - - - Panning A2 - Панорама А2 - - - - Panning B1 - Панорама В1 - - - - Panning B2 - Панорама В2 - - - - Freq. multiplier A1 - Множитель частоты А1 - - - - Freq. multiplier A2 - Множитель частоты А2 - - - - Freq. multiplier B1 - Множитель частоты B1 - - - - Freq. multiplier B2 - Множитель частоты B2 - - - - Left detune A1 - Подстройка левого А1 - - - - Left detune A2 - Подстройка левого A2 - - - - Left detune B1 - Подстройка левого B1 - - - - Left detune B2 - Подстройка левого B2 - - - - Right detune A1 - Подстройка правого A1 - - - - Right detune A2 - Подстройка правого A2 - - - - Right detune B1 - Подстройка правого B1 - - - - Right detune B2 - Подстройка правого B2 - - - - A-B Mix - Микс A-B - - - - A-B Mix envelope amount - Уровень A-B микса огибающей - - - - A-B Mix envelope attack - Атака A-B микса огибающей - - - - A-B Mix envelope hold - Удержание A-B микса огибающей - - - - A-B Mix envelope decay - Спад A-B микса огибающей - - - - A1-B2 Crosstalk - Смешивание A1-B2 - - - - A2-A1 modulation - A2-A1 Модуляция - - - - B2-B1 modulation - B2-B1 Модуляция - - - - Selected graph - Выбранный график - - - - WatsynView - - - - - + + + + Volume Громкость - - - - + + + + Panning Баланс - - - - + + + + Freq. multiplier Множитель частоты - - - - + + + + Left detune Подстройка слева + + + + + + - - - - - - cents центы - - - - + + + + Right detune Подстройка справа - + A-B Mix Микс A-B - + Mix envelope amount Уровень огибающей микса - + Mix envelope attack Атака огибающей микса - + Mix envelope hold Удержание огибающей микса - + Mix envelope decay Спад огибающей микса - + Crosstalk Смешивание - + Select oscillator A1 Выбрать генератор А1 - + Select oscillator A2 Выбрать генератор А2 - + Select oscillator B1 Выбрать генератор В1 - + Select oscillator B2 Выбрать генератор В2 - + Mix output of A2 to A1 Смешать выход А2 с А1 - + Modulate amplitude of A1 by output of A2 Модулировать амплитуду A1 выходом с A2 - + Ring modulate A1 and A2 Кольцевая модуляция A1 и A2 - + Modulate phase of A1 by output of A2 Модулировать фазу A1 выходом с A2 - + Mix output of B2 to B1 Смешать выход из B2 в B1 - + Modulate amplitude of B1 by output of B2 Модулировать амплитуду B1 выходом с B2 - + Ring modulate B1 and B2 Кольцевая модуляция B1 и B2 - + Modulate phase of B1 by output of B2 Модулировать фазу B1 выходом с B2 - - - - + + + + Draw your own waveform here by dragging your mouse on this graph. - Нарисуйте кривую сигнала, двигая зажатую мышь по этому графу. + Нарисуйте здесь свою собственную форму волны, перетащив мышь на этот график. - + Load waveform Загрузить форму волны - + Load a waveform from a sample file Загрузить форму волны из сэмпл-файла - + Phase left Фаза слева - + Shift phase by -15 degrees Сдвинуть фазу на -15° - + Phase right Фаза справа - + Shift phase by +15 degrees Сдвинуть фазу на +15° - - + + Normalize Нормализовать - - + + Invert Инвертировать - - + + Smooth Сгладить - - + + Sine wave Синусоида - - - + + + Triangle wave Треугольная волна - + Saw wave - Пило-волна + Пилообразная волна - - + + Square wave - Квадрат-волна + Квадратная волна - Xpressive + lmms::gui::WaveShaperControlDialog - - Selected graph - Выбранный график - - - - A1 - A1 - - - - A2 - A2 - - - - A3 - A3 - - - - W1 smoothing - Сглаживание W1 - - - - W2 smoothing - Сглаживание W2 - - - - W3 smoothing - Сглаживание W3 - - - - Panning 1 - Баланс 1 - - - - Panning 2 - Баланс 2 - - - - Rel trans - Реле перехода - - - - XpressiveView - - - Draw your own waveform here by dragging your mouse on this graph. - Нарисуйте свою форму волны двигая зажатой мышью по графу. - - - - Select oscillator W1 - Выбрать осциллятор W1 - - - - Select oscillator W2 - Выбрать осциллятор W2 - - - - Select oscillator W3 - Выбрать осциллятор W3 - - - - Select output O1 - Выбрать выход О1 - - - - Select output O2 - Выбрать выход О2 - - - - Open help window - Открыть окно справки - - - - - Sine wave - Синусоида - - - - - Moog-saw wave - Муг пило-волна - - - - - Exponential wave - Экспоненциальная волна - - - - - Saw wave - Пило-волна - - - - - User-defined wave - Своя волна - - - - - Triangle wave - Треугольная волна - - - - - Square wave - Квадрат-волна - - - - - White noise - Белый шум - - - - WaveInterpolate - Волн. интерполяция - - - - ExpressionValid - ВыражениеВерно - - - - General purpose 1: - Общего назначения 1: - - - - General purpose 2: - Общего назначения 2: - - - - General purpose 3: - Общего назначения 3: - - - - O1 panning: - O1 баланс: - - - - O2 panning: - О2 баланс: - - - - Release transition: - Переход затухания: - - - - Smoothness - Гладкость - - - - ZynAddSubFxInstrument - - - Portamento - Портаменто - - - - Filter frequency - Частота фильтра - - - - Filter resonance - Резонанс фильтра - - - - Bandwidth - Полоса пропускания - - - - FM gain - FM усиление - - - - Resonance center frequency - Частота центра резонанса - - - - Resonance bandwidth - Полоса пропуска резонанса - - - - Forward MIDI control change events - Передавать события изменений MIDI управления - - - - ZynAddSubFxView - - - Portamento: - Портаменто: - - - - PORT - PORT - - - - Filter frequency: - Частота фильтра: - - - - FREQ - FREQ - - - - Filter resonance: - Резонанс фильтра: - - - - RES - RES - - - - Bandwidth: - Полоса пропускания: - - - - BW - BW - - - - FM gain: - FM усиление: - - - - FM GAIN - FM УСИЛ - - - - Resonance center frequency: - Частоты центра резонанса: - - - - RES CF - RES CF - - - - Resonance bandwidth: - Полоса пропуска резонанса: - - - - RES BW - RES BW - - - - Forward MIDI control changes - Передавать изменения MIDI управления - - - - Show GUI - Показать интерфейс - - - - AudioFileProcessor - - - Amplify - Усиление - - - - Start of sample - Начало сэмпла - - - - End of sample - Конец сэмпла - - - - Loopback point - Точка петли - - - - Reverse sample - Перевернуть сэмпл - - - - Loop mode - Режим повтора - - - - Stutter - Запинание - - - - Interpolation mode - Режим интерполяции - - - - None - Нет - - - - Linear - Линейный - - - - Sinc - Sinc - - - - Sample not found: %1 - Сэмпл не найден: %1 - - - - BitInvader - - - Sample length - Длина сэмпла - - - - BitInvaderView - - - Sample length - Длина сэмпла - - - - Draw your own waveform here by dragging your mouse on this graph. - Здесь вы можете рисовать собственный сигнал. - - - - - Sine wave - Синусоида - - - - - Triangle wave - Треугольник - - - - - Saw wave - Пило-волна - - - - - Square wave - Квадрат (Меандр) - - - - - White noise - Белый шум - - - - - User-defined wave - Своя волна - - - - - Smooth waveform - Сгладить волну - - - - Interpolation - Интерполяция - - - - Normalize - Нормализовать - - - - DynProcControlDialog - - + INPUT ВХОД - + Input gain: Входное усиление: - + OUTPUT ВЫХОД - + Output gain: Выходное усиление: - - ATTACK - АТАКА - - - - Peak attack time: - Время пиковой атаки: - - - - RELEASE - ЗАТУХАНИЕ - - - - Peak release time: - Время затухания пика: - - - - - Reset wavegraph - Сбросить волновой график - - - - - Smooth wavegraph - Сгладить волновой график - - - - - Increase wavegraph amplitude by 1 dB - Увеличить амплитуду графика волны на 1 дБ - - - - - Decrease wavegraph amplitude by 1 dB - Уменьшить амплитуду графика волны на 1 дБ - - - - Stereo mode: maximum - Режим стерео: максимум - - - - Process based on the maximum of both stereo channels - Обработка по максимуму обоих стерео каналов - - - - Stereo mode: average - Режим стерео: средне - - - - Process based on the average of both stereo channels - Обработка по средней обоих стерео-каналов - - - - Stereo mode: unlinked - Режим стерео: раздельно - - - - Process each stereo channel independently - Обрабатывает каждый стерео-канал независимо - - - - DynProcControls - - - Input gain - Входная мощность - - - - Output gain - Выходная мощность - - - - Attack time - Время атаки - - - - Release time - Время затухания - - - - Stereo mode - Режим стерео - - - - graphModel - - - Graph - Граф - - - - KickerInstrument - - - Start frequency - Начальная частота - - - - End frequency - Конечная частота - - - - Length - Длина - - - - Start distortion - Начало перегруза - - - - End distortion - Конец перегруза - - - - Gain - Усиление - - - - Envelope slope - Уклон огибающей - - - - Noise - Шум - - - - Click - Щелчок - - - - Frequency slope - Уклон частоты - - - - Start from note - Начать с ноты - - - - End to note - Закончить нотой - - - - KickerInstrumentView - - - Start frequency: - Начальная частота: - - - - End frequency: - Конечная частота: - - - - Frequency slope: - Уклон частоты - - - - Gain: - Усиление: - - - - Envelope length: - Длина огибающей: - - - - Envelope slope: - Уклон огибающей: - - - - Click: - Щелчок: - - - - Noise: - Шум: - - - - Start distortion: - Начало перегруза: - - - - End distortion: - Конец перегруза: - - - - LadspaBrowserView - - - - Available Effects - Доступные эффекты - - - - - Unavailable Effects - Недоступные эффекты - - - - - Instruments - Инструменты - - - - - Analysis Tools - Анализаторы - - - - - Don't know - Неизвестные - - - - Type: - Тип: - - - - LadspaDescription - - - Plugins - Модули - - - - Description - Описание - - - - LadspaPortDialog - - - Ports - Порты - - - - Name - Название - - - - Rate - Частота выборки - - - - Direction - Направление - - - - Type - Тип - - - - Min < Default < Max - Меньше < Стандарт < Больше - - - - Logarithmic - Логарифмический - - - - SR Dependent - Зависимость от SR - - - - Audio - Аудио - - - - Control - Контроль - - - - Input - Ввод - - - - Output - Вывод - - - - Toggled - Включено - - - - Integer - Целое - - - - Float - Дробное - - - - - Yes - Да - - - - Lb302Synth - - - VCF Cutoff Frequency - Частота среза VCF - - - - VCF Resonance - Резонанс VCF - - - - VCF Envelope Mod - Модуляция огибающей VCF - - - - VCF Envelope Decay - Спад огибающей VCF - - - - Distortion - Перегруз - - - - Waveform - Форма сигнала - - - - Slide Decay - Сдвиг спада - - - - Slide - Сдвиг - - - - Accent - Акцент - - - - Dead - Глухо - - - - 24dB/oct Filter - 24дБ/окт фильтр - - - - Lb302SynthView - - - Cutoff Freq: - Частота среза: - - - - Resonance: - Резонанс: - - - - Env Mod: - Мод Огиб: - - - - Decay: - Спад: - - - - 303-es-que, 24dB/octave, 3 pole filter - 303-й, 24 дБ/окт., 3-полюсный фильтр - - - - Slide Decay: - Сдвиг спада: - - - - DIST: - DIST: - - - - Saw wave - Пило-волна - - - - Click here for a saw-wave. - Клик для пило волны - - - - Triangle wave - Треугольная волна - - - - Click here for a triangle-wave. - Нажать здесь для треугольной волны. - - - - Square wave - Квадрат-волна - - - - Click here for a square-wave. - Жми тут для квадрат волны. - - - - Rounded square wave - Волна скругленного квадрата - - - - Click here for a square-wave with a rounded end. - Жми тут для квадратной волны скруглённой в конце. - - - - Moog wave - Муг волна - - - - Click here for a moog-like wave. - Сгенерировать волну похожую на муг. - - - - Sine wave - Синусоида - - - - Click for a sine-wave. - Создать синусоиду. - - - - - White noise wave - Белый шум - - - - Click here for an exponential wave. - Создать экспоненциальный сигнал. - - - - Click here for white-noise. - Создать белый шум. - - - - Bandlimited saw wave - Тембр. пило-волна - - - - Click here for bandlimited saw wave. - Нажать здесь для тембр. пило-волны. - - - - Bandlimited square wave - Тембр. квадратная волна - - - - Click here for bandlimited square wave. - Нажать здесь для тембр. квадратной волны - - - - Bandlimited triangle wave - Тембр. треугольная волна - - - - Click here for bandlimited triangle wave. - Нажать здесь для тембр. треугольной волны. - - - - Bandlimited moog saw wave - Тембр. пило-волна - - - - Click here for bandlimited moog saw wave. - Нажать здесь для тембр. пило-муг (moog) волны. - - - - MalletsInstrument - - - Hardness - Жёсткость - - - - Position - Положение - - - - Vibrato gain - Усиление вибрато - - - - Vibrato frequency - Частота вибрато - - - - Stick mix - Уровень барабанных палочек - - - - Modulator - Модулятор - - - - Crossfade - Переход - - - - LFO speed - Скорость LFO - - - - LFO depth - Глубина LFO - - - - ADSR - ADSR - - - - Pressure - Давление - - - - Motion - Движение - - - - Speed - Скорость - - - - Bowed - Наклон - - - - Spread - Разброс - - - - Marimba - Маримба - - - - Vibraphone - Вибрафон - - - - Agogo - Агого - - - - Wood 1 - Дерево 1 - - - - Reso - Резо - - - - Wood 2 - Дерево 2 - - - - Beats - Удары - - - - Two fixed - Два постоянно - - - - Clump - Тяжёлая поступь - - - - Tubular bells - Трубчатые колокола - - - - Uniform bar - Одинаковый размер - - - - Tuned bar - Регулируемый размер - - - - Glass - Стекло - - - - Tibetan bowl - Тибетская чаша - - - - MalletsInstrumentView - - - Instrument - Инструмент - - - - Spread - Разброс - - - - Spread: - Разброс: - - - - Missing files - Файлы отсутствуют - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - Похоже устновка Stk прошла не полностью. Пожалуйста, убедитесь, что пакет Stk полностью установлен! - - - - Hardness - Жёсткость - - - - Hardness: - Жёсткость: - - - - Position - Положение - - - - Position: - Положение: - - - - Vibrato gain - Усиление вибрато - - - - Vibrato gain: - Усиление вибрато: - - - - Vibrato frequency - Частота вибрато - - - - Vibrato frequency: - Частота вибрато: - - - - Stick mix - Уровень барабанных палочек - - - - Stick mix: - Уровень палочек: - - - - Modulator - Модулятор - - - - Modulator: - Модулятор: - - - - Crossfade - Переход - - - - Crossfade: - Переход: - - - - LFO speed - Скорость LFO - - - - LFO speed: - Скорость LFO: - - - - LFO depth - Глубина LFO - - - - LFO depth: - Глубина LFO: - - - - ADSR - ADSR - - - - ADSR: - ADSR: - - - - Pressure - Давление - - - - Pressure: - Давление: - - - - Speed - Скорость - - - - Speed: - Скорость: - - - - ManageVSTEffectView - - - - VST parameter control - Управление VST параметрами - - - - VST sync - Синхронизация VST - - - - - Automated - Автоматизировано - - - - Close - Закрыть - - - - ManageVestigeInstrumentView - - - - - VST plugin control - Управление VST плагином - - - - VST Sync - VST синхронизация - - - - - Automated - Автоматизировано - - - - Close - Закрыть - - - - OrganicInstrument - - - Distortion - Перегруз - - - - Volume - Громкость - - - - OrganicInstrumentView - - - Distortion: - Перегруз: - - - - Volume: - Громкость: - - - - Randomise - Случайно - - - - - Osc %1 waveform: - Форма сигнала для осциллятора %1: - - - - Osc %1 volume: - Громкость осциллятора %1: - - - - Osc %1 panning: - Баланс для осциллятора %1: - - - - Osc %1 stereo detuning - Осц %1 стерео подстройка - - - - cents - сотые - - - - Osc %1 harmonic: - Осц %1 гармоника: - - - - PatchesDialog - - - Qsynth: Channel Preset - Qsynth : предустановка канала - - - - Bank selector - Выбор банка - - - - Bank - Банк - - - - Program selector - Выбор программы - - - - Patch - Патч - - - - Name - Имя - - - - OK - ОК - - - - Cancel - Отмена - - - - Sf2Instrument - - - Bank - Банк - - - - Patch - Патч - - - - Gain - Усиление - - - - Reverb - Реверберация - - - - Reverb room size - Размер помещения реверберации - - - - Reverb damping - Затухание реверберации - - - - Reverb width - Ширина реверберации - - - - Reverb level - Уровень реверберации - - - - Chorus - Хорус - - - - Chorus voices - Голоса хоруса - - - - Chorus level - Уровень хоруса - - - - Chorus speed - Скорость хоруса - - - - Chorus depth - Глубина хоруса - - - - A soundfont %1 could not be loaded. - SoundFont %1 не удаётся загрузить. - - - - Sf2InstrumentView - - - - Open SoundFont file - Открыть файл SoundFront - - - - Choose patch - Выбрать патч - - - - Gain: - Усиление: - - - - Apply reverb (if supported) - Применить эффект реверберации (если поддерживается) - - - - Room size: - Размер помещения: - - - - Damping: - Приглушение: - - - - Width: - Ширина: - - - - - Level: - Уровни: - - - - Apply chorus (if supported) - Применить эффект хорус (если поддерживается) - - - - Voices: - Голоса: - - - - Speed: - Скорость: - - - - Depth: - Емкость: - - - - SoundFont Files (*.sf2 *.sf3) - Файлы SoundFont (*.sf2 *.sf3) - - - - SfxrInstrument - - - Wave - Волна - - - - StereoEnhancerControlDialog - - - WIDTH - ШИРИНА - - - - Width: - Ширина: - - - - StereoEnhancerControls - - - Width - Ширина - - - - StereoMatrixControlDialog - - - Left to Left Vol: - От левого на левый: - - - - Left to Right Vol: - От левого на правый: - - - - Right to Left Vol: - От правого на левый: - - - - Right to Right Vol: - От правого на правый: - - - - StereoMatrixControls - - - Left to Left - От левого на левый - - - - Left to Right - От левого на правый - - - - Right to Left - От правого на левый - - - - Right to Right - От правого на правый - - - - VestigeInstrument - - - Loading plugin - Загрузка модуля - - - - Please wait while loading the VST plugin... - Подождите, пока грузится VST-плагин… - - - - Vibed - - - String %1 volume - Громкость %1 струны - - - - String %1 stiffness - Жёсткость %1 струны - - - - Pick %1 position - Лад %1 - - - - Pickup %1 position - Положение %1 звукоснимателя - - - - String %1 panning - Стерео-баланс струны %1 - - - - String %1 detune - Подстройка струны %1 - - - - String %1 fuzziness - Плавание струны: - - - - String %1 length - Длина струны %1 - - - - Impulse %1 - Импульс %1 - - - - String %1 - Струна %1 - - - - VibedView - - - String volume: - Громкость струны: - - - - String stiffness: - Натяжение струны: - - - - Pick position: - Лад: - - - - Pickup position: - Положение звукоснимателя: - - - - String panning: - Стерео-баланс струны: - - - - String detune: - Подстройка струны: - - - - String fuzziness: - Расплывчатость струны: - - - - String length: - Длина струны: - - - - Impulse - Импульс - - - - Octave - Октава - - - - Impulse Editor - Редактор сигнала - - - - Enable waveform - Включить - - - - Enable/disable string - Включить/отключить струну - - - - String - Струна - - - - - Sine wave - Синусоида - - - - - Triangle wave - Треугольник - - - - - Saw wave - Пило-волна - - - - - Square wave - Квадратная волна - - - - - White noise - Белый шум - - - - - User-defined wave - Своя волна - - - - - Smooth waveform - Сгладить волну - - - - - Normalize waveform - Нормализовать форму волны - - - - VoiceObject - - - Voice %1 pulse width - Голос %1 длина сигнала - - - - Voice %1 attack - Атака %1 голоса - - - - Voice %1 decay - Спад %1 голоса - - - - Voice %1 sustain - Выдержка %1 голоса - - - - Voice %1 release - Затухание голоса %1 - - - - Voice %1 coarse detuning - Подстройка %1 голоса (грубо) - - - - Voice %1 wave shape - Форма сигнала для %1 голоса - - - - Voice %1 sync - Синхронизация %1 голоса - - - - Voice %1 ring modulate - Голос %1 кольцевой модулятор - - - - Voice %1 filtered - Фильтрованный %1 голос - - - - Voice %1 test - Голос %1 тест - - - - WaveShaperControlDialog - - - INPUT - ВХОД - - - - Input gain: - Входная мощность: - - - - OUTPUT - ВЫХОД - - - - Output gain: - Выходная мощность: - - - - - Reset wavegraph - Сбросить волновой график - - + - + Reset wavegraph + Сбросить волновой график + + + + Smooth wavegraph Сгладить волновой график - - + + Increase wavegraph amplitude by 1 dB Увеличить амплитуду графика волны на 1 дБ - - + + Decrease wavegraph amplitude by 1 dB Уменьшить амплитуду графика волны на 1 дБ - + Clip input Срезать входной сигнал - + Clip input signal to 0 dB Обрезать входной сигнал на 0 dB - WaveShaperControls + lmms::gui::XpressiveView - - Input gain - Входная мощность + + Draw your own waveform here by dragging your mouse on this graph. + Нарисуйте здесь свою собственную форму волны, перетащив мышь на этот график. - - Output gain - Выходная мощность + + Select oscillator W1 + Выбрать осциллятор W1 + + + + Select oscillator W2 + Выбрать осциллятор W2 + + + + Select oscillator W3 + Выбрать осциллятор W3 + + + + Select output O1 + Выбрать выход О1 + + + + Select output O2 + Выбрать выход О2 + + + + Open help window + Открыть окно справки + + + + + Sine wave + Синусоида + + + + + Moog-saw wave + Муг пило-волна + + + + + Exponential wave + Экспоненциальная волна + + + + + Saw wave + Пилообразная волна + + + + + User-defined wave + Пользовательская волна + + + + + Triangle wave + Треугольная волна + + + + + Square wave + Квадратная волна + + + + + White noise + Белый шум + + + + WaveInterpolate + Волн. интерполяция + + + + ExpressionValid + ВыражениеВерно + + + + General purpose 1: + Общего назначения 1: + + + + General purpose 2: + Общего назначения 2: + + + + General purpose 3: + Общего назначения 3: + + + + O1 panning: + O1 баланс: + + + + O2 panning: + О2 баланс: + + + + Release transition: + Переход затухания: + + + + Smoothness + Гладкость - + + lmms::gui::ZynAddSubFxView + + + Portamento: + Портаменто: + + + + PORT + + + + + Filter frequency: + Частота фильтра: + + + + FREQ + ЧАСТ + + + + Filter resonance: + Резонанс фильтра: + + + + RES + РЕЗ + + + + Bandwidth: + Полоса пропускания: + + + + BW + + + + + FM gain: + FM усиление: + + + + FM GAIN + FM УСИЛ + + + + Resonance center frequency: + Частоты центра резонанса: + + + + RES CF + + + + + Resonance bandwidth: + Полоса пропуска резонанса: + + + + RES BW + + + + + Forward MIDI control changes + Передавать изменения MIDI управления + + + + Show GUI + Показать интерфейс + + + \ No newline at end of file diff --git a/data/locale/sl.ts b/data/locale/sl.ts index 1aa67d54d..77586e6e9 100644 --- a/data/locale/sl.ts +++ b/data/locale/sl.ts @@ -1,10 +1,10 @@ - + AboutDialog About LMMS - Opis LMMS + O programu LMMS @@ -14,27 +14,27 @@ Version %1 (%2/%3, Qt %4, %5). - + Različica %1 (%2/%3, Qt %4, %5). About - Vizitka + O programu LMMS - easy music production for everyone. - + Enostavno produciranje glasbe za vsakogar. Copyright © %1. - + Avtorstvo © %1. <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#33cc33;">https://lmms.io</span></a></p></body></html> - + <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#33cc33;">https://lmms.io</span></a></p></body></html> @@ -44,12 +44,12 @@ Involved - + Vpleteni Contributors ordered by number of commits: - + Sodelujoči razporejeni po številu prispevkov: @@ -60,7 +60,8 @@ Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! - + Trenutni jezik ni preveden (ali izvorna angleščina). +Če vas zanima prevajanje LMMS v nek drug jezik ali če želite izboljšati obstoječe prevode, ste dobrodošli! Zgolj stopite v stik z vzdrževalcem! @@ -69,810 +70,43 @@ If you're interested in translating LMMS in another language or want to imp - AmplifierControlDialog + AboutJuceDialog - - VOL - GLS - - - - Volume: - Glasnost: - - - - PAN - PAN - - - - Panning: + + About JUCE - - LEFT - LEVO - - - - Left gain: - Leva glasnost - - - - RIGHT - DESNO - - - - Right gain: - Desna glasnost - - - - AmplifierControls - - - Volume - Glasnost - - - - Panning + + <b>About JUCE</b> - - Left gain - Leva glasnost - - - - Right gain - Desan glasnost - - - - AudioAlsaSetupWidget - - - DEVICE - NAPRAVA - - - - CHANNELS - KANALI - - - - AudioFileProcessorView - - - Open sample + + This program uses JUCE version 3.x.x. - - Reverse sample + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. - - Disable loop - - - - - Enable loop - - - - - Enable ping-pong loop - - - - - Continue sample playback across notes - - - - - Amplify: - - - - - Start point: - - - - - End point: - - - - - Loopback point: + + This program uses JUCE version - AudioFileProcessorWaveView + AudioDeviceSetupWidget - - Sample length: - - - - - AudioJack - - - JACK client restarted - - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - - - - - JACK server down - - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - - - - - Client name - - - - - Channels - - - - - AudioOss - - - Device - - - - - Channels - - - - - AudioPortAudio::setupWidget - - - Backend - - - - - Device - - - - - AudioPulseAudio - - - Device - - - - - Channels - - - - - AudioSdl::setupWidget - - - Device - - - - - AudioSndio - - - Device - - - - - Channels - - - - - AudioSoundIo::setupWidget - - - Backend - - - - - Device - - - - - AutomatableModel - - - &Reset (%1%2) - - - - - &Copy value (%1%2) - - - - - &Paste value (%1%2) - - - - - &Paste value - - - - - Edit song-global automation - - - - - Remove song-global automation - - - - - Remove all linked controls - - - - - Connected to %1 - - - - - Connected to controller - - - - - Edit connection... - - - - - Remove connection - - - - - Connect to controller... - - - - - AutomationEditor - - - Edit Value - - - - - New outValue - - - - - New inValue - - - - - Please open an automation clip with the context menu of a control! - - - - - AutomationEditorWindow - - - Play/pause current clip (Space) - - - - - Stop playing of current clip (Space) - - - - - Edit actions - - - - - Draw mode (Shift+D) - - - - - Erase mode (Shift+E) - - - - - Draw outValues mode (Shift+C) - - - - - Flip vertically - - - - - Flip horizontally - - - - - Interpolation controls - - - - - Discrete progression - - - - - Linear progression - - - - - Cubic Hermite progression - - - - - Tension value for spline - - - - - Tension: - - - - - Zoom controls - - - - - Horizontal zooming - - - - - Vertical zooming - - - - - Quantization controls - - - - - Quantization - - - - - - Automation Editor - no clip - - - - - - Automation Editor - %1 - - - - - Model is already connected to this clip. - - - - - AutomationClip - - - Drag a control while pressing <%1> - - - - - AutomationClipView - - - Open in Automation editor - - - - - Clear - - - - - Reset name - - - - - Change name - - - - - Set/clear record - - - - - Flip Vertically (Visible) - - - - - Flip Horizontally (Visible) - - - - - %1 Connections - - - - - Disconnect "%1" - - - - - Model is already connected to this clip. - - - - - AutomationTrack - - - Automation track - - - - - PatternEditor - - - Beat+Bassline Editor - Ritem+bas urejevalnik - - - - Play/pause current beat/bassline (Space) - - - - - Stop playback of current beat/bassline (Space) - - - - - Beat selector - - - - - Track and step actions - - - - - Add beat/bassline - - - - - Clone beat/bassline clip - - - - - Add sample-track - - - - - Add automation-track - - - - - Remove steps - - - - - Add steps - - - - - Clone Steps - - - - - PatternClipView - - - Open in Beat+Bassline-Editor - - - - - Reset name - - - - - Change name - - - - - PatternTrack - - - Beat/Bassline %1 - - - - - Clone of %1 - - - - - BassBoosterControlDialog - - - FREQ - - - - - Frequency: - - - - - GAIN - - - - - Gain: - - - - - RATIO - - - - - Ratio: - - - - - BassBoosterControls - - - Frequency - Pogostost - - - - Gain - - - - - Ratio - razmerje - - - - BitcrushControlDialog - - - IN - - - - - OUT - - - - - - GAIN - - - - - Input gain: - - - - - NOISE - - - - - Input noise: - - - - - Output gain: - - - - - CLIP - - - - - Output clip: - - - - - Rate enabled - - - - - Enable sample-rate crushing - - - - - Depth enabled - - - - - Enable bit-depth crushing - - - - - FREQ - - - - - Sample rate: - - - - - STEREO - - - - - Stereo difference: - - - - - QUANT - - - - - Levels: - - - - - BitcrushControls - - - Input gain - - - - - Input noise - - - - - Output gain - - - - - Output clip - - - - - Sample rate - - - - - Stereo difference - - - - - Levels - - - - - Rate enabled - - - - - Depth enabled + + [System Default] @@ -881,142 +115,142 @@ If you're interested in translating LMMS in another language or want to imp About Carla - + O programu Carla About - Vizitka + O programu About text here - + Tu se zapiše besedilo o programu Extended licensing here - + Sem pride razširjena licenca - + Artwork - + Grafično oblikovanje - + Using KDE Oxygen icon set, designed by Oxygen Team. - + Uporablja nabor ikon KDE Oxygen, ki ga je oblikoval Oxygen Team. - + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. - + Vsebuje nekatere vrtljive gumbe, ozadja in druge grafične dodatke iz Calf Studio Gear, OpenAV in OpenOctave projektov. - + VST is a trademark of Steinberg Media Technologies GmbH. - + VST je začitena znamka podjetja Steinberg Media Technologies GmbH. - + Special thanks to António Saraiva for a few extra icons and artwork! - + Posebna zahvala Antóniu Saraivii za nekaj posebnih ikon in grafičnih elementov! - + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. - + LV2 logo je oblikoval Thorsten Wilms po zasnovi Peter Shorthose-a. - + MIDI Keyboard designed by Thorsten Wilms. - - - - - Carla, Carla-Control and Patchbay icons designed by DoosC. - + MIDI tipkovnico je oblikoval Thorsten Wilms. + Carla, Carla-Control and Patchbay icons designed by DoosC. + Carla, Carla-Control in Patchbay ikone je oblikoval DoosC. + + + Features - + Zmožnosti - + AU/AudioUnit: - + AU/AudioUnit: - + LADSPA: - + LADSPA: - - - - - - - - + + + + + + + + TextLabel - + TekstovnaOznaka - + VST2: - + VST2: - + DSSI: - + DSSI: - + LV2: - + LV2: - + VST3: - - - - - OSC - - - - - Host URLs: - - - - - Valid commands: - + VST3: + OSC + OSC + + + + Host URLs: + URL gostitelja: + + + + Valid commands: + Veljavni ukazi: + + + valid osc commands here - + tu je prostor za veljavne osc ukaze - + Example: - + Primer: - + License Licenca - + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -1298,55 +532,155 @@ POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS - + SPLOŠNO DOVOLJENJE GNU + Različica št. 2, junij 1991 +Pravice razširjanja © 1989, 1991 Free Software Foundation, Inc. +59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +Vsakdo sme razmnoževati in razširjati dobesedne kopije tega licenčnega +dokumenta, ni pa ga dovoljeno spreminjati. +Predgovor +Licenčne pogodbe večine programja so zasnovane tako, da vam preprečujejo njegovo svobodno razdeljevanje in spreminjanje. Za razliko od teh vam namerava Splošno dovoljenje GNU (angl. GNU General Public License, GPL) zajamčiti svobodo pri razdeljevanju in spreminjanju prostega programja ter s tem zagotoviti, da ostane programje prosto za vse njegove uporabnike. Ta GPL se nanaša na večino programske opreme ustanove Free Software Foundation in na vse druge programe, katerih avtorji so se zavezali k njeni uporabi. (Nekatero drugo programje ustanove Free Software Foundation je namesto tega pokrito s Splošnim dovoljenjem GNU za knjižnice, angl. GNU Library General Public License.) Uporabite jo lahko tudi za vaše programe. + +Ko govorimo o prostem programju, imamo s tem v mislih svobodo, ne cene. Naša splošna dovoljenja GNU vam zagotavljajo, da imate pravico razširjati kopije prostega programja (in zaračunavati za to storitev, če tako želite); da dobite izvorno kodo ali jo lahko dobite, če tako želite; da lahko spreminjate programje ali uporabljate njegove dele v novih prostih programih; in da veste, da lahko počnete vse te stvari. + +Zaradi zavarovanja vaših pravic moramo uvesti omejitve, ki prepovedujejo vsakomur, da bi vam te pravice kratil ali od vas zahteval predajo teh pravic. Te omejitve se preslikajo v določene odgovornosti za vas, če razširjate kopije programja ali ga spreminjate. + +Na primer, če razširjate kopije takega programa, bodisi zastonj ali za plačilo, morate dati prejemnikom vse pravice, ki jih imate vi. Prepričati se morate, da bodo tudi oni prejeli ali imeli dostop do izvorne kode. In morate jim pokazati te pogoje (pravzaprav izvirnik, opomba prevajalca), da bodo poznali svoje pravice. + +Vaše pravice varujemo z dvema korakoma: (1) s pravno zaščito programja in (2) ponujamo vam to licenco, ki vam daje pravno dovoljenje za razmnoževanje, razširjanje in/ali spreminjanje programja. + +Zaradi zaščite vsakega avtorja in zaradi naše zaščite želimo zagotoviti, da vsakdo razume, da za to prosto programje ni nobenega jamstva. Če je programje spremenil nekdo drug in ga posredoval naprej, želimo, da njegovi prejemniki vedo, da to, kar imajo, ni izvirnik, zato da se problemi, ki jih povzročijo drugi, ne bodo odražali na ugledu izvornega avtorja. + +Končno, vsakemu prostemu programu nenehno grozijo programski patenti. Želimo se izogniti nevarnosti, da bi razširjevalci prostega programa posamično dobivali patentne licence in s tem naredili program lastniški (angl. proprietary). Za preprečitev tega jasno zahtevamo da mora biti vsak patent licenciran tako, da ga lahko vsakdo prosto uporablja, ali pa sploh ne sme biti licenciran. + +Sledijo natančne določitve in pogoji za razmnoževanje, razširjanje in spreminjanje. + +DOLOČITVE IN POGOJI ZA RAZMNOŽEVANJE, RAZŠIRJANJE IN SPREMINJANJE +0. +Licenca se nanaša na vsak program ali drugo delo, ki vsebuje obvestilo lastnika avtorskih pravic (angl. copyright holder) z izjavo, da se lahko distribuira pod pogoji Splošnega dovoljenja GNU (angl. General Public License). „Program“ se v nadaljevanju nanaša na vsak tak program ali delo, in „delo, ki temelji na programu“ pomeni bodisi program ali pa katerokoli izvedeno delo po zakonu o avtorskih pravicah (angl. copyright law): se pravi delo, ki vsebuje program ali njegov del, bodisi dobesedno ali s spremembami in/ali prevedeno v drug jezik. (Tukaj in povsod v nadaljevanju je prevod vključen brez omejitev v pojem „spremembe“.) Vsaka licenca je naslovljena na „vas“. +Ta licenca ne pokriva nobenih drugih aktivnosti razen razmnoževanja, razširjanja in sprememb; ostale so izven njenega dometa. Dejanje poganjanja programa ni omejeno in izhod programa je zajet le, če njegova vsebina sestavlja delo, iz katerega je izpeljan program (ne glede na to, da je bil narejen s poganjanjem programa). Ali je to res ali ne, je odvisno od tega, kaj počne program. + +1. +Razmnožujete in razširjate lahko dobesedne izvode izvorne kode programa v enaki obliki, kot jo dobite, preko kateregakoli medija, če le na vsakem izvodu razločno in primerno objavite obvestilo o pravicah razširjanja in zanikanje jamstva; vsa obvestila, ki se nanašajo na to licenco in odsotnost vsakršnega jamstva pustite nedotaknjena; in daste vsem drugim prejemnikom programa poleg programa še izvod te licence. +Za fizično dejanje prenosa kopije lahko zaračunavate in po vaši presoji lahko ponudite garancijsko zaščito v zameno za plačilo. + +2. +Spreminjati smete vaš izvod ali izvode programa ali katerikoli njegov del, in tako narediti delo, ki temelji na programu, ter razmnoževati in razširjati takšne spremembe ali dela pod pogoji zgornjega razdelka 1, če zadostite tudi vsem naslednjim pogojem: + +a. +Zagotoviti morate, da spremenjene datoteke nosijo vidna obvestila o tem, da ste jih spremenili in datum vsake spremembe. + +b. +Zagotoviti morate, da je vsako delo, ki ga razširjate ali izdajate in ki v celoti ali deloma vsebuje program ali katerikoli njegov del ali pa je iz njega izpeljano, licencirano pod pogoji te licence kot celota brez plačila katerikoli tretji osebi. + +c. +Če spremenjeni program ob zagonu navadno bere ukaze interaktivno, morate zagotoviti, da se ob najbolj običajnem zagonu za takšno interaktivno uporabo izpiše ali prikaže najava, ki vključuje primerno sporočilo o pravicah razširjanja in sporočilo, da jamstvo ni zagotovljeno (ali pa sporočilo, da ponujate jamstvo) in da lahko uporabniki razširjajo program pod temi pogoji, in pove uporabniku, kako pogledati izvod te licence. (Izjema: če je sam program interaktiven, a navadno ne izpiše takšne najave, tudi za vaše delo, ki temelji na programu, ni nujno, da jo.) +Te zahteve se nanašajo na spremenjeno delo kot celoto. Če kosi tega dela, ki jih je lahko prepoznati, niso izpeljani iz programa in se jih lahko ima za neodvisna in ločena dela sama po sebi, potem ta licenca in njeni pogoji ne veljajo zanje, kadar jih razširjate ločeno. Vendar, kadar te iste kose razširjate kot del celote, ki je delo, ki temelji na programu, mora biti razširjanje celote izvedeno pod pogoji te licence, katere dovoljenja za druge licence se razširjajo na vso celoto in torej na vsak njen del, ne glede na to, kdo ga je napisal. + +Torej, namen tega razdelka ni, da bi zanikal ali spodbijal vaše pravice do dela, ki ste ga v celoti napisali sami; namesto tega je namen razširiti pravico do nadzora razširjanja na izpeljana ali zbrana dela, ki temeljijo na programu. + +Poleg tega, če gre za zgolj kopičenje drugega dela, ki ne temelji na programu, s programom (ali z delom, ki temelji na programu) na mediju za shranjevanje ali distribucijskem mediju, se licenca na to drugo delo ne nanaša. + +3. +Program (ali delo, ki temelji na njem, pod razdelkom 2) lahko razmnožujete in razširjate v objektni kodi ali izvedljivi obliki pod pogoji zgornjih razdelkov 1 in 2, če izpolnite tudi kaj od tega: + +a. +Opremite ga s popolno in ustrezno izvorno kodo v strojno berljivi obliki, ki mora biti razširjana pod pogoji zgornjih razdelkov 1 in 2 na mediju, ki se navadno uporablja za izmenjavo programja; ali, + +b. +Opremite ga z napisano ponudbo, veljavno vsaj tri leta, da boste katerikoli tretji osebi, za plačilo, ki ne bo presegalo vaših stroškov fizičnega izvajanja izvorne distribucije, dali popoln izvod ustrezne izvorne kode v strojno berljivi obliki, ki bo razširjana pod pogoji zgornjih razdelkov 1 in 2 na mediju, ki se običajno uporablja za izmenjavo programja; ali, + +c. +Opremite ga z informacijo, ki ste jo dobili vi, kot ponudbo distribucije ustrezne izvorne kode. (Ta alternativa je dovoljena le za nekomercialne distribucije in le, če ste dobili program v obliki izvorne kode ali izvedljivi obliki s takšno ponudbo, glede na podrazdelek b, zgoraj.) +Izvorna koda pri delih pomeni obliko dela, najprimernejšo za izdelavo sprememb. Pri izvedljivem delu pomeni izvorna koda vso izvorno kodo za vse module, ki jih vsebuje, poleg tega pa še morebitne datoteke z definicijami vmesnika, povezane s tem delom in skripte, uporabljane za nadzor prevajanja in namestitev izvedljive datoteke. Vendar - kot posebna izjema - ni nujno, da razširjana izvorna koda vključuje vse, kar se navadno razširja (v izvorni ali binarni obliki) z večjimi komponentami (prevajalnik, jedro, in tako naprej) operacijskega sistema, na katerem teče izvedljiva datoteka, razen če ta komponenta spremlja izvedljivo datoteko. + +Če se razširjanje izvedljive datoteke ali objektne kode izvede s ponujenim dostopom za prepisovanje z za to namenjenega mesta, potem ponujanje ekvivalentnega dostopa za razmnoževanje izvorne kode z istega mesta šteje kot razširjanje izvorne kode, čeprav tretje osebe niso prisiljene razmnoževati izvorne kode poleg objektne kode. + +4. +Ne smete razmnoževati, spreminjati, podlicencirati ali razširjati programa drugače, kot to izrecno določa pričujoča licenca. Vsak poskus siceršnjega kopiranja, spreminjanja, podlicenciranja ali razširjanja programa je ničen in bo samodejno prekinil vaše pravice pod to licenco. Vendar pa se osebam, ki so svoj izvod ali pravice dobile od vas pod to licenco, licenca ne prekine, dokler se ji popolnoma podrejajo. + +5. +Ni vam treba sprejeti te licence, saj je niste podpisali. Vendar vam razen nje nič ne dovoljuje spreminjanja ali razširjanja programa ali iz njega izpeljanih del. Če ne sprejmete te licence, ta dejanja prepoveduje zakon. Torej, s spremembo ali razširjanjem programa (ali kateregakoli dela, ki temelji na programu), pokažete svoje strinjanje s to licenco in z vsemi njenimi določitvami in pogoji za razmnoževanje, razširjanje ali spreminjanje programa ali del, ki temeljijo na njem. + +6. +Vsakič, ko razširjate program (ali katerokoli delo, ki temelji na programu), prejemnik samodejno prejme licenco od izvornega izdajatelja licence (angl. original licensor) za razmnoževanje, razširjanje ali spreminjanje programa glede na ta določila in pogoje. Ne smete vsiljevati nobenih nadaljnjih omejitev izvajanja prejemnikovih pravic, podeljenih tukaj. Niste odgovorni za vsiljevanje strinjanja tretjih oseb s to licenco. + +7. +Če so vam, kot posledica presoje sodišča ali suma kršitve patenta ali zaradi kateregakoli drugega razloga (ne omejenega zgolj na patentna vprašanja), vsiljeni pogoji (bodisi z odlokom sodišča, sporazumom ali drugače), ki nasprotujejo pogojem te licence, vas ne odvezujejo pogojev te licence. Če programa ne morete razširjati tako, da hkrati zadostite svojim obvezam pod to licenco in katerimkoli drugim pristojnim obvezam, potem posledično sploh ne smete razširjati programa. Na primer, če patentna licenca ne dovoli razširjanja programa brez plačevanja avtorskega honorarja vseh, ki prejmejo kopije neposredno ali posredno od vas, potem je edina možna pot, da zadostite temu pogoju in tej licenci ta, da se v celoti vzdržite razširjanja programa. +Če se za katerikoli del tega razdelka ugotovi, da je neveljaven ali da se ga ne da izvajati pod kateremkoli določenim pogojem, je mišljeno, da velja usmeritev tega razdelka (angl. balance of the section) in razdelek kot celota velja v drugih primerih. + +Namen tega razdelka ni, da bi vas napeljeval h kršitvi patentov ali drugih trditev lastništva pravic ali izpodbijal veljavnost katerihkoli takšnih trditev; edini namen tega razdelka je ščitenje integritete sistema distribucije prostega programja, ki je izveden s prakso javnih licenc. Mnogi ljudje so radodarno prispevali k širokemu naboru programja, razširjanega skozi ta sistem, v upanju na njegovo dosledno izvajanje; od avtorja/dajalca je odvisno, če je pripravljen razširjati programje skozi katerikoli drug sistem, in izdajatelj licence ne more vsiljevati te izbire. + +Ta razdelek namerava temeljito pojasniti, kaj so predvidene posledice nadaljevanja licence. + +8. +Če sta razširjanje in/ali uporaba programa omejena v določenih državah, bodisi zaradi patentov ali vmesnikov s posebno pravico razširjanja (angl. copyrighted interfaces), lahko izvorni lastnik ali lastnica pravic razširjanja, ki postavlja program pod to licenco, doda eksplicitno zemljepisno omejitev razširjanja, ki izključuje te države, tako da je razširjanje dovoljeno le v in med državami, ki niso na tak način izključene. V takem primeru ta licenca vključuje omejitve, kot da so napisane v telesu te licence. + +9. +Ustanova Free Software Foundation lahko od časa do časa izdaja preurejene in/ali nove različice Splošne javne licence (angl. General Public License). Nove različice bodo pisane v duhu trenutne različice, vendar se lahko razlikujejo v podrobnostih, ki bodo obdelovale nove težave ali poglede. +Vsaki različici je prirejena razločevalna številka različice. Če program določa številko različice te licence, ki se nanaša na njo in „na katerekoli poznejše različice“, imate izbiro upoštevanja pogojev in določil bodisi te različice ali katerekoli poznejše različice, ki jo je izdala ustanova Free Software Foundation. Če program ne določa številke različice te licence, lahko izberete katerokoli različico, ki jo je kdajkoli izdala ustanova Free Software Foundation. + +10. +Če želite vključiti dele programa v druge proste programe, katerih pogoji razširjanja so drugačni, pišite avtorju in ga prosite za dovoljenje. Za programje, katerega pravice razširjanja ima Free Software Foundation, pišite na Free Software Foundation; včasih naredimo izjemo pri tem. Našo odločitev bosta vodila dva cilja: ohranitev prostega statusa vseh izvedenih del iz našega prostega programja in spodbujanje razdeljevanja in ponovne uporabe programja na splošno. + +BREZ JAMSTVA + +11. +KER JE PROGRAM LICENCIRAN KOT BREZPLAČEN, NI NOBENEGA JAMSTVA ZA PROGRAM DO MEJE, KI JO DOLOČA PRISTOJNI ZAKON. RAZEN, ČE NI DRUGAČE NAPISANO, IMETNIKI PRAVIC RAZŠIRJANJA IN/ALI DRUGE OSEBE PONUJAJO PROGRAM „TAK, KOT JE“, BREZ ZAGOTOVILA KAKRŠNEKOLI VRSTE, NEPOSREDNEGA ALI POSREDNEGA, KAR VKLJUČUJE, A NI OMEJENO NA POSREDNA JAMSTVA CENOVNE VREDNOSTI IN PRIMERNOSTI ZA DOLOČENO UPORABO. CELOTNO TVEGANJE GLEDE KAKOVOSTI IN DELOVANJA PROGRAMA PREVZAMETE SAMI. ČE SE PROGRAM IZKAŽE ZA OKVARJENEGA, SAMI NOSITE STROŠKE VSEH POTREBNIH STORITEV, POPRAVIL ALI POPRAVKOV. + +12. +V NOBENEM PRIMERU, RAZEN ČE TAKO PRAVI VELJAVNI ZAKON ALI JE PISNO DOGOVORJENO, NE BO LASTNIK PRAVIC RAZŠIRJANJA ALI KATERAKOLI DRUGA OSEBA, KI LAHKO SPREMENI IN/ALI PONOVNO RAZŠIRJA PROGRAM, KOT JE DOVOLJENO ZGORAJ, PREVZEL ODGOVORNOSTI ZARADI ŠKODE, NAJSI GRE ZA SPLOŠNO, POSEBNO, NENAMERNO ŠKODO ALI ŠKODO, IZHAJAJOČO IZ UPORABE ALI NEZMOŽNOSTI UPORABE PROGRAMA (VKLJUČNO Z, A NE OMEJENO NA, IZGUBO PODATKOV ALI NENATANČNO OBDELAVO PODATKOV ALI IZGUBO, POVZROČENO VAM ALI TRETJIM OSEBAM ALI NEZMOŽNOST PROGRAMA, DA BI DELOVAL S KAKIM DRUGIM PROGRAMOM), ČETUDI JE BIL TAK LASTNIK ALI DRUGA OSEBA OBVEŠČEN O MOŽNOSTI NASTANKA TAKŠNE ŠKODE. + +KONEC DOLOČB IN POGOJEV - + OSC Bridge Version - + Različica OSC Bridge - + Plugin Version - + Različica vtičnika - + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> - + <br>Različica %1<br>Carla je polno zmogljiv gostitelj zvočnih vtičnikov.<br><br>Avtorstvo (C) 2011-2019 falkTX<br> - - + + (Engine not running) - + (pogon ni zagnan) - + Everything! (Including LRDF) - + Vse (vključno z LRDF) - + Everything! (Including CustomData/Chunks) - + Vse! (vključno z lastnimi podatki/kosi) - + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - + O programu 110&#37; celota (z uporabo lastnih razširitev)<br/>Implementirane funkcije/razširitve:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - - - + + + Using Juce host - + Uporaba Juce gostitelja - + About 85% complete (missing vst bank/presets and some minor stuff) - + Približno 85% končano (manjkajo vst tabele/predloge in nekaj manjših zadev) @@ -1354,582 +688,621 @@ POSSIBILITY OF SUCH DAMAGES. MainWindow - + GlavnoOkno Rack - + Regal Patchbay - + Patchbay Logs - + Dnevniki Loading... + Nalagam... + + + + Save - + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + Buffer Size: - - - - - Sample Rate: - - - - - ? Xruns - - - - - DSP Load: %p% - - - - - &File - - - - - &Engine - - - - - &Plugin - - - - - Macros (all plugins) - - - - - &Canvas - + Velikost medpomnilnika: + Sample Rate: + Frekvenca vzorčenja: + + + + ? Xruns + ? Xruns + + + + DSP Load: %p% + DSP obremenitev: %p% + + + + &File + &Datoteka + + + + &Engine + &Pogon + + + + &Plugin + &Vtičnik + + + + Macros (all plugins) + Makroji (ali vtičniki) + + + + &Canvas + &Platno + + + Zoom - + Povečava - + &Settings - + &Nastavitve - + &Help + &Pomoč + + + + Tool Bar - - toolBar - - - - + Disk - + Disk - - + + Home - + Domov - + Transport - + Transport - + Playback Controls - + Kontrole predvajanja - + Time Information - + Podatki o času - + Frame: - + Okvir: - + 000'000'000 - + 000'000'000 - + Time: - + Čas: - + 00:00:00 - + 00:00:00 - + BBT: - + BBT: - + 000|00|0000 - + 000|00|0000 - + Settings Nastavitve - + BPM - + BPM - + Use JACK Transport - + Uporabi JACK Transport - + Use Ableton Link - + Uporabi Ableton Link - + &New &Novo - + Ctrl+N - + Ctrl+N - + &Open... &Odpri... - - + + Open... - + Odpri... - + Ctrl+O - + Ctrl+O - + &Save &Shrani - + Ctrl+S - + Ctrl+S - + Save &As... Shr%Ani kot... - - + + Save As... - + Shrani kot... - + Ctrl+Shift+S - + Ctrl+Shift+S - + &Quit Izhod - + Ctrl+Q - + Ctrl+Q - + &Start - + &Zaženi - + F5 - - - - - St&op - - - - - F6 - - - - - &Add Plugin... - - - - - Ctrl+A - - - - - &Remove All - - - - - Enable - - - - - Disable - - - - - 0% Wet (Bypass) - - - - - 100% Wet - - - - - 0% Volume (Mute) - - - - - 100% Volume - - - - - Center Balance - - - - - &Play - - - - - Ctrl+Shift+P - - - - - &Stop - - - - - Ctrl+Shift+X - - - - - &Backwards - - - - - Ctrl+Shift+B - - - - - &Forwards - - - - - Ctrl+Shift+F - - - - - &Arrange - - - - - Ctrl+G - - - - - - &Refresh - - - - - Ctrl+R - - - - - Save &Image... - + F5 - Auto-Fit - + St&op + &Ustavi - - Zoom In - + + F6 + F6 - Ctrl++ - + &Add Plugin... + Dod&aj vtičnik... - - Zoom Out - + + Ctrl+A + Ctrl+A - - Ctrl+- - + + &Remove All + Odst&rani vse - - Zoom 100% - + + Enable + Vklopi - - Ctrl+1 - + + Disable + Izklopi - - Show &Toolbar - + + 0% Wet (Bypass) + 0% obogateno (obvod) - - &Configure Carla - + + 100% Wet + 100% obogateno - - &About - + + 0% Volume (Mute) + 0% glasnost (tiho) - - About &JUCE - + + 100% Volume + 100% glasnost - - About &Qt - + + Center Balance + Središčno ravnovesje - - Show Canvas &Meters - + + &Play + &Predvajaj - - Show Canvas &Keyboard - + + Ctrl+Shift+P + Ctrl+Shift+P - - Show Internal - + + &Stop + U&stavi - - Show External - + + Ctrl+Shift+X + Ctrl+Shift+X - - Show Time Panel - - - - - Show &Side Panel - + + &Backwards + &Nazaj - &Connect... - + Ctrl+Shift+B + Ctrl+Shift+B - - Compact Slots - + + &Forwards + Na&prej - - Expand Slots - + + Ctrl+Shift+F + Ctrl+Shift+F + + + + &Arrange + &Razporedi - Perform secret 1 - + Ctrl+G + Ctrl+G - - Perform secret 2 - - - - - Perform secret 3 - + + + &Refresh + &Osveži + Ctrl+R + Ctrl+R + + + + Save &Image... + Shrani sl&iko... + + + + Auto-Fit + Samodejno prilagajanje + + + + Zoom In + Približaj + + + + Ctrl++ + Ctrl++ + + + + Zoom Out + Oddalji + + + + Ctrl+- + Ctrl+- + + + + Zoom 100% + 100% velikost + + + + Ctrl+1 + Ctrl+1 + + + + Show &Toolbar + Prikaži &orodno vrstico + + + + &Configure Carla + &Carla nastavitve + + + + &About + O progr&amu + + + + About &JUCE + O &JUCE + + + + About &Qt + O &Qt + + + + Show Canvas &Meters + Prikaži &merila platna + + + + Show Canvas &Keyboard + Prikaži tip&kovnico platna + + + + Show Internal + Prikaži notranje + + + + Show External + Prikaži zunanje + + + + Show Time Panel + Prikaži časovni pano + + + + Show &Side Panel + Prikaži &stranski pano + + + + Ctrl+P + + + + + &Connect... + Po&veži... + + + + Compact Slots + Skrči reže + + + + Expand Slots + Razširi reže + + + + Perform secret 1 + Izvedi skrivnost 1 + + + + Perform secret 2 + Izvedi skrivnost 2 + + + + Perform secret 3 + Izvedi skrivnost 3 + + + Perform secret 4 - + Izvedi skrivnost 4 - + Perform secret 5 - + Izvedi skrivnost 5 - + Add &JACK Application... - + Dodaj &JACK aplikacijo - + &Configure driver... - + &Nastavi gonilnik... - + Panic + Panika + + + + Open custom driver panel... + Odpri prilagojeni pano gonilnika... + + + + Save Image... (2x zoom) - - Open custom driver panel... + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C CarlaHostWindow - + Export as... - + Izvozi kot... - - - - + + + + Error - + Napaka - + Failed to load project - + Napaka pri nalaganju projekta - + Failed to save project - + Napaka pri shranjevanju projekta - + Quit - + Končaj - + Are you sure you want to quit Carla? - + Želite res zapreti Carlo? - + Could not connect to Audio backend '%1', possible reasons: %2 - + Povezave z zvočnim zaledjem '%1' ni bilo mogoče vzpostaviti. Možni razlogi: +%2 - + Could not connect to Audio backend '%1' - + Povezave z zvočnim zaledjem '%1' ni bilo mogoče vzpostaviti. - + Warning - + Opozorilo - + There are still some plugins loaded, you need to remove them to stop the engine. Do you want to do this now? - - - - - CarlaInstrumentView - - - Show GUI - + Nekateri vtičniki so še naloženi in jih je potrebno odstraniti, da bi zaustavili pogon. +Želite to storiti? @@ -1942,1624 +1315,706 @@ Do you want to do this now? main - + glavno canvas - + platno engine - + pogon osc - + osc file-paths - + poti-datotek plugin-paths - + poti-vtičnikov wine - + wine experimental - + eksperimentalno Widget - + Gradnik - + Main - + Glavno - + Canvas - + Platno - + Engine - + Pogon File Paths - + Poti do datotek Plugin Paths - + Poti do vtičnikov Wine - + Wine - + Experimental - + Eksperimentalno - + <b>Main</b> - + <b>Glavno</b> - + Paths - + Poti - + Default project folder: - + Priveta projektna mapa: - + Interface + Vmesnik + + + + Use "Classic" as default rack skin - + Interface refresh interval: - - - - - - ms - + Interval osveževanja vmesnika: + + ms + ms + + + Show console output in Logs tab (needs engine restart) - - - - - Show a confirmation dialog before quitting - - - - - - Theme - + Prikaži izpis konzole v zavikhu Dnevniki (zahteva ponovni zagon pogona) - Use Carla "PRO" theme (needs restart) - + Show a confirmation dialog before quitting + Pred zapiranjem prikaži potrditveno okno + + Theme + Tema + + + + Use Carla "PRO" theme (needs restart) + Uporabi temo Carla "PRO" (zahteva ponovni zagon) + + + Color scheme: - + Barvna shema: - + Black - + Črna - + System - + Sistemska - + Enable experimental features - + Vklopi eksperimentalne funkcije - + <b>Canvas</b> - + <b>Platno</b> - + Bezier Lines - + Bezierjeve krivulje - + Theme: - + Tema: - + Size: - + Velikost - + 775x600 - + 775x600 - + 1550x1200 - - - - - 3100x2400 - - - - - 4650x3600 - - - - - 6200x4800 - + 1550x1200 + 3100x2400 + 3100x2400 + + + + 4650x3600 + 4650x3600 + + + + 6200x4800 + 6200x4800 + + + + 12400x9600 + + + + Options - + Možnosti - + Auto-hide groups with no ports - + Samodejuno skrij skupine brez vrat - + Auto-select items on hover - + Samodejno izberi predmete ob prehodu - + Basic eye-candy (group shadows) - + Osnovna paša za oči (skupinske sence) - + Render Hints - + Namigi za izrisovanje - + Anti-Aliasing - + Glajenje robov - + Full canvas repaints (slower, but prevents drawing issues) - + Izris celotnega okvirja (počasneje, a prepreči težave pri izrisovanju) - + <b>Engine</b> - + <b>Pogon</b> - - + + Core - + Jedro - + Single Client - + En odjemalec - + Multiple Clients - + Več odjemalcev - - + + Continuous Rack - + Neskončni regal - - + + Patchbay - + Patchbay - + Audio driver: - + Gonilnik za zvok: - + Process mode: - + Način obdelovanja: - - - - + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog - + Največje število parametrov, ki so dovoljeni v dialogu 'Uredi' - + Max Parameters: - + Maks. parametrov: - + ... - + ... - + Reset Xrun counter after project load - + Ko je projekt naložen, ponastavi Xrun števec - + Plugin UIs - - - - - - How much time to wait for OSC GUIs to ping back the host - - - - - UI Bridge Timeout: - - - - - Use OSC-GUI bridges when possible, this way separating the UI from DSP code - - - - - Use UI bridges instead of direct handling when possible - - - - - Make plugin UIs always-on-top - - - - - Make plugin UIs appear on top of Carla (needs restart) - + Vmesniki vtičnikov + + How much time to wait for OSC GUIs to ping back the host + Koliko časa naj se čaka na povratni ping OSC GUI gostitelju + + + + UI Bridge Timeout: + Časovna omejitev za mos uporabniškega vmesnika: + + + + Use OSC-GUI bridges when possible, this way separating the UI from DSP code + Kadar je možno, uporabite OSC-GUI premostitve in na ta način ločite vmesnik od DSP kode + + + + Use UI bridges instead of direct handling when possible + Uporabite mostove uporabniškega vmesnika namesto nesporedne rabe, kadar je to mogoče + + + + Make plugin UIs always-on-top + Vmesniki vtičnikov naj bodo vedno na vrhu + + + + Make plugin UIs appear on top of Carla (needs restart) + Vmesniki vtičnikov naj se vedno pojavijo nad Carlo (zahteva ponoven zagon) + + + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS - + OPOMBA: Mostov grafičnih vmesnikov vtičnikov Carla v macOS ne more urejati - - + + Restart the engine to load the new settings - + Ponovno zaženite pogon, da naložite nove nastavitve - + <b>OSC</b> - + <b>OSC</b> - + Enable OSC - + Vklopi OSC - + Enable TCP port - + Omogoči TCP vrata - - + + Use specific port: - + Uporabi določena vrata - + Overridden by CARLA_OSC_TCP_PORT env var - + Prepisano s spremenljivko okolja CARLA_OSC_TCP_PORT - - + + Use randomly assigned port - + Uporabi naključno določena vrata - + Enable UDP port - + Omogoči UDP vrata - + Overridden by CARLA_OSC_UDP_PORT env var - + Prepisano s spremenljivko okolja CARLA_OSC_UDP_PORT - + DSSI UIs require OSC UDP port enabled - + DSSI vmesniki morajo imeti omogočena OSC UDP vrata - + <b>File Paths</b> - + <b>Poti do datotek</b> - + Audio - + Zvok - + MIDI - + MIDI - + Used for the "audiofile" plugin - + Uporabljeno za vtičnik "audiofile" - + Used for the "midifile" plugin - + Uporabljeno za vtičnik "midifile" - - + + Add... - + Dodaj... - - + + Remove - + Odstrani - - + + Change... - + premeni... - + <b>Plugin Paths</b> - + <b>Poti do vtičnikov</b> - + LADSPA - + LADSPA - + DSSI - + DSSI - + LV2 - + LV2 - + VST2 - + VST2 - + VST3 - + VST3 - + SF2/3 - + SF2/3 - + SFZ + SFZ + + + + JSFX - + + CLAP + + + + Restart Carla to find new plugins - + Ponovno zaženi Carlo, da poišče nove vtičnike - + <b>Wine</b> - + <b>Wine</b> - + Executable - + Izvedljivo - + Path to 'wine' binary: - + Pot do 'wine' sistemskih: - + Prefix - + Predpona - + Auto-detect Wine prefix based on plugin filename - + Samodejno zaznaj Wine predpono glede na ime datoteke vtičnika - + Fallback: - + Povratek različice: - + Note: WINEPREFIX env var is preferred over this fallback - + Opomba: Boljša je raba spremenljivke okolja WINEPREFIX, kot ta povratek različice - + Realtime Priority - + Prednost v realnem času - + Base priority: - + Osnovna prednost: - + WineServer priority: - + Prednost WinServer strežnika: - + These options are not available for Carla as plugin - + Te možnosti niso na voljo, kadar je Carla vtičnik - + <b>Experimental</b> - + <b>Eksperimentalno</b> - + Experimental options! Likely to be unstable! - + Eksperimentalne možnosti! Lahko so nestabilne! - + Enable plugin bridges - + Omogoči premostitve vtičnikov - + Enable Wine bridges - + Omogoči Wine mostove - + Enable jack applications - + Omogoči jack aplikacije - + Export single plugins to LV2 + Izvozi posamezne vtičnike v LV2 + + + + Use system/desktop-theme icons (needs restart) - + Load Carla backend in global namespace (NOT RECOMMENDED) - + Naloži zaledje Carle v globalnem imenskem prostoru (NI PRIPOROČENO) - + Fancy eye-candy (fade-in/out groups, glow connections) - + Všečna paša za oči (skupine za pojemanje/večanje, svetleče povezave) - + Use OpenGL for rendering (needs restart) - + Za izrisovanje uporabi OpenGL (zahteva ponoven zagon) - + High Quality Anti-Aliasing (OpenGL only) - + Visoko-kakovostno glajenje robov (le OpenGL) - + Render Ardour-style "Inline Displays" - + Izrisovanje "Vrstnih prikazovalnikov" v Ardour slogu - + Force mono plugins as stereo by running 2 instances at the same time. This mode is not available for VST plugins. - + Prisili mono vtičnike v stereo, tako da sta naenkrat zagnani dve instanci. +Ta način za VST vtičnike ni na voljo. - + Force mono plugins as stereo + Prisili mono vitičnike v stereo + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. - - Prevent plugins from doing bad stuff (needs restart) + + Prevent unsafe calls from plugins (needs restart) - - Whenever possible, run the plugins in bridge mode. + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. - + Run plugins in bridge mode when possible - + Zaženi vtičnike z mostom, če je to mogoče - - - - + + + + Add Path - - - - - CompressorControlDialog - - - Threshold: - - - - - Volume at which the compression begins to take place - - - - - Ratio: - - - - - How far the compressor must turn the volume down after crossing the threshold - - - - - Attack: - - - - - Speed at which the compressor starts to compress the audio - - - - - Release: - - - - - Speed at which the compressor ceases to compress the audio - - - - - Knee: - - - - - Smooth out the gain reduction curve around the threshold - - - - - Range: - - - - - Maximum gain reduction - - - - - Lookahead Length: - - - - - How long the compressor has to react to the sidechain signal ahead of time - - - - - Hold: - - - - - Delay between attack and release stages - - - - - RMS Size: - - - - - Size of the RMS buffer - - - - - Input Balance: - - - - - Bias the input audio to the left/right or mid/side - - - - - Output Balance: - - - - - Bias the output audio to the left/right or mid/side - - - - - Stereo Balance: - - - - - Bias the sidechain signal to the left/right or mid/side - - - - - Stereo Link Blend: - - - - - Blend between unlinked/maximum/average/minimum stereo linking modes - - - - - Tilt Gain: - - - - - Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. - - - - - Tilt Frequency: - - - - - Center frequency of sidechain tilt filter - - - - - Mix: - - - - - Balance between wet and dry signals - - - - - Auto Attack: - - - - - Automatically control attack value depending on crest factor - - - - - Auto Release: - - - - - Automatically control release value depending on crest factor - - - - - Output gain - - - - - - Gain - - - - - Output volume - - - - - Input gain - - - - - Input volume - - - - - Root Mean Square - - - - - Use RMS of the input - - - - - Peak - - - - - Use absolute value of the input - - - - - Left/Right - - - - - Compress left and right audio - - - - - Mid/Side - - - - - Compress mid and side audio - - - - - Compressor - - - - - Compress the audio - - - - - Limiter - - - - - Set Ratio to infinity (is not guaranteed to limit audio volume) - - - - - Unlinked - - - - - Compress each channel separately - - - - - Maximum - - - - - Compress based on the loudest channel - - - - - Average - - - - - Compress based on the averaged channel volume - - - - - Minimum - - - - - Compress based on the quietest channel - - - - - Blend - - - - - Blend between stereo linking modes - - - - - Auto Makeup Gain - - - - - Automatically change makeup gain depending on threshold, knee, and ratio settings - - - - - - Soft Clip - - - - - Play the delta signal - - - - - Use the compressor's output as the sidechain input - - - - - Lookahead Enabled - - - - - Enable Lookahead, which introduces 20 milliseconds of latency - - - - - CompressorControls - - - Threshold - - - - - Ratio - razmerje - - - - Attack - - - - - Release - Prepustitev - - - - Knee - - - - - Hold - - - - - Range - - - - - RMS Size - - - - - Mid/Side - - - - - Peak Mode - - - - - Lookahead Length - - - - - Input Balance - - - - - Output Balance - - - - - Limiter - - - - - Output Gain - - - - - Input Gain - - - - - Blend - - - - - Stereo Balance - - - - - Auto Makeup Gain - - - - - Audition - - - - - Feedback - - - - - Auto Attack - - - - - Auto Release - - - - - Lookahead - - - - - Tilt - - - - - Tilt Frequency - - - - - Stereo Link - - - - - Mix - - - - - Controller - - - Controller %1 - - - - - ControllerConnectionDialog - - - Connection Settings - - - - - MIDI CONTROLLER - - - - - Input channel - - - - - CHANNEL - - - - - Input controller - - - - - CONTROLLER - - - - - - Auto Detect - - - - - MIDI-devices to receive MIDI-events from - - - - - USER CONTROLLER - - - - - MAPPING FUNCTION - - - - - OK - V redu - - - - Cancel - Preklic - - - - LMMS - LMMS - - - - Cycle Detected. - - - - - ControllerRackView - - - Controller Rack - - - - - Add - - - - - Confirm Delete - - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Naj res izbrišem? Obstaja(-jo) povezava(-e) v zvezi s tem krmilnikom. Razveljavitve ni. - - - - ControllerView - - - Controls - - - - - Rename controller - - - - - Enter the new name for this controller - - - - - LFO - - - - - &Remove this controller - - - - - Re&name this controller - - - - - CrossoverEQControlDialog - - - Band 1/2 crossover: - - - - - Band 2/3 crossover: - - - - - Band 3/4 crossover: - - - - - Band 1 gain - - - - - Band 1 gain: - - - - - Band 2 gain - - - - - Band 2 gain: - - - - - Band 3 gain - - - - - Band 3 gain: - - - - - Band 4 gain - - - - - Band 4 gain: - - - - - Band 1 mute - - - - - Mute band 1 - - - - - Band 2 mute - - - - - Mute band 2 - - - - - Band 3 mute - - - - - Mute band 3 - - - - - Band 4 mute - - - - - Mute band 4 - - - - - DelayControls - - - Delay samples - - - - - Feedback - - - - - LFO frequency - - - - - LFO amount - - - - - Output gain - - - - - DelayControlsDialog - - - DELAY - - - - - Delay time - - - - - FDBK - - - - - Feedback amount - - - - - RATE - - - - - LFO frequency - - - - - AMNT - - - - - LFO amount - - - - - Out gain - - - - - Gain - + Dodaj pot Dialog - - - Add JACK Application - - - - - Note: Features not implemented yet are greyed out - - - - - Application - - - - - Name: - - - - - Application: - - - - - From template - - - - - Custom - - - - - Template: - - - - - Command: - - - - - Setup - - - - - Session Manager: - - - - - None - - - - - Audio inputs: - - - - - MIDI inputs: - - - - - Audio outputs: - - - - - MIDI outputs: - - - - - Take control of main application window - - - - - Workarounds - - - - - Wait for external application start (Advanced, for Debug only) - - - - - Capture only the first X11 Window - - - - - Use previous client output buffer as input for the next client - - - - - Simulate 16 JACK MIDI outputs, with MIDI channel as port index - - - - - Error here - - Carla Control - Connect - + Carla Control - povezava Remote setup - + Nastavitev oddaljenega dostopa UDP Port: - + UDP vrata: Remote host: - + Oddaljeni gostitelj: TCP Port: - - - - - Reported host - - - - - Automatic - - - - - Custom: - - - - - In some networks (like USB connections), the remote system cannot reach the local network. You can specify here which hostname or IP to make the remote Carla connect to. -If you are unsure, leave it as 'Automatic'. - + TCP vrata: Set value - + Določi vrednost TextLabel - + TekstovnaOznaka Scale Points - + Točke povečave @@ -3567,979 +2022,37 @@ If you are unsure, leave it as 'Automatic'. Driver Settings - + Nastavitve gonilnika Device: - + Naprava: Buffer size: - + Velikost medpomnilnika: Sample rate: - + Frekvenca vzorčenja Triple buffer - + Trojni medpomnilnik Show Driver Control Panel - + Prikaži upravljalno ploščo gonilnika Restart the engine to load the new settings - - - - - DualFilterControlDialog - - - - FREQ - - - - - - Cutoff frequency - - - - - - RESO - - - - - - Resonance - - - - - - GAIN - - - - - - Gain - - - - - MIX - - - - - Mix - - - - - Filter 1 enabled - - - - - Filter 2 enabled - - - - - Enable/disable filter 1 - - - - - Enable/disable filter 2 - - - - - DualFilterControls - - - Filter 1 enabled - - - - - Filter 1 type - - - - - Cutoff frequency 1 - - - - - Q/Resonance 1 - - - - - Gain 1 - - - - - Mix - - - - - Filter 2 enabled - - - - - Filter 2 type - - - - - Cutoff frequency 2 - - - - - Q/Resonance 2 - - - - - Gain 2 - - - - - - Low-pass - - - - - - Hi-pass - - - - - - Band-pass csg - - - - - - Band-pass czpg - - - - - - Notch - - - - - - All-pass - - - - - - Moog - - - - - - 2x Low-pass - - - - - - RC Low-pass 12 dB/oct - - - - - - RC Band-pass 12 dB/oct - - - - - - RC High-pass 12 dB/oct - - - - - - RC Low-pass 24 dB/oct - - - - - - RC Band-pass 24 dB/oct - - - - - - RC High-pass 24 dB/oct - - - - - - Vocal Formant - - - - - - 2x Moog - - - - - - SV Low-pass - - - - - - SV Band-pass - - - - - - SV High-pass - - - - - - SV Notch - - - - - - Fast Formant - - - - - - Tripole - - - - - Editor - - - Transport controls - - - - - Play (Space) - - - - - Stop (Space) - - - - - Record - - - - - Record while playing - - - - - Toggle Step Recording - - - - - Effect - - - Effect enabled - - - - - Wet/Dry mix - Mokro/Suho - - - - Gate - - - - - Decay - - - - - EffectChain - - - Effects enabled - - - - - EffectRackView - - - EFFECTS CHAIN - - - - - Add effect - - - - - EffectSelectDialog - - - Add effect - - - - - - Name - Ime - - - - Type - - - - - Description - - - - - Author - - - - - EffectView - - - On/Off - - - - - W/D - - - - - Wet Level: - - - - - DECAY - - - - - Time: - - - - - GATE - - - - - Gate: - - - - - Controls - - - - - Move &up - - - - - Move &down - - - - - &Remove this plugin - - - - - EnvelopeAndLfoParameters - - - Env pre-delay - - - - - Env attack - - - - - Env hold - - - - - Env decay - - - - - Env sustain - - - - - Env release - - - - - Env mod amount - - - - - LFO pre-delay - - - - - LFO attack - - - - - LFO frequency - - - - - LFO mod amount - - - - - LFO wave shape - - - - - LFO frequency x 100 - - - - - Modulate env amount - - - - - EnvelopeAndLfoView - - - - DEL - - - - - - Pre-delay: - - - - - - ATT - - - - - - Attack: - - - - - HOLD - - - - - Hold: - - - - - DEC - - - - - Decay: - - - - - SUST - - - - - Sustain: - - - - - REL - - - - - Release: - - - - - - AMT - - - - - - Modulation amount: - - - - - SPD - - - - - Frequency: - - - - - FREQ x 100 - - - - - Multiply LFO frequency by 100 - - - - - MODULATE ENV AMOUNT - - - - - Control envelope amount by this LFO - - - - - ms/LFO: - - - - - Hint - - - - - Drag and drop a sample into this window. - - - - - EqControls - - - Input gain - - - - - Output gain - - - - - Low-shelf gain - - - - - Peak 1 gain - - - - - Peak 2 gain - - - - - Peak 3 gain - - - - - Peak 4 gain - - - - - High-shelf gain - - - - - HP res - - - - - Low-shelf res - - - - - Peak 1 BW - - - - - Peak 2 BW - - - - - Peak 3 BW - - - - - Peak 4 BW - - - - - High-shelf res - - - - - LP res - - - - - HP freq - - - - - Low-shelf freq - - - - - Peak 1 freq - - - - - Peak 2 freq - - - - - Peak 3 freq - - - - - Peak 4 freq - - - - - High-shelf freq - - - - - LP freq - - - - - HP active - - - - - Low-shelf active - - - - - Peak 1 active - - - - - Peak 2 active - - - - - Peak 3 active - - - - - Peak 4 active - - - - - High-shelf active - - - - - LP active - - - - - LP 12 - - - - - LP 24 - - - - - LP 48 - - - - - HP 12 - - - - - HP 24 - - - - - HP 48 - - - - - Low-pass type - - - - - High-pass type - - - - - Analyse IN - - - - - Analyse OUT - - - - - EqControlsDialog - - - HP - - - - - Low-shelf - - - - - Peak 1 - - - - - Peak 2 - - - - - Peak 3 - - - - - Peak 4 - - - - - High-shelf - - - - - LP - - - - - Input gain - - - - - - - Gain - - - - - Output gain - - - - - Bandwidth: - - - - - Octave - - - - - Resonance : - - - - - Frequency: - - - - - LP group - - - - - HP group - - - - - EqHandle - - - Reso: - - - - - BW: - - - - - - Freq: - + Ponovno zaženite pogon, da naložite nove nastavitve @@ -4552,2298 +2065,825 @@ If you are unsure, leave it as 'Automatic'. Export as loop (remove extra bar) - + Izvozi kot zanko (odstrani odvečni takt) Export between loop markers - + Izvoz med dvema oznakama Render Looped Section: - + Oblikuj ponavljajoči se razdelek: time(s) - + krat File format settings - + Nastavitve formata datoteke File format: - + Format datoteke: Sampling rate: - + Frekvenca vzorčenja: 44100 Hz - + 44100 Hz 48000 Hz - + 48000 Hz 88200 Hz - + 88200 Hz 96000 Hz - + 96000 Hz 192000 Hz - + 192000 Hz Bit depth: - + Bitna globina 16 Bit integer - + 16 bitni integer 24 Bit integer - + 24 bitni integer 32 Bit float - + 32 bitni float Stereo mode: - + Stero način: Mono - + Mono Stereo - + Stereo Joint stereo - + Združeni stereo Compression level: - + Stopnja stiskanja: Bitrate: - + Bitna hitrost: 64 KBit/s - + 64 kbit/s 128 KBit/s - + 128 kbit/s 160 KBit/s - + 160 kbit/s 192 KBit/s - + 192 kbit/s 256 KBit/s - + 256 kbit/s 320 KBit/s - + 320 kbit/s Use variable bitrate - + Uporabi variabilno bitno hitrost Quality settings - + Nastavitve kakovosti Interpolation: - + Prepletanje: Zero order hold - + Zadrževalnik ničtega reda (ZOH) Sinc worst (fastest) - + Sinh. slabo (hitro) Sinc medium (recommended) - + Sinh srednje (priporočeno) Sinc best (slowest) - + Sinh odlično (počasi) - - Oversampling: - - - - - 1x (None) - - - - - 2x - - - - - 4x - - - - - 8x - - - - + Start - + Zaženi - + Cancel Preklic - - - Could not open file - - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - - - - - Export project to %1 - Izvozi projekt v %1 - - - - ( Fastest - biggest ) - - - - - ( Slowest - smallest ) - - - - - Error - - - - - Error while determining file-encoder device. Please try to choose a different output format. - - - - - Rendering: %1% - - - - - Fader - - - Set value - - - - - Please enter a new value between %1 and %2: - Prosim vpišite novo vrednost med %1 in %2: - - - - FileBrowser - - - User content - - - - - Factory content - - - - - Browser - Brskalnik - - - - Search - - - - - Refresh list - - - - - FileBrowserTreeWidget - - - Send to active instrument-track - - - - - Open containing folder - - - - - Song Editor - Urejevalnik skladbe - - - - BB Editor - - - - - Send to new AudioFileProcessor instance - - - - - Send to new instrument track - - - - - (%2Enter) - - - - - Send to new sample track (Shift + Enter) - - - - - Loading sample - - - - - Please wait, loading sample for preview... - - - - - Error - - - - - %1 does not appear to be a valid %2 file - - - - - --- Factory files --- - - - - - FlangerControls - - - Delay samples - - - - - LFO frequency - - - - - Seconds - - - - - Stereo phase - - - - - Regen - - - - - Noise - - - - - Invert - - - - - FlangerControlsDialog - - - DELAY - - - - - Delay time: - - - - - RATE - - - - - Period: - - - - - AMNT - - - - - Amount: - - - - - PHASE - - - - - Phase: - - - - - FDBK - - - - - Feedback amount: - - - - - NOISE - - - - - White noise amount: - - - - - Invert - - - - - FreeBoyInstrument - - - Sweep time - - - - - Sweep direction - - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle - - - - - Channel 1 volume - - - - - - - Volume sweep direction - - - - - - - Length of each step in sweep - - - - - Channel 2 volume - - - - - Channel 3 volume - - - - - Channel 4 volume - - - - - Shift Register width - - - - - Right output level - - - - - Left output level - - - - - Channel 1 to SO2 (Left) - - - - - Channel 2 to SO2 (Left) - - - - - Channel 3 to SO2 (Left) - - - - - Channel 4 to SO2 (Left) - - - - - Channel 1 to SO1 (Right) - - - - - Channel 2 to SO1 (Right) - - - - - Channel 3 to SO1 (Right) - - - - - Channel 4 to SO1 (Right) - - - - - Treble - - - - - Bass - - - - - FreeBoyInstrumentView - - - Sweep time: - - - - - Sweep time - - - - - Sweep rate shift amount: - - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle: - - - - - - Wave pattern duty cycle - - - - - Square channel 1 volume: - - - - - Square channel 1 volume - - - - - - - Length of each step in sweep: - - - - - - - Length of each step in sweep - - - - - Square channel 2 volume: - - - - - Square channel 2 volume - - - - - Wave pattern channel volume: - - - - - Wave pattern channel volume - - - - - Noise channel volume: - - - - - Noise channel volume - - - - - SO1 volume (Right): - - - - - SO1 volume (Right) - - - - - SO2 volume (Left): - - - - - SO2 volume (Left) - - - - - Treble: - - - - - Treble - - - - - Bass: - - - - - Bass - - - - - Sweep direction - - - - - - - - - Volume sweep direction - - - - - Shift register width - - - - - Channel 1 to SO1 (Right) - - - - - Channel 2 to SO1 (Right) - - - - - Channel 3 to SO1 (Right) - - - - - Channel 4 to SO1 (Right) - - - - - Channel 1 to SO2 (Left) - - - - - Channel 2 to SO2 (Left) - - - - - Channel 3 to SO2 (Left) - - - - - Channel 4 to SO2 (Left) - - - - - Wave pattern graph - - - - - MixerChannelView - - - Channel send amount - - - - - Move &left - - - - - Move &right - - - - - Rename &channel - - - - - R&emove channel - - - - - Remove &unused channels - - - - - Set channel color - - - - - Remove channel color - - - - - Pick random channel color - - - - - MixerChannelLcdSpinBox - - - Assign to: - - - - - New mixer Channel - - - - - Mixer - - - Master - - - - - - - Channel %1 - - - - - Volume - Glasnost - - - - Mute - Mute - - - - Solo - Solist - - - - MixerView - - - Mixer - - - - - Fader %1 - - - - - Mute - Mute - - - - Mute this mixer channel - - - - - Solo - Solist - - - - Solo mixer channel - - - - - MixerRoute - - - - Amount to send from channel %1 to channel %2 - - - - - GigInstrument - - - Bank - - - - - Patch - - - - - Gain - - - - - GigInstrumentView - - - - Open GIG file - - - - - Choose patch - - - - - Gain: - - - - - GIG Files (*.gig) - - - - - GuiApplication - - - Working directory - - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - - - - - Preparing UI - - - - - Preparing song editor - Pripravljam Urejevalnik skladbe - - - - Preparing mixer - - - - - Preparing controller rack - - - - - Preparing project notes - - - - - Preparing beat/bassline editor - - - - - Preparing piano roll - Pripravljam Klavirčrtovje - - - - Preparing automation editor - - - - - InstrumentFunctionArpeggio - - - Arpeggio - - - - - Arpeggio type - - - - - Arpeggio range - - - - - Note repeats - - - - - Cycle steps - - - - - Skip rate - - - - - Miss rate - - - - - Arpeggio time - - - - - Arpeggio gate - - - - - Arpeggio direction - - - - - Arpeggio mode - - - - - Up - - - - - Down - - - - - Up and down - - - - - Down and up - - - - - Random - - - - - Free - - - - - Sort - - - - - Sync - - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - - - - - RANGE - - - - - Arpeggio range: - - - - - octave(s) - - - - - REP - - - - - Note repeats: - - - - - time(s) - - - - - CYCLE - - - - - Cycle notes: - - - - - note(s) - - - - - SKIP - - - - - Skip rate: - - - - - - - % - - - - - MISS - - - - - Miss rate: - - - - - TIME - - - - - Arpeggio time: - - - - - ms - - - - - GATE - - - - - Arpeggio gate: - - - - - Chord: - - - - - Direction: - - - - - Mode: - - InstrumentFunctionNoteStacking - - - octave - - - - - - Major - - - - - Majb5 - - - - - minor - - - - - minb5 - - - - - sus2 - - - - - sus4 - - - aug - + octave + oktava - augsus4 - + + Major + durova - tri - + Majb5 + H5-dur + + + + minor + molova - 6 - + minb5 + H5-mol - 6sus4 - + sus2 + sus2 - 6add9 - + sus4 + sus4 - m6 - + aug + aug - m6add9 - + augsus4 + augsus4 - - 7 - + + tri + tri - 7sus4 - + 6 + 6 - 7#5 - + 6sus4 + 6sus4 - 7b5 - + 6add9 + 6add9 - 7#9 - + m6 + mol6 - 7b9 - - - - - 7#5#9 - + m6add9 + m6add9 - 7#5b9 - + 7 + 7 - 7b5b9 - + 7sus4 + 7sus4 - 7add11 - + 7#5 + 7#5 - 7add13 - + 7b5 + 7b5 - 7#11 - + 7#9 + 7#9 - Maj7 - + 7b9 + 7b9 - Maj7b5 - + 7#5#9 + 7#5#9 - Maj7#5 - + 7#5b9 + 7#5b9 - Maj7#11 - + 7b5b9 + 7b5b9 - Maj7add13 - + 7add11 + 7add11 - m7 - + 7add13 + 7add13 - m7b5 - + 7#11 + 7#11 - m7b9 - + Maj7 + dur7 - m7add11 - + Maj7b5 + dur7h5 - m7add13 - + Maj7#5 + dur7#5 - m-Maj7 - + Maj7#11 + dur7#11 - m-Maj7add11 - + Maj7add13 + dur7add13 - m-Maj7add13 - + m7 + mol7 + + + + m7b5 + mol7b5 - 9 - + m7b9 + mol7b9 - 9sus4 - + m7add11 + mol7add11 - add9 - + m7add13 + mol7add13 - 9#5 - + m-Maj7 + mol-Maj7 - 9b5 - + m-Maj7add11 + mol-Maj7add11 - 9#11 - - - - - 9b13 - + m-Maj7add13 + mol-Maj7add13 - Maj9 - + 9 + 9 - Maj9sus4 - + 9sus4 + 9sus4 - Maj9#5 - + add9 + add9 - Maj9#11 - + 9#5 + 9#5 - m9 - + 9b5 + 9b5 - madd9 - + 9#11 + 9#11 - m9b5 - + 9b13 + 9b13 - m9-Maj7 - + Maj9 + dur9 + + + + Maj9sus4 + dur9sus4 - 11 - + Maj9#5 + dur9#5 - 11b9 - + Maj9#11 + dur9#11 - Maj11 - + m9 + mol9 - m11 - + madd9 + mol-add9 - m-Maj11 - + m9b5 + mol9b5 - - 13 - + + m9-Maj7 + mol9-Maj7 - 13#9 - + 11 + 11 - 13b9 - + 11b9 + 11b9 - 13b5b9 - + Maj11 + dur11 - Maj13 - + m11 + mol11 - m13 - + m-Maj11 + mol-Maj11 - - m-Maj13 - + + 13 + 13 + + + + 13#9 + 13#9 - Harmonic minor - + 13b9 + 13b9 - Melodic minor - + 13b5b9 + 13b5b9 - Whole tone - + Maj13 + dur13 - Diminished - + m13 + mol13 - Major pentatonic - - - - - Minor pentatonic - - - - - Jap in sen - + m-Maj13 + mol-Maj13 - Major bebop - + Harmonic minor + Harmonična molova - Dominant bebop - + Melodic minor + Melodična molova - Blues - + Whole tone + Cel ton - Arabic - + Diminished + zmanjšan - Enigmatic - + Major pentatonic + Durova pentatonika - Neopolitan - + Minor pentatonic + Molova pentatonika - Neopolitan minor - + Jap in sen + japonska in sen - Hungarian minor - + Major bebop + Durova bepop - Dorian - + Dominant bebop + Dominantna bepop - Phrygian - + Blues + Blues - Lydian - + Arabic + Arabska - Mixolydian - + Enigmatic + Enigmatična - Aeolian - + Neopolitan + Neopolitanska - Locrian - + Neopolitan minor + Neopolitanska molova - Minor - + Hungarian minor + Madžarska molova - Chromatic - + Dorian + Dorijanska - Half-Whole Diminished - + Phrygian + Frigijska + + + + Lydian + Lidijanska + Mixolydian + Miksolidijska + + + + Aeolian + Eolska + + + + Locrian + Lokrijska + + + + Minor + Molovska + + + + Chromatic + Kromatična + + + + Half-Whole Diminished + Pol-cele znižano + + + 5 5 - + Phrygian dominant - + Frigijska dominantna - + Persian - - - - - Chords - - - - - Chord type - - - - - Chord range - - - - - InstrumentFunctionNoteStackingView - - - STACKING - - - - - Chord: - - - - - RANGE - - - - - Chord range: - - - - - octave(s) - - - - - InstrumentMidiIOView - - - ENABLE MIDI INPUT - - - - - ENABLE MIDI OUTPUT - - - - - - CHAN - This string must be be short, its width must be less than * width of LCD spin-box of two digits - - - - - - VELOC - This string must be be short, its width must be less than * width of LCD spin-box of three digits - - - - - PROG - This string must be be short, its width must be less than the * width of LCD spin-box of three digits - - - - - NOTE - This string must be be short, its width must be less than * width of LCD spin-box of three digits - - - - - MIDI devices to receive MIDI events from - - - - - MIDI devices to send MIDI events to - - - - - CUSTOM BASE VELOCITY - - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. - - - - - BASE VELOCITY - - - - - InstrumentTuningView - - - MASTER PITCH - - - - - Enables the use of master pitch - + Perzijsko InstrumentSoundShaping - - - VOLUME - - - - - Volume - Obseg - - - - CUTOFF - - - - Cutoff frequency - + VOLUME + GLASNOST - RESO - - - - - Resonance - - - - - Envelopes/LFOs - - - - - Filter type - - - - - Q/Resonance - - - - - Low-pass - - - - - Hi-pass - - - - - Band-pass csg - - - - - Band-pass czpg - - - - - Notch - - - - - All-pass - - - - - Moog - - - - - 2x Low-pass - - - - - RC Low-pass 12 dB/oct - - - - - RC Band-pass 12 dB/oct - - - - - RC High-pass 12 dB/oct - - - - - RC Low-pass 24 dB/oct - - - - - RC Band-pass 24 dB/oct - - - - - RC High-pass 24 dB/oct - - - - - Vocal Formant - - - - - 2x Moog - - - - - SV Low-pass - - - - - SV Band-pass - - - - - SV High-pass - - - - - SV Notch - - - - - Fast Formant - - - - - Tripole - - - - - InstrumentSoundShapingView - - - TARGET - - - - - FILTER - - - - - FREQ - - - - - Cutoff frequency: - - - - - Hz - - - - - Q/RESO - - - - - Q/Resonance: - - - - - Envelopes, LFOs and filters are not supported by the current instrument. - - - - - InstrumentTrack - - - - unnamed_track - - - - - Base note - - - - - First note - - - - - Last note - - - - - Volume - Obseg - - - - Panning - - - - - Pitch - - - - - Pitch range - - - - - Mixer channel - - - - - Master pitch - Poveljnik ladje - - - - Enable/Disable MIDI CC - - - - - CC Controller %1 - - - - - - Default preset - - - - - InstrumentTrackView - - - Volume - Obseg - - - - Volume: - Glasnost: - - - - VOL - GLS - - - - Panning - - - - - Panning: - - - - - PAN - PAN - - - - MIDI - - - - - Input - - - - - Output - - - - - Open/Close MIDI CC Rack - - - - - Channel %1: %2 - - - - - InstrumentTrackWindow - - - GENERAL SETTINGS - - - - Volume Glasnost - - Volume: - Glasnost: + + CUTOFF + ODREZ - - VOL - GLS + + Cutoff frequency + Frekvenca rezanja - - Panning - + + RESO + RESO - - Panning: - - - - - PAN - PAN - - - - Pitch - - - - - Pitch: - - - - - cents - - - - - PITCH - - - - - Pitch range (semitones) - - - - - RANGE - - - - - Mixer channel - - - - - CHANNEL - - - - - Save current instrument track settings in a preset file - - - - - SAVE - SHRANI - - - - Envelope, filter & LFO - - - - - Chord stacking & arpeggio - - - - - Effects - - - - - MIDI - - - - - Miscellaneous - - - - - Save preset - Shrani glasbilce - - - - XML preset file (*.xpf) - - - - - Plugin - + + Resonance + Resnonanca - JackApplicationW + JackAppDialog - + + Add JACK Application + + + + + Note: Features not implemented yet are greyed out + + + + + Application + + + + + Name: + + + + + Application: + + + + + From template + + + + + Custom + + + + + Template: + + + + + Command: + + + + + Setup + + + + + Session Manager: + + + + + None + + + + + Audio inputs: + + + + + MIDI inputs: + + + + + Audio outputs: + + + + + MIDI outputs: + + + + + Take control of main application window + + + + + Workarounds + + + + + Wait for external application start (Advanced, for Debug only) + + + + + Capture only the first X11 Window + + + + + Use previous client output buffer as input for the next client + + + + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + + + + + Error here + + + + NSM applications cannot use abstract or absolute paths - + NSM applications cannot use CLI arguments - + You need to save the current Carla project before NSM can be used @@ -6851,943 +2891,9 @@ Please make sure you have write permission to the file and the directory contain JuceAboutW - - About JUCE - - - - - <b>About JUCE</b> - - - - - This program uses JUCE version 3.x.x. - - - - - JUCE (Jules' Utility Class Extensions) is an all-encompassing C++ class library for developing cross-platform software. - -It contains pretty much everything you're likely to need to create most applications, and is particularly well-suited for building highly-customised GUIs, and for handling graphics and sound. - -JUCE is licensed under the GNU Public Licence version 2.0. -One module (juce_core) is permissively licensed under the ISC. - -Copyright (C) 2017 ROLI Ltd. - - - - + This program uses JUCE version %1. - - - - - Knob - - - Set linear - - - - - Set logarithmic - - - - - - Set value - - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - - - - - Please enter a new value between %1 and %2: - Prosim vpišite novo vrednost med %1 in %2: - - - - LadspaControl - - - Link channels - - - - - LadspaControlDialog - - - Link Channels - - - - - Channel - - - - - LadspaControlView - - - Link channels - - - - - Value: - - - - - LadspaEffect - - - Unknown LADSPA plugin %1 requested. - - - - - LcdFloatSpinBox - - - Set value - - - - - Please enter a new value between %1 and %2: - Prosim vpišite novo vrednost med %1 in %2: - - - - LcdSpinBox - - - Set value - - - - - Please enter a new value between %1 and %2: - Prosim vpišite novo vrednost med %1 in %2: - - - - LeftRightNav - - - - - Previous - - - - - - - Next - - - - - Previous (%1) - - - - - Next (%1) - - - - - LfoController - - - LFO Controller - - - - - Base value - - - - - Oscillator speed - - - - - Oscillator amount - - - - - Oscillator phase - - - - - Oscillator waveform - - - - - Frequency Multiplier - - - - - LfoControllerDialog - - - LFO - - - - - BASE - - - - - Base: - - - - - FREQ - - - - - LFO frequency: - - - - - AMNT - - - - - Modulation amount: - - - - - PHS - - - - - Phase offset: - - - - - degrees - - - - - Sine wave - - - - - Triangle wave - - - - - Saw wave - - - - - Square wave - - - - - Moog saw wave - - - - - Exponential wave - - - - - White noise - - - - - User-defined shape. -Double click to pick a file. - - - - - Mutliply modulation frequency by 1 - - - - - Mutliply modulation frequency by 100 - - - - - Divide modulation frequency by 100 - - - - - Engine - - - Generating wavetables - - - - - Initializing data structures - - - - - Opening audio and midi devices - - - - - Launching mixer threads - - - - - MainWindow - - - Configuration file - - - - - Error while parsing configuration file at line %1:%2: %3 - - - - - Could not open file - - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - - - - - Project recovery - - - - - There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - - - - - - Recover - - - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - - - - - - Discard - - - - - Launch a default session and delete the restored files. This is not reversible. - - - - - Version %1 - - - - - Preparing plugin browser - - - - - Preparing file browsers - - - - - My Projects - Moji projekti - - - - My Samples - - - - - My Presets - - - - - My Home - - - - - Root directory - - - - - Volumes - - - - - My Computer - - - - - &File - - - - - &New - &Novo - - - - &Open... - &Odpri... - - - - Loading background picture - - - - - &Save - &Shrani - - - - Save &As... - Shr%Ani kot... - - - - Save as New &Version - Shrani kot no&Vo različico - - - - Save as default template - Shrani kot privzeto predlogo - - - - Import... - Uvozi... - - - - E&xport... - - - - - E&xport Tracks... - - - - - Export &MIDI... - Izvoz &MIDI... - - - - &Quit - Izhod - - - - &Edit - Ur&Edi - - - - Undo - Razveljavi - - - - Redo - Uveljavi - - - - Settings - Nastavitve - - - - &View - - - - - &Tools - - - - - &Help - - - - - Online Help - - - - - Help - - - - - About - Vizitka - - - - Create new project - Ustvari nov projekt - - - - Create new project from template - Ustvari nov projekt iz predloge - - - - Open existing project - Odpri obstoječi projekt - - - - Recently opened projects - Nedavno odprti projekti - - - - Save current project - Shrani trenutni projekt - - - - Export current project - Izvozi trenutni projekt - - - - Metronome - - - - - - Song Editor - Urejevalnik skladbe - - - - - Beat+Bassline Editor - Ritem+bas urejevalnik - - - - - Piano Roll - Klavirčrtovje - - - - - Automation Editor - Samodejnik - - - - - Mixer - - - - - Show/hide controller rack - - - - - Show/hide project notes - - - - - Untitled - - - - - Recover session. Please save your work! - - - - - LMMS %1 - - - - - Recovered project not saved - - - - - This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? - - - - - Project not saved - Projekt ni shranjen - - - - The current project was modified since last saving. Do you want to save it now? - - - - - Open Project - Odpri projekt - - - - LMMS (*.mmp *.mmpz) - - - - - Save Project - Shrani projekt - - - - LMMS Project - LMMS projekt - - - - LMMS Project Template - Predloga za LMMS projekt - - - - Save project template - - - - - Overwrite default template? - - - - - This will overwrite your current default template. - - - - - Help not available - - - - - Currently there's no help available in LMMS. -Please visit http://lmms.sf.net/wiki for documentation on LMMS. - - - - - Controller Rack - - - - - Project Notes - Zabeležke o projektu - - - - Fullscreen - - - - - Volume as dBFS - - - - - Smooth scroll - - - - - Enable note labels in piano roll - - - - - MIDI File (*.mid) - - - - - - untitled - Neimenovan - - - - - Select file for project-export... - Izberi datoteko za izvoz projekta... - - - - Select directory for writing exported tracks... - - - - - Save project - - - - - Project saved - Projekt je shranjen - - - - The project %1 is now saved. - Projekt %1 je zdaj shranjen - - - - Project NOT saved. - Projekt NI shranjen - - - - The project %1 was not saved! - Projekt %1 ni bil shranjen - - - - Import file - Uvozi datoteko - - - - MIDI sequences - - - - - Hydrogen projects - Hydrogen projekti - - - - All file types - Dovoljene vrste datotek - - - - MeterDialog - - - - Meter Numerator - - - - - Meter numerator - - - - - - Meter Denominator - - - - - Meter denominator - - - - - TIME SIG - - - - - MeterModel - - - Numerator - - - - - Denominator - - - - - MidiCCRackView - - - - MIDI CC Rack - %1 - - - - - MIDI CC Knobs: - - - - - CC %1 - - - - - MidiController - - - MIDI Controller - - - - - unnamed_midi_controller - - - - - MidiImport - - - - Setup incomplete - - - - - You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. - - - - - You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - - - - - MIDI Time Signature Numerator - - - - - MIDI Time Signature Denominator - - - - - Numerator - - - - - Denominator - - - - - Track - - - - - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - - - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - + Ta program uporablja JUCE različice %1 @@ -7795,71 +2901,71 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MIDI Pattern - + MIDI matrika Time Signature: - + Časovna oznaka: 1/4 - + 1/4 2/4 - + 2/4 3/4 - + 3/4 4/4 - + 4/4 5/4 - + 5/4 6/4 - + 6/4 Measures: - + Merila: 1 - + 1 2 - + 2 3 - + 3 4 - + 4 @@ -7869,120 +2975,120 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. 6 - + 6 7 - + 7 8 - + 8 9 - + 9 10 - + 10 11 - + 11 12 - + 12 13 - + 13 14 - + 14 15 - + 15 16 - + 16 Default Length: - + Privzeta dolžina: 1/16 - + 1/16 1/15 - + 1/15 1/12 - + 1/12 1/9 - + 1/9 1/8 - + 1/8 1/6 - + 1/6 1/3 - + 1/3 1/2 - + 1/2 Quantize: - + Kvantizacija: &File - + %Datoteka @@ -7995,2729 +3101,370 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Izhod - - &Insert Mode + + Esc - F - + &Insert Mode + Način vstavljanja - - &Velocity Mode - + + F + F - D - + &Velocity Mode + Način &hitrosti - - Select All - + + D + D + Select All + Izberi vse + + + A - - - - - MidiPort - - - Input channel - - - - - Output channel - - - - - Input controller - - - - - Output controller - - - - - Fixed input velocity - - - - - Fixed output velocity - - - - - Fixed output note - - - - - Output MIDI program - - - - - Base velocity - - - - - Receive MIDI-events - - - - - Send MIDI-events - - - - - MidiSetupWidget - - - Device - - - - - MonstroInstrument - - - Osc 1 volume - - - - - Osc 1 panning - - - - - Osc 1 coarse detune - - - - - Osc 1 fine detune left - - - - - Osc 1 fine detune right - - - - - Osc 1 stereo phase offset - - - - - Osc 1 pulse width - - - - - Osc 1 sync send on rise - - - - - Osc 1 sync send on fall - - - - - Osc 2 volume - - - - - Osc 2 panning - - - - - Osc 2 coarse detune - - - - - Osc 2 fine detune left - - - - - Osc 2 fine detune right - - - - - Osc 2 stereo phase offset - - - - - Osc 2 waveform - - - - - Osc 2 sync hard - - - - - Osc 2 sync reverse - - - - - Osc 3 volume - - - - - Osc 3 panning - - - - - Osc 3 coarse detune - - - - - Osc 3 Stereo phase offset - - - - - Osc 3 sub-oscillator mix - - - - - Osc 3 waveform 1 - - - - - Osc 3 waveform 2 - - - - - Osc 3 sync hard - - - - - Osc 3 Sync reverse - - - - - LFO 1 waveform - - - - - LFO 1 attack - - - - - LFO 1 rate - - - - - LFO 1 phase - - - - - LFO 2 waveform - - - - - LFO 2 attack - - - - - LFO 2 rate - - - - - LFO 2 phase - - - - - Env 1 pre-delay - - - - - Env 1 attack - - - - - Env 1 hold - - - - - Env 1 decay - - - - - Env 1 sustain - - - - - Env 1 release - - - - - Env 1 slope - - - - - Env 2 pre-delay - - - - - Env 2 attack - - - - - Env 2 hold - - - - - Env 2 decay - - - - - Env 2 sustain - - - - - Env 2 release - - - - - Env 2 slope - - - - - Osc 2+3 modulation - - - - - Selected view - - - - - Osc 1 - Vol env 1 - - - - - Osc 1 - Vol env 2 - - - - - Osc 1 - Vol LFO 1 - - - - - Osc 1 - Vol LFO 2 - - - - - Osc 2 - Vol env 1 - - - - - Osc 2 - Vol env 2 - - - - - Osc 2 - Vol LFO 1 - - - - - Osc 2 - Vol LFO 2 - - - - - Osc 3 - Vol env 1 - - - - - Osc 3 - Vol env 2 - - - - - Osc 3 - Vol LFO 1 - - - - - Osc 3 - Vol LFO 2 - - - - - Osc 1 - Phs env 1 - - - - - Osc 1 - Phs env 2 - - - - - Osc 1 - Phs LFO 1 - - - - - Osc 1 - Phs LFO 2 - - - - - Osc 2 - Phs env 1 - - - - - Osc 2 - Phs env 2 - - - - - Osc 2 - Phs LFO 1 - - - - - Osc 2 - Phs LFO 2 - - - - - Osc 3 - Phs env 1 - - - - - Osc 3 - Phs env 2 - - - - - Osc 3 - Phs LFO 1 - - - - - Osc 3 - Phs LFO 2 - - - - - Osc 1 - Pit env 1 - - - - - Osc 1 - Pit env 2 - - - - - Osc 1 - Pit LFO 1 - - - - - Osc 1 - Pit LFO 2 - - - - - Osc 2 - Pit env 1 - - - - - Osc 2 - Pit env 2 - - - - - Osc 2 - Pit LFO 1 - - - - - Osc 2 - Pit LFO 2 - - - - - Osc 3 - Pit env 1 - - - - - Osc 3 - Pit env 2 - - - - - Osc 3 - Pit LFO 1 - - - - - Osc 3 - Pit LFO 2 - - - - - Osc 1 - PW env 1 - - - - - Osc 1 - PW env 2 - - - - - Osc 1 - PW LFO 1 - - - - - Osc 1 - PW LFO 2 - - - - - Osc 3 - Sub env 1 - - - - - Osc 3 - Sub env 2 - - - - - Osc 3 - Sub LFO 1 - - - - - Osc 3 - Sub LFO 2 - - - - - - Sine wave - - - - - Bandlimited Triangle wave - - - - - Bandlimited Saw wave - - - - - Bandlimited Ramp wave - - - - - Bandlimited Square wave - - - - - Bandlimited Moog saw wave - - - - - - Soft square wave - - - - - Absolute sine wave - - - - - - Exponential wave - - - - - White noise - - - - - Digital Triangle wave - - - - - Digital Saw wave - - - - - Digital Ramp wave - - - - - Digital Square wave - - - - - Digital Moog saw wave - - - - - Triangle wave - - - - - Saw wave - - - - - Ramp wave - - - - - Square wave - - - - - Moog saw wave - - - - - Abs. sine wave - - - - - Random - - - - - Random smooth - - - - - MonstroView - - - Operators view - - - - - Matrix view - - - - - - - Volume - Obseg - - - - - - Panning - - - - - - - Coarse detune - - - - - - - semitones - - - - - - Fine tune left - - - - - - - - cents - - - - - - Fine tune right - - - - - - - Stereo phase offset - - - - - - - - - deg - - - - - Pulse width - - - - - Send sync on pulse rise - - - - - Send sync on pulse fall - - - - - Hard sync oscillator 2 - - - - - Reverse sync oscillator 2 - - - - - Sub-osc mix - - - - - Hard sync oscillator 3 - - - - - Reverse sync oscillator 3 - - - - - - - - Attack - - - - - - Rate - - - - - - Phase - - - - - - Pre-delay - - - - - - Hold - - - - - - Decay - - - - - - Sustain - - - - - - Release - Prepustitev - - - - - Slope - - - - - Mix osc 2 with osc 3 - - - - - Modulate amplitude of osc 3 by osc 2 - - - - - Modulate frequency of osc 3 by osc 2 - - - - - Modulate phase of osc 3 by osc 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Modulation amount - - - - - MultitapEchoControlDialog - - - Length - - - - - Step length: - - - - - Dry - - - - - Dry gain: - - - - - Stages - - - - - Low-pass stages: - - - - - Swap inputs - - - - - Swap left and right input channels for reflections - - - - - NesInstrument - - - Channel 1 coarse detune - - - - - Channel 1 volume - - - - - Channel 1 envelope length - - - - - Channel 1 duty cycle - - - - - Channel 1 sweep amount - - - - - Channel 1 sweep rate - - - - - Channel 2 Coarse detune - - - - - Channel 2 Volume - - - - - Channel 2 envelope length - - - - - Channel 2 duty cycle - - - - - Channel 2 sweep amount - - - - - Channel 2 sweep rate - - - - - Channel 3 coarse detune - - - - - Channel 3 volume - - - - - Channel 4 volume - - - - - Channel 4 envelope length - - - - - Channel 4 noise frequency - - - - - Channel 4 noise frequency sweep - - - - - Master volume - Poveljnik ladje - - - - Vibrato - Vibrato - - - - NesInstrumentView - - - - - - Volume - Obseg - - - - - - Coarse detune - - - - - - - Envelope length - - - - - Enable channel 1 - - - - - Enable envelope 1 - - - - - Enable envelope 1 loop - - - - - Enable sweep 1 - - - - - - Sweep amount - - - - - - Sweep rate - - - - - - 12.5% Duty cycle - - - - - - 25% Duty cycle - - - - - - 50% Duty cycle - - - - - - 75% Duty cycle - - - - - Enable channel 2 - - - - - Enable envelope 2 - - - - - Enable envelope 2 loop - - - - - Enable sweep 2 - - - - - Enable channel 3 - - - - - Noise Frequency - - - - - Frequency sweep - - - - - Enable channel 4 - - - - - Enable envelope 4 - - - - - Enable envelope 4 loop - - - - - Quantize noise frequency when using note frequency - - - - - Use note frequency for noise - - - - - Noise mode - - - - - Master volume - Poveljnik ladje - - - - Vibrato - Vibrato - - - - OpulenzInstrument - - - Patch - - - - - Op 1 attack - - - - - Op 1 decay - - - - - Op 1 sustain - - - - - Op 1 release - - - - - Op 1 level - - - - - Op 1 level scaling - - - - - Op 1 frequency multiplier - - - - - Op 1 feedback - - - - - Op 1 key scaling rate - - - - - Op 1 percussive envelope - - - - - Op 1 tremolo - - - - - Op 1 vibrato - - - - - Op 1 waveform - - - - - Op 2 attack - - - - - Op 2 decay - - - - - Op 2 sustain - - - - - Op 2 release - - - - - Op 2 level - - - - - Op 2 level scaling - - - - - Op 2 frequency multiplier - - - - - Op 2 key scaling rate - - - - - Op 2 percussive envelope - - - - - Op 2 tremolo - - - - - Op 2 vibrato - - - - - Op 2 waveform - - - - - FM - - - - - Vibrato depth - - - - - Tremolo depth - - - - - OpulenzInstrumentView - - - - Attack - - - - - - Decay - - - - - - Release - Prepustitev - - - - - Frequency multiplier - - - - - OscillatorObject - - - Osc %1 waveform - - - - - Osc %1 harmonic - - - - - - Osc %1 volume - - - - - - Osc %1 panning - - - - - - Osc %1 fine detuning left - - - - - Osc %1 coarse detuning - - - - - Osc %1 fine detuning right - - - - - Osc %1 phase-offset - - - - - Osc %1 stereo phase-detuning - - - - - Osc %1 wave shape - - - - - Modulation type %1 - - - - - Oscilloscope - - - Oscilloscope - - - - - Click to enable - + A PatchesDialog + Qsynth: Channel Preset - + QSynth: Predloga kanala + Bank selector - + Izbirnik tabele + Bank - + Tabela + Program selector - + Izbirnik programa + Patch - + Program + Name Ime + OK V redu + Cancel Preklic - - PatmanView - - - Open patch - - - - - Loop - - - - - Loop mode - - - - - Tune - - - - - Tune mode - - - - - No file selected - - - - - Open patch file - - - - - Patch-Files (*.pat) - - - - - MidiClipView - - - Open in piano-roll - Odpri v Klavirčrtovju - - - - Set as ghost in piano-roll - - - - - Clear all notes - - - - - Reset name - - - - - Change name - - - - - Add steps - - - - - Remove steps - - - - - Clone Steps - - - - - PeakController - - - Peak Controller - - - - - Peak Controller Bug - - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - - - - - PeakControllerDialog - - - PEAK - - - - - LFO Controller - - - - - PeakControllerEffectControlDialog - - - BASE - - - - - Base: - - - - - AMNT - - - - - Modulation amount: - - - - - MULT - - - - - Amount multiplicator: - - - - - ATCK - - - - - Attack: - - - - - DCAY - - - - - Release: - - - - - TRSH - - - - - Treshold: - - - - - Mute output - - - - - Absolute value - - - - - PeakControllerEffectControls - - - Base value - - - - - Modulation amount - - - - - Attack - - - - - Release - Prepustitev - - - - Treshold - Treshold - - - - Mute output - - - - - Absolute value - - - - - Amount multiplicator - - - - - PianoRoll - - - Note Velocity - - - - - Note Panning - - - - - Mark/unmark current semitone - - - - - Mark/unmark all corresponding octave semitones - - - - - Mark current scale - - - - - Mark current chord - - - - - Unmark all - - - - - Select all notes on this key - - - - - Note lock - - - - - Last note - - - - - No key - - - - - No scale - - - - - No chord - - - - - Nudge - - - - - Snap - - - - - Velocity: %1% - - - - - Panning: %1% left - - - - - Panning: %1% right - - - - - Panning: center - - - - - Glue notes failed - - - - - Please select notes to glue first. - - - - - Please open a clip by double-clicking on it! - - - - - - Please enter a new value between %1 and %2: - Prosim vpišite novo vrednost med %1 in %2: - - - - PianoRollWindow - - - Play/pause current clip (Space) - - - - - Record notes from MIDI-device/channel-piano - - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - - - - - Record notes from MIDI-device/channel-piano, one step at the time - - - - - Stop playing of current clip (Space) - - - - - Edit actions - - - - - Draw mode (Shift+D) - - - - - Erase mode (Shift+E) - - - - - Select mode (Shift+S) - - - - - Pitch Bend mode (Shift+T) - - - - - Quantize - - - - - Quantize positions - - - - - Quantize lengths - - - - - File actions - - - - - Import clip - - - - - - Export clip - - - - - Copy paste controls - - - - - Cut (%1+X) - - - - - Copy (%1+C) - - - - - Paste (%1+V) - - - - - Timeline controls - - - - - Glue - - - - - Knife - - - - - Fill - - - - - Cut overlaps - - - - - Min length as last - - - - - Max length as last - - - - - Zoom and note controls - - - - - Horizontal zooming - - - - - Vertical zooming - - - - - Quantization - - - - - Note length - - - - - Key - - - - - Scale - - - - - Chord - - - - - Snap mode - - - - - Clear ghost notes - - - - - - Piano-Roll - %1 - Klavirčrtovje - %1 - - - - - Piano-Roll - no clip - Klavirčrtovje - ni šablone - - - - - XML clip file (*.xpt *.xptz) - - - - - Export clip success - - - - - Clip saved to %1 - - - - - Import clip. - - - - - You are about to import a clip, this will overwrite your current clip. Do you want to continue? - - - - - Open clip - - - - - Import clip success - - - - - Imported clip %1! - - - - - PianoView - - - Base note - - - - - First note - - - - - Last note - - - - - Plugin - - - Plugin not found - - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - - - - - Error while loading plugin - - - - - Failed to load plugin "%1"! - - - PluginBrowser - - Instrument Plugins - - - - - Instrument browser - - - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - - - - + no description - + ni opisa - + A native amplifier plugin - + Lastni vtičnik ojačevalca - + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track - + Prepsot vzorčevalnik z različnimi nastavitvami za rabo vzorcev (npr. bobnov) na instrumentalni stezi - + Boost your bass the fast and simple way - + Poudarite bas na hiter in enostaven način - + Customizable wavetable synthesizer - + Prilagodljiv sintetizator s tabelami valovnih oblik - + An oversampling bitcrusher - + Prevzorčevalni lomilec bitov - + Carla Patchbay Instrument - + Carla Patchbay Instrument - + Carla Rack Instrument - + Carla regal instrumenti - + A dynamic range compressor. - + Kompresor z dinamičnim razponom - + A 4-band Crossover Equalizer - + 4 pasovni navzkrižni izravnalnik - + A native delay plugin - + lastni vtičnik za zamik - + A Dual filter plugin - + Dvojni filter vtičnik - + plugin for processing dynamics in a flexible way - + vtičnik za procesiranje dinamike na fleksibilen način - + A native eq plugin - + Lastni eq vtičnik - + A native flanger plugin - + Lastni flanger vtičnik - + Emulation of GameBoy (TM) APU - + Emulacija GameBoy (tm) APU - + Player for GIG files - + Predvajalnik za GIG datoteke - + Filter for importing Hydrogen files into LMMS Sito za uvažanje Hydrogen datotek v LMMS - + Versatile drum synthesizer - + Vsestranski sintetizator bobnov - + List installed LADSPA plugins - + Seznam nameščenih LADSPA vtičnikov - + plugin for using arbitrary LADSPA-effects inside LMMS. - + vtičnik za rabo poljubnih LADSPA instrumentov v LMMS. - + Incomplete monophonic imitation TB-303 - + Nepopolna monofonična imitacija tv303 - + plugin for using arbitrary LV2-effects inside LMMS. - + vtičnik za rabo poljubnih LV2 učinkov v LMMS. - + plugin for using arbitrary LV2 instruments inside LMMS. - + vtičnik za rabo poljubnih LV2 instrumentov v LMMS. - + Filter for exporting MIDI-files from LMMS Sito za izvažanje MIDI datotek iz LMMS - + Filter for importing MIDI-files into LMMS Sito za uvažanje MIDI datotek v LMMS - + Monstrous 3-oscillator synth with modulation matrix - + Pošasten 3-oscilatorski sintetizator z modulacijsko matriko - + A multitap echo delay plugin - + Vtičnik za multitap eho zamik - + A NES-like synthesizer - + NES-u podoben sintetizator - + 2-operator FM Synth - + Fm sintetizator z dvema operatorjema - + Additive Synthesizer for organ-like sounds - + Aditivni sintetizator za orglasto zveneče zvoke - + GUS-compatible patch instrument - + GUS-združljiv programski instrument - + Plugin for controlling knobs with sound peaks - + Vtičnik za nadzor vrtljivih regulatorjev z vrhovi zvoka - + Reverb algorithm by Sean Costello - + Algoritem odjeka je ustvaril Sean Costello - + Player for SoundFont files - + Predvajalnik za SoundFont datoteke - + LMMS port of sfxr - + LMMS vrata za sfxr - + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. - + Emulacija za MOS6581 in MOS8580 SID. +Ta čipa sta bila uporabljane v računalniku Commodore 64. - + A graphical spectrum analyzer. - + Grafični spektralni analizator. - + Plugin for enhancing stereo separation of a stereo input file - + Vtičnik za poudarjanje ločenosti kanalov stereo vhodne datoteke - + Plugin for freely manipulating stereo output - + Vtičnik za prosto manipulacijo stereo izhoda - + Tuneful things to bang on - + Nastavljive zadeve za uporabo - + Three powerful oscillators you can modulate in several ways - + Trije zmogljivi oscilatorji, ki jih lahko modulirate na številne načine - + A stereo field visualizer. - + Vizualizacija stereo polja. - + VST-host for using VST(i)-plugins within LMMS - + VST-gostitelj za rabo VST(i)-vtičnikov z LMMS - + Vibrating string modeler - + Oblikovalec vibrirajočih strun - + plugin for using arbitrary VST effects inside LMMS. - + vtičnik za rabo poljubnih VST učinkov v LMMS. - + 4-oscillator modulatable wavetable synth - + 4-oscilatorski modulirajoči sintetizator s tabelami valovnih oblik - + plugin for waveshaping - + vtičnik za oblikovanje valov - + Mathematical expression parser - + Razčlenjevalnik matematičnih izrazov - + Embedded ZynAddSubFX - + Vdelan ZynAddSubFX - - - PluginDatabaseW - - Carla - Add New + + An all-pass filter allowing for extremely high orders. + Filter vseh pasov za ekstremno visoke rede + + + + Granular pitch shifter - - Format + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. - - Internal + + Basic Slicer - - LADSPA - - - - - DSSI - - - - - LV2 - - - - - VST2 - - - - - VST3 - - - - - AU - - - - - Sound Kits - - - - - Type - - - - - Effects - - - - - Instruments - - - - - MIDI Plugins - - - - - Other/Misc - - - - - Architecture - - - - - Native - - - - - Bridged - - - - - Bridged (Wine) - - - - - Requirements - - - - - With Custom GUI - - - - - With CV Ports - - - - - Real-time safe only - - - - - Stereo only - - - - - With Inline Display - - - - - Favorites only - - - - - (Number of Plugins go here) - - - - - &Add Plugin - - - - - Cancel - Preklic - - - - Refresh - - - - - Reset filters - - - - - - - - - - - - - - - - - - - - TextLabel - - - - - Format: - - - - - Architecture: - - - - - Type: - - - - - MIDI Ins: - - - - - Audio Ins: - - - - - CV Outs: - - - - - MIDI Outs: - - - - - Parameter Ins: - - - - - Parameter Outs: - - - - - Audio Outs: - - - - - CV Ins: - - - - - UniqueID: - - - - - Has Inline Display: - - - - - Has Custom GUI: - - - - - Is Synth: - - - - - Is Bridged: - - - - - Information - - - - - Name - Ime - - - - Label/URI - - - - - Maker - - - - - Binary/Filename - - - - - Focus Text Search - - - - - Ctrl+F - + + Tap to the beat + Tapkajte v ritmu @@ -10725,58 +3472,58 @@ This chip was used in the Commodore 64 computer. Plugin Editor - + Urejevalnik vtičnikov Edit - + Uredi Control - + Kontrola MIDI Control Channel: - + Kanal MIDI kontrola: N - + N Output dry/wet (100%) - + Izhod surovo/obogateno (100%) Output volume (100%) - + Izhodna glasnost (100%) Balance Left (0%) - + Ravnovesje levo (0%) Balance Right (0%) - + Ravnovesje desno (0%) Use Balance - + Uporabi ravnovesje Use Panning - + Uporabi panoramo @@ -10786,136 +3533,584 @@ This chip was used in the Commodore 64 computer. Use Chunks - + Uporabi kose Audio: - + Zvok: Fixed-Size Buffer - + Stalna velikost medpomnilnika Force Stereo (needs reload) - + Prisili stereo (zahteva ponovni zagon) MIDI: - + MIDI: Map Program Changes - + Mapiraj spremembe programa - Send Bank/Program Changes + Send Notes - Send Control Changes - + Send Bank/Program Changes + Pošlji spremembe tabele/programa - Send Channel Pressure - + Send Control Changes + Pošlji sprembe kontrole - Send Note Aftertouch - + Send Channel Pressure + Pošlji pritisk kanala - Send Pitchbend - + Send Note Aftertouch + Pošlji po-dotik note - Send All Sound/Notes Off - + Send Pitchbend + Pošlji pregib višine - + + Send All Sound/Notes Off + Pošlji vse note/izklopi note + + + Plugin Name - + +Ime vtičnika + - + Program: - + Program: - + MIDI Program: - + MIDI Program: - + Save State - + Shrani stanje - + Load State - + Naloži stanje - + Information - + Informacije - + Label/URI: - + Oznaka/URI: - + Name: - + Ime: - + Type: - + Vrsta: - + Maker: - + Ustvaril: - + Copyright: - + Avtorstvo: - + Unique ID: - + Edinstven ID: PluginFactory - + Plugin not found. + Vtičnik ni najden. + + + + LMMS plugin %1 does not have a plugin descriptor named %2! + LMMS vtičnik %1 nima označevalca vtičnika z imenom %2! + + + + PluginListDialog + + + Carla - Add New - - LMMS plugin %1 does not have a plugin descriptor named %2! + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No @@ -10924,166 +4119,70 @@ Plugin Name Form - + Oblika Parameter Name - + Ime parametra - ... + TextLabel + + + ... + ... + - PluginRefreshW + PluginRefreshDialog - - Carla - Refresh + + Plugin Refresh - - Search for new... + + Search for: - - LADSPA + + All plugins, ignoring cache - - DSSI + + Updated plugins only - - LV2 + + Check previously invalid plugins - - VST2 - - - - - VST3 - - - - - AU - - - - - SF2/3 - - - - - SFZ - - - - - Native - - - - - POSIX 32bit - - - - - POSIX 64bit - - - - - Windows 32bit - - - - - Windows 64bit - - - - - Available tools: - - - - - python3-rdflib (LADSPA-RDF support) - - - - - carla-discovery-win64 - - - - - carla-discovery-native - - - - - carla-discovery-posix32 - - - - - carla-discovery-posix64 - - - - - carla-discovery-win32 - - - - - Options: - - - - - Carla will run small processing checks when scanning the plugins (to make sure they won't crash). -You can disable these checks to get a faster scanning time (at your own risk). - - - - - Run processing checks while scanning - - - - + Press 'Scan' to begin the search - + Scan - + >> Skip - + Close - Zapri + @@ -11095,5232 +4194,14682 @@ You can disable these checks to get a faster scanning time (at your own risk). Frame - + Okvir - + Enable - + Vklopi - + On/Off - + Vklopi/izklopi - + - + PluginName - + ImeVtičnika - + MIDI - + MIDI - + AUDIO IN - + ZVOČNI VHOD - + AUDIO OUT - + ZVOČNI IZHOD - + GUI - + GUI - + Edit - + Uredi - + Remove - + Odstrani Plugin Name - + Ime vtičnika Preset: - - - - - ProjectNotes - - - Project Notes - Zabeležke o projektu - - - - Enter project notes here - - - - - Edit Actions - - - - - &Undo - Razveljavi - - - - %1+Z - - - - - &Redo - Uveljavi - - - - %1+Y - - - - - &Copy - - - - - %1+C - - - - - Cu&t - - - - - %1+X - - - - - &Paste - - - - - %1+V - - - - - Format Actions - - - - - &Bold - - - - - %1+B - - - - - &Italic - - - - - %1+I - - - - - &Underline - - - - - %1+U - - - - - &Left - - - - - %1+L - - - - - C&enter - - - - - %1+E - - - - - &Right - - - - - %1+R - - - - - &Justify - - - - - %1+J - - - - - &Color... - + Predloga: ProjectRenderer - + WAV (*.wav) - + WAV (*.wav) - + FLAC (*.flac) - + FLAC (*.flac) - + OGG (*.ogg) - + OGG (*.ogg) - + MP3 (*.mp3) + MP3 (*.mp3) + + + + QGroupBox + + + + Settings for %1 QObject - + Reload Plugin - + Ponovno naloži vtičnik - + Show GUI + Prikaži grafični vmesnik + + + + Help + Pomoč + + + + LADSPA plugins - - Help + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) QWidget - - - - - - Name: - - - - - URI: - - - - - - - Maker: - - - - - - - Copyright: - - - - - - Requires Real Time: - - - - - - - - - - Yes - - - - - - - - - - No - - - - - - Real Time Capable: - - - - - - In Place Broken: - - - - - - Channels In: - - - - - - Channels Out: - - + + Name: + Ime: + + + + Maker: + Ustvaril: + + + + Copyright: + Avtorstvo: + + + + Requires Real Time: + Zahteva realni čas: + + + + + + Yes + Da + + + + + + No + Ne + + + + Real Time Capable: + Zmore realni čas: + + + + In Place Broken: + Namesto okvarjenega: + + + + Channels In: + Kanali v: + + + + Channels Out: + Kanali iz: + + + File: %1 - + Datoteka: %1 - + File: - + Datoteka: - RecentProjectsMenu + XYControllerW - - &Recently Opened Projects - Nedavno odp&Rti projekti - - - - RenameDialog - - - Rename... - - - - - ReverbSCControlDialog - - - Input - - - - - Input gain: - - - - - Size - - - - - Size: - - - - - Color - - - - - Color: - - - - - Output - - - - - Output gain: - - - - - ReverbSCControls - - - Input gain - - - - - Size - - - - - Color - - - - - Output gain - - - - - SaControls - - - Pause - - - - - Reference freeze - - - - - Waterfall - - - - - Averaging - - - - - Stereo - - - - - Peak hold - - - - - Logarithmic frequency - - - - - Logarithmic amplitude - - - - - Frequency range - - - - - Amplitude range - - - - - FFT block size - - - - - FFT window type - - - - - Peak envelope resolution - - - - - Spectrum display resolution - - - - - Peak decay multiplier - - - - - Averaging weight - - - - - Waterfall history size - - - - - Waterfall gamma correction - - - - - FFT window overlap - - - - - FFT zero padding - - - - - - Full (auto) - - - - - - - Audible - - - - - Bass - - - - - Mids - - - - - High - - - - - Extended - - - - - Loud - - - - - Silent - - - - - (High time res.) - - - - - (High freq. res.) - - - - - Rectangular (Off) - - - - - - Blackman-Harris (Default) - - - - - Hamming - - - - - Hanning - - - - - SaControlsDialog - - - Pause - - - - - Pause data acquisition - - - - - Reference freeze - - - - - Freeze current input as a reference / disable falloff in peak-hold mode. - - - - - Waterfall - - - - - Display real-time spectrogram - - - - - Averaging - - - - - Enable exponential moving average - - - - - Stereo - - - - - Display stereo channels separately - - - - - Peak hold - - - - - Display envelope of peak values - - - - - Logarithmic frequency - - - - - Switch between logarithmic and linear frequency scale - - - - - - Frequency range - - - - - Logarithmic amplitude - - - - - Switch between logarithmic and linear amplitude scale - - - - - - Amplitude range - - - - - Envelope res. - - - - - Increase envelope resolution for better details, decrease for better GUI performance. - - - - - - Draw at most - - - - - envelope points per pixel - - - - - Spectrum res. - - - - - Increase spectrum resolution for better details, decrease for better GUI performance. - - - - - spectrum points per pixel - - - - - Falloff factor - - - - - Decrease to make peaks fall faster. - - - - - Multiply buffered value by - - - - - Averaging weight - - - - - Decrease to make averaging slower and smoother. - - - - - New sample contributes - - - - - Waterfall height - - - - - Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. - - - - - Keep - - - - - lines - - - - - Waterfall gamma - - - - - Decrease to see very weak signals, increase to get better contrast. - - - - - Gamma value: - - - - - Window overlap - - - - - Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. - - - - - Each sample processed - - - - - times - - - - - Zero padding - - - - - Increase to get smoother-looking spectrum. Warning: high CPU usage. - - - - - Processing buffer is - - - - - steps larger than input block - - - - - Advanced settings - - - - - Access advanced settings - - - - - - FFT block size - - - - - - FFT window type - - - - - SampleBuffer - - - Fail to open file - - - - - Audio files are limited to %1 MB in size and %2 minutes of playing time - - - - - Open audio file - Odpri avdio datoteko - - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - - - Wave-Files (*.wav) - - - - - OGG-Files (*.ogg) - - - - - DrumSynth-Files (*.ds) - - - - - FLAC-Files (*.flac) - - - - - SPEEX-Files (*.spx) - - - - - VOC-Files (*.voc) - - - - - AIFF-Files (*.aif *.aiff) - - - - - AU-Files (*.au) - - - - - RAW-Files (*.raw) - - - - - SampleClipView - - - Double-click to open sample - - - - - Delete (middle mousebutton) - - - - - Delete selection (middle mousebutton) - - - - - Cut - - - - - Cut selection - - - - - Copy - - - - - Copy selection - - - - - Paste - - - - - Mute/unmute (<%1> + middle click) - - - - - Mute/unmute selection (<%1> + middle click) - - - - - Reverse sample - - - - - Set clip color - - - - - Use track color - - - - - SampleTrack - - - Volume - Obseg - - - - Panning - - - - - Mixer channel - - - - - - Sample track - - - - - SampleTrackView - - - Track volume - - - - - Channel volume: - - - - - VOL - GLS - - - - Panning - - - - - Panning: - - - - - PAN - PAN - - - - Channel %1: %2 - - - - - SampleTrackWindow - - - GENERAL SETTINGS - - - - - Sample volume - - - - - Volume: - Glasnost: - - - - VOL - GLS - - - - Panning - - - - - Panning: - - - - - PAN - PAN - - - - Mixer channel - - - - - CHANNEL - - - - - SaveOptionsWidget - - - Discard MIDI connections - - - - - Save As Project Bundle (with resources) - - - - - SetupDialog - - - Reset to default value - - - - - Use built-in NaN handler - - - - - Settings - Nastavitve - - - - - General - - - - - Graphical user interface (GUI) - - - - - Display volume as dBFS - - - - - Enable tooltips - - - - - Enable master oscilloscope by default - - - - - Enable all note labels in piano roll - - - - - Enable compact track buttons - - - - - Enable one instrument-track-window mode - - - - - Show sidebar on the right-hand side - - - - - Let sample previews continue when mouse is released - - - - - Mute automation tracks during solo - - - - - Show warning when deleting tracks - - - - - Projects - - - - - Compress project files by default - - - - - Create a backup file when saving a project - - - - - Reopen last project on startup - - - - - Language - - - - - - Performance - - - - - Autosave - - - - - Enable autosave - - - - - Allow autosave while playing - - - - - User interface (UI) effects vs. performance - - - - - Smooth scroll in song editor - - - - - Display playback cursor in AudioFileProcessor - - - - - Plugins - - - - - VST plugins embedding: - - - - - No embedding - - - - - Embed using Qt API - - - - - Embed using native Win32 API - - - - - Embed using XEmbed protocol - - - - - Keep plugin windows on top when not embedded - - - - - Sync VST plugins to host playback - - - - - Keep effects running even without input - - - - - - Audio - - - - - Audio interface - - - - - HQ mode for output audio device - - - - - Buffer size - - - - - - MIDI - - - - - MIDI interface - - - - - Automatically assign MIDI controller to selected track - - - - - LMMS working directory - - - - - VST plugins directory - - - - - LADSPA plugins directories - - - - - SF2 directory - - - - - Default SF2 - - - - - GIG directory - - - - - Theme directory - - - - - Background artwork - - - - - Some changes require restarting. - - - - - Autosave interval: %1 - - - - - Choose the LMMS working directory - - - - - Choose your VST plugins directory - - - - - Choose your LADSPA plugins directory - - - - - Choose your default SF2 - - - - - Choose your theme directory - - - - - Choose your background picture - - - - - - Paths - - - - - OK - V redu - - - - Cancel - Preklic - - - - Frames: %1 -Latency: %2 ms - - - - - Choose your GIG directory - - - - - Choose your SF2 directory - - - - - minutes - minute - - - - minute - minuta - - - - Disabled - - - - - SidInstrument - - - Cutoff frequency - - - - - Resonance - - - - - Filter type - - - - - Voice 3 off - - - - - Volume - Glasnost - - - - Chip model - - - - - SidInstrumentView - - - Volume: - Glasnost: - - - - Resonance: - - - - - - Cutoff frequency: - - - - - High-pass filter - - - - - Band-pass filter - - - - - Low-pass filter - - - - - Voice 3 off - - - - - MOS6581 SID - - - - - MOS8580 SID - - - - - - Attack: - - - - - - Decay: - - - - - Sustain: - - - - - - Release: - - - - - Pulse Width: - - - - - Coarse: - - - - - Pulse wave - - - - - Triangle wave - - - - - Saw wave - - - - - Noise - - - - - Sync - - - - - Ring modulation - - - - - Filtered - - - - - Test - - - - - Pulse width: - - - - - SideBarWidget - - - Close - Zapri - - - - Song - - - Tempo - Tempo - - - - Master volume - Poveljnik ladje - - - - Master pitch - Poveljnik ladje - - - - Aborting project load - - - - - Project file contains local paths to plugins, which could be used to run malicious code. - - - - - Can't load project: Project file contains local paths to plugins. - - - - - LMMS Error report - - - - - (repeated %1 times) - - - - - The following errors occurred while loading: - - - - - SongEditor - - - Could not open file - - - - - Could not open file %1. You probably have no permissions to read this file. - Please make sure to have at least read permissions to the file and try again. - - - - - Operation denied - - - - - A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. - - - - - - - Error - - - - - Couldn't create bundle folder. - - - - - Couldn't create resources folder. - - - - - Failed to copy resources. - - - - - Could not write file - - - - - Could not open %1 for writing. You probably are not permitted towrite to this file. Please make sure you have write-access to the file and try again. - - - - - This %1 was created with LMMS %2 - - - - - Error in file - - - - - The file %1 seems to contain errors and therefore can't be loaded. - - - - - Version difference - - - - - template - - - - - project - projekt - - - - Tempo - Tempo - - - - TEMPO - - - - - Tempo in BPM - - - - - High quality mode - - - - - - - Master volume - Poveljnik ladje - - - - - - Master pitch - Poveljnik ladje - - - - Value: %1% - - - - - Value: %1 semitones - - - - - SongEditorWindow - - - Song-Editor - Urejevalnik skladbe - - - - Play song (Space) - - - - - Record samples from Audio-device - - - - - Record samples from Audio-device while playing song or BB track - - - - - Stop song (Space) - - - - - Track actions - - - - - Add beat/bassline - - - - - Add sample-track - - - - - Add automation-track - - - - - Edit actions - - - - - Draw mode - - - - - Knife mode (split sample clips) - - - - - Edit mode (select and move) - - - - - Timeline controls - - - - - Bar insert controls - - - - - Insert bar - - - - - Remove bar - - - - - Zoom controls - - - - - Horizontal zooming - - - - - Snap controls - - - - - - Clip snapping size - - - - - Toggle proportional snap on/off - - - - - Base snapping size - - - - - StepRecorderWidget - - - Hint - - - - - Move recording curser using <Left/Right> arrows - - - - - SubWindow - - - Close - Zapri - - - - Maximize - Maksimiraj - - - - Restore - Obnovi - - - - TabWidget - - - - Settings for %1 - - - - - TemplatesMenu - - - New from template - - - - - TempoSyncKnob - - - - Tempo Sync - - - - - No Sync - - - - - Eight beats - - - - - Whole note - - - - - Half note - - - - - Quarter note - - - - - 8th note - - - - - 16th note - - - - - 32nd note - - - - - Custom... - - - - - Custom - - - - - Synced to Eight Beats - - - - - Synced to Whole Note - - - - - Synced to Half Note - - - - - Synced to Quarter Note - - - - - Synced to 8th Note - - - - - Synced to 16th Note - - - - - Synced to 32nd Note - - - - - TimeDisplayWidget - - - Time units - - - - - MIN - - - - - SEC - - - - - MSEC - - - - - BAR - - - - - BEAT - - - - - TICK - - - - - TimeLineWidget - - - Auto scrolling - - - - - Loop points - - - - - After stopping go back to beginning - - - - - After stopping go back to position at which playing was started - - - - - After stopping keep position - - - - - Hint - - - - - Press <%1> to disable magnetic loop points. - - - - - Track - - - Mute - Mute - - - - Solo - Solist - - - - TrackContainer - - - Couldn't import file - - - - - Couldn't find a filter for importing file %1. -You should convert this file into a format supported by LMMS using another software. - - - - - Couldn't open file - - - - - Couldn't open file %1 for reading. -Please make sure you have read-permission to the file and the directory containing the file and try again! - - - - - Loading project... - Nalagam projekt... - - - - - Cancel - Preklic - - - - - Please wait... - - - - - Loading cancelled - - - - - Project loading was cancelled. - - - - - Loading Track %1 (%2/Total %3) - - - - - Importing MIDI-file... - Uvažam MIDI datoteko... - - - - Clip - - - Mute - Mute - - - - ClipView - - - Current position - - - - - Current length - - - - - - %1:%2 (%3:%4 to %5:%6) - - - - - Press <%1> and drag to make a copy. - - - - - Press <%1> for free resizing. - - - - - Hint - - - - - Delete (middle mousebutton) - - - - - Delete selection (middle mousebutton) - - - - - Cut - - - - - Cut selection - - - - - Merge Selection - - - - - Copy - - - - - Copy selection - - - - - Paste - - - - - Mute/unmute (<%1> + middle click) - - - - - Mute/unmute selection (<%1> + middle click) - - - - - Set clip color - - - - - Use track color - - - - - TrackContentWidget - - - Paste - - - - - TrackOperationsWidget - - - Press <%1> while clicking on move-grip to begin a new drag'n'drop action. - - - - - Actions - - - - - - Mute - Mute - - - - - Solo - Solist - - - - After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? - - - - - Confirm removal - - - - - Don't ask again - - - - - Clone this track - - - - - Remove this track - - - - - Clear this track - - - - - Channel %1: %2 - - - - - Assign to new mixer Channel - - - - - Turn all recording on - - - - - Turn all recording off - - - - - Change color - - - - - Reset color to default - - - - - Set random color - - - - - Clear clip colors - - - - - TripleOscillatorView - - - Modulate phase of oscillator 1 by oscillator 2 - - - - - Modulate amplitude of oscillator 1 by oscillator 2 - - - - - Mix output of oscillators 1 & 2 - - - - - Synchronize oscillator 1 with oscillator 2 - - - - - Modulate frequency of oscillator 1 by oscillator 2 - - - - - Modulate phase of oscillator 2 by oscillator 3 - - - - - Modulate amplitude of oscillator 2 by oscillator 3 - - - - - Mix output of oscillators 2 & 3 - - - - - Synchronize oscillator 2 with oscillator 3 - - - - - Modulate frequency of oscillator 2 by oscillator 3 - - - - - Osc %1 volume: - - - - - Osc %1 panning: - - - - - Osc %1 coarse detuning: - - - - - semitones - - - - - Osc %1 fine detuning left: - - - - - - cents - - - - - Osc %1 fine detuning right: - - - - - Osc %1 phase-offset: - - - - - - degrees - - - - - Osc %1 stereo phase-detuning: - - - - - Sine wave - - - - - Triangle wave - - - - - Saw wave - - - - - Square wave - - - - - Moog-like saw wave - - - - - Exponential wave - - - - - White noise - - - - - User-defined wave - - - - - VecControls - - - Display persistence amount - - - - - Logarithmic scale - - - - - High quality - - - - - VecControlsDialog - - - HQ - - - - - Double the resolution and simulate continuous analog-like trace. - - - - - Log. scale - - - - - Display amplitude on logarithmic scale to better see small values. - - - - - Persist. - - - - - Trace persistence: higher amount means the trace will stay bright for longer time. - - - - - Trace persistence - - - - - VersionedSaveDialog - - - Increment version number - - - - - Decrement version number - - - - - Save Options - - - - - already exists. Do you want to replace it? - - - - - VestigeInstrumentView - - - - Open VST plugin - - - - - Control VST plugin from LMMS host - - - - - Open VST plugin preset - - - - - Previous (-) - - - - - Save preset - Shrani glasbilce - - - - Next (+) - - - - - Show/hide GUI - - - - - Turn off all notes - - - - - DLL-files (*.dll) - - - - - EXE-files (*.exe) - - - - - No VST plugin loaded - - - - - Preset - - - - - by - - - - - - VST plugin control - - - - - VstEffectControlDialog - - - Show/hide - - - - - Control VST plugin from LMMS host - - - - - Open VST plugin preset - - - - - Previous (-) - - - - - Next (+) - - - - - Save preset - Shrani glasbilce - - - - - Effect by: - - - - - &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - - - - - VstPlugin - - - - The VST plugin %1 could not be loaded. - - - - - Open Preset - - - - - - Vst Plugin Preset (*.fxp *.fxb) - - - - - : default - - - - - Save Preset - Shrani glasbilce - - - - .fxp - - - - - .FXP - - - - - .FXB - - - - - .fxb - - - - - Loading plugin - - - - - Please wait while loading VST plugin... - - - - - WatsynInstrument - - - Volume A1 - - - - - Volume A2 - - - - - Volume B1 - - - - - Volume B2 - - - - - Panning A1 - - - - - Panning A2 - - - - - Panning B1 - - - - - Panning B2 - - - - - Freq. multiplier A1 - - - - - Freq. multiplier A2 - - - - - Freq. multiplier B1 - - - - - Freq. multiplier B2 - - - - - Left detune A1 - - - - - Left detune A2 - - - - - Left detune B1 - - - - - Left detune B2 - - - - - Right detune A1 - - - - - Right detune A2 - - - - - Right detune B1 - - - - - Right detune B2 - - - - - A-B Mix - - - - - A-B Mix envelope amount - - - - - A-B Mix envelope attack - - - - - A-B Mix envelope hold - - - - - A-B Mix envelope decay - - - - - A1-B2 Crosstalk - - - - - A2-A1 modulation - - - - - B2-B1 modulation - - - - - Selected graph - - - - - WatsynView - - - - - - Volume - Obseg - - - - - - - Panning - - - - - - - - Freq. multiplier - - - - - - - - Left detune - - - - - - - - - - - - cents - - - - - - - - Right detune - - - - - A-B Mix - - - - - Mix envelope amount - - - - - Mix envelope attack - - - - - Mix envelope hold - - - - - Mix envelope decay - - - - - Crosstalk - - - - - Select oscillator A1 - - - - - Select oscillator A2 - - - - - Select oscillator B1 - - - - - Select oscillator B2 - - - - - Mix output of A2 to A1 - - - - - Modulate amplitude of A1 by output of A2 - - - - - Ring modulate A1 and A2 - - - - - Modulate phase of A1 by output of A2 - - - - - Mix output of B2 to B1 - - - - - Modulate amplitude of B1 by output of B2 - - - - - Ring modulate B1 and B2 - - - - - Modulate phase of B1 by output of B2 - - - - - - - - Draw your own waveform here by dragging your mouse on this graph. - - - - - Load waveform - - - - - Load a waveform from a sample file - - - - - Phase left - - - - - Shift phase by -15 degrees - - - - - Phase right - - - - - Shift phase by +15 degrees + + XY Controller - - - Normalize + + X Controls: - - - Invert + + Y Controls: - - + Smooth - - - Sine wave + + &Settings - - - - Triangle wave + + Channels - - Saw wave + + &File - - - Square wave + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) - Xpressive + lmms::AmplifierControls - - Selected graph - + + Volume + Glasnost - - A1 - + + Panning + Panorama - - A2 - + + Left gain + Leva jakost - - A3 - - - - - W1 smoothing - - - - - W2 smoothing - - - - - W3 smoothing - - - - - Panning 1 - - - - - Panning 2 - - - - - Rel trans - + + Right gain + Desna jakost - XpressiveView + lmms::AudioFileProcessor - - Draw your own waveform here by dragging your mouse on this graph. - + + Amplify + Ojačenje - - Select oscillator W1 - + + Start of sample + Začetek vzorca - - Select oscillator W2 - + + End of sample + Konec vzorca - - Select oscillator W3 - + + Loopback point + Točka povratka zanke - - Select output O1 - + + Reverse sample + Obrni vzorec - - Select output O2 - + + Loop mode + Način zanke - - Open help window - + + Stutter + Jecljanje - - - - Sine wave - - - - - - Moog-saw wave - - - - - - Exponential wave - - - - - - Saw wave - - - - - - User-defined wave - - - - - - Triangle wave - - - - - - Square wave - - - - - - White noise - - - - - WaveInterpolate - - - - - ExpressionValid - - - - - General purpose 1: - - - - - General purpose 2: - - - - - General purpose 3: - - - - - O1 panning: - - - - - O2 panning: - - - - - Release transition: - - - - - Smoothness - - - - - ZynAddSubFxInstrument - - - Portamento - Portamento - - - - Filter frequency - - - - - Filter resonance - - - - - Bandwidth - Pasovna širina - - - - FM gain - - - - - Resonance center frequency - - - - - Resonance bandwidth - - - - - Forward MIDI control change events - - - - - ZynAddSubFxView - - - Portamento: - - - - - PORT - - - - - Filter frequency: - - - - - FREQ - - - - - Filter resonance: - - - - - RES - - - - - Bandwidth: - - - - - BW - - - - - FM gain: - - - - - FM GAIN - - - - - Resonance center frequency: - - - - - RES CF - - - - - Resonance bandwidth: - - - - - RES BW - - - - - Forward MIDI control changes - - - - - Show GUI - - - - - AudioFileProcessor - Amplify - - - - - Start of sample - - - - - End of sample - - - - - Loopback point - - - - - Reverse sample - - - - - Loop mode - - - - - Stutter - - - - Interpolation mode - + Način prepletanja - + None - + brez - + Linear - + linearno - + Sinc + Sinhronizacija + + + + Sample not found + + + + + lmms::AudioJack + + + JACK client restarted + JACK odjemalec je bil ponovno zagnan + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + JACK je iz neznanega razloga odslovil LMMS. Zato je bil potreben ponoven zagon JACK zaledja za LMMS. Povezave je potrebno na novo vzpostaviti ročno. + + + + JACK server down + JACK strežnik ne deluje + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + Videti je, da se je JACK strežnik zaprl ter da zagon nove instance ni bil uspešen. Zato LMMS ne more nadaljevati. Shranite projekt ter nato ponovno zaženite JACK in LMMS. + + + + Client name + Ime odjemalca + + + + Channels + Kanali + + + + lmms::AudioOss + + + Device + Naprava + + + + Channels + Kanali + + + + lmms::AudioPortAudio::setupWidget + + + Backend + Zaledje + + + + Device + Naprava + + + + lmms::AudioPulseAudio + + + Device + Naprava + + + + Channels + Kanali + + + + lmms::AudioSdl::setupWidget + + + Playback device - + + Input device + + + + + lmms::AudioSndio + + + Device + Naprava + + + + Channels + Kanali + + + + lmms::AudioSoundIo::setupWidget + + + Backend + Zaledje + + + + Device + Naprava + + + + lmms::AutomatableModel + + + &Reset (%1%2) + &Ponastavitev (%1%2) + + + + &Copy value (%1%2) + &Kopiraj vrednost (%1%2) + + + + &Paste value (%1%2) + &Prilepi vrednost (%1%2) + + + + &Paste value + &Prilepi vrednost + + + + Edit song-global automation + Uredi globalno avtomatizacijo skladbe + + + + Remove song-global automation + Odstrani globalno avtomatizacijo skladbe + + + + Remove all linked controls + Odstrani vse povezane kontrole + + + + Connected to %1 + Povezan na %1 + + + + Connected to controller + Povezan s kontrolerjem + + + + Edit connection... + Uredi povezavo... + + + + Remove connection + Odstrani povezavo + + + + Connect to controller... + Poveži se s kontrolerjem... + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + Povlecite kontrolo in zraven držite <%1> + + + + lmms::AutomationTrack + + + Automation track + Steza z avtomatizacijo + + + + lmms::BassBoosterControls + + + Frequency + Frekvenca + + + + Gain + Jakost + + + + Ratio + Razmerje + + + + lmms::BitInvader + + + Sample length + Dolžina vzorca + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + + Input gain + Vhodna jakost + + + + Input noise + Vhodni šum + + + + Output gain + Izhodna jakost + + + + Output clip + Izhodno rezanje + + + + Sample rate + Frekvenca vzorčenja + + + + Stereo difference + Stereo razlika + + + + Levels + Nivoji + + + + Rate enabled + Frrekvenca vklopljena + + + + Depth enabled + Globina vklopljena + + + + lmms::Clip + + + Mute + Utišaj + + + + lmms::CompressorControls + + + Threshold + Prag + + + + Ratio + Razmerje + + + + Attack + Napad + + + + Release + Spust + + + + Knee + Koleno + + + + Hold + Zadrži + + + + Range + Razpon + + + + RMS Size + RMS velikost + + + + Mid/Side + Sredina/Stransko + + + + Peak Mode + Vrh način + + + + Lookahead Length + Dolžina pogleda vnaprej + + + + Input Balance + Vhodno ravnovesje + + + + Output Balance + Izhodno ravnovesje + + + + Limiter + Omejevalnik + + + + Output Gain + Izhodna jakost + + + + Input Gain + Vhodna jakost + + + + Blend + Zlivanje + + + + Stereo Balance + Stereo ravnovesje + + + + Auto Makeup Gain + Samodejno večanje jakosti + + + + Audition + Avdicija + + + + Feedback + Povratna zanka + + + + Auto Attack + Samodejni napad + + + + Auto Release + Samodejni spust + + + + Lookahead + Pogled vnaprej + + + + Tilt + Nagib + + + + Tilt Frequency + Frekvenca nagiba + + + + Stereo Link + Stereo združevanje + + + + Mix + Miks + + + + lmms::Controller + + + Controller %1 + Kontoler %1 + + + + lmms::DelayControls + + + Delay samples + Zamik vzorcev + + + + Feedback + Povratna zanka + + + + LFO frequency + NFO frekvenca + + + + LFO amount + NFO količina + + + + Output gain + Izhodna jakost + + + + lmms::DispersionControls + + + Amount + Količina + + + + Frequency + Frekvenca + + + + Resonance + Resnonanca + + + + Feedback + Povratna zanka + + + + DC Offset Removal + DC odmik odstranitve + + + + lmms::DualFilterControls + + + Filter 1 enabled + Filter 1 vklopljen + + + + Filter 1 type + Filter 1 vrsta + + + + Cutoff frequency 1 + Frekvenca za odrez 1 + + + + Q/Resonance 1 + Q/resonanca 1 + + + + Gain 1 + Jakost 1 + + + + Mix + Miks + + + + Filter 2 enabled + Filter 2 vklopljen + + + + Filter 2 type + Filter 2 vrsta + + + + Cutoff frequency 2 + Frekvenca za odrez 2 + + + + Q/Resonance 2 + Q/resonanca 2 + + + + Gain 2 + Jakost 2 + + + + + Low-pass + Nizkoprepustni + + + + + Hi-pass + Visokoprepustni + + + + + Band-pass csg + Pasovno-prepustni csg + + + + + Band-pass czpg + Pasovno-prepustni czpg + + + + + Notch + Zareza + + + + + All-pass + Vse-prepustni + + + + + Moog + Moog + + + + + 2x Low-pass + 2×nizkoprepustni + + + + + RC Low-pass 12 dB/oct + RC nizkoprepustni 12dB/okt + + + + + RC Band-pass 12 dB/oct + RC pasovno-prepustni 12dB/okt + + + + + RC High-pass 12 dB/oct + RC visokoprepustni 12dB/okt + + + + + RC Low-pass 24 dB/oct + RC nizkoprepustni 24dB/okt + + + + + RC Band-pass 24 dB/oct + RC nizkoprepustni 24dB/okt + + + + + RC High-pass 24 dB/oct + RC nizkoprepustni 24dB/okt + + + + + Vocal Formant + Formant vokala + + + + + 2x Moog + 2x Moog + + + + + SV Low-pass + SV nizkoprepustni + + + + + SV Band-pass + SV pasovnoprepustni + + + + + SV High-pass + SV visokoprepustni + + + + + SV Notch + SV zareza + + + + + Fast Formant + Hitro obrazilo + + + + + Tripole + Tripolarno + + + + lmms::DynProcControls + + + Input gain + Vhodna jakost + + + + Output gain + Izhodna jakost + + + + Attack time + Čas napada + + + + Release time + Čas spusta + + + + Stereo mode + Stereo način + + + + lmms::Effect + + + Effect enabled + Učinek vključen + + + + Wet/Dry mix + Surov/obogaten miks + + + + Gate + Vrata + + + + Decay + Upad + + + + lmms::EffectChain + + + Effects enabled + Učinki vklopljeni + + + + lmms::Engine + + + Generating wavetables + Ustvarjanje tabel valovnih oblik + + + + Initializing data structures + Vzpostavljanje podatkovnih struktur + + + + Opening audio and midi devices + Odpiranje zvočnih in midi naprav + + + + Launching audio engine threads + Zagoni niti zvočnega pogona + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + Ovoj pred-zamik + + + + Env attack + Ovoj napad + + + + Env hold + Ovoj zadrži + + + + Env decay + Ovoj upad + + + + Env sustain + Ovoj zadrži + + + + Env release + Ovoj spust + + + + Env mod amount + Ovoj mod količina + + + + LFO pre-delay + NFO + + + + LFO attack + NFO napad + + + + LFO frequency + NFO frekvenca + + + + LFO mod amount + NFO mod količina + + + + LFO wave shape + NFO valovna oblika + + + + LFO frequency x 100 + NFO frekvenca × 100 + + + + Modulate env amount + Modulacija ovoja količina + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + Vhodna jakost + + + + Output gain + Izhodna jakost + + + + Low-shelf gain + Spodnja ojačitev + + + + Peak 1 gain + Vrh 1 jakost + + + + Peak 2 gain + Vrh 2 jakost + + + + Peak 3 gain + Vrh 3 jakost + + + + Peak 4 gain + Vrh 4 jakost + + + + High-shelf gain + Zgornja ojačitev + + + + HP res + HP loč + + + + Low-shelf res + Spodnja loč + + + + Peak 1 BW + Vrh 1 PŠ + + + + Peak 2 BW + Vrh 2 PŠ + + + + Peak 3 BW + Vrh 3 PŠ + + + + Peak 4 BW + Vrh 4 PŠ + + + + High-shelf res + Zgornja loč + + + + LP res + NP loč + + + + HP freq + VP frek + + + + Low-shelf freq + Spodnja frek + + + + Peak 1 freq + Vrh 1 frek + + + + Peak 2 freq + Vrh 2 frek + + + + Peak 3 freq + Vrh 3 frek + + + + Peak 4 freq + Vrh 4 frek + + + + High-shelf freq + Zgornja frek + + + + LP freq + NP frek + + + + HP active + VP aktiven + + + + Low-shelf active + Spodnji aktiven + + + + Peak 1 active + Vrh 1 aktiven + + + + Peak 2 active + Vrh 2 aktiven + + + + Peak 3 active + Vrh 3 aktiven + + + + Peak 4 active + Vrh 4 aktiven + + + + High-shelf active + Zgornji aktiven + + + + LP active + NP aktiven + + + + LP 12 + NP 12 + + + + LP 24 + NP 24 + + + + LP 48 + NP 48 + + + + HP 12 + VP 12 + + + + HP 24 + VP 24 + + + + HP 48 + VP 48 + + + + Low-pass type + Vrsta nizkoprepustnega + + + + High-pass type + Vrsta visokoprepustnega + + + + Analyse IN + Analiza v + + + + Analyse OUT + Analiza iz + + + + lmms::FlangerControls + + + Delay samples + Zamik vzorcev + + + + LFO frequency + NFO frekvenca + + + + Amount + + + + + Stereo phase + Stereo faza + + + + Feedback + + + + + Noise + Šum + + + + Invert + Inverzno + + + + lmms::FreeBoyInstrument + + + Sweep time + Čas preleta + + + + Sweep direction + Smer preleta + + + + Sweep rate shift amount + Stopnja premika preleta + + + + + Wave pattern duty cycle + Cikelj izvajanja valovne matrike + + + + Channel 1 volume + Kanal 1 glasnost + + + + + + Volume sweep direction + Smer preleta glasnosti + + + + + + Length of each step in sweep + Dolžina vsakega koraka preleta + + + + Channel 2 volume + Kanal 2 glasnost + + + + Channel 3 volume + Kanal 3 glasnost + + + + Channel 4 volume + Kanal 4 glasnost + + + + Shift Register width + Pomik širine registra + + + + Right output level + Desni izhodni nivo + + + + Left output level + Levi izhodni nivo + + + + Channel 1 to SO2 (Left) + Kanal 1 na SO2 (levi) + + + + Channel 2 to SO2 (Left) + Kanal 2 na SO2 (levi) + + + + Channel 3 to SO2 (Left) + Kanal 3 na SO2 (levi) + + + + Channel 4 to SO2 (Left) + Kanal 4 na SO2 (levi) + + + + Channel 1 to SO1 (Right) + Kanal 1 na SO1 (desni) + + + + Channel 2 to SO1 (Right) + Kanal 2 na SO1 (desni) + + + + Channel 3 to SO1 (Right) + Kanal 3 na SO1 (desni) + + + + Channel 4 to SO1 (Right) + Kanal 4 na SO1 (desni) + + + + Treble + Visoki + + + + Bass + Bas + + + + lmms::GigInstrument + + + Bank + Tabela + + + + Patch + Program + + + + Gain + Jakost + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + Arpeggio + + + + Arpeggio type + Vrsta arpeggia + + + + Arpeggio range + Razpon arpeggia + + + + Note repeats + Ponavljanja not + + + + Cycle steps + Krožni koraki + + + + Skip rate + Stopnja preskoka + + + + Miss rate + Stopnja zgrešitev + + + + Arpeggio time + Čas arpeggia + + + + Arpeggio gate + Vrata arpeggia + + + + Arpeggio direction + Smer arpeggia + + + + Arpeggio mode + Način arpeggia + + + + Up + Gor + + + + Down + Dol + + + + Up and down + Gor in dol + + + + Down and up + Dol in gor + + + + Random + Naključno + + + + Free + Prosto + + + + Sort + Razvrsti + + + + Sync + Sinhroniziraj + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + Akordi + + + + Chord type + Vrsta akorda + + + + Chord range + Razpon akorda + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + Oblika krivulje/NFOji + + + + Filter type + Vrsta filtra + + + + Cutoff frequency + Frekvenca rezanja + + + + Q/Resonance + Q/resonanca + + + + Low-pass + Nizkoprepustni + + + + Hi-pass + Visokoprepustni + + + + Band-pass csg + Pasovno-prepustni csg + + + + Band-pass czpg + Pasovno-prepustni czpg + + + + Notch + Zareza + + + + All-pass + Vse-prepustni + + + + Moog + Moog + + + + 2x Low-pass + 2×nizkoprepustni + + + + RC Low-pass 12 dB/oct + RC nizkoprepustni 12dB/okt + + + + RC Band-pass 12 dB/oct + RC pasovno-prepustni 12dB/okt + + + + RC High-pass 12 dB/oct + RC visokoprepustni 12dB/okt + + + + RC Low-pass 24 dB/oct + RC nizkoprepustni 24dB/okt + + + + RC Band-pass 24 dB/oct + RC nizkoprepustni 24dB/okt + + + + RC High-pass 24 dB/oct + RC nizkoprepustni 24dB/okt + + + + Vocal Formant + Formant vokala + + + + 2x Moog + 2x Moog + + + + SV Low-pass + SV nizkoprepustni + + + + SV Band-pass + SV pasovnoprepustni + + + + SV High-pass + SV visokoprepustni + + + + SV Notch + SV zareza + + + + Fast Formant + Hitro obrazilo + + + + Tripole + Tripolarno + + + + lmms::InstrumentTrack + + + + unnamed_track + neimenovana_steza + + + + Base note + Osnovna nota + + + + First note + Prva nota + + + + Last note + Zadnja nota + + + + Volume + Glasnost + + + + Panning + Panorama + + + + Pitch + Višina + + + + Pitch range + Razpon višine + + + + Mixer channel + Mešalni kanal + + + + Master pitch + Glavna višina + + + + Enable/Disable MIDI CC + Vklopi/Izklopi MIDI CC + + + + CC Controller %1 + CC kontroler %1 + + + + + Default preset + Privzeta predloga + + + + lmms::Keymap + + + empty + prazno + + + + lmms::KickerInstrument + + + Start frequency + Začetna frekvenca + + + + End frequency + Končna frekvenca + + + + Length + Dolžina + + + + Start distortion + Začetno popačenje + + + + End distortion + Končno popačenje + + + + Gain + Jakost + + + + Envelope slope + Nagib ovoja + + + + Noise + Šum + + + + Click + Klik + + + + Frequency slope + Nagib frekvence + + + + Start from note + Začni z note + + + + End to note + Končaj na noti + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + Združi kanale + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + Zahtevan je neznan vtičnik LADSPA %1 + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + VCF frekvenca rezanja + + + + VCF Resonance + VCF resonanca + + + + VCF Envelope Mod + VCF ovoj mod + + + + VCF Envelope Decay + VCF ovoj upad + + + + Distortion + Popačenje + + + + Waveform + Valovna oblika + + + + Slide Decay + Drseči upad + + + + Slide + Drsenje + + + + Accent + Poudarek + + + + Dead + Mrtvo + + + + 24dB/oct Filter + 24dB/okt filter + + + + lmms::LfoController + + + LFO Controller + NFO kontroler + + + + Base value + Osnovna vrednost + + + + Oscillator speed + Hitrost oscilatorja + + + + Oscillator amount + Količina oscilatorja + + + + Oscillator phase + Faza oscilatorja + + + + Oscillator waveform + Valovna oblika oscilatorja + + + + Frequency Multiplier + Množilnik frekvence + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + Trdota + + + + Position + Položaj + + + + Vibrato gain + Jakost vibrata + + + + Vibrato frequency + Frekvenca vibrata + + + + Stick mix + Palični miks + + + + Modulator + Modulator + + + + Crossfade + Navzkrižno + + + + LFO speed + NFO hitrost + + + + LFO depth + NFO globina + + + + ADSR + ADSR + + + + Pressure + Pritisk + + + + Motion + Gibanje + + + + Speed + Hitrost + + + + Bowed + Godalo + + + + Instrument + + + + + Spread + Razpršeno + + + + Randomness + + + + + Marimba + Marimba + + + + Vibraphone + Vibrafon + + + + Agogo + Agogo + + + + Wood 1 + Les 1 + + + + Reso + Reso + + + + Wood 2 + Les 2 + + + + Beats + Dobe + + + + Two fixed + Dva fiksirana + + + + Clump + Teptanje + + + + Tubular bells + Cevasti zvonovi + + + + Uniform bar + Uniformni takt + + + + Tuned bar + Uglašen takt + + + + Glass + Steklo + + + + Tibetan bowl + Tibetanska skleda + + + + lmms::MeterModel + + + Numerator + Števec + + + + Denominator + Imenovalec + + + + lmms::Microtuner + + + Microtuner + Mikro-uglaševalec + + + + Microtuner on / off + Mikro-uglaševalec vklop / izklop + + + + Selected scale + Izbrana lestvica + + + + Selected keyboard mapping + Izbrano mapiranje tipkovnice + + + + lmms::MidiController + + + MIDI Controller + MIDI kontroler + + + + unnamed_midi_controller + neimenovan_midi_kontroler + + + + lmms::MidiImport + + + + Setup incomplete + Namestitev ni končana + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + V nastavitvenem dialogu niste nastavili privzetega soundfonta (Uredi->Nastavitve). Zato uvozžene MIDI datoteke ne bodo predvajane. Prenesite General MIDI soundfont in ga izberite v nastavitvah, nato pa znova poskusite. + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + LMMS ni bil preveden s podporo za SoundFont2 predvajalnik, ki je privzet za določanje zvoka uvoženih MIDI datotek. Zato uvožene MIDi datoteke ne bodo imele zvoka ob predvajanju. + + + + MIDI Time Signature Numerator + Števec MIDI časovne oznake + + + + MIDI Time Signature Denominator + Imenovalec MIDI časovne oznake + + + + Numerator + Števec + + + + Denominator + Imenovalec + + + + + Tempo + Tempo + + + + Track + Steza + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + JACK strežnik ne deluje + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + JACK server je izklopljen. + + + + lmms::MidiPort + + + Input channel + Vhodni kanal + + + + Output channel + Izhodni kanal + + + + Input controller + Vhodni kontroler + + + + Output controller + Izhodni kontroler + + + + Fixed input velocity + Stalna vhodna hitrost + + + + Fixed output velocity + Stalna izhodna hitrost + + + + Fixed output note + Stalna izhodna nota + + + + Output MIDI program + Izhodni MIDI program + + + + Base velocity + Osnovna hitrost + + + + Receive MIDI-events + Prejemanje MIDI-dogodkov + + + + Send MIDI-events + Pošiljanje MIDI-dogodkov + + + + lmms::Mixer + + + Master + Glavni master + + + + + + Channel %1 + Kanal %1 + + + + Volume + Glasnost + + + + Mute + Utišaj + + + + Solo + Solo + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + Količina, ki na bo poslana s kanala %1 na kanal %2 + + + + lmms::MonstroInstrument + + + Osc 1 volume + OSC 1 glasnost + + + + Osc 1 panning + Osc 1 panorama + + + + Osc 1 coarse detune + Osc 1 groba razglasitev + + + + Osc 1 fine detune left + Osc 1 fina razglasitev levo + + + + Osc 1 fine detune right + Osc 1 fina razglasitev desno + + + + Osc 1 stereo phase offset + Osc 1 odmik stereo faze + + + + Osc 1 pulse width + Osc 1 širina pulza + + + + Osc 1 sync send on rise + Osc 1 pošlji sinh ob rasti + + + + Osc 1 sync send on fall + Osc 1 pošlji sinh ob padcu + + + + Osc 2 volume + OSC 2 glasnost + + + + Osc 2 panning + Osc 2 panorama + + + + Osc 2 coarse detune + Osc 2 groba razglasitev + + + + Osc 2 fine detune left + Osc 2 fina razglasitev levo + + + + Osc 2 fine detune right + Osc 2 fina razglasitev desno + + + + Osc 2 stereo phase offset + Osc 2 odmik stereo faze + + + + Osc 2 waveform + OSC 2 valovna oblika + + + + Osc 2 sync hard + Osc 2 trda sinhr + + + + Osc 2 sync reverse + Osc 2 obratna sinhr + + + + Osc 3 volume + OSC 3 glasnost + + + + Osc 3 panning + Osc 3 panorama + + + + Osc 3 coarse detune + Osc 3 groba razglasitev + + + + Osc 3 Stereo phase offset + Osc 3 odmik stereo faze + + + + Osc 3 sub-oscillator mix + Osc3 miks sub-oscilatorja + + + + Osc 3 waveform 1 + Osc 3 valovna oblika 1 + + + + Osc 3 waveform 2 + Osc 3 valovna oblika 2 + + + + Osc 3 sync hard + Osc 3 trda sinhr + + + + Osc 3 Sync reverse + Osc 3 obratna sinhr + + + + LFO 1 waveform + NFO 1 valovna oblika + + + + LFO 1 attack + NFO 1 napad + + + + LFO 1 rate + LFO 1 stopnja + + + + LFO 1 phase + NFO 1 faza + + + + LFO 2 waveform + NFO 2 valovna oblika + + + + LFO 2 attack + NFO 2 napad + + + + LFO 2 rate + LFO 2 stopnja + + + + LFO 2 phase + NFO 2 faza + + + + Env 1 pre-delay + Ovoj 1 pred-zamik + + + + Env 1 attack + Ovoj 1 napad + + + + Env 1 hold + Ovoj 1 zadrži + + + + Env 1 decay + Env 1 upad + + + + Env 1 sustain + Ovoj 1 zadrži + + + + Env 1 release + Ovoj 1 spust + + + + Env 1 slope + Ovoj 1 nagib + + + + Env 2 pre-delay + Ovoj 2 pred-zamik + + + + Env 2 attack + Ovoj 2 napad + + + + Env 2 hold + Ovoj 2 zadrži + + + + Env 2 decay + Env 2 upad + + + + Env 2 sustain + Ovoj 2 zadrži + + + + Env 2 release + Ovoj 2 spust + + + + Env 2 slope + Ovoj 2 nagib + + + + Osc 2+3 modulation + Osc 2+3 modulacija + + + + Selected view + Izbrani prikaz + + + + Osc 1 - Vol env 1 + Osc 1 - glsn ovoj 1 + + + + Osc 1 - Vol env 2 + Osc 1 - glsn ovoj 2 + + + + Osc 1 - Vol LFO 1 + Osc 1 - glsn NFO 1 + + + + Osc 1 - Vol LFO 2 + Osc 1 - glsn NFO 2 + + + + Osc 2 - Vol env 1 + Osc 2 - glsn ovoj 1 + + + + Osc 2 - Vol env 2 + Osc 2 - glsn ovoj 2 + + + + Osc 2 - Vol LFO 1 + Osc 2 - glsn NFO 1 + + + + Osc 2 - Vol LFO 2 + Osc 2 - glsn NFO 2 + + + + Osc 3 - Vol env 1 + Osc 3 - glsn ovoj 1 + + + + Osc 3 - Vol env 2 + Osc 3 - glsn ovoj 2 + + + + Osc 3 - Vol LFO 1 + Osc 3 - glsn NFO 1 + + + + Osc 3 - Vol LFO 2 + Osc 3 - glsn NFO 2 + + + + Osc 1 - Phs env 1 + Osc 1 - faz ovoj 1 + + + + Osc 1 - Phs env 2 + Osc 1 - faz ovoj 2 + + + + Osc 1 - Phs LFO 1 + Osc 1 - faz NFO 1 + + + + Osc 1 - Phs LFO 2 + Osc 1 - faz NFO 2 + + + + Osc 2 - Phs env 1 + Osc 2 - faz ovoj 1 + + + + Osc 2 - Phs env 2 + Osc 2 - faz ovoj 2 + + + + Osc 2 - Phs LFO 1 + Osc 2 - faz LFO 1 + + + + Osc 2 - Phs LFO 2 + Osc 2 - faz LFO 2 + + + + Osc 3 - Phs env 1 + Osc 3 - faz ovoj 1 + + + + Osc 3 - Phs env 2 + Osc 3 - faz ovoj 2 + + + + Osc 3 - Phs LFO 1 + Osc 3 - faz NFO 1 + + + + Osc 3 - Phs LFO 2 + Osc 3 - faz NFO 2 + + + + Osc 1 - Pit env 1 + Osc 1 - viš ovoj 1 + + + + Osc 1 - Pit env 2 + Osc 1 - viš ovoj 2 + + + + Osc 1 - Pit LFO 1 + OSC 1 - viš NFO 1 + + + + Osc 1 - Pit LFO 2 + Osc 1 - viš LFO 2 + + + + Osc 2 - Pit env 1 + Osc 2 - viš ovoj 1 + + + + Osc 2 - Pit env 2 + Osc 2 - viš ovoj 2 + + + + Osc 2 - Pit LFO 1 + Osc 2 - viš NFO 1 + + + + Osc 2 - Pit LFO 2 + Osc 2 - viš NFO 2 + + + + Osc 3 - Pit env 1 + Osc 3 - viš ovoj 1 + + + + Osc 3 - Pit env 2 + Osc 3 - viš ovoj 2 + + + + Osc 3 - Pit LFO 1 + Osc 3 - viš NFO 1 + + + + Osc 3 - Pit LFO 2 + Osc 3 - viš LFO 2 + + + + Osc 1 - PW env 1 + Osc 1 - PW ovoj 1 + + + + Osc 1 - PW env 2 + Osc 1 - PW ovoj 2 + + + + Osc 1 - PW LFO 1 + Osc 1 - PW NFO 1 + + + + Osc 1 - PW LFO 2 + Osc 1 - PW NFO 2 + + + + Osc 3 - Sub env 1 + Osc 3 - sub ovoj 1 + + + + Osc 3 - Sub env 2 + Osc 3 - sub ovoj 2 + + + + Osc 3 - Sub LFO 1 + Osc 3 - sub NFO 1 + + + + Osc 3 - Sub LFO 2 + Osc 3 - sub NFO 2 + + + + + Sine wave + Sinusna oblika + + + + Bandlimited Triangle wave + Pasovno omejen trikotni val + + + + Bandlimited Saw wave + Pasovno omejen žagasti val + + + + Bandlimited Ramp wave + Pasovno omejen rampasti val + + + + Bandlimited Square wave + Pasovno omejen pravokotni val + + + + Bandlimited Moog saw wave + Pasovno omejen Moog žagasti val + + + + + Soft square wave + Mehak pravokotni val + + + + Absolute sine wave + Absolutni sinusni val + + + + + Exponential wave + Eksponentni val + + + + White noise + Beli šum + + + + Digital Triangle wave + Digitalni trikotni val + + + + Digital Saw wave + Digitalni žagasti val + + + + Digital Ramp wave + Digitalni rampasti val + + + + Digital Square wave + Digitalni pravokotni val + + + + Digital Moog saw wave + Digitalni Moog žagasti val + + + + Triangle wave + Trikotna oblika + + + + Saw wave + Žagasta oblika + + + + Ramp wave + Rampasti val + + + + Square wave + Pravokotna oblika + + + + Moog saw wave + Moog pravokotni val + + + + Abs. sine wave + Abs. sinusni val + + + + Random + Naključno + + + + Random smooth + Naključno glajenje + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + Kanal 1 groba razglasitev + + + + Channel 1 volume + Kanal 1 glasnost + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + Kanal 1 dolžina ovoja + + + + Channel 1 duty cycle + Kanal 1 cikelj izvajanja + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + Kanal 1 količina preleta + + + + Channel 1 sweep rate + Kanal 1 stopnja preleta + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + Kanal 2 dolžina ovoja + + + + Channel 2 duty cycle + Kanal 2 cikelj izvajanja + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + Kanal 2 količina preleta + + + + Channel 2 sweep rate + Kanal 2 stopnja preleta + + + + Channel 3 enable + + + + + Channel 3 coarse detune + Kanal 3 groba razglasitev + + + + Channel 3 volume + Kanal 3 glasnost + + + + Channel 4 enable + + + + + Channel 4 volume + Kanal 4 glasnost + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + Kanal 4 dolžina ovoja + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + Kanal 4 frekvenca šuma + + + + Channel 4 noise frequency sweep + Kanal 4 šum preleta frekvence + + + + Channel 4 quantize + + + + + Master volume + Glavna glasnost + + + + Vibrato + Vibrato + + + + lmms::OpulenzInstrument + + + Patch + Program + + + + Op 1 attack + Op 1 napad + + + + Op 1 decay + Op 1 upad + + + + Op 1 sustain + Op 1 zadrži + + + + Op 1 release + Op 1 spust + + + + Op 1 level + Op 1 nivo + + + + Op 1 level scaling + Op1 povečava nivoja + + + + Op 1 frequency multiplier + Op 2 množilnik frekvence + + + + Op 1 feedback + Op 1 povratna zanka + + + + Op 1 key scaling rate + OP 1 stopnja povečanja ključa + + + + Op 1 percussive envelope + Op 1 tolkalski ovoj + + + + Op 1 tremolo + Op 1 tremolo + + + + Op 1 vibrato + Op 1 vibrato + + + + Op 1 waveform + OP1 valovna oblika + + + + Op 2 attack + Op 2 napad + + + + Op 2 decay + Op 2 upad + + + + Op 2 sustain + Op 2 zadrži + + + + Op 2 release + Op 2 spust + + + + Op 2 level + Op 2 nivo + + + + Op 2 level scaling + Op 2 povečava nivoja + + + + Op 2 frequency multiplier + Op 2 množilnik frekvence + + + + Op 2 key scaling rate + OP 2 stopnja povečanja ključa + + + + Op 2 percussive envelope + Op 2 tolkalski ovoj + + + + Op 2 tremolo + Op 2 tremolo + + + + Op 2 vibrato + Op 2 vibrato + + + + Op 2 waveform + Op 2 valovna oblika + + + + FM + FM + + + + Vibrato depth + Globina vibrata + + + + Tremolo depth + Globina tremola + + + + lmms::OrganicInstrument + + + Distortion + Popačenje + + + + Volume + Glasnost + + + + lmms::OscillatorObject + + + Osc %1 waveform + Osc %1 valovna oblika + + + + Osc %1 harmonic + Osc %1 harmonično + + + + + Osc %1 volume + Osc %1 glasnost + + + + + Osc %1 panning + Osc %1 panorama + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + Osc %1 groba razglasitev + + + + Osc %1 fine detuning left + Osc %1 fina razglasitev levo + + + + Osc %1 fine detuning right + Osc %1 fina razglasitev desno + + + + Osc %1 phase-offset + Osc %1 fazni zamik + + + + Osc %1 stereo phase-detuning + Osc %1 stereo fazna razglasitev + + + + Osc %1 wave shape + Osc %1 oblika signala + + + + Modulation type %1 + Vrsta modulacije %1 + + + + lmms::PatternTrack + + + Pattern %1 + Matrika %1 + + + + Clone of %1 + Dvojnik od %1 + + + + lmms::PeakController + + + Peak Controller + Kontroler vrha + + + + Peak Controller Bug + Hrošč kontrolerja vrha + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + Zaradi hrošča v starejši različici LMMS se kontrolerji vrha morda ne bodo pravilno povezali. Prepričajte se, da so kontrolerji vrha pravilno povezani in ponovno shranite datoteko. Opravičujemo se za nevšečnosti. + + + + lmms::PeakControllerEffectControls + + + Base value + Osnovna vrednost + + + + Modulation amount + Količina modulacije + + + + Attack + Napad + + + + Release + Spust + + + + Treshold + Prag + + + + Mute output + Uitšaj izhod + + + + Absolute value + Absolutna vrednost + + + + Amount multiplicator + Množilnik količine + + + + lmms::Plugin + + + Plugin not found + Vtičnik ni najden + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + Vtičnika "%1" ni bilo mogoče najti oziroma naložiti! +Razlog: "%2" + + + + Error while loading plugin + Napaka pri nalaganju vtičnika + + + + Failed to load plugin "%1"! + Napaka pri nalaganju vtičnika "%1"! + + + + lmms::ReverbSCControls + + + Input gain + Vhodna jakost + + + + Size + Velikost + + + + Color + Barva + + + + Output gain + Izhodna jakost + + + + lmms::SaControls + + + Pause + Premor + + + + Reference freeze + Zamrznitev reference + + + + Waterfall + Vodni slap + + + + Averaging + Določanje povprečja + + + + Stereo + Stereo + + + + Peak hold + Zadrži vrh + + + + Logarithmic frequency + Logaritmična frekvenca + + + + Logarithmic amplitude + Logaritmična amplituda + + + + Frequency range + Frekvenčni razpon + + + + Amplitude range + Razpon amplitude + + + + FFT block size + FFT velikost bloka + + + + FFT window type + FFT vrsta okna + + + + Peak envelope resolution + Ločljivost ovoja vrha + + + + Spectrum display resolution + Ločljivost prikaza spektra + + + + Peak decay multiplier + Večkratnik upada vrha + + + + Averaging weight + Povprečje teže + + + + Waterfall history size + Velikost zgodovine Vodnega slapa + + + + Waterfall gamma correction + Gamma korekcija Vodnega slapa + + + + FFT window overlap + FFT okno prekrivanje + + + + FFT zero padding + FFT nič odmika + + + + + Full (auto) + Polno (samodejno) + + + + + + Audible + Slišno + + + + Bass + Bas + + + + Mids + Srednji + + + + High + Visoka + + + + Extended + Razširjeno + + + + Loud + Glasno + + + + Silent + Tiho + + + + (High time res.) + (Visoka loč. časa) + + + + (High freq. res.) + (Visoka loč. frekv.) + + + + Rectangular (Off) + Pravokotno (izklopljeno) + + + + + Blackman-Harris (Default) + Blackman-Harris (privzeto) + + + + Hamming + Pretiravanje + + + + Hanning + Hanning + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + Glasnost + + + + Panning + Panorama + + + + Mixer channel + Mešalni kanal + + + + + Sample track + Steza vzorca + + + + lmms::Scale + + + empty + prazno + + + + lmms::Sf2Instrument + + + Bank + Tabela + + + + Patch + Program + + + + Gain + Jakost + + + + Reverb + Odjek + + + + Reverb room size + Velikost prostora odjeka + + + + Reverb damping + Dušenje odjeka + + + + Reverb width + Širina odjeka + + + + Reverb level + Nivo odjeka + + + + Chorus + Kor + + + + Chorus voices + Glasovi kora + + + + Chorus level + Nivo kora + + + + Chorus speed + Hitrost kora + + + + Chorus depth + Globina kora + + + + A soundfont %1 could not be loaded. + Soundfont %1 ni bilo mogoče naložiti + + + + lmms::SfxrInstrument + + + Wave + Val + + + + lmms::SidInstrument + + + Cutoff frequency + Frekvenca rezanja + + + + Resonance + Resnonanca + + + + Filter type + Vrsta filtra + + + + Voice 3 off + Glas 3 izklop + + + + Volume + Glasnost + + + + Chip model + Model čipa + + + + lmms::SlicerT + + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + Sample not found: %1 - BitInvader + lmms::Song - - Sample length + + Tempo + Tempo + + + + Master volume + Glavna glasnost + + + + Master pitch + Glavna višina + + + + Aborting project load + Prekinjam nalaganje projekta + + + + Project file contains local paths to plugins, which could be used to run malicious code. + Projektna datoteka vsebuje lokalne poti do vtičnkkov, ki bi lahko vsebovale škodljivo kodo. + + + + Can't load project: Project file contains local paths to plugins. + Projekta ni mogoče naložiti: Projektna datoteka vsebuje lokalne poti do vtičnikov. + + + + LMMS Error report + Poročilo o LMMS napaki + + + + (repeated %1 times) + (ponovljeno %1 krat) + + + + The following errors occurred while loading: + Pri nalaganju je prišlo do naslednjih napak: + + + + lmms::StereoEnhancerControls + + + Width + Širina + + + + lmms::StereoMatrixControls + + + Left to Left + Levo na levo + + + + Left to Right + Levo na desno + + + + Right to Left + Desno na levo + + + + Right to Right + Desno na desno + + + + lmms::Track + + + Mute + Utišaj + + + + Solo + Solo + + + + lmms::TrackContainer + + + Couldn't import file + Datoeke ni bilo mogoče uvoziti + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + Filtra za uvoz %1 ni mogoče najti. +Pretvorite to datoteko v format, ki ga podpira LMMS s pomočjo nekega drugega programa. + + + + Couldn't open file + Ne morem odpreti datoteke + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + Datoteke %1 ni bilo mogoče odpreti za branje. +Prepričajte se, da imate pravico za branje te datoteke in njeno mapo ter poskusite znova! + + + + Loading project... + Nalagam projekt... + + + + + Cancel + Prekini + + + + + Please wait... + Počakajte... + + + + Loading cancelled + Nalaganje prekinjeno + + + + Project loading was cancelled. + Nalaganje projekta je bilo prekinjeno. + + + + Loading Track %1 (%2/Total %3) + Nalaganje steze %1 (%2/Skupaj %3) + + + + Importing MIDI-file... + Uvažam MIDI datoteko... + + + + lmms::TripleOscillator + + + Sample not found - BitInvaderView + lmms::VecControls - - Sample length - + + Display persistence amount + Prikaži količino persistence - - Draw your own waveform here by dragging your mouse on this graph. - + + Logarithmic scale + Logaritmična skala - - - Sine wave - - - - - - Triangle wave - - - - - - Saw wave - - - - - - Square wave - - - - - - White noise - - - - - - User-defined wave - - - - - - Smooth waveform - - - - - Interpolation - - - - - Normalize - + + High quality + Visoka kakovost - DynProcControlDialog + lmms::VestigeInstrument - - INPUT - + + Loading plugin + Nalaganje vtičnika - - Input gain: - - - - - OUTPUT - - - - - Output gain: - - - - - ATTACK - - - - - Peak attack time: - - - - - RELEASE - - - - - Peak release time: - - - - - - Reset wavegraph - - - - - - Smooth wavegraph - - - - - - Increase wavegraph amplitude by 1 dB - - - - - - Decrease wavegraph amplitude by 1 dB - - - - - Stereo mode: maximum - - - - - Process based on the maximum of both stereo channels - - - - - Stereo mode: average - - - - - Process based on the average of both stereo channels - - - - - Stereo mode: unlinked - - - - - Process each stereo channel independently - + + Please wait while loading the VST plugin... + Počakajte, da se naloži VST vtičnik... - DynProcControls + lmms::Vibed - + + String %1 volume + Struna %1 glasnost + + + + String %1 stiffness + Struna %1 togost + + + + Pick %1 position + Odjem %1 položaj + + + + Pickup %1 position + Odjemalec %1 položaj + + + + String %1 panning + Struna %1 panorama + + + + String %1 detune + Struna %1 razglašenost + + + + String %1 fuzziness + Struna %1 popačenost + + + + String %1 length + Struna %1 dolžina + + + + Impulse %1 + Impulz %1 + + + + String %1 + Struna %1 + + + + lmms::VoiceObject + + + Voice %1 pulse width + Glas %1 širina utripa + + + + Voice %1 attack + Glas %1 napad + + + + Voice %1 decay + Glas %1 upad + + + + Voice %1 sustain + Glas %1 zadrži + + + + Voice %1 release + Glas %1 spust + + + + Voice %1 coarse detuning + Glas %1 groba razglasitev + + + + Voice %1 wave shape + Glas %1 oblika vala + + + + Voice %1 sync + Glas %1 sinhr + + + + Voice %1 ring modulate + Voice %1 modulacija zvonjenja + + + + Voice %1 filtered + Glas %1 filtriran + + + + Voice %1 test + Glas %1 test + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + VST vtičnika %1 ni bilo mogoče naložiti + + + + Open Preset + Odpri predlogo + + + + + VST Plugin Preset (*.fxp *.fxb) + Predloga Vst vtičnika (*.fxp *.fxb) + + + + : default + : privzeto + + + + Save Preset + Shrani predlogo + + + + .fxp + .fxp + + + + .FXP + .FXP + + + + .FXB + .FXB + + + + .fxb + .fxb + + + + Loading plugin + Nalaganje vtičnika + + + + Please wait while loading VST plugin... + Počakajte, da naložim VST vtičnik + + + + lmms::WatsynInstrument + + + Volume A1 + Galsnost A1 + + + + Volume A2 + Galsnost A2 + + + + Volume B1 + Galsnost B1 + + + + Volume B2 + Galsnost B2 + + + + Panning A1 + Panorama A1 + + + + Panning A2 + Panorama A2 + + + + Panning B1 + Panorama B1 + + + + Panning B2 + Panorama B2 + + + + Freq. multiplier A1 + Množilnik frekv. A1 + + + + Freq. multiplier A2 + Množilnik frekv. A2 + + + + Freq. multiplier B1 + Množilnik frekv. B1 + + + + Freq. multiplier B2 + Množilnik frekv. B2 + + + + Left detune A1 + Razglasi levo A1 + + + + Left detune A2 + Razglasi levo A2 + + + + Left detune B1 + Razglasi levo B1 + + + + Left detune B2 + Razglasi levo B2 + + + + Right detune A1 + Razglasi desno A1 + + + + Right detune A2 + Razglasi desno A2 + + + + Right detune B1 + Razglasi desno B1 + + + + Right detune B2 + Razglasi desno B2 + + + + A-B Mix + A-B Miks + + + + A-B Mix envelope amount + A-B miks ovoj količina + + + + A-B Mix envelope attack + A-B miks ovoj napad + + + + A-B Mix envelope hold + A-B miks ovoj zadrži + + + + A-B Mix envelope decay + A-B miks ovoj upad + + + + A1-B2 Crosstalk + A1-B2 navzkrižno + + + + A2-A1 modulation + A2-A1 modulacija + + + + B2-B1 modulation + B2-B1 modulacija + + + + Selected graph + Izbrani graf + + + + lmms::WaveShaperControls + + Input gain - + Vhodna jakost - + Output gain - - - - - Attack time - - - - - Release time - - - - - Stereo mode - + Izhodna jakost - graphModel + lmms::Xpressive - + + Selected graph + Izbrani graf + + + + A1 + A1 + + + + A2 + A2 + + + + A3 + A3 + + + + W1 smoothing + W1 glajenje + + + + W2 smoothing + W2 glajenje + + + + W3 smoothing + W3 glajenje + + + + Panning 1 + Panorama 1 + + + + Panning 2 + Panorama 2 + + + + Rel trans + Rel trans + + + + lmms::ZynAddSubFxInstrument + + + Portamento + Portamento + + + + Filter frequency + Frekvenca filtra + + + + Filter resonance + Filter resonance + + + + Bandwidth + Pasovna širina + + + + FM gain + FM jakost + + + + Resonance center frequency + Središčna frekvenca resonance + + + + Resonance bandwidth + Pasnovna širina resonance + + + + Forward MIDI control change events + Posreduj dogodke za MIDI spremembo kontrole + + + + lmms::graphModel + + Graph graf - KickerInstrument + lmms::gui::AmplifierControlDialog - - Start frequency - + + VOL + GLASN - - End frequency - - - - - Length - - - - - Start distortion - - - - - End distortion - - - - - Gain - - - - - Envelope slope - - - - - Noise - - - - - Click - - - - - Frequency slope - - - - - Start from note - - - - - End to note - - - - - KickerInstrumentView - - - Start frequency: - - - - - End frequency: - - - - - Frequency slope: - - - - - Gain: - - - - - Envelope length: - - - - - Envelope slope: - - - - - Click: - - - - - Noise: - - - - - Start distortion: - - - - - End distortion: - - - - - LadspaBrowserView - - - - Available Effects - - - - - - Unavailable Effects - - - - - - Instruments - - - - - - Analysis Tools - - - - - - Don't know - - - - - Type: - - - - - LadspaDescription - - - Plugins - - - - - Description - - - - - LadspaPortDialog - - - Ports - - - - - Name - Ime - - - - Rate - - - - - Direction - - - - - Type - - - - - Min < Default < Max - - - - - Logarithmic - - - - - SR Dependent - - - - - Audio - - - - - Control - - - - - Input - - - - - Output - - - - - Toggled - - - - - Integer - - - - - Float - - - - - - Yes - - - - - Lb302Synth - - - VCF Cutoff Frequency - - - - - VCF Resonance - - - - - VCF Envelope Mod - - - - - VCF Envelope Decay - - - - - Distortion - izkrivljanje - - - - Waveform - - - - - Slide Decay - - - - - Slide - - - - - Accent - Barva akcentov - - - - Dead - Odmrlo - - - - 24dB/oct Filter - - - - - Lb302SynthView - - - Cutoff Freq: - - - - - Resonance: - - - - - Env Mod: - - - - - Decay: - - - - - 303-es-que, 24dB/octave, 3 pole filter - - - - - Slide Decay: - - - - - DIST: - - - - - Saw wave - - - - - Click here for a saw-wave. - - - - - Triangle wave - - - - - Click here for a triangle-wave. - - - - - Square wave - - - - - Click here for a square-wave. - - - - - Rounded square wave - - - - - Click here for a square-wave with a rounded end. - - - - - Moog wave - - - - - Click here for a moog-like wave. - - - - - Sine wave - - - - - Click for a sine-wave. - - - - - - White noise wave - - - - - Click here for an exponential wave. - - - - - Click here for white-noise. - - - - - Bandlimited saw wave - - - - - Click here for bandlimited saw wave. - - - - - Bandlimited square wave - - - - - Click here for bandlimited square wave. - - - - - Bandlimited triangle wave - - - - - Click here for bandlimited triangle wave. - - - - - Bandlimited moog saw wave - - - - - Click here for bandlimited moog saw wave. - - - - - MalletsInstrument - - - Hardness - - - - - Position - - - - - Vibrato gain - - - - - Vibrato frequency - - - - - Stick mix - - - - - Modulator - - - - - Crossfade - - - - - LFO speed - - - - - LFO depth - - - - - ADSR - - - - - Pressure - - - - - Motion - - - - - Speed - - - - - Bowed - - - - - Spread - - - - - Marimba - - - - - Vibraphone - - - - - Agogo - - - - - Wood 1 - - - - - Reso - - - - - Wood 2 - - - - - Beats - - - - - Two fixed - - - - - Clump - - - - - Tubular bells - - - - - Uniform bar - - - - - Tuned bar - - - - - Glass - - - - - Tibetan bowl - - - - - MalletsInstrumentView - - - Instrument - - - - - Spread - - - - - Spread: - - - - - Missing files - - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - - - - - Hardness - - - - - Hardness: - - - - - Position - - - - - Position: - - - - - Vibrato gain - - - - - Vibrato gain: - - - - - Vibrato frequency - - - - - Vibrato frequency: - - - - - Stick mix - - - - - Stick mix: - - - - - Modulator - - - - - Modulator: - - - - - Crossfade - - - - - Crossfade: - - - - - LFO speed - - - - - LFO speed: - - - - - LFO depth - - - - - LFO depth: - - - - - ADSR - - - - - ADSR: - - - - - Pressure - - - - - Pressure: - - - - - Speed - - - - - Speed: - - - - - ManageVSTEffectView - - - - VST parameter control - - - - - VST sync - - - - - - Automated - - - - - Close - - - - - ManageVestigeInstrumentView - - - - - VST plugin control - - - - - VST Sync - - - - - - Automated - - - - - Close - - - - - OrganicInstrument - - - Distortion - izkrivljanje - - - - Volume - Obseg - - - - OrganicInstrumentView - - - Distortion: - - - - + Volume: Glasnost: - - Randomise + + PAN + PAN + + + + Panning: + Panorama: + + + + LEFT + LEVO + + + + Left gain: + Leva jakost: + + + + RIGHT + DESNO + + + + Right gain: + Desna jakost: + + + + lmms::gui::AudioAlsaSetupWidget + + + Device - - - Osc %1 waveform: - - - - - Osc %1 volume: - - - - - Osc %1 panning: - - - - - Osc %1 stereo detuning - - - - - cents - - - - - Osc %1 harmonic: + + Channels - PatchesDialog + lmms::gui::AudioFileProcessorView - - Qsynth: Channel Preset + + Open sample + Odpri vzorec + + + + Reverse sample + Obrni vzorec + + + + Disable loop + Izklopi zanko + + + + Enable loop + Vklopi zanko + + + + Enable ping-pong loop + Vklopi ping-pong zanko + + + + Continue sample playback across notes + Nadaljuj s predvajanjem vzorca po notah + + + + Amplify: + Ojačitev: + + + + Start point: + Začetna točka: + + + + End point: + Končna točka: + + + + Loopback point: + Povratna točka zanke: + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + Dolžina vzorca: + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + Odpri v urejevalniku avtomatizacije + + + + Clear + Počisti + + + + Reset name + Ponastavi ime + + + + Change name + Spremeni ime + + + + Set/clear record + Nastavi/počisti snemanje + + + + Flip Vertically (Visible) + Zrcali navpično (vidno) + + + + Flip Horizontally (Visible) + Zrcali vodoravno (vidno) + + + + %1 Connections + %1 povezav + + + + Disconnect "%1" + Odklopi "%1" + + + + Model is already connected to this clip. + Model je že povezan s tem izsekom + + + + lmms::gui::AutomationEditor + + + Edit Value + Uredi vrednost + + + + New outValue + Nova izhodna outValue vrednost + + + + New inValue + Nova vhodna inValue vrednost + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + Predvajanje/premor trenutnega izseka (preslednica) + + + + Stop playing of current clip (Space) + Zaustavi predvajanje trenutnega izseka (preslednica) + + + + Edit actions + Urejanje dejanj + + + + Draw mode (Shift+D) + Način risanja (Sshift+D) + + + + Erase mode (Shift+E) + Način brisanja (Shift+E) + + + + Draw outValues mode (Shift+C) + Način risanja izhodnih outValues vrednosti (Shift+C) + + + + Edit tangents mode (Shift+T) - - Bank selector + + Flip vertically + Zrcali navpično + + + + Flip horizontally + Zrcali vodoravno + + + + Interpolation controls + Nadzor nad interpolacijo + + + + Discrete progression + Diskretno napredovanje + + + + Linear progression + Linearno napredovanje + + + + Cubic Hermite progression + Kubični Hermit napredovanje + + + + Tension value for spline + Vrednost napetosti za zlepek + + + + Tension: + Napetost: + + + + Zoom controls + Nadzor povečave + + + + Horizontal zooming + Vodoravna povečava + + + + Vertical zooming + NAvpična povečava + + + + Quantization controls + Nadzor nad kvantizacijo + + + + Quantization + Kvantizacija + + + + Clear ghost notes - - Bank + + + Automation Editor - no clip + Urejevalnik avtomatizacije - brez izseka + + + + + Automation Editor - %1 + Urejevalnik avtomatizacije - %1 + + + + Model is already connected to this clip. + Model je že povezan s tem izsekom + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + FREKV + + + + Frequency: + Frekvenca: + + + + GAIN + JAK + + + + Gain: + Jakost: + + + + RATIO + RAZMR + + + + Ratio: + Razmerje: + + + + lmms::gui::BitInvaderView + + + Sample length + Dolžina vzorca + + + + Draw your own waveform here by dragging your mouse on this graph. + Tu narišite svojo valovno obliko s vlečenjem miške po tem grafu. + + + + + Sine wave + Sinusna oblika + + + + + Triangle wave + Trikotna oblika + + + + + Saw wave + Žagasta oblika + + + + + Square wave + Pravokotna oblika + + + + + White noise + Beli šum + + + + + User-defined wave + Uporabniško določena oblika + + + + + Smooth waveform + Glajenje oblike vala + + + + Interpolation + Prepletanje + + + + Normalize + Normalizacija + + + + lmms::gui::BitcrushControlDialog + + + IN + V + + + + OUT + IZ + + + + + GAIN + JAK + + + + Input gain: + Vhodna jakost: + + + + NOISE + ŠUM + + + + Input noise: + Vhodni šum: + + + + Output gain: + Izhodna jakost: + + + + CLIP + REZANJE + + + + Output clip: + Izhodno rezanje: + + + + Rate enabled + Frrekvenca vklopljena + + + + Enable sample-rate crushing + Vklopi lomljenje frekvence vzorčenja + + + + Depth enabled + Globina vklopljena + + + + Enable bit-depth crushing + Vklopi lomljenje bitne globine + + + + FREQ + FREKV + + + + Sample rate: + Frekvenca vzorčenja: + + + + STEREO + STEREO + + + + Stereo difference: + Stereo razlika: + + + + QUANT + KVANT + + + + Levels: + Nivoji: + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% - - Program selector + + - Notes and setup: %1% - - Patch + + - Instruments: %1% - - Name - Ime + + - Effects: %1% + - + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + Prikaži grafični vmesnik + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + Kliknite, če želite prikazati ali skriti grafični vmesnik (GUI) Carle. + + + + Params + Param + + + + Available from Carla version 2.1 and up. + Na voljo od Carla različice 2.1 naprej. + + + + lmms::gui::CarlaParamsView + + + Search.. + Iskanje.. + + + + Clear filter text + Počisti besedilo filtra + + + + Only show knobs with a connection. + Prikaži le vrtljive gumbe s povezavo. + + + + - Parameters + - Parametri + + + + lmms::gui::ClipView + + + Current position + Trenutni položaj + + + + Current length + Trenutna dolžina + + + + + %1:%2 (%3:%4 to %5:%6) + %1:%2 (%3:%4 do %5:%6) + + + + Press <%1> and drag to make a copy. + Pritisnite <%1> in vlečite, da ustvarite kopijo. + + + + Press <%1> for free resizing. + Pritisnite <%1> za prosto spreminjanje velikosti + + + + Hint + Namig + + + + Delete (middle mousebutton) + Izbriši (srednja tipka miške) + + + + Delete selection (middle mousebutton) + Izbriši označeno (srednja tipka miške) + + + + Cut + Izreži + + + + Cut selection + Izreži označeno + + + + Merge Selection + Združi označeno + + + + Copy + Kopiraj + + + + Copy selection + Kopiraj označeno + + + + Paste + Prilepi + + + + Mute/unmute (<%1> + middle click) + Utišaj/zvok (<%1>+ srednji klik) + + + + Mute/unmute selection (<%1> + middle click) + Utišaj/zvok označeno (<%1>+ srednji klik) + + + + Clip color + Barva matrike + + + + Change + Spremeni + + + + Reset + Ponastavi + + + + Pick random + Izberi naključno + + + + lmms::gui::CompressorControlDialog + + + Threshold: + Prag: + + + + Volume at which the compression begins to take place + Glasnost pri kateri se začne kompresirati + + + + Ratio: + Razmerje: + + + + How far the compressor must turn the volume down after crossing the threshold + Koliko naj kompresor stisne zvok, potem ko ta preseže prag + + + + Attack: + Napad: + + + + Speed at which the compressor starts to compress the audio + Hitrost s katero kompresor začne stiskati zvok + + + + Release: + Spust: + + + + Speed at which the compressor ceases to compress the audio + Hitrost s katero kompresor preneha stiskati zvok + + + + Knee: + Koleno: + + + + Smooth out the gain reduction curve around the threshold + Zmehčaj krivulje zmanjševanja jakosti v območju praga + + + + Range: + Obseg: + + + + Maximum gain reduction + Največje zmanjšanje jakosti + + + + Lookahead Length: + Dolžina pogleda naprej: + + + + How long the compressor has to react to the sidechain signal ahead of time + Koliko vnaprej naj se kompresor odziva na signal stranske verige + + + + Hold: + Zadrži: + + + + Delay between attack and release stages + Zamik med stopnjama napad in spust + + + + RMS Size: + RMS velikost: + + + + Size of the RMS buffer + Velikost RMS medpomnilnika + + + + Input Balance: + Vhodno ravnovesje: + + + + Bias the input audio to the left/right or mid/side + Postavi vhodni signal levo/desno ali sredina/stransko + + + + Output Balance: + Izhodno ravnovesje: + + + + Bias the output audio to the left/right or mid/side + Postavi izhodni signal levo/desno ali sredina/stransko + + + + Stereo Balance: + Stereo ravnovesje: + + + + Bias the sidechain signal to the left/right or mid/side + Postavi signal stranske verige levo/desno ali sredina/stransko + + + + Stereo Link Blend: + Prehajanje stereo združevanja: + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + Prehajanje med nepovezanim/maksimalnim/povprečnim/minimalnim načinom stereo združevanja + + + + Tilt Gain: + Nagib jakost: + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + Izpostavi nizke ali visoke frekvence signal stranske verige. -6dB je nizkoprepustni filter, 6 dB je visokoprepustni filter. + + + + Tilt Frequency: + Frekvenca nagiba: + + + + Center frequency of sidechain tilt filter + Osrednja frekvenca filtra nagiba stranske verige + + + + Mix: + Miks: + + + + Balance between wet and dry signals + Razmerje med surovim in obogatenim signalom + + + + Auto Attack: + Samodejni napad: + + + + Automatically control attack value depending on crest factor + Samodejno nadzoruj vrednost za napad glede na vrhove + + + + Auto Release: + Samodejni spust + + + + Automatically control release value depending on crest factor + Samodejno nadzoruj vrednost spusta glede na vrhove + + + + Output gain + Izhodna jakost + + + + + Gain + Jakost + + + + Output volume + Izhodna glasnost + + + + Input gain + Vhodna jakost + + + + Input volume + Vhodna glasnost + + + + Root Mean Square + Efektivna vrednost RMS + + + + Use RMS of the input + Uporabi RMS vhoda + + + + Peak + Vrh + + + + Use absolute value of the input + Uporabi absolutno vrednost vhoda + + + + Left/Right + Levo/Desno + + + + Compress left and right audio + Kompresiraj levi in desni zvok + + + + Mid/Side + Sredina/Stransko + + + + Compress mid and side audio + Kompresiraj sredinski in stranski zvok + + + + Compressor + Kompresor + + + + Compress the audio + Stiskanje zvoka + + + + Limiter + Omejevalnik + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + Nastavi razmerje na neskončno (ne zagotavlja omejevanja glasnosti zvoka) + + + + Unlinked + Nepovezano + + + + Compress each channel separately + Stiskaj vsak kanal posebej + + + + Maximum + Maksimum + + + + Compress based on the loudest channel + Stiskaj glede na glasnejši kanal + + + + Average + Povprečje + + + + Compress based on the averaged channel volume + Stiskaj glede na povprečno glasnost kanala + + + + Minimum + Minimum + + + + Compress based on the quietest channel + Stiskaj glede na tišji kanal + + + + Blend + Zlivanje + + + + Blend between stereo linking modes + Prehajanje med načini združevanja sterea + + + + Auto Makeup Gain + Samodejno večanje jakosti + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + Samodejno veča jakost glede na nastavljen prag, koleno in razmerje + + + + + Soft Clip + Mehko rezanje + + + + Play the delta signal + Predvajaj delta signal + + + + Use the compressor's output as the sidechain input + Uporabi izhod kompresorja kot vhod stranske verige + + + + Lookahead Enabled + Pogled vnaprej je vklopljen + + + + Enable Lookahead, which introduces 20 milliseconds of latency + Vklopi Pogled vnaprej, ki doda 20 milisekund latence + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + Nastavitve povezave + + + + MIDI CONTROLLER + MIDI KRMILNIK + + + + Input channel + Vhodni kanal + + + + CHANNEL + KANAL + + + + Input controller + Vhodni krmilnik + + + + CONTROLLER + KRMILNIK + + + + + Auto Detect + Samodejno zaznavanje + + + + MIDI-devices to receive MIDI-events from + MIDI-naprave, ki morajo prejeti MIDI-dogodke od + + + + USER CONTROLLER + UPORABNIŠKI KRMILNIK + + + + MAPPING FUNCTION + FUNKCIJA MAPIRANJA + + + OK V redu - + Cancel - Preklic + Prekini + + + + LMMS + LMMS + + + + Cycle Detected. + Zaznan cikelj. - Sf2Instrument + lmms::gui::ControllerRackView - - Bank + + Controller Rack + Regal krmilnikov + + + + Add + Dodaj + + + + Confirm Delete + Potrdi brisanje + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + Naj res izbrišem? Obstaja(-jo) povezava(-e), ki se nanašajo na ta krmilnik. Razveljavitev ni mogoča. + + + + lmms::gui::ControllerView + + + Controls + Kontrole + + + + Rename controller + Preimenuj krmilnik + + + + Enter the new name for this controller + Vnesite novo ime krmilnika + + + + LFO + NFO + + + + Move &up - - Patch + + Move &down - + + &Remove this controller + Odst&rani ta krmilnik + + + + Re&name this controller + Pr&eimenuj ta krmilnik + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + Pas 1/2 prekrižaj: + + + + Band 2/3 crossover: + Pas 2/3 prekrižaj: + + + + Band 3/4 crossover: + Pas 3/4 prekrižaj: + + + + Band 1 gain + Pas 1 jakost + + + + Band 1 gain: + Pas 1 jakost: + + + + Band 2 gain + Pas 2 jakost + + + + Band 2 gain: + Pas 2 jakost: + + + + Band 3 gain + Pas 3 jakost + + + + Band 3 gain: + Pas 3 jakost: + + + + Band 4 gain + Pas 4 jakost + + + + Band 4 gain: + Pas 4 jakost: + + + + Band 1 mute + Pas 1 utišaj + + + + Mute band 1 + Utišaj pas 1 + + + + Band 2 mute + Pas 2 utišaj + + + + Mute band 2 + Utišaj pas 2 + + + + Band 3 mute + Pas 3 utišaj + + + + Mute band 3 + Utišaj pas 3 + + + + Band 4 mute + Pas 4 utišaj + + + + Mute band 4 + Utišaj pas 4 + + + + lmms::gui::DelayControlsDialog + + + DELAY + ZAMIK + + + + Delay time + Čas zamika + + + + FDBK + POVR + + + + Feedback amount + Količina v povratno zanko + + + + RATE + STOPN + + + + LFO frequency + NFO frekvenca + + + + AMNT + KOLIČ + + + + LFO amount + NFO količina + + + + Out gain + Izhodna jakost + + + Gain + Jakost + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + KOLIČINA + + + + Number of all-pass filters + Število filtrov za vse pasove + + + + FREQ + FREKV + + + + Frequency: + Frekvenca: + + + + RESO + RESO + + + + Resonance: + Resnonanca: + + + + FEED + POVR + + + + Feedback: + Povratna zanka: + + + + DC Offset Removal + DC odmik odstranitve + + + + Remove DC Offset + Odstrani DC odmik + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + FREKV + + + + + Cutoff frequency + Frekvenca rezanja + + + + + RESO + RESO + + + + + Resonance + Resnonanca + + + + + GAIN + JAKOST + + + + + Gain + Jakost + + + + MIX + MIKS + + + + Mix + Miks + + + + Filter 1 enabled + Filter 1 vklopljen + + + + Filter 2 enabled + Filter 2 vklopljen + + + + Enable/disable filter 1 + Vklopi/izklopi filter 1 + + + + Enable/disable filter 2 + Vklopi/izklopi filter 2 + + + + lmms::gui::DynProcControlDialog + + + INPUT + VHOD + + + + Input gain: + Vhodna jakost: + + + + OUTPUT + IZHOD + + + + Output gain: + Izhodna jakost: + + + + ATTACK + NAPAD + + + + Peak attack time: + Čas do vrha napada: + + + + RELEASE + SPUST + + + + Peak release time: + Čas spuščanja od vrha: + + + + + Reset wavegraph + Ponastavi valovni graf + + + + + Smooth wavegraph + Glajenje valovnega grafa + + + + + Increase wavegraph amplitude by 1 dB + Povečaj amplitudo valovnega grafa za 1 dB + + + + + Decrease wavegraph amplitude by 1 dB + Zmanjšaj amplitudo valovnega grafa za 1 dB + + + + Stereo mode: maximum + Streo način: maksimalen + + + + Process based on the maximum of both stereo channels + Obdelava glede na maksimum stereo kanalov + + + + Stereo mode: average + Stereo način: povprečje + + + + Process based on the average of both stereo channels + Obdelava glede na povprečje stereo kanalov + + + + Stereo mode: unlinked + Stereo način: nepovezano + + + + Process each stereo channel independently + Ločena obdelava stereo kanalov + + + + lmms::gui::Editor + + + Transport controls + Kontrole + + + + Play (Space) + Predvajanje (preslednica) + + + + Stop (Space) + Ustavi (preslednica) + + + + Record + Snemaj + + + + Record while playing + Snemaj med predvajanjem + + + + Toggle Step Recording + Preklopi snemanje v korakih + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + VERIGA UČINKOV + + + + Add effect + Dodaj učinek + + + + lmms::gui::EffectSelectDialog + + + Add effect - - Reverb + + + Name + Ime + + + + Type + Vrsta + + + + All - - Reverb room size + + Search - - Reverb damping + + Description + Opis + + + + Author + Avtor + + + + lmms::gui::EffectView + + + On/Off + Vklopi/izklopi + + + + W/D + S/O + + + + Wet Level: + Nivo obogatenosti: + + + + DECAY + UPAD + + + + Time: + Čas: + + + + GATE + VRATA + + + + Gate: + Vrata: + + + + Controls + Kontrole + + + + Move &up + Premakni &gor + + + + Move &down + Premakni &dol + + + + &Remove this plugin + Odst&rani ta vtičnik + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + KMD + + + + + Modulation amount: + Količina modulacije: + + + + + DEL + BRIŠI + + + + + Pre-delay: + Pred-zamik: + + + + + ATT + NAPAD + + + + + Attack: + Napad: + + + + HOLD + DRŽI + + + + Hold: + Drži: + + + + DEC + RAZ + + + + Decay: + Upad: + + + + SUST + VZD + + + + Sustain: + Zadrži: + + + + REL + SPUST + + + + Release: + Spust: + + + + SPD + HIT + + + + Frequency: + Frekvenca: + + + + FREQ x 100 + FREKV × 100 + + + + Multiply LFO frequency by 100 + Zmnoži NFO frekvenco s 100 + + + + MOD ENV AMOUNT - - Reverb width + + Control envelope amount by this LFO + Količino ovoja nadzorujte s tem NFO + + + + Hint + Namig + + + + Drag and drop a sample into this window. + Povlecite in spustite vzorec v to okno + + + + lmms::gui::EnvelopeGraph + + + Scaling - - Reverb level + + Dynamic - - Chorus + + Uses absolute spacings but switches to relative spacing if it's running out of space - - Chorus voices + + Absolute - - Chorus level + + Provides enough potential space for each segment but does not scale - - Chorus speed + + Relative - - Chorus depth - - - - - A soundfont %1 could not be loaded. + + Always uses all of the available space to display the envelope graph - Sf2InstrumentView + lmms::gui::EqControlsDialog - - - Open SoundFont file - Odpri SoundFont datoteko + + HP + VP - + + Low-shelf + Spodnji + + + + Peak 1 + Vrh 1 + + + + Peak 2 + Vrh 2 + + + + Peak 3 + Vrh 3 + + + + Peak 4 + Vrh 4 + + + + High-shelf + Zgornji + + + + LP + NP + + + + Input gain + Vhodna jakost + + + + + + Gain + Jakost + + + + Output gain + Izhodna jakost + + + + Bandwidth: + Pasovna širina: + + + + Octave + Oktava + + + + Resonance: + + + + + Frequency: + Frekvenca: + + + + LP group + NP skupina + + + + HP group + VP skupina + + + + lmms::gui::EqHandle + + + Reso: + Reso: + + + + BW: + PŠ: + + + + + Freq: + Frek: + + + + lmms::gui::ExportProjectDialog + + + Could not open file + Ne morem odpreti datoteke + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + Datoteke %1 ni bilo mogoče odpreti za zapisovanje. +Prepričajte se, da imate pravico za zapisovanje v to datoteko in njeno mapo ter poskusite znova! + + + + Export project to %1 + Izvozi projekt v %1 + + + + ( Fastest - biggest ) + (Hitro - veliko) + + + + ( Slowest - smallest ) + (Počasi - majhno) + + + + Error + Napaka + + + + Error while determining file-encoder device. Please try to choose a different output format. + Napaka pri določanju naprave za kodiranje datoteke. Poskusite izbrati drug izhodni format. + + + + Rendering: %1% + Zapisovanje: %1% + + + + lmms::gui::Fader + + + Set value + Določi vrednost + + + + Please enter a new value between %1 and %2: + Prosim vpišite novo vrednost med %1 in %2: + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + Brskalnik + + + + Search + iskanje + + + + Refresh list + Osveži seznam + + + + User content + Uporabniška vsebina + + + + Factory content + Priložena vsebina + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + Pošlji na aktivno instrumentalno stezo + + + + Open containing folder + Odpri mapo datoteke + + + + Song Editor + Urejevalnik skladbe + + + + Pattern Editor + Urejevalnik matrik + + + + Send to new AudioFileProcessor instance + Pošlji kot novo AudioFileProcessor instanco + + + + Send to new instrument track + Pošlji na novo instrumentalno stezo + + + + (%2Enter) + (%2Enter) + + + + Send to new sample track (Shift + Enter) + Pošljii na novo stezo z vzorci (Shift + Enter) + + + + Loading sample + Nalaganje vzorca + + + + Please wait, loading sample for preview... + Počakajte, vzorec za predogled se nalaga... + + + + Error + Napaka + + + + %1 does not appear to be a valid %2 file + %1 niima pravilne oblike za %2 datoteko + + + + --- Factory files --- + --- Tovarniške datoteke --- + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + ZAMIK + + + + Delay time: + Čas zamika: + + + + RATE + STOPN + + + + Period: + Perioda: + + + + AMNT + KOLIČ + + + + Amount: + Količina: + + + + PHASE + FAZA + + + + Phase: + Faza: + + + + FDBK + POVR + + + + Feedback amount: + Količina povratne zanke: + + + + NOISE + ŠUM + + + + White noise amount: + Količina belega šuma: + + + + Invert + Inverzno + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + Čas preleta: + + + + Sweep time + Čas preleta + + + + Sweep rate shift amount: + Stopnja premika preleta: + + + + Sweep rate shift amount + Stopnja premika preleta + + + + + Wave pattern duty cycle: + Cikelj izvajanja valovne matrike: + + + + + Wave pattern duty cycle + Cikelj izvajanja valovne matrike + + + + Square channel 1 volume: + Pravokotni kanal 1 glasnost: + + + + Square channel 1 volume + Pravokotni kanal 1 glasnost + + + + + + Length of each step in sweep: + Dolžina vsakega koraka v preletu + + + + + + Length of each step in sweep + Dolžina vsakega koraka preleta + + + + Square channel 2 volume: + Pravokotni kanal 2 glasnost: + + + + Square channel 2 volume + Pravokotni kanal 2 glasnost + + + + Wave pattern channel volume: + Glasnost kanala valovne matrike: + + + + Wave pattern channel volume + Glasnost kanala valovne matrike + + + + Noise channel volume: + Glasnost kanala s šumom: + + + + Noise channel volume + Glasnost kanala s šumom + + + + SO1 volume (Right): + SO1 glasnost (desno): + + + + SO1 volume (Right) + SO1 glasnost (desno) + + + + SO2 volume (Left): + SO2 glasnost (levo) + + + + SO2 volume (Left) + SO2 glasnost (desno) + + + + Treble: + Visoki: + + + + Treble + Visoki + + + + Bass: + Bas: + + + + Bass + Bas + + + + Sweep direction + Smer preleta + + + + + + + + Volume sweep direction + Smer preleta glasnosti + + + + Shift register width + Pomik širine registra + + + + Channel 1 to SO1 (Right) + Kanal 1 na SO1 (desni) + + + + Channel 2 to SO1 (Right) + Kanal 2 na SO1 (desni) + + + + Channel 3 to SO1 (Right) + Kanal 3 na SO1 (desni) + + + + Channel 4 to SO1 (Right) + Kanal 4 na SO1 (desni) + + + + Channel 1 to SO2 (Left) + Kanal 1 na SO2 (levi) + + + + Channel 2 to SO2 (Left) + Kanal 2 na SO2 (levi) + + + + Channel 3 to SO2 (Left) + Kanal 3 na SO2 (levi) + + + + Channel 4 to SO2 (Left) + Kanal 4 na SO2 (levi) + + + + Wave pattern graph + Graf valovne matrike + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + Odpri GIG datoteko + + + Choose patch - + Izberi program - + Gain: + Jakost: + + + + GIG Files (*.gig) + GIG datoteke (*.gig) + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: - - Apply reverb (if supported) + + Spray: - - Room size: + + Jitter: - - Damping: + + Twitch: - - Width: + + Spray Stereo Spread: - - - Level: + + Grain Shape: - - Apply chorus (if supported) + + Fade Length: - - Voices: + + Feedback: - - Speed: + + Minimum Allowed Latency: - + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + Delovna mapa + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + LMMS delovna mapa %1 ne obstaja. Jo ustvarim? Mapo lahko spremenite preko Uredi -> Nastavitve. + + + + Preparing UI + Pripravljanje uporabniškega vmesnika + + + + Preparing song editor + Pripravljam Urejevalnik skladbe + + + + Preparing mixer + Pripravljanje mešalke + + + + Preparing controller rack + Pripravljanje regala kontrolerjev + + + + Preparing project notes + Pripravljanje zaznamkov projekta + + + + Preparing microtuner + Pripravljanje mikoruglaševalnika + + + + Preparing pattern editor + Pripravljanje urejevalnika matrik + + + + Preparing piano roll + Pripravljanje klavirskega črtovja + + + + Preparing automation editor + Pripravljanje urejevalnika avtomatizacije + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + ARPEGGIO + + + + RANGE + RAZPON + + + + Arpeggio range: + Razpon arpeggia: + + + + octave(s) + oktav(a) + + + + REP + REP + + + + Note repeats: + Ponovljanje not: + + + + time(s) + krat + + + + CYCLE + KROŽI + + + + Cycle notes: + Kroženje not: + + + + note(s) + not(a) + + + + SKIP + SKOK + + + + Skip rate: + Stopnja preskakovanja: + + + + + + % + % + + + + MISS + GREŠI + + + + Miss rate: + Stopnja zgrešitve + + + + TIME + ČAS + + + + Arpeggio time: + Čas arpeggia: + + + + ms + ms + + + + GATE + VRATA + + + + Arpeggio gate: + Vrata arpeggia: + + + + Chord: + Akord: + + + + Direction: + Smer: + + + + Mode: + Način: + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + KOPIČENJE + + + + Chord: + Akord: + + + + RANGE + RAZPON + + + + Chord range: + Razpon akorda: + + + + octave(s) + oktav(a) + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + VKLOPI MIDI VHOD + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + KANAL + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + HITR + + + + ENABLE MIDI OUTPUT + VKLOPI MIDI IZHOD + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + PROG + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + NOTA + + + + MIDI devices to receive MIDI events from + MIDI-naprave, ki morajo prejeti MIDI-dogodke od + + + + MIDI devices to send MIDI events to + MIDI-naprave, ki morajo poslati MIDI-dogodke do + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + CILJ + + + + FILTER + FILTER + + + + FREQ + FREKV + + + + Cutoff frequency: + Frekvenca rezanja: + + + + Hz + Hz + + + + Q/RESO + Q/RESO + + + + Q/Resonance: + Q/resonanca: + + + + Envelopes, LFOs and filters are not supported by the current instrument. + Oblike krivulj, LFOji in filtri niso podprti v trenutnem instrumentu. + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + Glasnost + + + + Volume: + Glasnost: + + + + VOL + GLASN + + + + Panning + Panorama + + + + Panning: + Panorama: + + + + PAN + PAN + + + + MIDI + MIDI + + + + Input + Vhod + + + + Output + Izhod + + + + Open/Close MIDI CC Rack + Odpri/Zapri MIDI CC regal + + + + %1: %2 + %1: %2 + + + + lmms::gui::InstrumentTrackWindow + + + Volume + Glasnost + + + + Volume: + Glasnost: + + + + VOL + GLASN + + + + Panning + Panorama + + + + Panning: + Panorama: + + + + PAN + PAN + + + + Pitch + Višina + + + + Pitch: + Višina: + + + + cents + stotinov + + + + PITCH + VIŠINA + + + + Pitch range (semitones) + Razpon višine (poltoni) + + + + RANGE + RAZPON + + + + Mixer channel + Mešalni kanal + + + + CHANNEL + KANAL + + + + Save current instrument track settings in a preset file + Shrani nastavitve trenutnega instrumenta v predlogo + + + + SAVE + SHRANI + + + + Envelope, filter & LFO + Ovoj, filter & NFO + + + + Chord stacking & arpeggio + Nalaganje akordov in arpeggio + + + + Effects + Učinki + + + + MIDI + MIDI + + + + Tuning and transposition + + + + + Save preset + Shrani predlogo + + + + XML preset file (*.xpf) + XML predloga (*.xpf) + + + + Plugin + Vtičnik + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + Začetna frekvenca: + + + + End frequency: + Končna frekvenca: + + + + Frequency slope: + Nagib frekvence: + + + + Gain: + Jakost: + + + + Envelope length: + Dolžina ovoja: + + + + Envelope slope: + Nagib ovoja: + + + + Click: + Klik: + + + + Noise: + Šum: + + + + Start distortion: + Začetno popačenje: + + + + End distortion: + Končno popačenje: + + + + lmms::gui::LOMMControlDialog + + Depth: - - SoundFont Files (*.sf2 *.sf3) + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters - SfxrInstrument + lmms::gui::LadspaBrowserView - - Wave + + + Available Effects + Učinki, ki so na voljo + + + + + Unavailable Effects + Učinki, ki niso na voljo + + + + + Instruments + Instrumenti + + + + + Analysis Tools + Analitična orodja + + + + + Don't know + Neznano + + + + Type: + Vrsta: + + + + lmms::gui::LadspaControlDialog + + + Link Channels + Združi kanale + + + + Channel + Kanal + + + + lmms::gui::LadspaControlView + + + Link channels + Združi kanale + + + + Value: + Vrednost: + + + + lmms::gui::LadspaDescription + + + Plugins + Vtičniki + + + + Description + Opis + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: - StereoEnhancerControlDialog + lmms::gui::LadspaMatrixControlDialog - - WIDTH + + Link Channels - - Width: + + Link + + + + + Channel %1 + + + + + Link channels - StereoEnhancerControls + lmms::gui::LadspaPortDialog - - Width - + + Ports + Vrata + + + + Name + Ime + + + + Rate + Stopnja + + + + Direction + Smer + + + + Type + Vrsta + + + + Min < Default < Max + Min < privzeto < maks + + + + Logarithmic + Logaritmično + + + + SR Dependent + SR odvisno + + + + Audio + Zvok + + + + Control + Kontrola + + + + Input + Vhod + + + + Output + Izhod + + + + Toggled + Preklopljeno + + + + Integer + Celoštevilčno + + + + Float + Decimalno + + + + + Yes + Da - StereoMatrixControlDialog + lmms::gui::Lb302SynthView - - Left to Left Vol: - + + Cutoff Freq: + Frekvenca rezanja: - - Left to Right Vol: - + + Resonance: + Resnonanca: - - Right to Left Vol: - + + Env Mod: + Ovoj mod: - - Right to Right Vol: - - - - - StereoMatrixControls - - - Left to Left - Od desne proti levi + + Decay: + Upad: - - Left to Right - Od leve proti desni + + 303-es-que, 24dB/octave, 3 pole filter + 303-karski, 24dB/oktavo, 3 polni filter - - Right to Left - Od desne proti levi + + Slide Decay: + Drseči upad: - - Right to Right - Od desne proti levi - - - - VestigeInstrument - - - Loading plugin - + + DIST: + POPAČ: - - Please wait while loading the VST plugin... - - - - - Vibed - - - String %1 volume - - - - - String %1 stiffness - - - - - Pick %1 position - - - - - Pickup %1 position - - - - - String %1 panning - - - - - String %1 detune - - - - - String %1 fuzziness - - - - - String %1 length - - - - - Impulse %1 - - - - - String %1 - - - - - VibedView - - - String volume: - - - - - String stiffness: - - - - - Pick position: - - - - - Pickup position: - - - - - String panning: - - - - - String detune: - - - - - String fuzziness: - - - - - String length: - - - - - Impulse - - - - - Octave - - - - - Impulse Editor - - - - - Enable waveform - - - - - Enable/disable string - - - - - String - - - - - - Sine wave - - - - - - Triangle wave - - - - - + Saw wave - + Žagasta oblika - - + + Click here for a saw-wave. + Kliknite sem za žagasti val. + + + + Triangle wave + Trikotna oblika + + + + Click here for a triangle-wave. + Kliknite sem za trikotni val. + + + Square wave - + Pravokotna oblika - - + + Click here for a square-wave. + Kliknite sem za pravokotni val. + + + + Rounded square wave + Zaokrožen pravokotni val + + + + Click here for a square-wave with a rounded end. + Kliknite sem za pravokotni val za zaobljenim koncem. + + + + Moog wave + Moog val + + + + Click here for a moog-like wave. + Kliknite sem za Moogu podoben val. + + + + Sine wave + Sinusna oblika + + + + Click for a sine-wave. + Kliknite sem za sinusni val. + + + + + White noise wave + Val belega šuma + + + + Click here for an exponential wave. + Kliknite sem za eksponentni val. + + + + Click here for white-noise. + Kliknite sem za beli šum. + + + + Bandlimited saw wave + Pasovno omejen žagasti val + + + + Click here for bandlimited saw wave. + Kliknite sem za pasovno omejen žagasti val. + + + + Bandlimited square wave + Pasovno omejen pravokotni val + + + + Click here for bandlimited square wave. + Kliknite sem za pasovno omejen pravokotni val. + + + + Bandlimited triangle wave + Pasovno omejen trikotni val. + + + + Click here for bandlimited triangle wave. + Kliknite sem za pasovno omejen trikotni val. + + + + Bandlimited moog saw wave + Pasovno omejen Moog žagasti val + + + + Click here for bandlimited moog saw wave. + Kliknite sem za pasovno omejen Moog žagasti val. + + + + lmms::gui::LcdFloatSpinBox + + + Set value + Določi vrednost + + + + Please enter a new value between %1 and %2: + Vnesite novo vrednost med %1 in %2: + + + + lmms::gui::LcdSpinBox + + + Set value + Določi vrednost + + + + Please enter a new value between %1 and %2: + Vnesite novo vrednost med %1 in %2: + + + + lmms::gui::LeftRightNav + + + + + Previous + Nazaj + + + + + + Next + Naprej + + + + Previous (%1) + Nazaj (%1) + + + + Next (%1) + Naprej (%1) + + + + lmms::gui::LfoControllerDialog + + + LFO + NFO + + + + BASE + OSNOVA + + + + Base: + Osnova: + + + + FREQ + FREKV + + + + LFO frequency: + NFO frekvenca: + + + + AMNT + KOLIČ + + + + Modulation amount: + Količina modulacije: + + + + PHS + FAZ + + + + Phase offset: + Premik faze: + + + + degrees + stopinj + + + + Sine wave + Sinusna oblika + + + + Triangle wave + Trikotna oblika + + + + Saw wave + Žagasta oblika + + + + Square wave + Pravokotna oblika + + + + Moog saw wave + Moog pravokotni val + + + + Exponential wave + Eksponentni val + + + White noise - + Beli šum - - - User-defined wave - + + User-defined shape. +Double click to pick a file. + Uporabniško določena oblika. +Dvojni klik za izbiro datoteke. - - - Smooth waveform - + + Multiply modulation frequency by 1 + Zmnoži frekvenco moduliranja z 1 - - - Normalize waveform + + Multiply modulation frequency by 100 + Zmnoži frekvenco moduliranja s 100 + + + + Divide modulation frequency by 100 + Deli frekvenco moduliranja s 100 + + + + lmms::gui::LfoGraph + + + %1 Hz - VoiceObject + lmms::gui::MainWindow - - Voice %1 pulse width + + Configuration file + Nastavitvena datoteka + + + + Error while parsing configuration file at line %1:%2: %3 + Napaka pri razčlenjevanju nastavitvene datoteke v vrstici %1:%2: %3 + + + + Could not open file + Ne morem odpreti datoteke + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + Datoteke %1 ni bilo mogoče odpreti za zapisovanje. +Prepričajte se, da imate pravico za zapisovanje v to datoteko in njeno mapo ter poskusite znova! + + + + Project recovery + Obnova projekta + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + Na voljo je obnovitvena datoteka. Videti je, da se zadnja seja ni pravilno končala ali da je hkrati zagnana še ena instanca LMMS. Ali želite obvnoviti projekt te seje? + + + + + Recover + Obnova + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + Obnova datoteke. Pri tem dejanju je potrebno paziti na to, da ni zagnanih več instanc LMMS. + + + + + Discard + Opusti + + + + Launch a default session and delete the restored files. This is not reversible. + Zaženi privzeto sejo in pobriši obnovljene datoteke. Tega ni mogoče preklicati. + + + + Version %1 + Različica %1 + + + + Preparing plugin browser + Pripravljam brskalnik za vtičnike + + + + Preparing file browsers + Prirpavljam datotečni brskalnik + + + + My Projects + Moji projekti + + + + My Samples + Moji vzorci + + + + My Presets + Moje predloge + + + + My Home + Moj dom + + + + Root Directory - - Voice %1 attack + + Volumes + Nosilci + + + + My Computer + Moj računalnik + + + + Loading background picture + Nalagam sliko ozadja + + + + &File + &Datoteka + + + + &New + &Novo + + + + &Open... + &Odpri... + + + + &Save + &Shrani + + + + Save &As... + Shr&ani kot... + + + + Save as New &Version + Shrani kot no&vo različico + + + + Save as default template + Shrani kot privzeto predlogo + + + + Import... + Uvozi... + + + + E&xport... + &Izvozi + + + + E&xport Tracks... + Iz&vozi steze... + + + + Export &MIDI... + Izvozi &MIDI... + + + + &Quit + I&zhod + + + + &Edit + &Uredi + + + + Undo + Razveljavi + + + + Redo + Uveljavi + + + + Scales and keymaps - - Voice %1 decay + + Settings + Nastavitve + + + + &View + &Prikaz + + + + &Tools + &Orodja + + + + &Help + &Pomoč + + + + Online Help + Spletna pomoč + + + + Help + Pomoč + + + + About + O programu + + + + Create new project + Ustvari nov projekt + + + + Create new project from template + Ustvari nov projekt iz predloge + + + + Open existing project + Odpri obstoječi projekt + + + + Recently opened projects + Nedavno odprti projekti + + + + Save current project + Shrani trenutni projekt + + + + Export current project + Izvozi trenutni projekt + + + + Metronome + Metronom + + + + + Song Editor + Urejevalnik skladbe + + + + + Pattern Editor + Urejevalnik matrik + + + + + Piano Roll + Klavirsko črtovje + + + + + Automation Editor + Urejevalnik avtomatizacije + + + + + Mixer + Mešalka + + + + Show/hide controller rack + Prikaži/skrij regal krmilnikov + + + + Show/hide project notes + Prikaži/skrij beležke projekta + + + + Untitled + neimenovano + + + + Recover session. Please save your work! + Obnovitvena seja. Shranite dokumente! + + + + LMMS %1 + LMMS %1 + + + + Recovered project not saved + Obnovljen projekt ni bil shranjen + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + Ta projekt je bil obnovljen s prejšnje seje. Trenutno ni shranjen in bo izgubljen, če ga ne shranite. Ali ga želite shraniti? + + + + Project not saved + Projekt ni shranjen + + + + The current project was modified since last saving. Do you want to save it now? + Trenutni projekt je bil po zadnjem shranjevanju spremenjen. Ali ga želite sedaj shraniti? + + + + Open Project + Odpri projekt + + + + LMMS (*.mmp *.mmpz) + LMMS (*.mmp *.mmpz) + + + + Save Project + Shrani projekt + + + + LMMS Project + LMMS projekt + + + + LMMS Project Template + Predloga za LMMS projekt + + + + Save project template + Shrani predlogo projekta + + + + Overwrite default template? + Prepišem privzeto predlogo? + + + + This will overwrite your current default template. + To bo prepisalo vašo trenutno privzeto predlogo. + + + + Help not available + Pomoč ni na voljo + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + Trenutno LMMS ne ponuja pomoči. +Obiščite http://lmms.sf.net/wiki za ogled LMMS dokumentacije. + + + + Controller Rack + Regal krmilnikov + + + + Project Notes + Projektne beležke + + + + Fullscreen + Celozaslonsko + + + + Volume as dBFS + Glasnost kot dBFS + + + + Smooth scroll + Mehko drsenje + + + + Enable note labels in piano roll + Na klavirskem črtovju prikaži oznake not + + + + MIDI File (*.mid) + MIDI datoteka (*.mid) + + + + + untitled + neimenovano + + + + + Select file for project-export... + Izberi datoteko za izvoz projekta... + + + + Select directory for writing exported tracks... + Izberite mapo za zapisovanje izvoženih datotek... + + + + Save project + Shrani projekt + + + + Project saved + Projekt je shranjen + + + + The project %1 is now saved. + Projekt %1 je zdaj shranjen + + + + Project NOT saved. + Projekt NI shranjen + + + + The project %1 was not saved! + Projekt %1 ni bil shranjen + + + + Import file + Uvozi datoteko + + + + MIDI sequences + MIDI sekvence + + + + Hydrogen projects + Hydrogen projekti + + + + All file types + Vse vrste datotek + + + + lmms::gui::MalletsInstrumentView + + + Instrument + Instrument + + + + Spread + Razpršeno + + + + Spread: + Razpršeno: + + + + Random - - Voice %1 sustain + + Random: - - Voice %1 release + + Missing files + Manjkajoče datoteke + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + Stk namestitev je nepopolna. Prepričajte sem da je nameščen celotni Stk paket. + + + + Hardness + Trdota + + + + Hardness: + Trdota: + + + + Position + Položaj + + + + Position: + Položaj: + + + + Vibrato gain + Jakost vibrata + + + + Vibrato gain: + Jakost vibrata: + + + + Vibrato frequency + Frekvenca vibrata + + + + Vibrato frequency: + Frekvenca vibrata: + + + + Stick mix + Palični miks + + + + Stick mix: + Palični miks: + + + + Modulator + Modulator + + + + Modulator: + Modulator: + + + + Crossfade + Navzkrižno + + + + Crossfade: + Navzkrižno: + + + + LFO speed + NFO hitrost + + + + LFO speed: + NFO hitrost: + + + + LFO depth + NFO globina + + + + LFO depth: + NFO globina: + + + + ADSR + ADSR + + + + ADSR: + ADSR: + + + + Pressure + Pritisk + + + + Pressure: + Pritisk: + + + + Speed + Hitrost + + + + Speed: + Hitrost: + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + - VST nadzor parametrov + + + + VST sync + VST sinhr + + + + + Automated + Samodejno + + + + Close + Zapri + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + - nadzor VST vtičnika + + + + VST Sync + VST sinhronizacija + + + + + Automated + Samodejno + + + + Close + Zapri + + + + lmms::gui::MeterDialog + + + + Meter Numerator + Števec metruma + + + + Meter numerator + Števec metruma + + + + + Meter Denominator + Imenovalec metruma + + + + Meter denominator + Imenovalec metruma + + + + TIME SIG + ČAS OZNAKA + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot - - Voice %1 coarse detuning + + Selected keymap slot - - Voice %1 wave shape + + + First key + Prvi ključ + + + + + Last key + Zadnji ključ + + + + + Middle key + Srednji ključ + + + + + Base key + Osnovni ključ + + + + + + Base note frequency + Frekvenca osnovne note + + + + Microtuner Configuration - - Voice %1 sync + + Scale slot to edit: - - Voice %1 ring modulate + + Scale description. Cannot start with "!" and cannot contain a newline character. + Opis lestvice. Ne more se začeti s "!" in ne sme vsebovati znaka za novo vrstico. + + + + + Load + Naloži + + + + + Save + Shrani + + + + Load scale definition from a file. - - Voice %1 filtered + + Save scale definition to a file. - - Voice %1 test + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + Vnesite intervale v ločene vrstice. Številke, ki vsebujejo decimalke, se obravnavajo kot stotinje. +Ostali vnosi se obravnavajo kot celoštevilska razmerja in morajo biti zapisani v obliki 'a/b' ali 'a'. +Enotnost (0.0 stotinj ali razmerje 1/1) je vedno prikazana koz skrita prva vrednost; ne vnašajte je ročno. + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + Opis mape tipk. Ne more se začeti s "!" in ne sme vsebovati znaka za novo vrstico. + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + Vnesite mapiranja tipkovnice v ločene vrstice. Vsaka vrstica pripiše neki MIDI tipki stopnjo na lestvivi, +začenši s srednjo tipko in nadaljujoč po zaporedju. +Vzorec se ponavlja za tipke, ki so izven navedenega razpona v mapi tipk. +Več tipk je mogoče pripisati isti stopnji lestvice. +Vnesite 'x', če želite pustiti tipko nedodeljeno/ nemapirano. + + + + FIRST + PRVA + + + + First MIDI key that will be mapped + Prva MIDI tipka, ki bo mapirana + + + + LAST + ZADNJA + + + + Last MIDI key that will be mapped + Zadnja MIDI tipka, ki bo mapirana + + + + MIDDLE + SREDNJA + + + + First line in the keymap refers to this MIDI key + Prva vrstica mape tipk se nanaša na to MIDI tipko + + + + BASE N. + OSN.NOTA + + + + Base note frequency will be assigned to this MIDI key + Frekvenca osnovne note bo pripisana tej MIDI tipki + + + + BASE NOTE FREQ + FREKV OSN NOTE + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + Napaka pri razčlenjevanju lestvice + + + + Scale name cannot start with an exclamation mark + Ime lestvice se ne more začeti s klicajem + + + + Scale name cannot contain a new-line character + Ime lestvice ne more vsebovati znaka za novo vrstico + + + + Interval defined in cents cannot be converted to a number + Interval definiran v stotnjah ne more biti pretovrjen v številko + + + + Numerator of an interval defined as a ratio cannot be converted to a number + Števec intervala, ki je definiran kot razmerje, ne more biti pretvorjen v številko + + + + Denominator of an interval defined as a ratio cannot be converted to a number + Imenovalec intervala, ki je definiran kot razmerje, ne more biti pretvorjen v številko + + + + Interval defined as a ratio cannot be negative + Interval, ki je definiran kot razmerje, ne more biti negativno + + + + Keymap parsing error + Napaka pri razčlenjevanju mape tipk + + + + Keymap name cannot start with an exclamation mark + Ime mape tipk se ne more začeti s klicajem + + + + Keymap name cannot contain a new-line character + Ime mape tipk ne more vsebovati znaka za novo vrstico + + + + Scale degree cannot be converted to a whole number + Stopnja lestvice ne more biti pretovrjena v celo število + + + + Scale degree cannot be negative + Stopnja lestvice ne more biti negativna + + + + Invalid keymap + Napačna mapa tipk + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + Osnovna tipka ni pripisana stopnji lestvice. Zvok ne bo ustvarjen, ker notam ni možno pripisati referenčne frekvence. + + + + Open scale + Odpri lestvico + + + + + Scala scale definition (*.scl) + Scala definicija lestvice (*.scl) + + + + Scale load failure + Napak pri nalaganju lestvice + + + + + Unable to open selected file. + Izbrane datoteke ni mogoče odpreti. + + + + Open keymap + Odpri mapo tipk + + + + + Scala keymap definition (*.kbm) + Scala definicija mape tipk (*.kbm) + + + + Keymap load failure + Napak pri nalaganju mape tipk + + + + Save scale + Shrani lestvico + + + + Scale save failure + Napaka pri shranjevanju lestvice + + + + + Unable to open selected file for writing. + Izbrane datoteke ni mogoče odpreti za zapisovanje. + + + + Save keymap + Shrani mapo tipk + + + + Keymap save failure + Napaka pri shranjevanju mape tipk + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + MIDI CC regal -%1 + + + + MIDI CC Knobs: + MIDI CC regulatorji: + + + + CC %1 + CC %1 + + + + lmms::gui::MidiClipView + + + + Transpose + Transponiraj + + + + Semitones to transpose by: + Transponiraj za poltonov: + + + + Open in piano-roll + Odpri na klavirskem črtvoju + + + + Set as ghost in piano-roll + Nastavi kot zakrite v klavirskem črtovju + + + + Set as ghost in automation editor + + + + + Clear all notes + Počisti vse note + + + + Reset name + Ponastavi ime + + + + Change name + Spremeni ime + + + + Add steps + Dodaj korake + + + + Remove steps + Odstrani korake + + + + Clone Steps + Kloniraj korake + + + + lmms::gui::MidiSetupWidget + + + Device + Naprava + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value - WaveShaperControlDialog + lmms::gui::MixerChannelView - - INPUT + + Channel send amount - + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + Mešalka + + + + lmms::gui::MonstroView + + + Operators view + Prikaz operatorjev + + + + Matrix view + Matrični prikaz + + + + + + Volume + Glasnost + + + + + + Panning + Panorama + + + + + + Coarse detune + Groba razglasitev + + + + + + semitones + poltoni + + + + + Fine tune left + Fina uglasitev levo + + + + + + + cents + stotini + + + + + Fine tune right + Fina uglasitev desno + + + + + + Stereo phase offset + Odmik stereo faze + + + + + + + + deg + stopinj + + + + Pulse width + Širina pulza + + + + Send sync on pulse rise + Pošlji sinh ko pulz narašča + + + + Send sync on pulse fall + Pošlji sinh ko pulz upada + + + + Hard sync oscillator 2 + Trdi sinh oscilator 2 + + + + Reverse sync oscillator 2 + Obrni sinh oscilator 2 + + + + Sub-osc mix + Pod-osc miks + + + + Hard sync oscillator 3 + Trdi sinh oscilator 3 + + + + Reverse sync oscillator 3 + Obrni sinh oscilator 3 + + + + + + + Attack + Napad + + + + + Rate + Stopnja + + + + + Phase + Faza + + + + + Pre-delay + Pred-zamik + + + + + Hold + Zadrži + + + + + Decay + Upad + + + + + Sustain + Zadrži + + + + + Release + Spust + + + + + Slope + Klanec + + + + Mix osc 2 with osc 3 + Miksaj osc2 z osc 3 + + + + Modulate amplitude of osc 3 by osc 2 + Moduliraj amplitudo osc 3 za osc 2 + + + + Modulate frequency of osc 3 by osc 2 + Moduliraj frekvenco osc 3 za osc 2 + + + + Modulate phase of osc 3 by osc 2 + Moduliraj fazo osc 3 za osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + Količina modulacije + + + + lmms::gui::MultitapEchoControlDialog + + + Length + Dolžina + + + + Step length: + Dolžina koraka: + + + + Dry + Surov + + + + Dry gain: + Surovo jakost: + + + + Stages + Stopnje + + + + Low-pass stages: + Nizkoprepustne stopnje: + + + + Swap inputs + Zamenjaj vhode + + + + Swap left and right input channels for reflections + Zamenjaj levi ibn desni vhodni kanal za odboje + + + + lmms::gui::NesInstrumentView + + + + + + Volume + Glasnost + + + + + + Coarse detune + Groba razglasitev + + + + + + Envelope length + Dolžina ovoja + + + + Enable channel 1 + Vklopi kanal 1 + + + + Enable envelope 1 + Vklopi ovoj 1 + + + + Enable envelope 1 loop + Vklopi ovoj 1 zanko + + + + Enable sweep 1 + Vklopi prelet 1 + + + + + Sweep amount + Količina preleta + + + + + Sweep rate + Stopnja preleta + + + + + 12.5% Duty cycle + 12,5% cikelj izvajanja + + + + + 25% Duty cycle + 25% cikelj izvajanja + + + + + 50% Duty cycle + 50% cikelj izvajanja + + + + + 75% Duty cycle + 75% cikelj izvajanja + + + + Enable channel 2 + Vklopi kanal 2 + + + + Enable envelope 2 + Vklopi ovoj 2 + + + + Enable envelope 2 loop + Vklopi ovoj 2 zanko + + + + Enable sweep 2 + Vklopi prelet 2 + + + + Enable channel 3 + Vklopi kanal 3 + + + + Noise Frequency + Frekvenca šuma + + + + Frequency sweep + Prelet frekvence + + + + Enable channel 4 + Vklopi kanal 4 + + + + Enable envelope 4 + Vklopi ovoj 4 + + + + Enable envelope 4 loop + Vklopi ovoj 4 zanko + + + + Quantize noise frequency when using note frequency + Kvantizacija frekvence šuma, kadar je uporabljena frekvenca note + + + + Use note frequency for noise + Za šum uporabi frekvenco note + + + + Noise mode + Način šuma + + + + Master volume + Glavna glasnost + + + + Vibrato + Vibrato + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + Napad + + + + + Decay + Upad + + + + + Release + Spust + + + + + Frequency multiplier + Množilnik frekvence + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + Popačenje: + + + + Volume: + Glasnost: + + + + Randomise + Naključno + + + + + Osc %1 waveform: + Osc %1 valovna oblika: + + + + Osc %1 volume: + Osc %1 glasnost: + + + + Osc %1 panning: + Osc %1 panorama: + + + + Osc %1 stereo detuning + Osc %1 stereo razglasitev + + + + cents + stotinov + + + + Osc %1 harmonic: + Osc %1 harmonično + + + + lmms::gui::Oscilloscope + + + Oscilloscope + Osciloskop + + + + Click to enable + Klikni za vklop + + + + lmms::gui::PatmanView + + + Open patch + Odpri program + + + + Loop + Zanka + + + + Loop mode + Način zanke + + + + Tune + Uglasitev + + + + Tune mode + Način uglaševanja + + + + No file selected + Nobena datoteka ni izbrana + + + + Open patch file + Odpri programsko datoteko + + + + Patch-Files (*.pat) + Programske datoteke (*.pat) + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + Odpri v urejevalniku matrik + + + + Reset name + Ponastavi ime + + + + Change name + Spremeni ime + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + Urejevalnik matrik + + + + Play/pause current pattern (Space) + Predvajanje/Premor trenutne matrike (presledek) + + + + Stop playback of current pattern (Space) + Zaustavi predvajanje trenutne matrike (presledek) + + + + Pattern selector + Izbirnik matrike + + + + Track and step actions + Dejanja za stezo in korak + + + + New pattern + Nova matrika + + + + Clone pattern + Kloniraj matriko + + + + Add sample-track + Dodaj stezo za vzorce + + + + Add automation-track + Dodaj stezo z avtomatizacijo + + + + Remove steps + Odstrani korake + + + + Add steps + Dodaj korake + + + + Clone Steps + Kloniraj korake + + + + lmms::gui::PeakControllerDialog + + + PEAK + VRH + + + + LFO Controller + NFO krmilnik + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + OSNOVA + + + + Base: + Osnova: + + + + AMNT + KOLIČ + + + + Modulation amount: + Količina modulacije: + + + + MULT + MNOŽ + + + + Amount multiplicator: + Množilnik količine: + + + + ATCK + NPAD + + + + Attack: + Napad: + + + + DCAY + UPAD + + + + Release: + Spust: + + + + TRSH + PRAG + + + + Treshold: + Prag: + + + + Mute output + Uitšaj izhod + + + + Absolute value + Absolutna vrednost + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + Hitrost note + + + + Note Panning + Panorama note + + + + Mark/unmark current semitone + Označi/odznači trenutni polton + + + + Mark/unmark all corresponding octave semitones + Označi/odznači vse pripadajoče poltone oktave + + + + Mark current scale + Označi trenutno lestvico + + + + Mark current chord + Označi trenutni akord + + + + Unmark all + Odznači vse + + + + Select all notes on this key + Izberi vse note tega ključa + + + + Note lock + Zaklep note + + + + Last note + Zadnja nota + + + + No key + Ni ključa + + + + No scale + Ni lestivce + + + + No chord + Ni akorda + + + + Nudge + Potisni + + + + Snap + Preskok + + + + Velocity: %1% + Hitrost: %1% + + + + Panning: %1% left + Panorama: %1% levo + + + + Panning: %1% right + Panorama: %1% desno + + + + Panning: center + Panorama: sredina + + + + Glue notes failed + Lepljenje not ni uspelo + + + + Please select notes to glue first. + Najprej izberite note za lepljenje. + + + + Please open a clip by double-clicking on it! + Odprite izsek z dvojnim klikom! + + + + + Please enter a new value between %1 and %2: + Vnesite novo vrednost med %1 in %2: + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + Predvajanje/premor trenutnega izseka (preslednica) + + + + Record notes from MIDI-device/channel-piano + Snemaj note z MIDI naprave/kanala-pianina + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + Snema note z MIDI naprave/kanala-pianina medtem ko predvaja skladbo ali stezo z matriko + + + + Record notes from MIDI-device/channel-piano, one step at the time + Snema note z MIDI naprave/kanala-pianina, korak po koraku + + + + Stop playing of current clip (Space) + Zaustavi predvajanje trenutnega izseka (preslednica) + + + + Edit actions + Uredi dejanja + + + + Draw mode (Shift+D) + Način risanja (shift+D) + + + + Erase mode (Shift+E) + Način brisanja (Shift+E) + + + + Select mode (Shift+S) + Način izbire (Shift+S) + + + + Pitch Bend mode (Shift+T) + Način pregibanja višine (Shift+T) + + + + Quantize + Kvantizacija + + + + Quantize positions + Kvantizacija položajev + + + + Quantize lengths + Kvantizacija dolžin + + + + File actions + Dejanja datoteke + + + + Import clip + Uvozi izsek + + + + + Export clip + Izvozi izsek + + + + Copy paste controls + Nadzor kopiranja/lepljenja + + + + Cut (%1+X) + Izreži (%1+X) + + + + Copy (%1+C) + Kopiraj (%1+C) + + + + Paste (%1+V) + Prilepi (%1+V) + + + + Timeline controls + Nadzor časovnice + + + + Glue + Lepljenje + + + + Knife + Nož + + + + Fill + Zapolni + + + + Cut overlaps + Izreži prekrito + + + + Min length as last + Minimalna dolžina vsaj + + + + Max length as last + Maksimalna dolžina vsaj + + + + Zoom and note controls + Nadzor povečave in not + + + + Horizontal zooming + Vodoravna povečava + + + + Vertical zooming + Navpična povečava + + + + Quantization + Kvantizacija + + + + Note length + Dolžina note + + + + Key + Ključ + + + + Scale + Skala + + + + Chord + Akord + + + + Snap mode + Način preskoka + + + + Clear ghost notes + Počisti zakrite note + + + + + Piano-Roll - %1 + Pianino-rolca - %1 + + + + + Piano-Roll - no clip + Pianino-rolca - brez izseka + + + + + XML clip file (*.xpt *.xptz) + XML izsek (*.xpt *.xptz) + + + + Export clip success + Uspešno izvožen izsek + + + + Clip saved to %1 + Izsek shranjen v %1 + + + + Import clip. + Uvozi izsek. + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + Uvozili boste izsek, kar bo prepisalo trenuten izsek. Želite nadaljevati? + + + + Open clip + Odpri izsek + + + + Import clip success + Uspešno uvožen izsek + + + + Imported clip %1! + Uvožen izsek %1! + + + + lmms::gui::PianoView + + + Base note + Osnovna nota + + + + First note + Prva nota + + + + Last note + Zadnja nota + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + Vtičniki instrumentov + + + + Instrument browser + Brskalnik instrumentov + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + Pošlji na novo instrumentalno stezo + + + + lmms::gui::ProjectNotes + + + Project Notes + Projektne beležke + + + + Enter project notes here + Sem vnesite zaznamke o projektu + + + + Edit Actions + Uredi dejanja + + + + &Undo + Razveljavi + + + + %1+Z + %1+Z + + + + &Redo + Uveljavi + + + + %1+Y + %1+Y + + + + &Copy + $Kopiraj + + + + %1+C + %1+C + + + + Cu&t + Iz&reži + + + + %1+X + %1+X + + + + &Paste + $Prilepi + + + + %1+V + %1+V + + + + Format Actions + Oblikuj dejanja + + + + &Bold + &Poudarjeno + + + + %1+B + %1+B + + + + &Italic + Po&ševno + + + + %1+I + %1+I + + + + &Underline + Pod&črtano + + + + %1+U + %1+U + + + + &Left + &Levo + + + + %1+L + %1+L + + + + C&enter + C&enter + + + + %1+E + %1+E + + + + &Right + &Desno + + + + %1+R + %1+R + + + + &Justify + Poravna&j + + + + %1+J + %1+J + + + + &Color... + &Barva... + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + Nedavno odp&Rti projekti + + + + lmms::gui::RenameDialog + + + Rename... + Preimenuj... + + + + lmms::gui::ReverbSCControlDialog + + + Input + Vhod + + + Input gain: - + Vhodna jakost: - - OUTPUT - + + Size + Velikost - + + Size: + Velikost: + + + + Color + Barva + + + + Color: + Barva: + + + + Output + Izhod + + + Output gain: + Izhodna jakost: + + + + lmms::gui::SaControlsDialog + + + Pause + Premor + + + + Pause data acquisition + Premor pri pridobivanju podatkov + + + + Reference freeze + Zamrznitev reference + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + Zamrzni trenutni vhod kot referenco / onemogoči padec v načinu zadrži-vrh + + + + Waterfall + Vodni slap + + + + Display real-time spectrogram + Prikaži ralno-časni spektrogram + + + + Averaging + Določanje povprečja + + + + Enable exponential moving average + Vklopi exponetno povprečje gibanja + + + + Stereo + Stereo + + + + Display stereo channels separately + Ločeno prikaži stereo kanala + + + + Peak hold + Zadrži vrh + + + + Display envelope of peak values + Prikaži ovoj vrednosti vrhov + + + + Logarithmic frequency + Logaritmična frekvenca + + + + Switch between logarithmic and linear frequency scale + Preklopi med logaritmično in linearno skalo frekvence + + + + + Frequency range + Frekvenčni razpon + + + + Logarithmic amplitude + Logaritmična amplituda + + + + Switch between logarithmic and linear amplitude scale + Preklopi med logaritmično in linearno skalo ampllitude + + + + + Amplitude range + Razpon amplitude + + + + + FFT block size + FFT velikost bloka + + + + + FFT window type + FFT vrsta okna + + + + Envelope res. + Ločljivost ovoja + + + + Increase envelope resolution for better details, decrease for better GUI performance. + Povečajte ločljivost spektra za več podrobnosti, zmanjšajte za boljšo odzivnost grafičnega vmesnika. + + + + Maximum number of envelope points drawn per pixel: + Največje število izrisanih pik ovoja na piksel: + + + + Spectrum res. + Loč. spektra + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + Povečajte ločljivost spektra za več podrobnosti, zmanjšajte za boljšo odzivnost grafičnega vmesnika. + + + + Maximum number of spectrum points drawn per pixel: + Največje število izrisanih pik spšektra na piksel: + + + + Falloff factor + Faktor upada + + + + Decrease to make peaks fall faster. + Zmanjšajte za hitrejši upad vrhov. + + + + Multiply buffered value by + Zmnoži medpomnjeno vrednost z + + + + Averaging weight + Povprečje teže + + + + Decrease to make averaging slower and smoother. + Zmanjšajte da upočasnite in zmehčate določanje povprečja. + + + + New sample contributes + Novi prispveki vzorcev + + + + Waterfall height + Višina vodnega slapa + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + Povečajte za počasnejše drsenje, zmanjšajte za boljši ogled hitrih prehodov. Opozorilo: srednja obremenitev procesorja. + + + + Number of lines to keep: + Število ohranjenih vrstic: + + + + Waterfall gamma + Gamma vodnega slapa + + + + Decrease to see very weak signals, increase to get better contrast. + Zmanjšajte za ogled zelo šibkih signalov, povečajte za boljši kontrast. + + + + Gamma value: + Vrednost gamma: + + + + Window overlap + Prekrivanje oken + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + Povečajte, da ne prezrete hitrih prehodov blizu robov FFT oken. Opozorilo: velika obremenitev procesorja. + + + + Number of times each sample is processed: + Število obdelav za vsak vzorec: + + + + Zero padding + Nič odmika + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + Povečaj za bolj spekter bolj gladkega videza. Pozor: obremenjuje procesor. + + + + Processing buffer is + Medpomnilnik za procesiranje je + + + + steps larger than input block + korakov večji od vhodnega bloka + + + + Advanced settings + Napredne nastavitve + + + + Access advanced settings + Dostop do naprednih nastavitev + + + + lmms::gui::SampleClipView + + + Double-click to open sample + Dvojni klik za odpiranje vzorca + + + + Reverse sample + Obrni vzorec + + + + Set as ghost in automation editor + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + Glasnost steze + + + + Channel volume: + Glasnost kanala: + + + + VOL + GLASN + + + + Panning + Panorama + + + + Panning: + Panorama: + + + + PAN + PAN + + + + %1: %2 + %1: %2 + + + + lmms::gui::SampleTrackWindow + + + Sample volume + Glasnost vzorca + + + + Volume: + Glasnost: + + + + VOL + GLASN + + + + Panning + Panorama + + + + Panning: + Panorama: + + + + PAN + PAN + + + + Mixer channel + Mešalni kanal + + + + CHANNEL + KANAL + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + Opusti MIDI povezave + + + + Save As Project Bundle (with resources) + Shrani kot paketni projekt (z viri) + + + + lmms::gui::SetupDialog + + + Settings + Nastavitve + + + + + General + Splošno + + + + Graphical user interface (GUI) + Grafični vmesnik (GUI) + + + + Display volume as dBFS + Prikaz glasnosti kot dBFS + + + + Enable tooltips + Vklopi namige za orodja + + + + Enable master oscilloscope by default + Privzeto vklopi glavni osciloskop + + + + Enable all note labels in piano roll + Vklopi vse oznake not v klavirskem črtovju + + + + Enable compact track buttons + Vklopi kompaktne gumbe orodne vrstice + + + + Enable one instrument-track-window mode + Vklopi okenski način ena instrumentalna steza + + + + Show sidebar on the right-hand side + Prikaži stranski pano na desni strani + + + + Let sample previews continue when mouse is released + Predogledi vzorcev naj se nadaljujejo, ko je miška spuščena + + + + Mute automation tracks during solo + Utišaj avotmatizacijske steze, ko je izbran solo + + + + Show warning when deleting tracks + Ob brisanju stez prikaži opozorilo + + + + Show warning when deleting a mixer channel that is in use + Prikaži opozorilo ob brisanju mešalnega kanala, ki je v rabi + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + Projekti + + + + Compress project files by default + Privzeto stiskanje projektnih datotek + + + + Create a backup file when saving a project + Ustvari varnostno kopijo ob shranjevanju projekta + + + + Reopen last project on startup + Ob zagonu odpri zadnji projekt + + + + Language + Jezik + + + + + Performance + Zmogljivost + + + + Autosave + Samodejno shranjevanje + + + + Enable autosave + Vklopi samodejno shranjevanje + + + + Allow autosave while playing + Dovoli samodejno shranjevanje med predvajanjem + + + + User interface (UI) effects vs. performance + Učinki uporabniškega vmesnika (UI) vs. zmogljivost + + + + Smooth scroll in song editor + Mehko drsenje v urejevalniku skladbe + + + + Display playback cursor in AudioFileProcessor + Prikaži predvajalni kurzor v AudioFileProcessor + + + + Plugins + Vtičniki + + + + VST plugins embedding: + Vdelava VST vtičnikov + + + + No embedding + Brez vdelave + + + + Embed using Qt API + Vdelaj z uporabo Qt API + + + + Embed using native Win32 API + Vdelaj z uporabo Win32 API + + + + Embed using XEmbed protocol + Vdelaj z uporabo XEmbed protokola + + + + Keep plugin windows on top when not embedded + Obdrži okna vtičnika na vrhu, kadar niso vgrajena + + + + Keep effects running even without input + Učinki naj se izvajajo, četudi ni vhoda + + + + + Audio + Zvok + + + + Audio interface + Zvočni vmesnik + + + + Buffer size + Velikost medpomnilnika + + + + Reset to default value + Ponastavi na privzeto vrednost + + + + + MIDI + MIDI + + + + MIDI interface + MIDI vmesnik + + + + Automatically assign MIDI controller to selected track + Samodejno določi MIDi kontroler izbrani stezi + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + Poti + + + + LMMS working directory + LMMS delovna mapa + + + + VST plugins directory + Mapa z VST vtičniki + + + + LADSPA plugins directories + Mape LADSPA vtičnikov + + + + SF2 directory + SF2 mapa + + + + Default SF2 + Privzeti SF2 + + + + GIG directory + GIG mapa + + + + Theme directory + Mapa s temami + + + + Background artwork + Grafike za ozadje + + + + Some changes require restarting. + Določene spremembe zahtevajo ponoven zagon. + + + + OK + V redu + + + + Cancel + Prekini + + + + minutes + minut + + + + minute + minuta + + + + Disabled + Onemogočeno + + + + Autosave interval: %1 + Interval samodejnega shranjevanja: %1 + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + Okvirjev: %1 +Latenca: %2 ms + + + + Choose the LMMS working directory + Izberite LMMS delovno mapo + + + + Choose your VST plugins directory + Izberite mapo z VST vtičniki + + + + Choose your LADSPA plugins directory + Izberite mapo z LADSPA vtičniki + + + + Choose your SF2 directory + Izberite SF2 mapo + + + + Choose your default SF2 + Izberite privzeti SF2 + + + + Choose your GIG directory + Izberite GIG mapo + + + + Choose your theme directory + Izberite mapo s temami + + + + Choose your background picture + Izberite sliko za ozadje + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + Odpri SoundFont datoteko + + + + Choose patch + Izberi program + + + + Gain: + Jakost: + + + + Apply reverb (if supported) + Uporabi odjek (če je podprt) + + + + Room size: + Velikost prostora: + + + + Damping: + Dušenje: + + + + Width: + Širina: + + + + + Level: + Nivo: + + + + Apply chorus (if supported) + Uporabi zbor (če je podprt) + + + + Voices: + Glasovi: + + + + Speed: + Hitrost: + + + + Depth: + Globina + + + + SoundFont Files (*.sf2 *.sf3) + SoundFont datoteke (*.sf2 *.sf3) + + + + lmms::gui::SidInstrumentView + + + Volume: + Glasnost: + + + + Resonance: + Resnonanca: + + + + + Cutoff frequency: + Frekvenca rezanja: + + + + High-pass filter + Visokoprepustni filter + + + + Band-pass filter + Pasovno-prepustni filter + + + + Low-pass filter + Nizkoprepustni filter + + + + Voice 3 off + Glas 3 izklop + + + + MOS6581 SID + MOS6581 SID + + + + MOS8580 SID + MOS8580 SID + + + + + Attack: + Napad: + + + + + Decay: + Upad: + + + + Sustain: + Zadrži: + + + + + Release: + Spust: + + + + Pulse Width: + Širina pulza: + + + + Coarse: + Grobo: + + + + Pulse wave + Pulzni val + + + + Triangle wave + Trikotna oblika + + + + Saw wave + Žagasta oblika + + + + Noise + Šum + + + + Sync + Sinhroniziraj + + + + Ring modulation + Modulacija zvonjenja + + + + Filtered + Filtrirano + + + + Test + Test + + + + Pulse width: + Širina pulza: + + + + lmms::gui::SideBarWidget + + + Close + Zapri + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + Ne morem odpreti datoteke + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + Datoteke %1 ni mogoče odpreti. Verjetno nimate pravic za branje te datoteke. +Poskrbite, da boste imeli vsaj bralne pravice in poskusite znova. + + + + Operation denied + Operacija zavrnjena + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + Paketna mapa z imenom, ki že obstaja v izbrani poti. Paktenega projekta ni mogoče prepisati. Izberite drugo ime. + + + + + + Error + Napaka + + + + Couldn't create bundle folder. + Paketne mape ni bilo mogoče ustvariti. + + + + Couldn't create resources folder. + Mape z viri ni bilo mogoče ustvariti. + + + + Failed to copy resources. + Neuspešno kopiranje virov + + + + + Could not write file + Datoteke ni bilo mogoče zapisati + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + Napaka v datoteki + + + + The file %1 seems to contain errors and therefore can't be loaded. + Datoteka %1 vsebuje napake in je ni mogoče naložiti. + + + + template + predloga + + + + project + projekt + + + + Version difference + Razlika različic + + + + This %1 was created with LMMS %2 + %1 je ustvarjen z LMMS %2 + + + + Zoom + Povečava + + + + Tempo + Tempo + + + + TEMPO + TEMPO + + + + Tempo in BPM + Tempo v BPM + + + + + + Master volume + Glavna glasnost + + + + + + Global transposition + Globalno transponiranje + + + + 1/%1 Bar + 1/%1 takt + + + + %1 Bars + %1 taktov + + + + Value: %1% + Vrednost: %1% + + + + Value: %1 keys + Vrednost: %1% ključev + + + + lmms::gui::SongEditorWindow + + + Song-Editor + Urejevalnik skladbe + + + + Play song (Space) + Predvajaj skladbo (preslednica) + + + + Record samples from Audio-device + Snemaj vzorce iz zvočne naprave + + + + Record samples from Audio-device while playing song or pattern track + Snemanje vzorcev iz zvočne naprave med predvajanjem skladbe ali steze z matriko + + + + Stop song (Space) + Zaustavi skladbo (preslednica) + + + + Track actions + Dejanja steze + + + + Add pattern-track + Dodaj stezo z matriko + + + + Add sample-track + Dodaj stezo za vzorce + + + + Add automation-track + Dodaj stezo za avtomatizacijo + + + + Edit actions + Uredi dejanja + + + + Draw mode + Način risanja + + + + Knife mode (split sample clips) + Način noža (razdeli izseke vzorcev) + + + + Edit mode (select and move) + Način urejanja (izberi in premakni) + + + + Timeline controls + Nadzor časovnice + + + + Bar insert controls + Kontrole za vstavljanje takta + + + + Insert bar + Vstavi takt + + + + Remove bar + Odstrani takt + + + + Zoom controls + Nadzor povečave + + + + + Zoom + Povečava + + + + Snap controls + Nadzor preskoka + + + + + Clip snapping size + Velikost preskoka izseka + + + + Toggle proportional snap on/off + Preklopi proporcionalni preskok + + + + Base snapping size + Osnovna velikost preskoka + + + + lmms::gui::StepRecorderWidget + + + Hint + Namig + + + + Move recording curser using <Left/Right> arrows + Premikaj snemalni kurzor s pomočjo smernih tipk <levo/desno> + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + ŠIRINA + + + + Width: + Širina: + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + Levo na levo glas.: + + + + Left to Right Vol: + Levo na desno glas.: + + + + Right to Left Vol: + Desno na levo glas.: + + + + Right to Right Vol: + Desno na desno glas.: + + + + lmms::gui::SubWindow + + + Close + Zapri + + + + Maximize + Najv.povečava + + + + Restore + Obnovi + + + + lmms::gui::TapTempoView + + + 0 + 0 + + + + + Precision + Natančnost + + + + Display in high precision + Prikaži z veliko natančnostjo + + + + 0.0 ms + 0.0 ms + + + + Mute metronome + Utišaj metronom + + + + Mute + Utišaj + + + + BPM in milliseconds + BPM v milisekundah + + + + 0 ms + 0 ms + + + + Frequency of BPM + Frekvenca BPM + + + + 0.0000 hz + 0.0000 hz + + + + Reset + Ponastavi + + + + Reset counter and sidebar information + Ponastavi števec in podatke v stranskem panoju + + + + Sync + Sinhroniziraj + + + + Sync with project tempo + Sinhroniziraj z hitrostjo projekta + + + + %1 ms + %1 ms + + + + %1 hz + %1 hz + + + + lmms::gui::TemplatesMenu + + + New from template + Novo iz predloge + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + Sinhronizacija tempa + + + + No Sync + Brez sinhronizacije + + + + Eight beats + Osem dob + + + + Whole note + Celinka + + + + Half note + Polovinka + + + + Quarter note + Četrtinka + + + + 8th note + Osminka + + + + 16th note + Šestnajstinka + + + + 32nd note + 32-inka + + + + Custom... + Po meri... + + + + Custom + Po meri + + + + Synced to Eight Beats + Sinhronizirano na osem dob + + + + Synced to Whole Note + Sinhronizirano na celinko + + + + Synced to Half Note + Sinhronizirano na polovinko + + + + Synced to Quarter Note + Sinhronizirano na četrtinko + + + + Synced to 8th Note + Sinhronizirano na osminko + + + + Synced to 16th Note + Sinhronizirano na šestnajstinko + + + + Synced to 32nd Note + Sinhronizirano na 32-inko + + + + lmms::gui::TimeDisplayWidget + + + Time units + Enote za čas + + + + MIN + MIN + + + + SEC + SEK + + + + MSEC + MSEK + + + + BAR + TAKT + + + + BEAT + DOB + + + + TICK + UTRIP + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + Samodejno drsenje + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + Točke povratka zanke: + + + + After stopping go back to beginning + Po zaustavitvi se vrni na začetek + + + + After stopping go back to position at which playing was started + Po zaustavitvi se vrni na začetno mesto predvajanja + + + + After stopping keep position + Po zaustavitvi ostani na položaju + + + + Hint + Namig + + + + Press <%1> to disable magnetic loop points. + Pritisni <%1> za izklop magnetnih točk zanke. + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + + Paste + Prilepi + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + Pritisnite <%1>, ko kliknete na oprijem za premikanje, da začnete postopek vleči in spusti. + + + + Actions + Dejanja + + + + + Mute + Utišaj + + + + + Solo + Solo + + + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + Če stezo odstranite, je ni mogoče povrniti. Ali res želite odstraniti stezo "%1"? + + + + Confirm removal + Potrdi odstranitev + + + + Don't ask again + Tega več ne sprašuj + + + + Clone this track + Kloniraj to stezo + + + + Remove this track + Odstrani to stezo + + + + Clear this track + Počisti to stezo + + + + Channel %1: %2 + Kanal %1: %2 + + + + Assign to new Mixer Channel + Dodeli novemu mešalnemu kanalu + + + + Turn all recording on + Vklopi snemanje vseh + + + + Turn all recording off + Izklopi snemanje vseh + + + + Track color + Barva steze + + + + Change + Spremeni + + + + Reset + Ponastavi + + + + Pick random + Izberi naključno + + + + Reset clip colors + Ponastavi barve izsekov + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + Moduliraj fazo oscilatorja 1 za oscilator 2 + + + + Modulate amplitude of oscillator 1 by oscillator 2 + Moduliraj amplitudo oscilatorja 1 za oscilator 2 + + + + Mix output of oscillators 1 & 2 + Miksaj izhoda oscilatorjev 1 & 2 + + + + Synchronize oscillator 1 with oscillator 2 + Sinhroniziraj oscilator 1 z oscilatorjem 2 + + + + Modulate frequency of oscillator 1 by oscillator 2 + Moduliraj frekvenco oscilatorja 1 za oscilator 2 + + + + Modulate phase of oscillator 2 by oscillator 3 + Moduliraj fazo oscilatorja 2 za oscilator 3 + + + + Modulate amplitude of oscillator 2 by oscillator 3 + Moduliraj amplitudo oscilatorja 2 za oscilator 3 + + + + Mix output of oscillators 2 & 3 + Miksaj izhoda oscilatorjev 2 & 3 + + + + Synchronize oscillator 2 with oscillator 3 + Sinhroniziraj oscilator 2 z oscilatorjem 3 + + + + Modulate frequency of oscillator 2 by oscillator 3 + Moduliraj frekvenco oscilatorja 2 za oscilator 3 + + + + Osc %1 volume: + Osc %1 glasnost: + + + + Osc %1 panning: + Osc %1 panorama: + + + + Osc %1 coarse detuning: + Osc %1 groba razglasitev: + + + + semitones + poltonov + + + + Osc %1 fine detuning left: + Osc %1 fina razglasitev levo: + + + + + cents + stotinov + + + + Osc %1 fine detuning right: + Osc %1 fina razglasitev desno: + + + + Osc %1 phase-offset: + Osc %1 fazni zamik: + + + + + degrees + stopinj + + + + Osc %1 stereo phase-detuning: + Osc %1 stereo fazna razglasitev: + + + + Sine wave + Sinusna oblika + + + + Triangle wave + Trikotna oblika + + + + Saw wave + Žagasta oblika + + + + Square wave + Pravokotna oblika + + + + Moog-like saw wave + Moogu podoben žagasti val + + + + Exponential wave + Eksponentni val + + + + White noise + Beli šum + + + + User-defined wave + Uporabniško določena oblika + + + + Use alias-free wavetable oscillators. + Uporabi oscilatorje tabel valovnih oblik brez nadimkov + + + + lmms::gui::VecControlsDialog + + + HQ + HQ + + + + Double the resolution and simulate continuous analog-like trace. + Podvoji ločljivosti in simulira kontinuirano sledenje podobno analogemu. + + + + Log. scale + Log. skala + + + + Display amplitude on logarithmic scale to better see small values. + Prikaži amplitudio na logaritmični skali, da se bolje vidijo majhne vrednosti. + + + + Persist. + Obstojn. + + + + Trace persistence: higher amount means the trace will stay bright for longer time. + Obstojnost sledi: večja količina pomeni, da bo sled ostala dalj časa vidna + + + + Trace persistence + Obstojnost sledi + + + + lmms::gui::VersionedSaveDialog + + + Increment version number + Povečanje številke različice + + + + Decrement version number + Zmanjšanje številke različice + + + + Save Options + Možnosti shranjevanja + + + + already exists. Do you want to replace it? + že obstaja. Želite nadomestiti? + + + + lmms::gui::VestigeInstrumentView + + + + Open VST plugin + Odpri VST vtičnik + + + + Control VST plugin from LMMS host + Nadzor VST vtičnika z LMMS gostitelja + + + + Open VST plugin preset + Oppri predlogo VST vtičnika + + + + Previous (-) + Nazaj (-) + + + + Save preset + Shrani predlogo + + + + Next (+) + Naprej (+) + + + + Show/hide GUI + Prikaži/skrij grafični vmesnik + + + + Turn off all notes + Izklopi vse note + + + + DLL-files (*.dll) + DLL-datoteke (*.dll) + + + + EXE-files (*.exe) + EXE-datoteke (*.exe) + + + + SO-files (*.so) + SO-datoteke (*.so) + + + + No VST plugin loaded + VS vtičnik ni naložen + + + + Preset + Predloga + + + + by + od + + + + - VST plugin control + - nadzor VST vtičnika + + + + lmms::gui::VibedView + + + Enable waveform + Vklopi valovno obliko + + + + + Smooth waveform + Glajenje valovne oblike + + + + + Normalize waveform + Normalizacija valovne oblike + + + + + Sine wave + Sinusna oblika + + + + + Triangle wave + Trikotna oblika + + + + + Saw wave + Žagasta oblika + + + + + Square wave + Pravokotna oblika + + + + + White noise + Beli šum + + + + + User-defined wave + Uporabniško določena oblika + + + + String volume: + Glasnost strune: + + + + String stiffness: + Togost strune: + + + + Pick position: + Položaj odjema: + + + + Pickup position: + Položaj odjemalca: + + + + String panning: + Panorama strune: + + + + String detune: + Razglašenost strune: + + + + String fuzziness: + Popačenost strune: + + + + String length: + Dolžina strune: + + + + Impulse Editor + Urejevalnik impulzov + + + + Impulse + Impulz + + + + Enable/disable string + Omogoči/onemogoči struno + + + + Octave + Oktava + + + + String + Struna + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + Prikaži/Skrij + + + + Control VST plugin from LMMS host + Nadzor VST vtičnika z LMMS gostitelja + + + + Open VST plugin preset + Oppri predlogo VST vtičnika + + + + Previous (-) + Nazaj (-) + + + + Next (+) + Naprej (+) + + + + Save preset + Shrani predlogo + + + + + Effect by: + Učinek od: + + + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + + + + lmms::gui::WatsynView + + + + + + Volume + Glasnost + + + + + + + Panning + Panorama + + + + + + + Freq. multiplier + Množilnik frekv. + + + + + + + Left detune + Razglasi levo + + + + + + + + + + + cents + stotini + + + + + + + Right detune + Razglasi desno + + + + A-B Mix + A-B Miks + + + + Mix envelope amount + Miks ovoj količina + + + + Mix envelope attack + Miks ovoj napad + + + + Mix envelope hold + Miks ovoj zadrži + + + + Mix envelope decay + Miks ovoj upad + + + + Crosstalk + Navzkrižno + + + + Select oscillator A1 + Izberi oscilator A1 + + + + Select oscillator A2 + Izberi oscilator A2 + + + + Select oscillator B1 + Izberi oscilator B1 + + + + Select oscillator B2 + Izberi oscilator B2 + + + + Mix output of A2 to A1 + Miksaj izhod od A2 k A1 + + + + Modulate amplitude of A1 by output of A2 + Moduliraj amplitudo za A1 iz izhoda A2 + + + + Ring modulate A1 and A2 + Zvonjenje modulacija A1 in A2 + + + + Modulate phase of A1 by output of A2 + Moduliraj fazo za A1 iz izhoda A2 + + + + Mix output of B2 to B1 + Miksaj izhod od B2 k B1 + + + + Modulate amplitude of B1 by output of B2 + Moduliraj amplitudo za B1 iz izhoda B2 + + + + Ring modulate B1 and B2 + Zvonjenje modulacija B1 in B2 + + + + Modulate phase of B1 by output of B2 + Moduliraj fazo za B1 iz izhoda B2 + + + + + + + Draw your own waveform here by dragging your mouse on this graph. + Tu narišite svojo valovno obliko s vlečenjem miške po tem grafu. + + + + Load waveform + Naloži valovno obliko + + + + Load a waveform from a sample file + Naloži valovno obliko iz vzorčne datoteke + + + + Phase left + Faza levo + + + + Shift phase by -15 degrees + Premakni fazo za -15 stopinj + + + + Phase right + Faza desno + + + + Shift phase by +15 degrees + Premakni fazo za +15 stopinj + + + + + Normalize + Normalizacija + + + + + Invert + Inverzno + + + + + Smooth + Glajenje + + + + + Sine wave + Sinusna oblika + + + + + + Triangle wave + Trikotna oblika + + + + Saw wave + Žagasta oblika + + + + + Square wave + Pravokotna oblika + + + + lmms::gui::WaveShaperControlDialog + + + INPUT + VHOD + + + + Input gain: + Vhodna jakost: + + + + OUTPUT + IZHOD + - - Reset wavegraph - + Output gain: + Izhodna jakost: + - - Smooth wavegraph - + Reset wavegraph + Ponastavi valovni graf + - - Increase wavegraph amplitude by 1 dB - + Smooth wavegraph + Glajenje valovnega grafa + - + Increase wavegraph amplitude by 1 dB + Povečaj amplitudo valovnega grafa za 1 dB + + + + Decrease wavegraph amplitude by 1 dB - + Zmanjšaj amplitudo valovnega grafa za 1 dB - + Clip input - + Rezanje vhoda - + Clip input signal to 0 dB - + Rezanje vhodnega signala na 0 dB - WaveShaperControls + lmms::gui::XpressiveView - - Input gain - + + Draw your own waveform here by dragging your mouse on this graph. + Tu narišite svojo valovno obliko s vlečenjem miške po tem grafu. - - Output gain - + + Select oscillator W1 + Izberi oscilator W1 + + + + Select oscillator W2 + Izberi oscilator W2 + + + + Select oscillator W3 + Izberi oscilator W3 + + + + Select output O1 + Izberi izhod O1 + + + + Select output O2 + Izberi izhod O2 + + + + Open help window + Odpri okno s pomočjo + + + + + Sine wave + Sinusna oblika + + + + + Moog-saw wave + Moog-žagasti val + + + + + Exponential wave + Eksponentni val + + + + + Saw wave + Žagasta oblika + + + + + User-defined wave + Uporabniško oblikovan vala + + + + + Triangle wave + Trikotna oblika + + + + + Square wave + Pravokotna oblika + + + + + White noise + Beli šum + + + + WaveInterpolate + InterpolacijaVala + + + + ExpressionValid + IzrazVeljaven + + + + General purpose 1: + Splošni namen 1: + + + + General purpose 2: + Splošni namen 2: + + + + General purpose 3: + Splošni namen 3: + + + + O1 panning: + O1 panorama: + + + + O2 panning: + O2 panorama: + + + + Release transition: + Tranzicija spusta: + + + + Smoothness + Zglajenost - + + lmms::gui::ZynAddSubFxView + + + Portamento: + Portamento: + + + + PORT + PORT + + + + Filter frequency: + Frekvenca filtra: + + + + FREQ + FREKV + + + + Filter resonance: + Resonanca filtra: + + + + RES + LOČ + + + + Bandwidth: + Pasovna širina: + + + + BW + + + + + FM gain: + FM jakost: + + + + FM GAIN + FM JAKOST + + + + Resonance center frequency: + Središčna frekvenca resonance + + + + RES CF + LOČ SF + + + + Resonance bandwidth: + Pasovna širina resonance: + + + + RES BW + LOČ PŠ + + + + Forward MIDI control changes + Posreduj MIDI spremembe kontrole + + + + Show GUI + Prikaži grafični vmesnik + + + \ No newline at end of file diff --git a/data/locale/sv.ts b/data/locale/sv.ts index b40306cac..ec65769c5 100644 --- a/data/locale/sv.ts +++ b/data/locale/sv.ts @@ -1,4 +1,4 @@ - + AboutDialog @@ -29,7 +29,7 @@ Copyright © %1. - Copyright © %1. + Upphovsrätt © %1. @@ -70,811 +70,44 @@ Om du är intresserad av att översätta LMMS till ett annat språk eller vill f - AmplifierControlDialog + AboutJuceDialog - - VOL - VOL - - - - Volume: - Volym: - - - - PAN - PAN - - - - Panning: - Panorering: - - - - LEFT - VÄNSTER - - - - Left gain: - Vänsterförstärkning: - - - - RIGHT - HÖGER - - - - Right gain: - Högerförstärkning: - - - - AmplifierControls - - - Volume - Volym - - - - Panning - Panorering - - - - Left gain - Vänsterförstärkning - - - - Right gain - Högerförstärkning - - - - AudioAlsaSetupWidget - - - DEVICE - ENHET - - - - CHANNELS - KANALER - - - - AudioFileProcessorView - - - Open sample - Öppna ljudfil - - - - Reverse sample - Spela baklänges - - - - Disable loop - Inaktivera slinga - - - - Enable loop - Aktivera slinga - - - - Enable ping-pong loop - Aktivera ping-pong loop - - - - Continue sample playback across notes - Fortsätt spela ljudfil över noter - - - - Amplify: - Förstärkning: - - - - Start point: - Startpunkt: - - - - End point: - Slutpunkt: - - - - Loopback point: - Slinga-tillbaka punkt: - - - - AudioFileProcessorWaveView - - - Sample length: - Ljudfilens längd: - - - - AudioJack - - - JACK client restarted - JACK-klienten omstartad - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS blev bortkopplat från JACK. LMMS JACK backend omstartades därfor. Du behöver koppla om manuellt. - - - - JACK server down - JACK-server nerstängd - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - JACK-servern stängdes ned och det gick inte starta en ny. LMMS kan inte fortsätta. Du bör spara ditt projekt och starta om både JACK och LMMS. - - - - Client name - Klientnamn - - - - Channels - Kanaler - - - - AudioOss - - - Device - Enhet - - - - Channels - Kanaler - - - - AudioPortAudio::setupWidget - - - Backend - Bakände - - - - Device - Enhet - - - - AudioPulseAudio - - - Device - Enhet - - - - Channels - Kanaler - - - - AudioSdl::setupWidget - - - Device - Enhet - - - - AudioSndio - - - Device - Enhet - - - - Channels - Kanaler - - - - AudioSoundIo::setupWidget - - - Backend - Bakände - - - - Device - Enhet - - - - AutomatableModel - - - &Reset (%1%2) - &Nollställ (%1%2) - - - - &Copy value (%1%2) - &Kopiera värde (%1%2) - - - - &Paste value (%1%2) - &Klistra in värde (%1%2) - - - - &Paste value - &Klistra in värde - - - - Edit song-global automation - Redigera låt-global automation - - - - Remove song-global automation - Ta bort global automation - - - - Remove all linked controls - Ta bort alla kopplade kontroller - - - - Connected to %1 - Kopplad till %1 - - - - Connected to controller - Kopplad till controller - - - - Edit connection... - Redigera koppling... - - - - Remove connection - Ta bort koppling - - - - Connect to controller... - Koppla till kontroller... - - - - AutomationEditor - - - Edit Value - Redigera värde - - - - New outValue - Ny outValue - - - - New inValue - Ny inValue - - - - Please open an automation clip with the context menu of a control! - Öppna ett automationsmönster från en kontrollers kontextmeny! - - - - AutomationEditorWindow - - - Play/pause current clip (Space) - Spela/pausa aktuellt mönster (Mellanslag) - - - - Stop playing of current clip (Space) - Sluta spela aktuellt mönster (Mellanslag) - - - - Edit actions - Redigera åtgärder - - - - Draw mode (Shift+D) - Ritläge (Skift+D) - - - - Erase mode (Shift+E) - Suddläge (Skift+E) - - - - Draw outValues mode (Shift+C) + + About JUCE - - Flip vertically - Spegla vertikalt + + <b>About JUCE</b> + - - Flip horizontally - Spegla horizontellt + + This program uses JUCE version 3.x.x. + - - Interpolation controls - Interpoleringskontroller + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + - - Discrete progression - Diskret talföljd - - - - Linear progression - Linjär talföljd - - - - Cubic Hermite progression - Cubic Hermite talföljd - - - - Tension value for spline - Spänning i mönstrets spline - - - - Tension: - Spänning: - - - - Zoom controls - Zoomningskontroller - - - - Horizontal zooming - Horisontell zoomning - - - - Vertical zooming - Vertikal zoomning - - - - Quantization controls - Kvantiseringskontroller - - - - Quantization - Kvantisering - - - - - Automation Editor - no clip - Redigera Automation - inget automationsmönster - - - - - Automation Editor - %1 - Redigera Automation - %1 - - - - Model is already connected to this clip. - Modellen är redan ansluten till det här mönstret. + + This program uses JUCE version + - AutomationClip + AudioDeviceSetupWidget - - Drag a control while pressing <%1> - Dra en kontroll samtidigt som du håller <%1> - - - - AutomationClipView - - - Open in Automation editor - Redigera automationsmönster - - - - Clear - Rensa - - - - Reset name - Nollställ namn - - - - Change name - Byt namn - - - - Set/clear record - Ställ in/rensa inspelning - - - - Flip Vertically (Visible) - Spegla Vertikalt (Synligt) - - - - Flip Horizontally (Visible) - Spegla Horizontellt (Synligt) - - - - %1 Connections - %1 Kopplingar - - - - Disconnect "%1" - Koppla bort "%1" - - - - Model is already connected to this clip. - Modellen är redan ansluten till det här mönstret. - - - - AutomationTrack - - - Automation track - Automationsspår - - - - PatternEditor - - - Beat+Bassline Editor - Takt+Basgång-redigerare - - - - Play/pause current beat/bassline (Space) - Spela/pausa nuvarande takt/basgång (Mellanslag) - - - - Stop playback of current beat/bassline (Space) - Stoppa uppspelning av nuvarande takt/basgång (Mellanslag) - - - - Beat selector - Taktväljare - - - - Track and step actions - Spår och stegåtgärder - - - - Add beat/bassline - Lägg till takt/basgång - - - - Clone beat/bassline clip - Klona rytm-/basgångsmönster - - - - Add sample-track - Lägg till ljudspår - - - - Add automation-track - Lägg till automationsspår - - - - Remove steps - Ta bort steg - - - - Add steps - Lägg till steg - - - - Clone Steps - Klona steg - - - - PatternClipView - - - Open in Beat+Bassline-Editor - Öppna i Takt+Basgång-redigeraren - - - - Reset name - Nollställ namn - - - - Change name - Byt namn - - - - PatternTrack - - - Beat/Bassline %1 - Takt/Basgång %1 - - - - Clone of %1 - Kopia av %1 - - - - BassBoosterControlDialog - - - FREQ - FREQ - - - - Frequency: - Frekvens: - - - - GAIN - FÖRSTÄRKNING - - - - Gain: - Förstärkning: - - - - RATIO - FÖRHÅLLANDE - - - - Ratio: - Förhållande: - - - - BassBoosterControls - - - Frequency - Frekvens - - - - Gain - Förstärkning - - - - Ratio - Förhållande - - - - BitcrushControlDialog - - - IN - IN - - - - OUT - UT - - - - - GAIN - FÖRSTÄRKNING - - - - Input gain: - Ingångsförstärkning: - - - - NOISE - BRUS - - - - Input noise: - Ingångsbrus: - - - - Output gain: - Utgångsförstärkning: - - - - CLIP - KLIPP - - - - Output clip: - Utmatningsklipp: - - - - Rate enabled - Hastighet aktiverad - - - - Enable sample-rate crushing - Aktivera sampelhastighetskrossare - - - - Depth enabled - Djup aktiverat - - - - Enable bit-depth crushing - Aktivera bitdjupskrossare - - - - FREQ - FREKV. - - - - Sample rate: - Samplingsfrekvens: - - - - STEREO - STEREO - - - - Stereo difference: - Stereo skillnad: - - - - QUANT - KVANT - - - - Levels: - Nivåer: - - - - BitcrushControls - - - Input gain - Ingångsförstärkning - - - - Input noise - Ingångsbrus - - - - Output gain - Utgångsförstärkning - - - - Output clip - Utmatningsklipp - - - - Sample rate - Samplingsfrekvens - - - - Stereo difference - Stereo skillnad - - - - Levels - Nivåer - - - - Rate enabled - Hastighet aktiverad - - - - Depth enabled - Djup aktiverat + + [System Default] + @@ -900,124 +133,124 @@ Om du är intresserad av att översätta LMMS till ett annat språk eller vill f Utökad licensiering här - + Artwork Bilder - + Using KDE Oxygen icon set, designed by Oxygen Team. Använder KDE:s Oxygen ikonuppsättning, designad av Oxygen-gruppen. - + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. Innehåller vissa rattar, bakgrunder och andra små bilder från Calf Studio Gear-, OpenAV- och OpenOctave-projekten. - + VST is a trademark of Steinberg Media Technologies GmbH. VST är ett registrerat varumärke av Steinberg Media Technologies GmbH. - + Special thanks to António Saraiva for a few extra icons and artwork! Speciellt tack till António Saraiva för ett antal extra ikoner och bilder! - + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. LV2-logotypen har designats av Thorsten Wilms, baserat på ett koncept från Peter Shorthose. - + MIDI Keyboard designed by Thorsten Wilms. MIDI-keyboard designad av Thorsten Wilms. - + Carla, Carla-Control and Patchbay icons designed by DoosC. Ikoner för Carla, Carla-styrning och kopplingsplint designade av DoosC. - + Features Funktioner - + AU/AudioUnit: AU/AudioUnit: - + LADSPA: LADSPA: - - - - - - - - + + + + + + + + TextLabel TextLabel - + VST2: VST2: - + DSSI: DSSI: - + LV2: LV2: - + VST3: VST3: - + OSC OSC - + Host URLs: Värd-URL:er: - + Valid commands: Giltiga kommandon: - + valid osc commands here giltiga osc-kommandon här - + Example: Exempel: - + License Licens - + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -1580,50 +813,50 @@ SLUT PÅ LICENSVILLKOR - + OSC Bridge Version OSC-bryggversion - + Plugin Version Tilläggsversion - + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> - <br>Version %1<br>Carla är en fullt utrustad ljudtilläggsvärd%2.<br><br>Copyright (C) 2011-2019 falkTX<br> + <br>Version %1<br>Carla är en fullt utrustad ljudtilläggsvärd%2.<br><br>Upphovsrätt (C) 2011-2019 falkTX<br> - - + + (Engine not running) - (Motor kör inte) + (Motorn inte igång) - + Everything! (Including LRDF) Allt! (Inklusive LRDF) - + Everything! (Including CustomData/Chunks) Allting! (Inklusive CustomData/Chunks) - + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> Om 110&#37; komplett (med anpassade tillägg)<br/>Implementerad funktion/tillägg:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - - - + + + Using Juce host Använder Juce-värd - + About 85% complete (missing vst bank/presets and some minor stuff) Omkring 85% färdigställt (saknar vst-bank/förinställningar och vissa mindre grejor) @@ -1656,563 +889,600 @@ SLUT PÅ LICENSVILLKOR Läser in... - + + Save + + + + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + Buffer Size: Buffertstorlek: - + Sample Rate: Samplingsfrekvens: - + ? Xruns ? Överskridanden - + DSP Load: %p% DSP-belastning: %p% - + &File &Arkiv - + &Engine &Motor - + &Plugin &Tillägg - + Macros (all plugins) Makron (alla tillägg) - + &Canvas &Duk - + Zoom Zooma - + &Settings &Inställningar - + &Help &Hjälp - - toolBar - verktygsFält + + Tool Bar + - + Disk Disk - - + + Home Hem - + Transport Transport - + Playback Controls Uppspelningskontroller - + Time Information Tidinformation - + Frame: Bild: - + 000'000'000 000'000'000 - + Time: Tid: - + 00:00:00 00:00:00 - + BBT: BBT: - + 000|00|0000 000|00|0000 - + Settings Inställningar - + BPM BPM - + Use JACK Transport Använd JACK-transport - + Use Ableton Link Använd Ableton Link - + &New &Ny - + Ctrl+N Ctrl+N - + &Open... &Öppna... - - + + Open... Öppna... - + Ctrl+O Ctrl+O - + &Save &Spara - + Ctrl+S Ctrl+S - + Save &As... Spara &som... - - + + Save As... Spara som... - + Ctrl+Shift+S Ctrl+Shift+S - + &Quit &Avsluta - + Ctrl+Q Ctrl+Q - + &Start &Starta - + F5 F5 - + St&op St&opp - + F6 F6 - + &Add Plugin... &Lägg till tillägg... - + Ctrl+A Ctrl+A - + &Remove All &Ta bort alla - + Enable Aktivera - + Disable Inaktivera - + 0% Wet (Bypass) 0% effekt (förbikoppla) - + 100% Wet 100% effekt - + 0% Volume (Mute) 0% volym (tyst) - + 100% Volume 100% volym - + Center Balance Centrumbalans - + &Play &Spela - + Ctrl+Shift+P Ctrl+Shift+P - + &Stop &Stopp - + Ctrl+Shift+X Ctrl+Shift+X - + &Backwards &Bakåt - + Ctrl+Shift+B Ctrl+Shift+B - + &Forwards &Framåt - + Ctrl+Shift+F Ctrl+Shift+F - + &Arrange &Arrangera - + Ctrl+G Ctrl+G - - + + &Refresh &Uppdatera - + Ctrl+R Ctrl+R - + Save &Image... Spara &bild... - + Auto-Fit Autoanpassa - + Zoom In Zooma in - + Ctrl++ Ctrl++ - + Zoom Out Zooma ut - + Ctrl+- Ctrl+- - + Zoom 100% Zooma 100% - + Ctrl+1 Ctrl+1 - + Show &Toolbar Visa &verktygsfält - + &Configure Carla &Konfigurera Carla - + &About &Om - + About &JUCE Om &JUCE - + About &Qt Om &Qt - + Show Canvas &Meters Visa Duk&mätare - + Show Canvas &Keyboard Visa Duk&tangentbord - + Show Internal Visa intern - + Show External Visa extern - + Show Time Panel Visa tidspanel - + Show &Side Panel Visa &sidopanel - + + Ctrl+P + + + + &Connect... &Anslut... - + Compact Slots Komprimera fack - + Expand Slots Expandera fack - + Perform secret 1 Utför hemlighet 1 - + Perform secret 2 Utför hemlighet 2 - + Perform secret 3 Utför hemlighet 3 - + Perform secret 4 Utför hemlighet 4 - + Perform secret 5 Utför hemlighet 5 - + Add &JACK Application... Lägg till &JACK-program… - + &Configure driver... &Konfigurera drivrutin... - + Panic Panik - + Open custom driver panel... Öppna anpassad drivrutinspanel… + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + + CarlaHostWindow - + Export as... Exportera som... - - - - + + + + Error Fel - + Failed to load project Det gick inte att läsa in projektet - + Failed to save project Det gick inte att spara projektet - + Quit Avsluta - + Are you sure you want to quit Carla? Är du säker på att du vill stänga Carla? - + Could not connect to Audio backend '%1', possible reasons: %2 Kunde inte ansluta till Ljudbakände ”%1”, möjliga skäl: %2 - + Could not connect to Audio backend '%1' Kunde inte ansluta till Ljudbakände ”%1” - + Warning Varning - + There are still some plugins loaded, you need to remove them to stop the engine. Do you want to do this now? Det finns fortfarande några tillägg inlästa, du måste ta bort dem för att stoppa motorn. Vill du göra det nu? - - CarlaInstrumentView - - - Show GUI - Visa användargränssnitt - - CarlaSettingsW @@ -2267,19 +1537,19 @@ Vill du göra det nu? - + Main Huvud - + Canvas Duk - + Engine Motor @@ -2300,1488 +1570,590 @@ Vill du göra det nu? - + Experimental Experimentell - + <b>Main</b> <b>Huvud</b> - + Paths Sökvägar - + Default project folder: Standardprojektmapp: - + Interface Gränssnitt - + + Use "Classic" as default rack skin + + + + Interface refresh interval: Gränssnittets uppdateringsintervall: - - + + ms ms - + Show console output in Logs tab (needs engine restart) Visa konsolutmatning i Loggflik (kräver motoromstart) - + Show a confirmation dialog before quitting Visa en bekräftelsedialog innan avslut - - + + Theme Tema - + Use Carla "PRO" theme (needs restart) Använd Carla ”PRO”-tema (kräver omstart) - + Color scheme: Färgschema: - + Black Svart - + System System - + Enable experimental features Aktivera experimentella funktioner - + <b>Canvas</b> <b>Duk</b> - + Bezier Lines Bézierlinjer - + Theme: Tema: - + Size: Storlek: - + 775x600 775x600 - + 1550x1200 1550x1200 - + 3100x2400 3100x2400 - + 4650x3600 4650x3600 - + 6200x4800 6200x4800 - + + 12400x9600 + + + + Options Alternativ - + Auto-hide groups with no ports Dölj grupper utan portar automatiskt - + Auto-select items on hover Automarkera objekt vid hovring - + Basic eye-candy (group shadows) Grundläggande ögongodis (gruppskuggor) - + Render Hints Renderingstips - + Anti-Aliasing Kantutjämning - + Full canvas repaints (slower, but prevents drawing issues) Fullständiga dukomritningar (långsammare, men förhindrar uppritningsproblem) - + <b>Engine</b> <b>Motor</b> - - + + Core Kärna - + Single Client Enkel klient - + Multiple Clients Flera klienter - - + + Continuous Rack Kontinuerligt rack - - + + Patchbay Kopplingsplint - + Audio driver: Ljuddrivrutin: - + Process mode: Hanteringsläge: - - - - + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog Maximalt antal parametrar att tillåta i den inbyggda ”Redigera”-dialogen - + Max Parameters: Max parametrar: - + ... ... - + Reset Xrun counter after project load Återställ Överskridsräknaren efter projektinläsning - + Plugin UIs Tilläggsgränssnitt - - + + How much time to wait for OSC GUIs to ping back the host Hur lång tid att vänta för OSC-användargränssnitt att pinga tillbaka till värden - + UI Bridge Timeout: Tidsgräns för användargränssnittsbryggor: - + Use OSC-GUI bridges when possible, this way separating the UI from DSP code Använd OSC-GUI-bryggor när möjligt, för att på detta sätt separera användargränssnittet från DSP-koden. - + Use UI bridges instead of direct handling when possible Använd gränssnittsbryggor istället för direkthantering när möjligt - + Make plugin UIs always-on-top Placera alltid tilläggsgränssnitt överst - + Make plugin UIs appear on top of Carla (needs restart) Placera tilläggsgränssnitt ovanpå Carla (kräver omstart) - + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS OBSERVERA: Tilläggsgränssnitt över bryggor kan inte hanteras av Carla på macOS - - + + Restart the engine to load the new settings Starta om motorn för att läsa in de nya inställningarna - + <b>OSC</b> <b>OSC</b> - + Enable OSC Aktivera OSC - + Enable TCP port Aktivera TCP-port - - + + Use specific port: Använd specifik port: - + Overridden by CARLA_OSC_TCP_PORT env var Åsidosatt av miljövariabeln CARLA_OSC_TCP_PORT - - + + Use randomly assigned port Använd slumpmässigt tilldelad port - + Enable UDP port Aktivera UDP-port - + Overridden by CARLA_OSC_UDP_PORT env var Åsidosatt av miljövariabeln CARLA_OSC_UDP_PORT - + DSSI UIs require OSC UDP port enabled DSSI-användargränssnit kräver att OSC UDP-port är aktiverad - + <b>File Paths</b> <b>Filsökvägar</b> - + Audio Ljud - + MIDI MIDI - + Used for the "audiofile" plugin Används för tillägget "audiofile" - + Used for the "midifile" plugin Används för tillägget "midifile" - - + + Add... Lägg till... - - + + Remove Ta bort - - + + Change... Ändra... - + <b>Plugin Paths</b> <b>Tilläggssökvägar</b> - + LADSPA LADSPA - + DSSI DSSI - + LV2 LV2 - + VST2 VST2 - + VST3 VST3 - + SF2/3 SF2/3 - + SFZ SFZ - + + JSFX + + + + + CLAP + + + + Restart Carla to find new plugins Starta om Carla för att hitta nya tillägg - + <b>Wine</b> <b>Wine</b> - + Executable Körbar - + Path to 'wine' binary: Sökväg till "wine"-binär: - + Prefix Prefix - + Auto-detect Wine prefix based on plugin filename Automatisk detektering av Wine-prefix baserat på filnamn för tillägg - + Fallback: Reservinställning: - + Note: WINEPREFIX env var is preferred over this fallback Notera: Miljövariabeln WINEPREFIX föredras framför denna reservinställning - + Realtime Priority Realtidsprioritet - + Base priority: Grundprioritet: - + WineServer priority: WineServer-prioritet: - + These options are not available for Carla as plugin Dessa alternativ finns inte tillgängliga för Carla som tillägg - + <b>Experimental</b> <b>Experimentell</b> - + Experimental options! Likely to be unstable! Experimentalla alternativ! Förmodligen instabila! - + Enable plugin bridges Aktivera tilläggsbryggor - + Enable Wine bridges Aktivera Wine-bryggor - + Enable jack applications Aktivera jack-program - + Export single plugins to LV2 Exportera enskilda tillägg till LV2 - + + Use system/desktop-theme icons (needs restart) + + + + Load Carla backend in global namespace (NOT RECOMMENDED) Läs in Carla-bakände i global namnrymd (INTE REKOMMENDERAT) - + Fancy eye-candy (fade-in/out groups, glow connections) Snyggt ögongodisk (grupper tonas in/ut, glödande anslutningar) - + Use OpenGL for rendering (needs restart) Använd OpenGL för rendering (kräver omstart) - + High Quality Anti-Aliasing (OpenGL only) Högkvalitativ kantutjämning (endast OpenGL) - + Render Ardour-style "Inline Displays" Rendera Ardour-liknande ”inbyggda visningar” - + Force mono plugins as stereo by running 2 instances at the same time. This mode is not available for VST plugins. Tvinga mono-tillägg att använda stereo genom att köra 2 instanser av det samtidigt. Detta läge är inte tillgängligt för VST-tillägg. - + Force mono plugins as stereo Tvinga mono-tillägg att vara stereo - - Prevent plugins from doing bad stuff (needs restart) - Förhindra tillägg från att göra dumheter (kräver omstart) + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + - - Whenever possible, run the plugins in bridge mode. - När det är möjligt, kör tillägget i bryggat läge. + + Prevent unsafe calls from plugins (needs restart) + - + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + Run plugins in bridge mode when possible Kör tillägg i bryggat läge när det är möjligt - - - - + + + + Add Path Lägg till sökväg - - CompressorControlDialog - - - Threshold: - Tröskel: - - - - Volume at which the compression begins to take place - Volym vid vilken komprimeringen börjar äga rum - - - - Ratio: - Förhållande: - - - - How far the compressor must turn the volume down after crossing the threshold - Hur långt kompressorn måste sänka volymen efter att tröskeln har passerat - - - - Attack: - Attack: - - - - Speed at which the compressor starts to compress the audio - Hastighet med vilken kompressorn börjar komprimera ljudet - - - - Release: - Release: - - - - Speed at which the compressor ceases to compress the audio - Hastighet med vilken kompressorn slutar komprimera ljudet - - - - Knee: - - - - - Smooth out the gain reduction curve around the threshold - - - - - Range: - - - - - Maximum gain reduction - - - - - Lookahead Length: - - - - - How long the compressor has to react to the sidechain signal ahead of time - Hur länge kompressorn måste reagera på sidokedjesignalen i förväg - - - - Hold: - Hold: - - - - Delay between attack and release stages - - - - - RMS Size: - RMS-storlek: - - - - Size of the RMS buffer - Storlek på RMS-buffert - - - - Input Balance: - Ingångsbalans: - - - - Bias the input audio to the left/right or mid/side - - - - - Output Balance: - Utgångsbalans: - - - - Bias the output audio to the left/right or mid/side - - - - - Stereo Balance: - Stereobalans: - - - - Bias the sidechain signal to the left/right or mid/side - - - - - Stereo Link Blend: - - - - - Blend between unlinked/maximum/average/minimum stereo linking modes - - - - - Tilt Gain: - - - - - Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. - - - - - Tilt Frequency: - - - - - Center frequency of sidechain tilt filter - - - - - Mix: - - - - - Balance between wet and dry signals - Balans mellan våta och torra signaler - - - - Auto Attack: - - - - - Automatically control attack value depending on crest factor - - - - - Auto Release: - - - - - Automatically control release value depending on crest factor - - - - - Output gain - Utgångsförstärkning - - - - - Gain - Förstärkning - - - - Output volume - Utgångsvolym - - - - Input gain - Ingångsförstärkning - - - - Input volume - Ingångsvolym - - - - Root Mean Square - - - - - Use RMS of the input - Använd ingångens RMS - - - - Peak - - - - - Use absolute value of the input - Använd ingångens absoluta värde - - - - Left/Right - Vänster/Höger - - - - Compress left and right audio - Komprimera vänster och höger ljud - - - - Mid/Side - - - - - Compress mid and side audio - Komprimera mitt- och sidoljud - - - - Compressor - Kompressor - - - - Compress the audio - Komprimera ljudet - - - - Limiter - Begränsare - - - - Set Ratio to infinity (is not guaranteed to limit audio volume) - Ställ in förhållandet till oändlighet (garanteras inte att ljudvolymen begränsas) - - - - Unlinked - Olänkad - - - - Compress each channel separately - Komprimera varje kanal separat - - - - Maximum - - - - - Compress based on the loudest channel - Komprimera baserat på den mest högljudda kanalen - - - - Average - Medel - - - - Compress based on the averaged channel volume - - - - - Minimum - - - - - Compress based on the quietest channel - Komprimera baserat på den tystaste kanalen - - - - Blend - - - - - Blend between stereo linking modes - - - - - Auto Makeup Gain - - - - - Automatically change makeup gain depending on threshold, knee, and ratio settings - - - - - - Soft Clip - - - - - Play the delta signal - Spela deltasignalen - - - - Use the compressor's output as the sidechain input - Använd kompressorns utgång som sidokedjeingång - - - - Lookahead Enabled - - - - - Enable Lookahead, which introduces 20 milliseconds of latency - - - - - CompressorControls - - - Threshold - Tröskel - - - - Ratio - Förhållande - - - - Attack - Attack - - - - Release - Release - - - - Knee - - - - - Hold - Hold - - - - Range - - - - - RMS Size - RMS-storlek - - - - Mid/Side - - - - - Peak Mode - - - - - Lookahead Length - - - - - Input Balance - Ingångsbalans - - - - Output Balance - Utgångsbalans - - - - Limiter - Begränsare - - - - Output Gain - Utgångsförstärkning - - - - Input Gain - Ingångsförstärkning - - - - Blend - - - - - Stereo Balance - Stereobalans - - - - Auto Makeup Gain - - - - - Audition - - - - - Feedback - Återkoppling - - - - Auto Attack - - - - - Auto Release - - - - - Lookahead - - - - - Tilt - - - - - Tilt Frequency - - - - - Stereo Link - Stereolänk - - - - Mix - Mix - - - - Controller - - - Controller %1 - Kontroller %1 - - - - ControllerConnectionDialog - - - Connection Settings - Kopplingsinställningar - - - - MIDI CONTROLLER - MIDI-KONTROLLER - - - - Input channel - Ingångskanal - - - - CHANNEL - KANAL - - - - Input controller - Ingångsregulator - - - - CONTROLLER - KONTROLLER - - - - - Auto Detect - Upptäck automatiskt - - - - MIDI-devices to receive MIDI-events from - MIDI-enheter för att ta emot MIDI-händelser från - - - - USER CONTROLLER - ANVÄNDARKONTROLLER - - - - MAPPING FUNCTION - KARTLÄGGNINGSFUNKTION - - - - OK - OK - - - - Cancel - Avbryt - - - - LMMS - LMMS - - - - Cycle Detected. - Cykel Identifierad. - - - - ControllerRackView - - - Controller Rack - Kontrollrack - - - - Add - Lägg till - - - - Confirm Delete - Bekräfta Borttagning - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Vill du verkligen ta bort? Det finns kopplingar till den här kontrollern, och operationen går inte ångra. - - - - ControllerView - - - Controls - Kontroller - - - - Rename controller - Byt namn på kontroller - - - - Enter the new name for this controller - Skriv nya namnet på kontrollern - - - - LFO - LFO - - - - &Remove this controller - &Ta bort den här kontrollen - - - - Re&name this controller - Döp& om den här kontrollern - - - - CrossoverEQControlDialog - - - Band 1/2 crossover: - Band 1/2-korsningspunkt: - - - - Band 2/3 crossover: - Band 2/3-korsningspunkt: - - - - Band 3/4 crossover: - Band 3/4-korsningspunkt: - - - - Band 1 gain - Band 1-förstärkning - - - - Band 1 gain: - Band 1-förstärkning: - - - - Band 2 gain - Band 2-förstärkning - - - - Band 2 gain: - Band 2-förstärkning: - - - - Band 3 gain - Band 3-förstärkning - - - - Band 3 gain: - Band 3-förstärkning: - - - - Band 4 gain - Band 4-förstärkning - - - - Band 4 gain: - Band 4-förstärkning: - - - - Band 1 mute - Band 1-tystning - - - - Mute band 1 - Tysta band 1 - - - - Band 2 mute - Band 2-tystning - - - - Mute band 2 - Tysta band 2 - - - - Band 3 mute - Band 3-tystning - - - - Mute band 3 - Tysta band 3 - - - - Band 4 mute - Band 4-tystning - - - - Mute band 4 - Tysta band 4 - - - - DelayControls - - - Delay samples - Fördröj ljudfiler - - - - Feedback - Återkoppling - - - - LFO frequency - LFO-frekvens - - - - LFO amount - LFO-mängd - - - - Output gain - Utgångsförstärkning - - - - DelayControlsDialog - - - DELAY - FÖRDRÖJNING - - - - Delay time - Fördröjningstid - - - - FDBK - RNDG - - - - Feedback amount - Rundgångsbelopp - - - - RATE - HASTIGHET - - - - LFO frequency - LFO-frekvens - - - - AMNT - BELP - - - - LFO amount - LFO-mängd - - - - Out gain - Utgångsförstärkning - - - - Gain - Förstärkning - - Dialog - - - Add JACK Application - Lägga till JACK-program - - - - Note: Features not implemented yet are greyed out - Notera: Funktioner som inte är implementerade än är utgråade - - - - Application - Program - - - - Name: - Namn: - - - - Application: - Program: - - - - From template - Från mall - - - - Custom - Anpassad - - - - Template: - Mall: - - - - Command: - Kommando: - - - - Setup - Inställning - - - - Session Manager: - Sessionshanterare: - - - - None - Ingen - - - - Audio inputs: - Ljudingångar: - - - - MIDI inputs: - MIDI-ingångar: - - - - Audio outputs: - Ljudutgångar: - - - - MIDI outputs: - MIDI-utgångar: - - - - Take control of main application window - Ta kontroll över programmets huvudfönster - - - - Workarounds - Lösningar - - - - Wait for external application start (Advanced, for Debug only) - Vänta på att externt program startar (Avancerad, endast för felsökning) - - - - Capture only the first X11 Window - Fånga endast det första X11-fönstret - - - - Use previous client output buffer as input for the next client - Använd föregående klients utgångsbuffert som ingångsbuffert för nästa klient - - - - Simulate 16 JACK MIDI outputs, with MIDI channel as port index - Simulera 16 JACK MIDI-ingångar, med MIDI-kanal som portindex - - - - Error here - Fel här - Carla Control - Connect @@ -3807,28 +2179,6 @@ Detta läge är inte tillgängligt för VST-tillägg. TCP Port: TCP-port: - - - Reported host - Rapporterad värd - - - - Automatic - Automatisk - - - - Custom: - Anpassad: - - - - In some networks (like USB connections), the remote system cannot reach the local network. You can specify here which hostname or IP to make the remote Carla connect to. -If you are unsure, leave it as 'Automatic'. - På vissa nätverk (så som USB-anslutningar), kan fjärrsystemet inte nå det lokala nätverket. Du kan här ange vilket värdnamn eller IP som fjärr-Carla ska ansluta till. -Om du är osäker lämna värdet ”Automatisk”. - Set value @@ -3883,948 +2233,6 @@ Om du är osäker lämna värdet ”Automatisk”. Starta om motorn för att läsa in de nya inställningarna - - DualFilterControlDialog - - - - FREQ - FREKV. - - - - - Cutoff frequency - Cutoff frekvens - - - - - RESO - RESO - - - - - Resonance - Resonans - - - - - GAIN - FÖRST. - - - - - Gain - Förstärkning - - - - MIX - MIX - - - - Mix - Mix - - - - Filter 1 enabled - Filter 1 aktiverat - - - - Filter 2 enabled - Filter 2 aktiverat - - - - Enable/disable filter 1 - Aktivera/inaktivera filter 1 - - - - Enable/disable filter 2 - Aktivera/inaktivera filter 2 - - - - DualFilterControls - - - Filter 1 enabled - Filter 1 aktiverat - - - - Filter 1 type - Filter 1 typ - - - - Cutoff frequency 1 - Brytfrekvens 1 - - - - Q/Resonance 1 - Q/Resonans 1 - - - - Gain 1 - Förstärkning 1 - - - - Mix - Mix - - - - Filter 2 enabled - Filter 2 aktiverat - - - - Filter 2 type - Filter 2 typ - - - - Cutoff frequency 2 - Brytfrekvens 2 - - - - Q/Resonance 2 - Q/Resonans 2 - - - - Gain 2 - Förstärkning 2 - - - - - Low-pass - Lågpass - - - - - Hi-pass - Högpass - - - - - Band-pass csg - Bandpass csg - - - - - Band-pass czpg - Banspass czpg - - - - - Notch - Bandspärr - - - - - All-pass - Allpass - - - - - Moog - Moog - - - - - 2x Low-pass - 2x Lågpass - - - - - RC Low-pass 12 dB/oct - RC Lågpass 12 dB/oct - - - - - RC Band-pass 12 dB/oct - RC Bandpass 12 dB/oct - - - - - RC High-pass 12 dB/oct - RC Högpass 12 dB/oct - - - - - RC Low-pass 24 dB/oct - RC Lågpass 24 dB/oct - - - - - RC Band-pass 24 dB/oct - RC Bandpass 24 dB/oct - - - - - RC High-pass 24 dB/oct - RC Högpass 24 dB/oct - - - - - Vocal Formant - Språkformant - - - - - 2x Moog - 2x Moog - - - - - SV Low-pass - SV Lågpass - - - - - SV Band-pass - SV Bandpass - - - - - SV High-pass - SV Högpass - - - - - SV Notch - SV Bandspärr - - - - - Fast Formant - Snabbformant - - - - - Tripole - Tripol - - - - Editor - - - Transport controls - Transportkontroller - - - - Play (Space) - Play (Mellanslag) - - - - Stop (Space) - Stop (Mellanslag) - - - - Record - Spela in - - - - Record while playing - Spela in under uppspelningen - - - - Toggle Step Recording - Växla steginspelning - - - - Effect - - - Effect enabled - Effekt aktiverad - - - - Wet/Dry mix - Effekt/original-mix - - - - Gate - Gate - - - - Decay - Decay - - - - EffectChain - - - Effects enabled - Effekter aktiverade - - - - EffectRackView - - - EFFECTS CHAIN - EFFEKTKEDJA - - - - Add effect - Lägg till effekt - - - - EffectSelectDialog - - - Add effect - Lägg till effekt - - - - - Name - Namn - - - - Type - Typ - - - - Description - Beskrivning - - - - Author - Författare - - - - EffectView - - - On/Off - På/Av - - - - W/D - B/T - - - - Wet Level: - Blöt Nivå: - - - - DECAY - DECAY - - - - Time: - Tid: - - - - GATE - GATE - - - - Gate: - Gate: - - - - Controls - Kontroller - - - - Move &up - Flytta &upp - - - - Move &down - Flytta &ner - - - - &Remove this plugin - &Ta bort det här tillägget - - - - EnvelopeAndLfoParameters - - - Env pre-delay - Knt förfördröjning - - - - Env attack - Knt stegring - - - - Env hold - Knt håll - - - - Env decay - Knt sänkning - - - - Env sustain - Knt håll - - - - Env release - Knt avklingning - - - - Env mod amount - Knt mod-mängd - - - - LFO pre-delay - LFO förfördröjning - - - - LFO attack - LFO-attack - - - - LFO frequency - LFO-frekvens - - - - LFO mod amount - LFO mod-mängd - - - - LFO wave shape - LFO vågform - - - - LFO frequency x 100 - LFO-frekvens x 100 - - - - Modulate env amount - Modulera knt-mängd - - - - EnvelopeAndLfoView - - - - DEL - RAD - - - - - Pre-delay: - Förfördröjning: - - - - - ATT - ATT - - - - - Attack: - Attack: - - - - HOLD - HOLD - - - - Hold: - Hold: - - - - DEC - DEC - - - - Decay: - Decay: - - - - SUST - SUST - - - - Sustain: - Sustain: - - - - REL - REL - - - - Release: - Release: - - - - - AMT - MÄNGD - - - - - Modulation amount: - Moduleringsmängd: - - - - SPD - SPD - - - - Frequency: - Frekvens: - - - - FREQ x 100 - FREKV. x 100 - - - - Multiply LFO frequency by 100 - Multiplicera LFO-frekvens med 100 - - - - MODULATE ENV AMOUNT - MODULERA KNT-MÄNGD - - - - Control envelope amount by this LFO - Styr konturmängd via denna LFO - - - - ms/LFO: - ms/LFO: - - - - Hint - Ledtråd - - - - Drag and drop a sample into this window. - Drag och släpp en ljudfil hit. - - - - EqControls - - - Input gain - Ingångsförstärkning - - - - Output gain - Utgångsförstärkning - - - - Low-shelf gain - Lågsockel först. - - - - Peak 1 gain - Topp 1-förstärkning - - - - Peak 2 gain - Topp 2-förstärkning - - - - Peak 3 gain - Topp 3-förstärkning - - - - Peak 4 gain - Topp 4-förstärkning - - - - High-shelf gain - Högsockel först. - - - - HP res - HP uppl. - - - - Low-shelf res - Lågsockel uppl. - - - - Peak 1 BW - Topp 1 BW - - - - Peak 2 BW - Topp 2 BW - - - - Peak 3 BW - Topp 3 BW - - - - Peak 4 BW - Topp 4 BW - - - - High-shelf res - Högsockel uppl. - - - - LP res - LP uppl. - - - - HP freq - HP frekv. - - - - Low-shelf freq - Lågsockel frekv. - - - - Peak 1 freq - Topp 1 frekv. - - - - Peak 2 freq - Topp 2 frekv. - - - - Peak 3 freq - Topp 3 frekv. - - - - Peak 4 freq - Topp 4 frekv. - - - - High-shelf freq - Högsockel frekv. - - - - LP freq - LP-frekv. - - - - HP active - HP aktiv - - - - Low-shelf active - Lågsockel aktiv - - - - Peak 1 active - Topp 1 aktiv - - - - Peak 2 active - Topp 2 aktiv - - - - Peak 3 active - Topp 3 aktiv - - - - Peak 4 active - Topp 4 aktiv - - - - High-shelf active - Högsockel aktiv - - - - LP active - LP aktiv - - - - LP 12 - LP 12 - - - - LP 24 - LP 24 - - - - LP 48 - LP 48 - - - - HP 12 - HP 12 - - - - HP 24 - HP 24 - - - - HP 48 - HP 48 - - - - Low-pass type - Lågpasstyp - - - - High-pass type - Högpasstyp - - - - Analyse IN - Analysera IN - - - - Analyse OUT - Analysera UT - - - - EqControlsDialog - - - HP - HP - - - - Low-shelf - Lågsockel - - - - Peak 1 - Topp 1 - - - - Peak 2 - Topp 2 - - - - Peak 3 - Topp 3 - - - - Peak 4 - Topp 4 - - - - High-shelf - Högsockel - - - - LP - LP - - - - Input gain - Ingångsförstärkning - - - - - - Gain - Förstärkning - - - - Output gain - Utgångsförstärkning - - - - Bandwidth: - Bandbredd: - - - - Octave - Oktav - - - - Resonance : - Resonans: - - - - Frequency: - Frekvens: - - - - LP group - LP-grup - - - - HP group - HP-grupp - - - - EqHandle - - - Reso: - Reso.: - - - - BW: - BW: - - - - - Freq: - Frekv.: - - ExportProjectDialog @@ -5008,3082 +2416,664 @@ Om du är osäker lämna värdet ”Automatisk”. Sinc bäst (långsammast) - - Oversampling: - Översampling: - - - - 1x (None) - 1x (Ingen) - - - - 2x - 2x - - - - 4x - 4x - - - - 8x - 8x - - - + Start Starta - + Cancel Avbryt - - - Could not open file - Kunde inte öppna fil - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Det gick inte att öppna filen %1 för att skriva. -Se till att du har skrivbehörighet till filen och mappen som innehåller filen och försök igen! - - - - Export project to %1 - Exportera projekt till %1 - - - - ( Fastest - biggest ) - ( Snabbast - störst ) - - - - ( Slowest - smallest ) - ( Långsammast - minst ) - - - - Error - Fel - - - - Error while determining file-encoder device. Please try to choose a different output format. - Fel vid bestämning av filkodarenhet. Vänligen försök att välja ett annat utmatningsformat. - - - - Rendering: %1% - Renderar: %1% - - - - Fader - - - Set value - Ställ in värde - - - - Please enter a new value between %1 and %2: - Ange ett nytt värde mellan %1 och %2: - - - - FileBrowser - - - User content - Användarinnehåll - - - - Factory content - Fabriksinnehåll - - - - Browser - Bläddrare - - - - Search - Sök - - - - Refresh list - Uppdatera lista - - - - FileBrowserTreeWidget - - - Send to active instrument-track - Skicka till aktivt instrumentspår - - - - Open containing folder - Öppna innehållande mapp - - - - Song Editor - Låtredigerare - - - - BB Editor - BB-redigerare - - - - Send to new AudioFileProcessor instance - Skicka till ny AudioFileProcessor-instans - - - - Send to new instrument track - Skicka till nytt instrumentspår - - - - (%2Enter) - (%2Retur) - - - - Send to new sample track (Shift + Enter) - Skicka till nytt samplingsspår (Skift + Retur) - - - - Loading sample - Läser in ljudfil - - - - Please wait, loading sample for preview... - Ljudfilen läses in för förhandslyssning... - - - - Error - Fel - - - - %1 does not appear to be a valid %2 file - %1 verkar inte vara en giltig %2-fil - - - - --- Factory files --- - --- Grundfiler --- - - - - FlangerControls - - - Delay samples - Fördröj ljudfiler - - - - LFO frequency - LFO-frekvens - - - - Seconds - Sekunder - - - - Stereo phase - Stereofas - - - - Regen - Regen - - - - Noise - Brus - - - - Invert - Invertera - - - - FlangerControlsDialog - - - DELAY - FÖRDRÖJNING - - - - Delay time: - Fördröjningstid: - - - - RATE - HASTIGHET - - - - Period: - Period: - - - - AMNT - BELP - - - - Amount: - Mängd: - - - - PHASE - FAS - - - - Phase: - Fas: - - - - FDBK - RNDG - - - - Feedback amount: - Mängd rundgång: - - - - NOISE - BRUS - - - - White noise amount: - Mängd vitt brus: - - - - Invert - Invertera - - - - FreeBoyInstrument - - - Sweep time - Sveptid - - - - Sweep direction - Svepriktning - - - - Sweep rate shift amount - Svephastighets skiftmängd - - - - - Wave pattern duty cycle - Vågmönster arbetscykel - - - - Channel 1 volume - Kanal 1 volym - - - - - - Volume sweep direction - Volym svepriktning - - - - - - Length of each step in sweep - Längd för varje steg i svep - - - - Channel 2 volume - Kanal 2 volym - - - - Channel 3 volume - Kanal 3 volym - - - - Channel 4 volume - Kanal 4 volym - - - - Shift Register width - Skiftregisterbredd - - - - Right output level - Höger utmatningsnivå - - - - Left output level - Vänster ugångsnivå - - - - Channel 1 to SO2 (Left) - Kanal 1 till SO2 (vänster) - - - - Channel 2 to SO2 (Left) - Kanal 2 till SO2 (vänster) - - - - Channel 3 to SO2 (Left) - Kanal 3 till SO2 (vänster) - - - - Channel 4 to SO2 (Left) - Kanal 4 till SO2 (Vänster) - - - - Channel 1 to SO1 (Right) - Kanal 1 till SO1 (Höger) - - - - Channel 2 to SO1 (Right) - Kanal 2 till SO1 (höger) - - - - Channel 3 to SO1 (Right) - Kanal 3 till SO1 (höger) - - - - Channel 4 to SO1 (Right) - Kanal 4 till SO1 (höger) - - - - Treble - Diskant - - - - Bass - Bas - - - - FreeBoyInstrumentView - - - Sweep time: - Sveptid: - - - - Sweep time - Sveptid - - - - Sweep rate shift amount: - Svephastighet skiftmängd: - - - - Sweep rate shift amount - Svephastighets skiftmängd - - - - - Wave pattern duty cycle: - Vågmönster arbetscykel: - - - - - Wave pattern duty cycle - Vågmönster arbetscykel - - - - Square channel 1 volume: - Volym för fyrkantsvåg kanal 1: - - - - Square channel 1 volume - Volym för fyrkantsvåg kanal 1 - - - - - - Length of each step in sweep: - Längd för varje steg i svep - - - - - - Length of each step in sweep - Längd för varje steg i svep - - - - Square channel 2 volume: - Volym för fyrkantsvåg kanal 2: - - - - Square channel 2 volume - Volym för fyrkantsvåg kanal 2 - - - - Wave pattern channel volume: - Volym för vågmönsterkanal: - - - - Wave pattern channel volume - Volym för vågmönsterkanal - - - - Noise channel volume: - Volym för bruskanal: - - - - Noise channel volume - Volym för bruskanal - - - - SO1 volume (Right): - SO1-volym (Höger): - - - - SO1 volume (Right) - SO1 volym (Höger) - - - - SO2 volume (Left): - SO2 volym (vänster): - - - - SO2 volume (Left) - SO2 volym (vänster): - - - - Treble: - Diskant: - - - - Treble - Diskant - - - - Bass: - Bas: - - - - Bass - Bas - - - - Sweep direction - Svepriktning - - - - - - - - Volume sweep direction - Volym svepriktning - - - - Shift register width - Skiftregisterbredd - - - - Channel 1 to SO1 (Right) - Kanal 1 till SO1 (Höger) - - - - Channel 2 to SO1 (Right) - Kanal 2 till SO1 (höger) - - - - Channel 3 to SO1 (Right) - Kanal 3 till SO1 (höger) - - - - Channel 4 to SO1 (Right) - Kanal 4 till SO1 (höger) - - - - Channel 1 to SO2 (Left) - Kanal 1 till SO2 (vänster) - - - - Channel 2 to SO2 (Left) - Kanal 2 till SO2 (vänster) - - - - Channel 3 to SO2 (Left) - Kanal 3 till SO2 (vänster) - - - - Channel 4 to SO2 (Left) - Kanal 4 till SO2 (Vänster) - - - - Wave pattern graph - Vågmönstergraf - - - - MixerChannelView - - - Channel send amount - Kanalsändningsbelopp - - - - Move &left - Flytta &vänster - - - - Move &right - Flytta &höger - - - - Rename &channel - Byt namn på &kanal - - - - R&emove channel - T&a bort kanal - - - - Remove &unused channels - Ta bort &oanvända kanaler - - - - Set channel color - Ställ in kanalfärg - - - - Remove channel color - Ta bort kanalfärg - - - - Pick random channel color - Välj slumpmässig kanalfärg - - - - MixerChannelLcdSpinBox - - - Assign to: - Tilldela till: - - - - New mixer Channel - Ny FX-kanal - - - - Mixer - - - Master - Master - - - - - - Channel %1 - FX %1 - - - - Volume - Volym - - - - Mute - Tysta - - - - Solo - Solo - - - - MixerView - - - Mixer - mixer - - - - Fader %1 - FX Fader %1 - - - - Mute - Tysta - - - - Mute this mixer channel - Tysta denna FX-kanal - - - - Solo - Solo - - - - Solo mixer channel - Solo FX-kanal - - - - MixerRoute - - - - Amount to send from channel %1 to channel %2 - Mängd att skicka från kanal %1 till kanal %2 - - - - GigInstrument - - - Bank - Bank - - - - Patch - Inställning - - - - Gain - Förstärkning - - - - GigInstrumentView - - - - Open GIG file - Öppna GIG-fil - - - - Choose patch - Välj inställning - - - - Gain: - Förstärkning: - - - - GIG Files (*.gig) - GIG-filer (*.gig) - - - - GuiApplication - - - Working directory - Arbetsmapp - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - Arbetsmappen %1 för LMMS finns inte. Skapa den nu? Du kan ändra mappen senare via Redigera -> Inställningar. - - - - Preparing UI - Förbereder användargränssnitt - - - - Preparing song editor - Förbereder låtredigeraren - - - - Preparing mixer - Förbereder mixer - - - - Preparing controller rack - Förbereder kontrollrack - - - - Preparing project notes - Förbereder projektanteckningar - - - - Preparing beat/bassline editor - Förbereder takt/basgång-redigeraren - - - - Preparing piano roll - Förbereder pianorulle - - - - Preparing automation editor - Förbereder automationsredigeraren - - - - InstrumentFunctionArpeggio - - - Arpeggio - Arpeggio - - - - Arpeggio type - Arpeggio-typ - - - - Arpeggio range - Arpeggio-omfång - - - - Note repeats - - - - - Cycle steps - Cykelsteg - - - - Skip rate - Överhoppshastighet - - - - Miss rate - Misshastighet - - - - Arpeggio time - Arpeggio-tid - - - - Arpeggio gate - Arpeggiogrind - - - - Arpeggio direction - Arpeggio-riktning - - - - Arpeggio mode - Arpeggio-typ - - - - Up - Upp - - - - Down - Ner - - - - Up and down - Upp och ner - - - - Down and up - Ner och upp - - - - Random - Slumpmässig - - - - Free - Fritt - - - - Sort - Sortera - - - - Sync - Synkronisera - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - ARPEGGIO - - - - RANGE - OMFÅNG - - - - Arpeggio range: - Arpeggio-omfång: - - - - octave(s) - oktav(er) - - - - REP - - - - - Note repeats: - - - - - time(s) - gång(er) - - - - CYCLE - CYKEL - - - - Cycle notes: - Cykelnoter: - - - - note(s) - not(er) - - - - SKIP - HOPP - - - - Skip rate: - Överhoppshastighet: - - - - - - % - % - - - - MISS - MISS - - - - Miss rate: - Misshastighet - - - - TIME - TID - - - - Arpeggio time: - Arpeggio-tid: - - - - ms - ms - - - - GATE - GATE - - - - Arpeggio gate: - Arpeggiogate: - - - - Chord: - Ackord: - - - - Direction: - Riktning: - - - - Mode: - Läge: - InstrumentFunctionNoteStacking - + octave oktav - - + + Major Dur - + Majb5 Majb5 - + minor moll - + minb5 mollb5 - + sus2 sus2 - + sus4 sus4 - + aug aug - + augsus4 augsus4 - + tri tre - + 6 6 - + 6sus4 6sus4 - + 6add9 6add9 - + m6 m6 - + m6add9 m6add9 - + 7 7 - + 7sus4 7sus4 - + 7#5 7#5 - + 7b5 7b5 - + 7#9 7#9 - + 7b9 7b9 - + 7#5#9 7#5#9 - + 7#5b9 7#5b9 - + 7b5b9 7b5b9 - + 7add11 7add11 - + 7add13 7add13 - + 7#11 7#11 - + Maj7 Maj7 - + Maj7b5 Maj7b5 - + Maj7#5 Maj7#5 - + Maj7#11 Maj7#11 - + Maj7add13 Maj7add13 - + m7 m7 - + m7b5 m7b5 - + m7b9 m7b9 - + m7add11 m7add11 - + m7add13 m7add13 - + m-Maj7 m-Maj7 - + m-Maj7add11 m-Maj7add11 - + m-Maj7add13 m-Maj7add13 - + 9 9 - + 9sus4 9sus4 - + add9 add9 - + 9#5 9#5 - + 9b5 9b5 - + 9#11 9#11 - + 9b13 9b13 - + Maj9 Maj9 - + Maj9sus4 Maj9sus4 - + Maj9#5 Maj9#5 - + Maj9#11 Maj9#11 - + m9 m9 - + madd9 madd9 - + m9b5 m9b5 - + m9-Maj7 m9-Maj7 - + 11 11 - + 11b9 11b9 - + Maj11 Maj11 - + m11 m11 - + m-Maj11 m-Maj11 - + 13 13 - + 13#9 13#9 - + 13b9 13b9 - + 13b5b9 13b5b9 - + Maj13 Maj13 - + m13 m13 - + m-Maj13 m-Maj13 - + Harmonic minor Harmonisk moll - + Melodic minor Melodisk moll - + Whole tone Hela tonen - + Diminished Minskad - + Major pentatonic Dur pentatonisk - + Minor pentatonic Mollpentatonisk - + Jap in sen Jap in sen - + Major bebop Dur bebop - + Dominant bebop Dominant bebop - + Blues Blues - + Arabic Arabisk - + Enigmatic Gåtfull - + Neopolitan Napolitansk - + Neopolitan minor Napolitansk moll - + Hungarian minor Ungersk moll - + Dorian Dorisk - + Phrygian Frygisk - + Lydian Lydisk - + Mixolydian Mixolydisk - + Aeolian Aeolisk - + Locrian Lokrisk - + Minor Moll - + Chromatic Kromatisk - + Half-Whole Diminished Halv-hel förminskad - + 5 5 - + Phrygian dominant Frygisk dominant - + Persian Persisk - - - Chords - Ackord - - - - Chord type - Ackordtyp - - - - Chord range - Ackordomfång - - - - InstrumentFunctionNoteStackingView - - - STACKING - STAPLA - - - - Chord: - Ackord: - - - - RANGE - OMFÅNG - - - - Chord range: - Ackordomfång: - - - - octave(s) - oktav(er) - - - - InstrumentMidiIOView - - - ENABLE MIDI INPUT - AKTIVERA MIDI-INMATNING - - - - ENABLE MIDI OUTPUT - AKTIVERA MIDI-UTGÅNG - - - - - CHAN - This string must be be short, its width must be less than * width of LCD spin-box of two digits - KANL - - - - - VELOC - This string must be be short, its width must be less than * width of LCD spin-box of three digits - HAST. - - - - PROG - This string must be be short, its width must be less than the * width of LCD spin-box of three digits - PROG - - - - NOTE - This string must be be short, its width must be less than * width of LCD spin-box of three digits - NOT - - - - MIDI devices to receive MIDI events from - MIDI-enheter att ta emot MIDI-händelser från - - - - MIDI devices to send MIDI events to - MIDI-enheter att skicka MIDI-händelser till - - - - CUSTOM BASE VELOCITY - ANPASSAD BAS-VELOCITET - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. - Ange hastigheten för normaliseringsbasen för MIDI-baserade instrument vid 100% nothastighet. - - - - BASE VELOCITY - BAS-VELOCITET - - - - InstrumentTuningView - - - MASTER PITCH - HUVUDTONHÖJD - - - - Enables the use of master pitch - Aktiverar användning av huvudtonhöjd - InstrumentSoundShaping - + VOLUME VOLYM - + Volume Volym - + CUTOFF BRYTFRKV - - + Cutoff frequency Cutoff frekvens - + RESO RESO - + Resonance Resonans - - - Envelopes/LFOs - Konturer/LFO:er - - - - Filter type - Filtertyp - - - - Q/Resonance - Q/Resonans - - - - Low-pass - Lågpass - - - - Hi-pass - Högpass - - - - Band-pass csg - Bandpass csg - - - - Band-pass czpg - Banspass czpg - - - - Notch - Bandspärr - - - - All-pass - Allpass - - - - Moog - Moog - - - - 2x Low-pass - 2x Lågpass - - - - RC Low-pass 12 dB/oct - RC Lågpass 12 dB/oct - - - - RC Band-pass 12 dB/oct - RC Bandpass 12 dB/oct - - - - RC High-pass 12 dB/oct - RC Högpass 12 dB/oct - - - - RC Low-pass 24 dB/oct - RC Lågpass 24 dB/oct - - - - RC Band-pass 24 dB/oct - RC Bandpass 24 dB/oct - - - - RC High-pass 24 dB/oct - RC Högpass 24 dB/oct - - - - Vocal Formant - Språkformant - - - - 2x Moog - 2x Moog - - - - SV Low-pass - SV Lågpass - - - - SV Band-pass - SV Bandpass - - - - SV High-pass - SV Högpass - - - - SV Notch - SV Bandspärr - - - - Fast Formant - Snabbformant - - - - Tripole - Tripol - - InstrumentSoundShapingView + JackAppDialog - - TARGET - MÅL - - - - FILTER - FILTER - - - - FREQ - FREKV. - - - - Cutoff frequency: - Brytfrekvens: - - - - Hz - Hz - - - - Q/RESO - Q/UPPL - - - - Q/Resonance: - Q/Resonans: - - - - Envelopes, LFOs and filters are not supported by the current instrument. - Konturer, LFO:er och filter stöds inte av det aktuella instrumentet. - - - - InstrumentTrack - - - - unnamed_track - namnlöst_spår - - - - Base note - Grundton - - - - First note + + Add JACK Application - - Last note - Senaste noten - - - - Volume - Volym - - - - Panning - Panorering - - - - Pitch - Tonhöjd - - - - Pitch range - Tonhöjdsomfång - - - - Mixer channel - FX-kanal - - - - Master pitch - Huvudtonhöjd - - - - Enable/Disable MIDI CC - Aktivera/inaktivera MIDI CC - - - - CC Controller %1 + + Note: Features not implemented yet are greyed out - - - Default preset - Standardinställning - - - - InstrumentTrackView - - - Volume - Volym - - - - Volume: - Volym: - - - - VOL - VOL - - - - Panning - Panorering - - - - Panning: - Panorering: - - - - PAN - PAN - - - - MIDI - MIDI - - - - Input - Ingång - - - - Output - Utgång - - - - Open/Close MIDI CC Rack + + Application - - Channel %1: %2 - FX %1: %2 - - - - InstrumentTrackWindow - - - GENERAL SETTINGS - ÖVERGRIPANDE INSTÄLLNINGAR + + Name: + - - Volume - Volym + + Application: + - - Volume: - Volym: + + From template + - - VOL - VOL + + Custom + - - Panning - Panorering + + Template: + - - Panning: - Panorering: + + Command: + - - PAN - PAN + + Setup + - - Pitch - Tonhöjd + + Session Manager: + - - Pitch: - Tonhöjd: + + None + - - cents - hundradelar + + Audio inputs: + - - PITCH - TONDHÖJD + + MIDI inputs: + - - Pitch range (semitones) - Tonhöjdsomfång (halvtoner) + + Audio outputs: + - - RANGE - OMFÅNG + + MIDI outputs: + - - Mixer channel - FX-kanal + + Take control of main application window + - - CHANNEL - FX + + Workarounds + - - Save current instrument track settings in a preset file - Spara aktuella instrumentspårinställningar i en förinställd fil + + Wait for external application start (Advanced, for Debug only) + - - SAVE - SPARA + + Capture only the first X11 Window + - - Envelope, filter & LFO - Kontur, filter & LFO + + Use previous client output buffer as input for the next client + - - Chord stacking & arpeggio - Ackordstapling & apreggio + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + - - Effects - Effekter + + Error here + - - MIDI - MIDI - - - - Miscellaneous - Diverse - - - - Save preset - Spara förinställning - - - - XML preset file (*.xpf) - XML förinställnings-fil (*.xpf) - - - - Plugin - Tillägg - - - - JackApplicationW - - + NSM applications cannot use abstract or absolute paths - NSM-program kan inte använda abstracta eller absoluta sökvägar + - + NSM applications cannot use CLI arguments - NSM-program kan inte använda kommandoradsargument + - + You need to save the current Carla project before NSM can be used - Du måste spara det aktuella Carla-projektet innan NSM kan avändas + JuceAboutW - - About JUCE - Om JUCE - - - - <b>About JUCE</b> - <b>Om JUCE</b> - - - - This program uses JUCE version 3.x.x. - Detta program använder JUCE version 3.x.x. - - - - JUCE (Jules' Utility Class Extensions) is an all-encompassing C++ class library for developing cross-platform software. - -It contains pretty much everything you're likely to need to create most applications, and is particularly well-suited for building highly-customised GUIs, and for handling graphics and sound. - -JUCE is licensed under the GNU Public Licence version 2.0. -One module (juce_core) is permissively licensed under the ISC. - -Copyright (C) 2017 ROLI Ltd. - JUCE (Jules' Utility Class Extensions) är ett allomfattande C++-klassbibliotek för utveckling av programvara över plattformsgränser. - -Det innehåller i princip allting som du troligen kommer att använda för att skapa de flera program, och är speciellt väl lämpat för att bygga anpassningsbara användargränssnitt och för att hantera grafik och ljud. - -JUCE licensieras under GNU Public Licence version 2.0. -En modul (juce_core) licensierad under ISC. - -Copyright (C) 2017 ROLI Ltd. - - - + This program uses JUCE version %1. Detta program använder JUCE version %1. - - Knob - - - Set linear - Ställ in linjär - - - - Set logarithmic - Ställ in logaritmisk - - - - - Set value - Ställ in värde - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - Vänligen ange ett nytt värde mellan -96.0 dBFS och 6.0 dBFS: - - - - Please enter a new value between %1 and %2: - Ange ett nytt värde mellan %1 och %2: - - - - LadspaControl - - - Link channels - Länka kanaler - - - - LadspaControlDialog - - - Link Channels - Länka Kanaler - - - - Channel - Kanal - - - - LadspaControlView - - - Link channels - Länka kanaler - - - - Value: - Värde: - - - - LadspaEffect - - - Unknown LADSPA plugin %1 requested. - Okänt LADSPA-tillägg %1 efterfrågad. - - - - LcdFloatSpinBox - - - Set value - Ställ in värde - - - - Please enter a new value between %1 and %2: - Ange ett nytt värde mellan %1 och %2: - - - - LcdSpinBox - - - Set value - Ställ in värde - - - - Please enter a new value between %1 and %2: - Ange ett nytt värde mellan %1 och %2: - - - - LeftRightNav - - - - - Previous - Tidigare - - - - - - Next - Nästa - - - - Previous (%1) - Tidigare (%1) - - - - Next (%1) - Nästa (%1) - - - - LfoController - - - LFO Controller - LFO-kontroller - - - - Base value - Basvärde - - - - Oscillator speed - Oscillatorhastighet - - - - Oscillator amount - Oscillatormängd - - - - Oscillator phase - Oscillatorfas - - - - Oscillator waveform - Oscillatorvågform - - - - Frequency Multiplier - Frekvens Multiplikator - - - - LfoControllerDialog - - - LFO - LFO - - - - BASE - BAS - - - - Base: - Bas: - - - - FREQ - FREKV. - - - - LFO frequency: - LFO-frekvens: - - - - AMNT - BELP - - - - Modulation amount: - Moduleringsmängd: - - - - PHS - FAS - - - - Phase offset: - Fasposition: - - - - degrees - grader - - - - Sine wave - Sinusvåg - - - - Triangle wave - Triangelvåg - - - - Saw wave - Sågtandsvåg - - - - Square wave - Fyrkantvåg - - - - Moog saw wave - Moog sågtandsvåg - - - - Exponential wave - Exponentiell våg - - - - White noise - Vitt brus - - - - User-defined shape. -Double click to pick a file. - Användardefinierad form. -Dubbelklicka för att välja en fil. - - - - Mutliply modulation frequency by 1 - Multiplicera moduleringsfrekvens med 1 - - - - Mutliply modulation frequency by 100 - Multiplicera moduleringsfrekvens med 100 - - - - Divide modulation frequency by 100 - Dividera moduleringsfrekevens med 100 - - - - Engine - - - Generating wavetables - Generera vågtabeller - - - - Initializing data structures - Initierar datastrukturer - - - - Opening audio and midi devices - Öppnar ljud- och midienheter - - - - Launching mixer threads - Start mixertrådar - - - - MainWindow - - - Configuration file - Konfigurationsfil - - - - Error while parsing configuration file at line %1:%2: %3 - Fel vid inläsning av konfigurationsfil på rad %1:%2: %3 - - - - Could not open file - Kunde inte öppna fil - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Det gick inte att öppna filen %1 för att skriva. -Se till att du har skrivbehörighet till filen och mappen som innehåller filen och försök igen! - - - - Project recovery - Projektåterställning - - - - There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - Det finns en återställningsfil tillgänglig. Det verkar som om programmet inte avslutades korrekt senast, eller så körs redan LMMS. Vill du återställa detta projekt? - - - - - Recover - Återställ - - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - Återställ filen. Se till att du bara har en instans av LMMS igång när du gör detta. - - - - - Discard - Kasta bort - - - - Launch a default session and delete the restored files. This is not reversible. - Starta en standard-session och ta bort den återskapade filen. Detta går inte ångra. - - - - Version %1 - Version %1 - - - - Preparing plugin browser - Förbereder tilläggsbläddraren - - - - Preparing file browsers - Förbereder fil-browser - - - - My Projects - Mina projekt - - - - My Samples - Mina samplingar - - - - My Presets - Mina förinställningar - - - - My Home - Min hemmapp - - - - Root directory - Root-mapp - - - - Volumes - Volymer - - - - My Computer - Min dator - - - - &File - &Arkiv - - - - &New - &Ny - - - - &Open... - &Öppna... - - - - Loading background picture - Läser in bakgrundsbild - - - - &Save - &Spara - - - - Save &As... - Spara &som... - - - - Save as New &Version - Spara som ny &version - - - - Save as default template - Spara som standardmall - - - - Import... - Importera... - - - - E&xport... - E&xportera... - - - - E&xport Tracks... - E&xportera spår... - - - - Export &MIDI... - Exportera &MIDI... - - - - &Quit - &Avsluta - - - - &Edit - &Redigera - - - - Undo - Ångra - - - - Redo - Gör om - - - - Settings - Inställningar - - - - &View - &Visa - - - - &Tools - &Verktyg - - - - &Help - &Hjälp - - - - Online Help - Hjälp på nätet - - - - Help - Hjälp - - - - About - Om - - - - Create new project - Skapa nytt projekt - - - - Create new project from template - Skapa nytt projekt från mall - - - - Open existing project - Öppna befintligt projekt - - - - Recently opened projects - Nyligen öppnade projekt - - - - Save current project - Spara aktuellt projekt - - - - Export current project - Exportera aktuellt projekt - - - - Metronome - Metronom - - - - - Song Editor - Låtredigerare - - - - - Beat+Bassline Editor - Takt+Basgång-redigerare - - - - - Piano Roll - Pianorulle - - - - - Automation Editor - Automatiseringsredigerare - - - - - Mixer - mixer - - - - Show/hide controller rack - Visa/dölj kontrollrack - - - - Show/hide project notes - Visa/dölj projektanteckningar - - - - Untitled - Namnlös - - - - Recover session. Please save your work! - Återställnings-session. Spara ditt arbete! - - - - LMMS %1 - LMMS %1 - - - - Recovered project not saved - Återställt projekt inte sparat - - - - This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? - Projektet återställdes från den senaste sessionen. Det kommer försvinna om du inte sparar det. Vill du spara projektet nu? - - - - Project not saved - Projektet inte sparat - - - - The current project was modified since last saving. Do you want to save it now? - Projektet har ändrats sedan det sparades senast. Vill du spara nu? - - - - Open Project - Öppna projekt - - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - - Save Project - Spara projekt - - - - LMMS Project - LMMS-Projekt - - - - LMMS Project Template - LMMS-Projektmall - - - - Save project template - Spara projektmall - - - - Overwrite default template? - Vill du skriva över standardmallen? - - - - This will overwrite your current default template. - Detta kommer skriva över din nuvarande standardmall. - - - - Help not available - Hjälp inte tillgänglig - - - - Currently there's no help available in LMMS. -Please visit http://lmms.sf.net/wiki for documentation on LMMS. - Just nu finns ingen hjälp tillgänglig i LMMS -Besök https://lmms.io/documentation/ för dokumentation (Engelska). - - - - Controller Rack - Kontrollrack - - - - Project Notes - Projektanteckningar - - - - Fullscreen - Helskärm - - - - Volume as dBFS - Volym som dBFS - - - - Smooth scroll - Jämn rullning - - - - Enable note labels in piano roll - Visa noter i pianorulle - - - - MIDI File (*.mid) - MIDI-fil (*.mid) - - - - - untitled - namnlös - - - - - Select file for project-export... - Välj fil för projekt-export... - - - - Select directory for writing exported tracks... - Välj mapp för att skriva exporterade spår... - - - - Save project - Spara projekt - - - - Project saved - Projekt sparat - - - - The project %1 is now saved. - Projektet %1 är nu sparat. - - - - Project NOT saved. - Projektet är INTE sparat. - - - - The project %1 was not saved! - Projektet %1 sparades inte! - - - - Import file - Importera fil - - - - MIDI sequences - MIDI-sekvenser - - - - Hydrogen projects - Hydrogen-projekt - - - - All file types - Alla filtyper - - - - MeterDialog - - - - Meter Numerator - Mätartäljare - - - - Meter numerator - Mätartäljare - - - - - Meter Denominator - Mätarnämnare - - - - Meter denominator - Mätarnämnare - - - - TIME SIG - TAKTART - - - - MeterModel - - - Numerator - Täljare - - - - Denominator - Nämnare - - - - MidiCCRackView - - - - MIDI CC Rack - %1 - - - - - MIDI CC Knobs: - - - - - CC %1 - CC %1 - - - - MidiController - - - MIDI Controller - MIDI-styrenhet - - - - unnamed_midi_controller - unnamed_midi_controller - - - - MidiImport - - - - Setup incomplete - Installation ofullständig - - - - You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. - Du har inte ställt in en standard SoundFont i inställningsdialogrutan (Redigera->Inställningar). Därför spelas inget ljud upp efter att ha importerat denna MIDI-fil. Du bör hämta en allmän MIDI-soundfont, ange den i inställningsdialogrutan och försök igen. - - - - You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - Du kompilerade inte LMMS med stöd för SoundFont2-spelaren, som används för att lägga till standardljud till importerade MIDI-filer. Därför spelas inget ljud upp efter att ha importerat denna MIDI-fil. - - - - MIDI Time Signature Numerator - MIDI-taktartsangivelse täljare - - - - MIDI Time Signature Denominator - MIDI-taktartsangivelse nämnare - - - - Numerator - Täljare - - - - Denominator - Nämnare - - - - Track - Spår - - - - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - JACK-server nerstängd - - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - JACK-servern verkar vara avstängd. - - MidiPatternW @@ -8289,2731 +3279,370 @@ Besök https://lmms.io/documentation/ för dokumentation (Engelska).&Avsluta - + + Esc + + + + &Insert Mode &Infogningsläge - + F F - + &Velocity Mode &Hastighetsläge - + D D - + Select All Välj alla - + A A - - MidiPort - - - Input channel - Ingångskanal - - - - Output channel - Utgångskanal - - - - Input controller - Ingångskontroller - - - - Output controller - Utgångskontroller - - - - Fixed input velocity - Fast ingångsvelocitet - - - - Fixed output velocity - Fast utgångsvelocitet - - - - Fixed output note - Fast utgångsnot - - - - Output MIDI program - Utgång MIDI-program - - - - Base velocity - Bas-velocitet - - - - Receive MIDI-events - Ta emot MIDI-event - - - - Send MIDI-events - Skicka MIDI-event - - - - MidiSetupWidget - - - Device - Enhet - - - - MonstroInstrument - - - Osc 1 volume - Osc. 1 volym - - - - Osc 1 panning - Osc 1 panorering - - - - Osc 1 coarse detune - Osc. 1 grovurstämning - - - - Osc 1 fine detune left - Osc. 1 finurstämning vänster - - - - Osc 1 fine detune right - Osc. 1 finurstämning höger - - - - Osc 1 stereo phase offset - Osc. 1 stereofasposition - - - - Osc 1 pulse width - Osc. 1 pulsbredd - - - - Osc 1 sync send on rise - Osc. 1 synksändning vid stigning - - - - Osc 1 sync send on fall - Osc. 1 synksändning vid fall - - - - Osc 2 volume - Osc. 2 volym - - - - Osc 2 panning - Osc 2 panorering - - - - Osc 2 coarse detune - Osc. 2 grovurstämning - - - - Osc 2 fine detune left - Osc. 2 finurstämning vänster - - - - Osc 2 fine detune right - Osc. 2 finurstämning höger - - - - Osc 2 stereo phase offset - Osc. 2 stereofasposition - - - - Osc 2 waveform - Osc. 2 vågform - - - - Osc 2 sync hard - Osc. 2 synk hård - - - - Osc 2 sync reverse - Osc. 2 synk omvänd - - - - Osc 3 volume - Osc. 3 volym - - - - Osc 3 panning - Osc 3 panorering - - - - Osc 3 coarse detune - Osc. 3 grovurstämning - - - - Osc 3 Stereo phase offset - Osc. 3 stereofastposition - - - - Osc 3 sub-oscillator mix - Osc. 3 underoscillatormix - - - - Osc 3 waveform 1 - Osc. 3 vågform 1 - - - - Osc 3 waveform 2 - Osc. 3 vågform 2 - - - - Osc 3 sync hard - Osc. 3 synk hård - - - - Osc 3 Sync reverse - Osc. 3 synk omvänd - - - - LFO 1 waveform - LFO 1 vågform - - - - LFO 1 attack - LFO 1. stegring - - - - LFO 1 rate - LFO 1 hastighet - - - - LFO 1 phase - LFO 1 fas - - - - LFO 2 waveform - LFO 2 vågform - - - - LFO 2 attack - LFO 2 stegring - - - - LFO 2 rate - LFO 2 hastighet - - - - LFO 2 phase - LFO 2 fas - - - - Env 1 pre-delay - Knt 1 förfördröjning - - - - Env 1 attack - Knt 1 stegring - - - - Env 1 hold - Knt 1 håll - - - - Env 1 decay - Knt 1 sänkning - - - - Env 1 sustain - Knt 1 hållnivå - - - - Env 1 release - Knt 1 avklingning - - - - Env 1 slope - Knt 1 kurva - - - - Env 2 pre-delay - Knt 2 förfördröjning - - - - Env 2 attack - Knt 2 stegring - - - - Env 2 hold - Knt 2 håll - - - - Env 2 decay - Knt 2 sänkning - - - - Env 2 sustain - Knt 2 hållnivå - - - - Env 2 release - Knt 2 avklingning - - - - Env 2 slope - Knt 2 kurva - - - - Osc 2+3 modulation - Osc. 2+3-modulering - - - - Selected view - Vald vy - - - - Osc 1 - Vol env 1 - Osc. 1 - Vol. knt 1 - - - - Osc 1 - Vol env 2 - Osc. 1 - Vol. knt 2 - - - - Osc 1 - Vol LFO 1 - Osc. 1 - Vol. LFO 1 - - - - Osc 1 - Vol LFO 2 - Osc. 1 - Vol. LFO 2 - - - - Osc 2 - Vol env 1 - Osc. 2 - Vol. knt 1 - - - - Osc 2 - Vol env 2 - Osc. 2 - Vol. knt 2 - - - - Osc 2 - Vol LFO 1 - Osc. 2 - Vol. LFO 1 - - - - Osc 2 - Vol LFO 2 - Osc. 2 - Vol. LFO 2 - - - - Osc 3 - Vol env 1 - Osc. 3 - Vol. knt 1 - - - - Osc 3 - Vol env 2 - Osc. 3 - Vol. knt 2 - - - - Osc 3 - Vol LFO 1 - Osc. 3 - Vol. LFO 1 - - - - Osc 3 - Vol LFO 2 - Osc. 3 - Vol. LFO 2 - - - - Osc 1 - Phs env 1 - Osc. 1 - Fas knt 1 - - - - Osc 1 - Phs env 2 - Osc. 1 - Fas knt 2 - - - - Osc 1 - Phs LFO 1 - Osc. 1 - Fas LFO 1 - - - - Osc 1 - Phs LFO 2 - Osc. 1 - Fas LFO 2 - - - - Osc 2 - Phs env 1 - Osc. 2 - Fas knt 1 - - - - Osc 2 - Phs env 2 - Osc. 2 - Fas knt 2 - - - - Osc 2 - Phs LFO 1 - Osc. 2 - Fas LFO 1 - - - - Osc 2 - Phs LFO 2 - Osc. 2 - Fas LFO 2 - - - - Osc 3 - Phs env 1 - Osc. 3 - Fas knt 1 - - - - Osc 3 - Phs env 2 - Osc. 3 - Fas knt 2 - - - - Osc 3 - Phs LFO 1 - Osc. 3 - Fas LFO 1 - - - - Osc 3 - Phs LFO 2 - Osc. 3 - Fas LFO 2 - - - - Osc 1 - Pit env 1 - Osc. 1 - Pit knt 1 - - - - Osc 1 - Pit env 2 - Osc. 1 - Pit knt 2 - - - - Osc 1 - Pit LFO 1 - Osc. 1 - Pit LFO 1 - - - - Osc 1 - Pit LFO 2 - Osc. 1 - Pit LFO 2 - - - - Osc 2 - Pit env 1 - Osc. 2 - Pit knt 1 - - - - Osc 2 - Pit env 2 - Osc. 2 - Pit knt 2 - - - - Osc 2 - Pit LFO 1 - Osc. 2 - Pit LFO 1 - - - - Osc 2 - Pit LFO 2 - Osc. 2 - Pit LFO 2 - - - - Osc 3 - Pit env 1 - Osc. 3 - Pit knt 1 - - - - Osc 3 - Pit env 2 - Osc. 3 - Pit knt 2 - - - - Osc 3 - Pit LFO 1 - Osc. 3 - Pit LFO 1 - - - - Osc 3 - Pit LFO 2 - Osc. 3 - Pit LFO 2 - - - - Osc 1 - PW env 1 - Osc. 1 - PW knt 1 - - - - Osc 1 - PW env 2 - Osc. 1 - PW knt 2 - - - - Osc 1 - PW LFO 1 - Osc. 1 - PW LFO 1 - - - - Osc 1 - PW LFO 2 - Osc. 1 - PW LFO 2 - - - - Osc 3 - Sub env 1 - Osc. 3 - Sub knt 1 - - - - Osc 3 - Sub env 2 - Osc. 3 - Sub knt 2 - - - - Osc 3 - Sub LFO 1 - Osc. 3 - Sub LFO 1 - - - - Osc 3 - Sub LFO 2 - Osc. 3 - Sub LFO 2 - - - - - Sine wave - Sinusvåg - - - - Bandlimited Triangle wave - Bandbegränsad triangelvåg - - - - Bandlimited Saw wave - Bandbegränsad sågtandsvåg - - - - Bandlimited Ramp wave - Bandbegränsad rampvåg - - - - Bandlimited Square wave - Bandbegränsad fyrkantsvåg - - - - Bandlimited Moog saw wave - Bandbegränsad Moog sågtandsvåg - - - - - Soft square wave - Jämn fyrkantvåg - - - - Absolute sine wave - Absolut sinusvåg - - - - - Exponential wave - Exponentiell våg - - - - White noise - Vitt brus - - - - Digital Triangle wave - Digital Triangelvåg - - - - Digital Saw wave - Digital Sågtandsvåg - - - - Digital Ramp wave - Digital rampvåg - - - - Digital Square wave - Digital fyrkantsvåg - - - - Digital Moog saw wave - Digital Moogsågtandsvåg - - - - Triangle wave - Triangelvåg - - - - Saw wave - Sågtandsvåg - - - - Ramp wave - Rampvåg - - - - Square wave - Fyrkantvåg - - - - Moog saw wave - Moog sågtandsvåg - - - - Abs. sine wave - Abs. sinusvåg - - - - Random - Slumpmässig - - - - Random smooth - Slumpmässigt jämn - - - - MonstroView - - - Operators view - Operatörernas vy - - - - Matrix view - Matrisvy - - - - - - Volume - Volym - - - - - - Panning - Panorering - - - - - - Coarse detune - Grovurstämning - - - - - - semitones - halvtoner - - - - - Fine tune left - Finurstämning vänster - - - - - - - cents - hundradelar - - - - - Fine tune right - Finurstämning höger - - - - - - Stereo phase offset - Stereofasposition - - - - - - - - deg - grd - - - - Pulse width - Pulsbredd - - - - Send sync on pulse rise - Skicka synk vid pulsstigning - - - - Send sync on pulse fall - Skicka synk vid pulsfall - - - - Hard sync oscillator 2 - Hård synk oscillator 2 - - - - Reverse sync oscillator 2 - Omvänd synk oscillator 2 - - - - Sub-osc mix - Underosc.-mix - - - - Hard sync oscillator 3 - Hård synk oscillator 3 - - - - Reverse sync oscillator 3 - Omvänd synk oscillator 3 - - - - - - - Attack - Attack - - - - - Rate - Värdera - - - - - Phase - Fas - - - - - Pre-delay - Förfördröjning - - - - - Hold - Håll - - - - - Decay - Decay - - - - - Sustain - Sustain - - - - - Release - Release - - - - - Slope - Lutning - - - - Mix osc 2 with osc 3 - Mixa osc. 2 med osc. 3 - - - - Modulate amplitude of osc 3 by osc 2 - Modulera amplituden för osc. 3 med osc. 2 - - - - Modulate frequency of osc 3 by osc 2 - Modulera frekvens för osc. 3 med osc. 2 - - - - Modulate phase of osc 3 by osc 2 - Modulera fasen för osc. 3 med osc. 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Modulation amount - Moduleringsmängd - - - - MultitapEchoControlDialog - - - Length - Längd - - - - Step length: - Steglängd: - - - - Dry - Original - - - - Dry gain: - Originalförstärkning: - - - - Stages - Stadier - - - - Low-pass stages: - Lågpassteg: - - - - Swap inputs - Växla ingångar - - - - Swap left and right input channels for reflections - Växla vänster och höger ingångskanaler för speglingar - - - - NesInstrument - - - Channel 1 coarse detune - Kanal 1 grovurstämning - - - - Channel 1 volume - Kanal 1 volym - - - - Channel 1 envelope length - Kanal 1 konturlängd - - - - Channel 1 duty cycle - Kanal 1 arbetscykel - - - - Channel 1 sweep amount - Kanal 1 svepmängd - - - - Channel 1 sweep rate - Kanal 1 svephastighet - - - - Channel 2 Coarse detune - Kanal 2 grovurstämning - - - - Channel 2 Volume - Kanal 2 volym - - - - Channel 2 envelope length - Kanal 2 konturlängd - - - - Channel 2 duty cycle - Kanal 2 arbetscykel - - - - Channel 2 sweep amount - Kanal 2 svepmängd - - - - Channel 2 sweep rate - Kanal 2 svephastighet - - - - Channel 3 coarse detune - Kanal 3 grovurstämning - - - - Channel 3 volume - Kanal 3 volym - - - - Channel 4 volume - Kanal 4 volym - - - - Channel 4 envelope length - Kanal 4 konturlängd - - - - Channel 4 noise frequency - Kanal 4 brusfrekvens - - - - Channel 4 noise frequency sweep - Kanal 4 brusfrekvenssvep - - - - Master volume - Huvudvolym - - - - Vibrato - Vibrato - - - - NesInstrumentView - - - - - - Volume - Volym - - - - - - Coarse detune - Grovurstämning - - - - - - Envelope length - Konturlängd - - - - Enable channel 1 - Aktivera kanal 1 - - - - Enable envelope 1 - Aktivera kontur 1 - - - - Enable envelope 1 loop - Aktivera kontur 1-loop - - - - Enable sweep 1 - Aktivera svep 1 - - - - - Sweep amount - Svepmängd - - - - - Sweep rate - Svephastighet - - - - - 12.5% Duty cycle - 12.5% arbetscykel - - - - - 25% Duty cycle - 25% arbetscykel - - - - - 50% Duty cycle - 50% arbetscykel - - - - - 75% Duty cycle - 75% arbetscykel - - - - Enable channel 2 - Aktivera kanal 2 - - - - Enable envelope 2 - Aktivera kontur 2 - - - - Enable envelope 2 loop - Aktivera kontur 2-loop - - - - Enable sweep 2 - Aktivera svep 2 - - - - Enable channel 3 - Aktivera kanal 3 - - - - Noise Frequency - Brusfrekvens - - - - Frequency sweep - Frekvenssvep - - - - Enable channel 4 - Aktivera kanal 4 - - - - Enable envelope 4 - Aktivera kontur 4 - - - - Enable envelope 4 loop - Aktivera kontur 4-loop - - - - Quantize noise frequency when using note frequency - Kvantifiera brusfrekvens vid användning av notfrekvens - - - - Use note frequency for noise - Använd notfrekvens för brus - - - - Noise mode - Brusläge - - - - Master volume - Huvudvolym - - - - Vibrato - Vibrato - - - - OpulenzInstrument - - - Patch - Inställning - - - - Op 1 attack - Op. 1 stegring - - - - Op 1 decay - Op. 1 sänkning - - - - Op 1 sustain - Op. 1 hållnivå - - - - Op 1 release - Op. 1 avklingning - - - - Op 1 level - Op. 1 nivå - - - - Op 1 level scaling - Op. 1 nivåskalning - - - - Op 1 frequency multiplier - Op. 1 frekvensmultiplikator - - - - Op 1 feedback - Op. 1 rundgång - - - - Op 1 key scaling rate - Op. 1 skalskalningshastighet - - - - Op 1 percussive envelope - Op.1 slagverkskontur - - - - Op 1 tremolo - Op. 1 tremolo - - - - Op 1 vibrato - Op. 1 vibrato - - - - Op 1 waveform - Op. 1 vågform - - - - Op 2 attack - Op. 2 stegring - - - - Op 2 decay - Op. 2 sänkning - - - - Op 2 sustain - Op. 2 hållnivå - - - - Op 2 release - Op. 2 avklingning - - - - Op 2 level - Op. 2 nivå - - - - Op 2 level scaling - Op. 2 nivåskalning - - - - Op 2 frequency multiplier - Op. 2 frekvensmultiplikator - - - - Op 2 key scaling rate - Op. 2 skalskalningshastighet - - - - Op 2 percussive envelope - Op. 2 slagverkskontur - - - - Op 2 tremolo - Op. 2 tremolo - - - - Op 2 vibrato - Op. 2 vibrato - - - - Op 2 waveform - Op. 2 vågform - - - - FM - FM - - - - Vibrato depth - Vibrato djup - - - - Tremolo depth - Tremolodjup - - - - OpulenzInstrumentView - - - - Attack - Attack - - - - - Decay - Decay - - - - - Release - Release - - - - - Frequency multiplier - Frekvensmultiplikator - - - - OscillatorObject - - - Osc %1 waveform - Osc. %1 vågform - - - - Osc %1 harmonic - Osc. %1 harmoni - - - - - Osc %1 volume - Osc %1 volym - - - - - Osc %1 panning - Osc %1 panorering - - - - - Osc %1 fine detuning left - Osc. %1 finurstämning vänster - - - - Osc %1 coarse detuning - Osc. %1 grovurstämning - - - - Osc %1 fine detuning right - Osc. %1 finurstämning höger - - - - Osc %1 phase-offset - Osc. %1 fasposition - - - - Osc %1 stereo phase-detuning - Osc %1 stereofasurstämning - - - - Osc %1 wave shape - Osc %1 vågform - - - - Modulation type %1 - Moduleringstyp %1 - - - - Oscilloscope - - - Oscilloscope - Oscilloskop - - - - Click to enable - Klicka för att aktivera - - PatchesDialog + Qsynth: Channel Preset Qsynth: Kanal förinställd + Bank selector Bankväljare + Bank Bank + Program selector Programväljare + Patch Inställning + Name Namn + OK OK + Cancel Avbryt - - PatmanView - - - Open patch - Öppna inställning - - - - Loop - Slinga - - - - Loop mode - Slinga-läge - - - - Tune - Tune - - - - Tune mode - Tune-läge - - - - No file selected - Ingen fil vald - - - - Open patch file - Öppna patch-fil - - - - Patch-Files (*.pat) - Patch-filer (*.pat) - - - - MidiClipView - - - Open in piano-roll - Öppna i pianorulle - - - - Set as ghost in piano-roll - Ange som spöke i pianorulle - - - - Clear all notes - Rensa alla noter - - - - Reset name - Nollställ namn - - - - Change name - Byt namn - - - - Add steps - Lägg till steg - - - - Remove steps - Ta bort steg - - - - Clone Steps - Klona Steg - - - - PeakController - - - Peak Controller - Toppkontroller - - - - Peak Controller Bug - Toppkontrollerbugg - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - På grund av en bugg i äldre versioner av LMMS kan toppkontrollrarna kommat att inte anslutas korrekt. Försäkra dig om att toppkontrollrarna är anslutna korrekt och spara om denna fil. Eventuella olägeheter beklagas. - - - - PeakControllerDialog - - - PEAK - TOPP - - - - LFO Controller - LFO-kontroller - - - - PeakControllerEffectControlDialog - - - BASE - BAS - - - - Base: - Bas: - - - - AMNT - BELP - - - - Modulation amount: - Moduleringsmängd: - - - - MULT - MULT - - - - Amount multiplicator: - Mängdmultiplikator: - - - - ATCK - STGR - - - - Attack: - Attack: - - - - DCAY - SÄNK - - - - Release: - Release: - - - - TRSH - NIVÅ - - - - Treshold: - Tröskelvärde: - - - - Mute output - Tysta utgångs-ljud - - - - Absolute value - Absolut värde - - - - PeakControllerEffectControls - - - Base value - Basvärde - - - - Modulation amount - Moduleringsmängd - - - - Attack - Attack - - - - Release - Release - - - - Treshold - Tröskelvärde - - - - Mute output - Tysta utgångs-ljud - - - - Absolute value - Absolut värde - - - - Amount multiplicator - Mängdmultiplikator - - - - PianoRoll - - - Note Velocity - Not-velocitet - - - - Note Panning - Not-panorering - - - - Mark/unmark current semitone - Markera/avmarkera nuvarande halvton - - - - Mark/unmark all corresponding octave semitones - Markera/avmarkera alla motsvarande oktavhalvtoner - - - - Mark current scale - Markera nuvarande skala - - - - Mark current chord - Markera nuvarande ackord - - - - Unmark all - Avmarkera allt - - - - Select all notes on this key - Välj alla noter på denna tangent - - - - Note lock - Notlås - - - - Last note - Senaste noten - - - - No key - Ingen skala - - - - No scale - Ingen skala - - - - No chord - Inget ackord - - - - Nudge - - - - - Snap - - - - - Velocity: %1% - Velocitet: %1% - - - - Panning: %1% left - Panorering: %1% vänster - - - - Panning: %1% right - Panorering: %1% höger - - - - Panning: center - Panorering: center - - - - Glue notes failed - - - - - Please select notes to glue first. - - - - - Please open a clip by double-clicking on it! - Dubbelklicka för att öppna ett mönster! - - - - - Please enter a new value between %1 and %2: - Ange ett nytt värde mellan %1 och %2: - - - - PianoRollWindow - - - Play/pause current clip (Space) - Spela/pausa aktuellt mönster (mellanslag) - - - - Record notes from MIDI-device/channel-piano - Spela in noter från MIDI-enhet/kanal-piano - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - Spela in noter från MIDI-enhet/kanal-piano medan låt eller BB-spår spelas - - - - Record notes from MIDI-device/channel-piano, one step at the time - Spela in noter från MIDI-enhet/kanal-piano, ett steg i taget - - - - Stop playing of current clip (Space) - Sluta spela aktuellt mönster (mellanslag) - - - - Edit actions - Redigera åtgärder - - - - Draw mode (Shift+D) - Ritläge (Skift+D) - - - - Erase mode (Shift+E) - Suddläge (Skift+E) - - - - Select mode (Shift+S) - Markeringsläge (Skift+S) - - - - Pitch Bend mode (Shift+T) - Tonhöjdsböjningsläge (Shift+T) - - - - Quantize - Kvantisera - - - - Quantize positions - Kvantisera positioner - - - - Quantize lengths - Kvantisera längder - - - - File actions - Filåtgärder - - - - Import clip - Importera mönster - - - - - Export clip - Exportera mönster - - - - Copy paste controls - Kopiera/klistra-kontroller - - - - Cut (%1+X) - Klipp ut (%1+X) - - - - Copy (%1+C) - Kopiera (%1+C) - - - - Paste (%1+V) - Klistra in (%1+V) - - - - Timeline controls - Tidslinjekontroller - - - - Glue - - - - - Knife - - - - - Fill - Fyll - - - - Cut overlaps - - - - - Min length as last - - - - - Max length as last - - - - - Zoom and note controls - Zoom- och notkontroller - - - - Horizontal zooming - Horisontell zoomning - - - - Vertical zooming - Vertikal zoomning - - - - Quantization - Kvantisering - - - - Note length - Notlängd - - - - Key - Skala - - - - Scale - Skala - - - - Chord - Ackord - - - - Snap mode - - - - - Clear ghost notes - Rensa spöknoter - - - - - Piano-Roll - %1 - Pianorulle - %1 - - - - - Piano-Roll - no clip - Pianorulle - inget mönster - - - - - XML clip file (*.xpt *.xptz) - XML-mönsterfil (*.xpt *.xptz) - - - - Export clip success - Export av mönster lyckades - - - - Clip saved to %1 - Mönster sparat till %1 - - - - Import clip. - Importera mönster. - - - - You are about to import a clip, this will overwrite your current clip. Do you want to continue? - Du håller på att importera ett mönster, detta kommer att skriva över ditt nuvarande mönster. Vill du fortsätta? - - - - Open clip - Öppet mönster - - - - Import clip success - Import av mönster lyckades - - - - Imported clip %1! - Importerat mönstret %1! - - - - PianoView - - - Base note - Basnot - - - - First note - - - - - Last note - Senaste noten - - - - Plugin - - - Plugin not found - Tillägget hittades inte - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - Tillägget "%1" hittades inte eller kunde inte läsas in! -Orsak: "%2" - - - - Error while loading plugin - Fel vid inläsning av tillägg - - - - Failed to load plugin "%1"! - Misslyckades att läsa in tillägget "%1"! - - PluginBrowser - - Instrument Plugins - Instrument-tillägg - - - - Instrument browser - Instrument bläddrare - - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - Dra ett instrument till antingen Låtredigeraren, Takt+Basgång-redigeraren eller till ett befintligt instrumentspår. - - - + no description ingen beskrivning - + A native amplifier plugin En inbyggd förstärkare-tillägg - + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track Enkel sampler med olika inställningar för att använda samplingar (t. ex. trummor) i ett instrumentspår - + Boost your bass the fast and simple way Öka din bas på snabbt och enkelt sätt - + Customizable wavetable synthesizer Anpassa vågtabellssynthesizer - + An oversampling bitcrusher En översamplande bitkrossare - + Carla Patchbay Instrument Instrument för Carla Kopplingsplint - + Carla Rack Instrument Carla Rack-instrument - + A dynamic range compressor. - + A 4-band Crossover Equalizer En 4-bands korsningspunkts frekvenskorrigerare - + A native delay plugin Ett inbyggt fördröjningstillägg - + A Dual filter plugin Ett Dual filter-tillägg - + plugin for processing dynamics in a flexible way tillägg för dynamisk bearbetning på ett flexibelt sätt - + A native eq plugin Ett inbyggt eq-tillägg - + A native flanger plugin Ett inbyggt flanger-tillägg - + Emulation of GameBoy (TM) APU Emulering av GameBoy (TM) APU - + Player for GIG files Spelare för GIG-filer - + Filter for importing Hydrogen files into LMMS Filter för att importera Hydrogen-filer till LMMS - + Versatile drum synthesizer Mångsidig trum-synth - + List installed LADSPA plugins Lista installerade LADSPA-tillägg - + plugin for using arbitrary LADSPA-effects inside LMMS. tillägg för att använda godtyckliga LADSPA-effekter inom LMMS. - + Incomplete monophonic imitation TB-303 - Ofullstädig monofonisk imitation av TB-303 + - + plugin for using arbitrary LV2-effects inside LMMS. tillägg för användning av godtyckliga LV2-effekter inuti LMMS. - + plugin for using arbitrary LV2 instruments inside LMMS. tillägg för användning av godtyckliga LV2-instrument inuti LMMS. - + Filter for exporting MIDI-files from LMMS Filter för att exportera MIDI-filer från LMMS - + Filter for importing MIDI-files into LMMS Filter för att importera MIDI-filer till LMMS - + Monstrous 3-oscillator synth with modulation matrix Monstruös 3-oscillatorsynth med moduleringsmix - + A multitap echo delay plugin Ett flertapps ekofördröjningstillägg - + A NES-like synthesizer En NES-lik synthesizer - + 2-operator FM Synth 2-operators FM-synth - + Additive Synthesizer for organ-like sounds Additiv synthesizer för orgellika ljud - + GUS-compatible patch instrument GUS-kompatibelt kopplingsinstrument - + Plugin for controlling knobs with sound peaks Tillägg för styrning av rattar med ljudtoppar - + Reverb algorithm by Sean Costello Reverb-algoritm av Sean Costello - + Player for SoundFont files Spelare för SoundFont-filer - + LMMS port of sfxr LMMS-port av sfxr - + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Emulering av MOS6581 och MODS 8580 SID. Detta chip användes i datorn Commodore 64. - + A graphical spectrum analyzer. En grafisk spektrumanalysator - + Plugin for enhancing stereo separation of a stereo input file Tillägg för att förbättra stereoseparation av en stereoingångsfil - + Plugin for freely manipulating stereo output Tillägg för fritt manipulera stereoutgång - + Tuneful things to bang on Melodiska saker att slå på - + Three powerful oscillators you can modulate in several ways Tre kraftfulla oscillatorer du kan modulera på flera sätt - + A stereo field visualizer. Stereofältsvisualiserare. - + VST-host for using VST(i)-plugins within LMMS VST-värd för att använda VST(i)-tillägg inom LMMS - + Vibrating string modeler Modellerare för vibrerande strängar - + plugin for using arbitrary VST effects inside LMMS. tillägg för att använda godtyckliga VST-effekter inom LMMS. - + 4-oscillator modulatable wavetable synth 4-oscillators modulerbar vågtabellssynth - + plugin for waveshaping tillägg för vågformande - + Mathematical expression parser Tolk för matematiska uttryck - + Embedded ZynAddSubFX Inbäddad ZynAddSubFX - - - PluginDatabaseW - - Carla - Add New - Carla - Lägg till ny + + An all-pass filter allowing for extremely high orders. + - - Format - Format + + Granular pitch shifter + - - Internal - Intern + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. + - - LADSPA - LADSPA + + Basic Slicer + - - DSSI - DSSI - - - - LV2 - LV2 - - - - VST2 - VST2 - - - - VST3 - VST3 - - - - AU - AU - - - - Sound Kits - Ljuduppsättning - - - - Type - Typ - - - - Effects - Effekter - - - - Instruments - Instrument - - - - MIDI Plugins - MIDI-tillägg - - - - Other/Misc - Annat/diverse - - - - Architecture - Arkitektur - - - - Native - Inbyggt - - - - Bridged - Bryggad - - - - Bridged (Wine) - Bryggad (Wine) - - - - Requirements - Krav - - - - With Custom GUI - Med anpassat användargränssnitt - - - - With CV Ports - Med CV-portar - - - - Real-time safe only - Endast realtidssäkert - - - - Stereo only - Endast stereo - - - - With Inline Display - Med inbyggd visning - - - - Favorites only - Endast favoriter - - - - (Number of Plugins go here) - (Antal tillägg placeras här) - - - - &Add Plugin - &Lägg till tillägg - - - - Cancel - Avbryt - - - - Refresh - Uppdatera - - - - Reset filters - Återställ filter - - - - - - - - - - - - - - - - - - - TextLabel - TextLabel - - - - Format: - Format: - - - - Architecture: - Arkitektur: - - - - Type: - Typ: - - - - MIDI Ins: - MIDI in: - - - - Audio Ins: - Ljudingångar: - - - - CV Outs: - CV-utgångar: - - - - MIDI Outs: - MIDI ut: - - - - Parameter Ins: - Parameteringångar: - - - - Parameter Outs: - Parameterutgångar: - - - - Audio Outs: - Ljudutgångar: - - - - CV Ins: - CV-ingångar: - - - - UniqueID: - UniqueID: - - - - Has Inline Display: - Har inbyggd visning: - - - - Has Custom GUI: - Has anpassat användargränssnitt: - - - - Is Synth: - Är en synth: - - - - Is Bridged: - Är bryggad: - - - - Information - Information - - - - Name - Namn - - - - Label/URI - Etikett/URI - - - - Maker - Tillverkare - - - - Binary/Filename - Binär/filnamn - - - - Focus Text Search - Fokusera på textsökning - - - - Ctrl+F - Ctrl+F + + Tap to the beat + @@ -11111,36 +3740,41 @@ Detta chip användes i datorn Commodore 64. + Send Notes + + + + Send Bank/Program Changes Skicka bank-/programändringar - + Send Control Changes Skicka kontrolländringar - + Send Channel Pressure Skicka kanaltryck - + Send Note Aftertouch Skicka efterberöring för noter - + Send Pitchbend Skicka tonhöjdsböjning - + Send All Sound/Notes Off Skicka alla ljud/noter av - + Plugin Name @@ -11149,57 +3783,57 @@ Tilläggsnamn - + Program: Program: - + MIDI Program: MIDI-program: - + Save State Spara tillstånd - + Load State Ladda tillstånd - + Information Information - + Label/URI: Etikett/URI: - + Name: Namn: - + Type: Typ: - + Maker: Tillverkare: - + Copyright: Upphovsrätt: - + Unique ID: Unikt ID: @@ -11207,16 +3841,457 @@ Tilläggsnamn PluginFactory - + Plugin not found. Tillägget hittades inte. - + LMMS plugin %1 does not have a plugin descriptor named %2! LMMS-tillägget %1 har ingen tilläggsbeskrivning med namnet %2! + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + PluginParameter @@ -11231,158 +4306,61 @@ Tilläggsnamn + TextLabel + + + + ... ... - PluginRefreshW + PluginRefreshDialog - - Carla - Refresh - Carla - Uppdatera + + Plugin Refresh + - - Search for new... - Sök efter nya... + + Search for: + - - LADSPA - LADSPA + + All plugins, ignoring cache + - - DSSI - DSSI + + Updated plugins only + - - LV2 - LV2 + + Check previously invalid plugins + - - VST2 - VST2 - - - - VST3 - VST3 - - - - AU - AU - - - - SF2/3 - SF2/3 - - - - SFZ - SFZ - - - - Native - Inbyggt - - - - POSIX 32bit - POSIX 32bit - - - - POSIX 64bit - POSIX 64bit - - - - Windows 32bit - Windows 32bit - - - - Windows 64bit - Windows 64bit - - - - Available tools: - Tillgängliga verktyg: - - - - python3-rdflib (LADSPA-RDF support) - python3-rdflib (LADSPA-RDF-stöd) - - - - carla-discovery-win64 - carla-discovery-win64 - - - - carla-discovery-native - carla-discovery-native - - - - carla-discovery-posix32 - carla-discovery-posix32 - - - - carla-discovery-posix64 - carla-discovery-posix64 - - - - carla-discovery-win32 - carla-discovery-win32 - - - - Options: - Alternativ: - - - - Carla will run small processing checks when scanning the plugins (to make sure they won't crash). -You can disable these checks to get a faster scanning time (at your own risk). - Carla kommer att köra små bearbetningskontroller vid skanning av tillägg (för att se till att de inte kraschar). -Du kan inaktivera dessa kontroller för att få en snabbare skanningstid (på egen risk). - - - - Run processing checks while scanning - Kör processkontroller under detektering - - - + Press 'Scan' to begin the search - Tryck på 'Skanna' för att påbörja sökningen + - + Scan - Skanna + - + >> Skip - >> Hoppa + - + Close - Stäng + @@ -11397,50 +4375,50 @@ Du kan inaktivera dessa kontroller för att få en snabbare skanningstid (på eg Bild - + Enable Aktivera - + On/Off På/Av - + - + PluginName Tilläggsnamn - + MIDI MIDI - + AUDIO IN LJUDINGÅNG - + AUDIO OUT LJUDUTGÅNG - + GUI Användargränssnitt - + Edit Redigera - + Remove Ta bort @@ -11455,5175 +4433,14606 @@ Du kan inaktivera dessa kontroller för att få en snabbare skanningstid (på eg Förinställning: - - ProjectNotes - - - Project Notes - Projektanteckningar - - - - Enter project notes here - Ange projektnoteringar här - - - - Edit Actions - Redigera Åtgärder - - - - &Undo - &Ångra - - - - %1+Z - %1+Z - - - - &Redo - &Gör om - - - - %1+Y - %1+Y - - - - &Copy - &Kopiera - - - - %1+C - %1+C - - - - Cu&t - Klipp u&t - - - - %1+X - %1+X - - - - &Paste - &Klistra in - - - - %1+V - %1+V - - - - Format Actions - Formatåtgärder - - - - &Bold - &Fet - - - - %1+B - %1+B - - - - &Italic - &Kursiv - - - - %1+I - %1+I - - - - &Underline - &Understruken - - - - %1+U - %1+U - - - - &Left - &Vänster - - - - %1+L - %1+L - - - - C&enter - C&entrera - - - - %1+E - %1+E - - - - &Right - &Höger - - - - %1+R - %1+R - - - - &Justify - &Justera - - - - %1+J - %1+J - - - - &Color... - &Färg... - - ProjectRenderer - + WAV (*.wav) WAV (*.wav) - + FLAC (*.flac) FLAC (*.flac) - + OGG (*.ogg) OGG (*.ogg) - + MP3 (*.mp3) MP3 (*.mp3) + + QGroupBox + + + + Settings for %1 + + + QObject - + Reload Plugin Läs in tillägg igen - + Show GUI Visa användargränssnitt - + Help Hjälp + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + QWidget - - - - + + Name: Namn: - - URI: - URI: - - - - - + Maker: Skapare: - - - + Copyright: Copyright: - - + Requires Real Time: Kräver realtid: - - - - - - + + + Yes Ja - - - - - - + + + No Nej - - + Real Time Capable: Klarar realtid: - - + In Place Broken: Trasig på plats: - - + Channels In: Kanaler in: - - + Channels Out: Kanaler ut: - + File: %1 Fil: %1 - + File: Fil: - RecentProjectsMenu + XYControllerW - - &Recently Opened Projects - &Nyligen öppnade projekt + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + - RenameDialog + lmms::AmplifierControls - - Rename... - Byt namn... + + Volume + + + + + Panning + + + + + Left gain + + + + + Right gain + - ReverbSCControlDialog + lmms::AudioFileProcessor - - Input - Ingång + + Amplify + - - Input gain: - Ingångsförstärkning: + + Start of sample + - - Size - Storlek + + End of sample + - - Size: - Storlek: + + Loopback point + - - Color - Färg + + Reverse sample + - - Color: - Färg: + + Loop mode + - - Output - Utgång + + Stutter + - - Output gain: - Utgångsförstärkning: + + Interpolation mode + + + + + None + + + + + Linear + + + + + Sinc + + + + + Sample not found + - ReverbSCControls + lmms::AudioJack - + + JACK client restarted + + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + + + + + Client name + + + + + Channels + + + + + lmms::AudioOss + + + Device + + + + + Channels + + + + + lmms::AudioPortAudio::setupWidget + + + Backend + + + + + Device + + + + + lmms::AudioPulseAudio + + + Device + + + + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + + + + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + + Gain + + + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + Input gain - Ingångsförstärkning + - - Size - Storlek + + Input noise + - - Color - Färg + + Output gain + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + + + + + Output gain + + + + + Attack time + + + + + Release time + + + + + Stereo mode + + + + + lmms::Effect + + + Effect enabled + + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + + + + + Denominator + + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + Input gain + + + + + Size + + + + + Color + + + + Output gain - Utgångsförstärkning + - SaControls - - - Pause - Pausa - - - - Reference freeze - Referensfrysning - + lmms::SaControls - Waterfall - Vattenfall + Pause + - Averaging - Medelvärdesbildning - - - - Stereo - Stereo + Reference freeze + - Peak hold - Topphållning + Waterfall + + + + + Averaging + - Logarithmic frequency - Logaritmisk frekvens + Stereo + - Logarithmic amplitude - Logaritmisk amplitud + Peak hold + + + + + Logarithmic frequency + - Frequency range - Frekvensområde - - - - Amplitude range - Amplitudomfång - - - - FFT block size - Blockstorlek för FFT + Logarithmic amplitude + - FFT window type - FFT-fönstertyp + Frequency range + + + + + Amplitude range + + + + + FFT block size + - Peak envelope resolution - Toppkonturupplösning - - - - Spectrum display resolution - Spektrumvisningsupplösning - - - - Peak decay multiplier - Toppavklingingsmultiplikator + FFT window type + - Averaging weight - Genomsnittsviktning + Peak envelope resolution + - Waterfall history size - Historikstorlek för vattenfall + Spectrum display resolution + - Waterfall gamma correction - Gammakorrigering för vattenfall + Peak decay multiplier + - FFT window overlap - Överlappning för FFT-fönster + Averaging weight + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + FFT zero padding - Nollfyllnad för FFT - - - - - Full (auto) - Fullständig (automatisk) - - - - - - Audible - Hörbart - - - - Bass - Bas + - Mids - Mellanregister + + Full (auto) + - High - Hög + + + Audible + + + + + Bass + + + + + Mids + - Extended - Utökat - - - - Loud - Högljudd + High + + Extended + + + + + Loud + + + + Silent - Tyst + - + (High time res.) - (Hög tidsuppl.) + - + (High freq. res.) - (Hög frekv.uppl.) - - - - Rectangular (Off) - Rektangulär (Av) - - - - - Blackman-Harris (Default) - Blackman-Harris (Standard) - - - - Hamming - Hamming + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + Hanning - Hanning - - - - SaControlsDialog - - - Pause - Pausa - - - - Pause data acquisition - Pausa datainsamling - - - - Reference freeze - Referensfrysning - - - - Freeze current input as a reference / disable falloff in peak-hold mode. - Frys aktuella ingång som en referens / inaktivera fall i topphållningsläge. - - - - Waterfall - Vattenfall - - - - Display real-time spectrogram - Visa spektrogram i realtid - - - - Averaging - Medelvärdesbildning - - - - Enable exponential moving average - Aktivera exponentiellt glidande medelvärde - - - - Stereo - Stereo - - - - Display stereo channels separately - Visa stereokanaler separat - - - - Peak hold - Topphållning - - - - Display envelope of peak values - Visa kontur för toppvärden - - - - Logarithmic frequency - Logaritmisk frekvens - - - - Switch between logarithmic and linear frequency scale - Växla mellan logaritmisk och linjär frekvensskala - - - - - Frequency range - Frekvensområde - - - - Logarithmic amplitude - Logaritmisk amplitud - - - - Switch between logarithmic and linear amplitude scale - Växla mellan logaritmisk och linjär amplitudskala - - - - - Amplitude range - Amplitudomfång - - - - Envelope res. - Konturuppl. - - - - Increase envelope resolution for better details, decrease for better GUI performance. - Öka konturupplösning för fler detaljer, minska för bättre användargrässnittsprestanda. - - - - - Draw at most - Rita som mest - - - - envelope points per pixel - konturpunkter per pixel - - - - Spectrum res. - Spektrum uppl. - - - - Increase spectrum resolution for better details, decrease for better GUI performance. - Öka spektrumupplösningen för bättre detaljer, minska för bättre användargränssnittsprestanda. - - - - spectrum points per pixel - spektrumpunkter per pixel - - - - Falloff factor - Fallfaktor - - - - Decrease to make peaks fall faster. - Minska för att topparna ska falla snabbare. - - - - Multiply buffered value by - Multiplera buffrat värde med - - - - Averaging weight - Genomsnittsviktning - - - - Decrease to make averaging slower and smoother. - Minska för att göra medelvädesbildning långsammare och mjukare. - - - - New sample contributes - Nytt sample bidrar - - - - Waterfall height - Vattenfallshöjd - - - - Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. - Öka för att gå lånsammare rullning, minska för att se snabba övergångar bättre. Varning: medel CPU-användning. - - - - Keep - Behåll - - - - lines - linjer - - - - Waterfall gamma - Vattenfallsgamma - - - - Decrease to see very weak signals, increase to get better contrast. - Minska för att se väldigt svara signaler, öka för att få bättre kontrast. - - - - Gamma value: - Gammavärde: - - - - Window overlap - Fönster överlappning - - - - Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. - Öka för att undvika att missa snabba övergångar som uppträder nära FFT-fönstrets kanter. Varning: hög CPU-användning. - - - - Each sample processed - Varje sampel hanterat - - - - times - gånger - - - - Zero padding - Nollfyllnad - - - - Increase to get smoother-looking spectrum. Warning: high CPU usage. - Öka för att få ett spektrum som ser mjukare ut. Varning: hög CPU-använding. - - - - Processing buffer is - Hanteringsbuffert är - - - - steps larger than input block - steg större än ingångsblock - - - - Advanced settings - Avancerade inställningar - - - - Access advanced settings - Kom åt avancerade inställningar - - - - - FFT block size - Blockstorlek för FFT - - - - - FFT window type - FFT-fönstertyp - - - - SampleBuffer - - - Fail to open file - Misslyckas med att öppna filen - - - - Audio files are limited to %1 MB in size and %2 minutes of playing time - Ljudfiler är begränsade till %1 MB i storlek och %2 minuters speltid - - - - Open audio file - Öppna ljudfil - - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - Alla ljudfiler (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - - Wave-Files (*.wav) - Wave-filer (*.wav) - - - - OGG-Files (*.ogg) - OGG-filer (*.ogg) - - - - DrumSynth-Files (*.ds) - DrumSynth-filer (*.ds) - - - - FLAC-Files (*.flac) - FLAC-filer (*.flac) - - - - SPEEX-Files (*.spx) - SPEEX-filer (*.spx) - - - - VOC-Files (*.voc) - VOC-filer (*.voc) - - - - AIFF-Files (*.aif *.aiff) - AIFF-filer (*.aif *.aiff) - - - - AU-Files (*.au) - AU-filer (*.au) - - - - RAW-Files (*.raw) - RAW-filer (*.raw) - - - - SampleClipView - - - Double-click to open sample - Dubbelklicka för att öppna sampel - - - - Delete (middle mousebutton) - Ta bort (musens mitt-knapp) - - - - Delete selection (middle mousebutton) - Ta bort markering (mittenmusknapp) - - - - Cut - Klipp ut - - - - Cut selection - Klipp ut markering - - - - Copy - Kopiera - - - - Copy selection - Kopiera markering - - - - Paste - Klistra in - - - - Mute/unmute (<%1> + middle click) - Tysta/avtysta (<%1> + mittenklick) - - - - Mute/unmute selection (<%1> + middle click) - Tysta/öppna markering (<%1> + mittenklick) - - - - Reverse sample - Spela baklänges - - - - Set clip color + + + lmms::SampleClip - - Use track color - Använd spårfärg + + Sample not found + - SampleTrack + lmms::SampleTrack - + Volume - Volym + - + Panning - Panorering + - + Mixer channel - FX-kanal + - - + + Sample track - Ljudspår + - SampleTrackView + lmms::Scale - - Track volume - Spårvolym - - - - Channel volume: - Kanalvolym: - - - - VOL - VOL - - - - Panning - Panorering - - - - Panning: - Panorering: - - - - PAN - PAN - - - - Channel %1: %2 - FX %1: %2 + + empty + - SampleTrackWindow + lmms::Sf2Instrument - - GENERAL SETTINGS - ALLMÄNNA INSTÄLLNINGAR - - - - Sample volume - Sampelvolym - - - - Volume: - Volym: - - - - VOL - VOL - - - - Panning - Panorering - - - - Panning: - Panorering: - - - - PAN - PAN - - - - Mixer channel - FX-kanal - - - - CHANNEL - FX - - - - SaveOptionsWidget - - - Discard MIDI connections - Kassera MIDI-anslutningar - - - - Save As Project Bundle (with resources) - Spara som projektpaket (med resurser) - - - - SetupDialog - - - Reset to default value - Återställ till standardvärde - - - - Use built-in NaN handler - Använd inbyggd NaN-hanterare - - - - Settings - Inställningar - - - - - General - Allmänt - - - - Graphical user interface (GUI) - Grafiskt användargränssnitt (GUI) - - - - Display volume as dBFS - Visa volym som dBFS - - - - Enable tooltips - Aktivera verktygstips - - - - Enable master oscilloscope by default - Aktivera huvudoscilloskop som standard - - - - Enable all note labels in piano roll - Aktivera alla notetiketter för pianorulle - - - - Enable compact track buttons - Aktivera kompakta spårknappar - - - - Enable one instrument-track-window mode - Aktivera ett-instrumentsspårfönsterläge - - - - Show sidebar on the right-hand side - Visa sidopanel på höger sida - - - - Let sample previews continue when mouse is released + + Bank - - Mute automation tracks during solo - Tysta automatiseringsspårk vid solo - - - - Show warning when deleting tracks + + Patch - - Projects - Projekt + + Gain + - - Compress project files by default - Komprimera projektfiler som standard + + Reverb + - - Create a backup file when saving a project - Skapa en säkerhetskopieringsfil vid sparning av projekt + + Reverb room size + - - Reopen last project on startup - Öppna det senaste projektet vid uppstart + + Reverb damping + - - Language - Språk + + Reverb width + - - - Performance - Prestanda + + Reverb level + - - Autosave - Spara automatiskt + + Chorus + - - Enable autosave - Aktivera spara automatiskt + + Chorus voices + - - Allow autosave while playing - Tillåt spara automatiskt medan du spelar + + Chorus level + - - User interface (UI) effects vs. performance - Användargränssnitts effekter versus prestanda + + Chorus speed + - - Smooth scroll in song editor - Mjuk rullning i låtredigeraren + + Chorus depth + - - Display playback cursor in AudioFileProcessor - Visa uppspelningsmarkör i AudioFileProcessor - - - - Plugins - Tillägg - - - - VST plugins embedding: - VST-tilläggsinbäddning: - - - - No embedding - Ingen inbäddning - - - - Embed using Qt API - Bädda in via Qt-API - - - - Embed using native Win32 API - Bädda in via inbyggt Win32-API - - - - Embed using XEmbed protocol - Bädda in via XEmbed-protokoll - - - - Keep plugin windows on top when not embedded - Håll tilläggsfönstren överst när de inte är inbäddade - - - - Sync VST plugins to host playback - Synkronisera VST-tillägg för att vara värd för uppspelning - - - - Keep effects running even without input - Håll effekter igång även utan ingång - - - - - Audio - Ljud - - - - Audio interface - Ljudgränssnitt - - - - HQ mode for output audio device - HQ-läget för ljudutgångsenhet - - - - Buffer size - Buffertstorlek - - - - - MIDI - MIDI - - - - MIDI interface - MIDI-gränssnitt - - - - Automatically assign MIDI controller to selected track - Tilldela automatiskt MIDI-kontroller till markerat spår - - - - LMMS working directory - LMMS-arbetsmapp - - - - VST plugins directory - VST-tilläggsmapp - - - - LADSPA plugins directories - Mappar för LADSPA-tillägg - - - - SF2 directory - Mapp för SF2-filer - - - - Default SF2 - Standard SF2 - - - - GIG directory - Mapp för GIG-filer - - - - Theme directory - Temamapp - - - - Background artwork - Bakgrundskonstverk - - - - Some changes require restarting. - Några ändringar kräver omstart. - - - - Autosave interval: %1 - Intervall för att spara automatisk: %1 - - - - Choose the LMMS working directory - Välj LMMS-arbetsmapp - - - - Choose your VST plugins directory - Välj din VST-tilläggsmapp - - - - Choose your LADSPA plugins directory - Välj din LADSPA-tilläggsmapp - - - - Choose your default SF2 - Välj din standard SF2 - - - - Choose your theme directory - Välj din temamapp - - - - Choose your background picture - Välj din bakgrundsbild - - - - - Paths - Sökvägar - - - - OK - OK - - - - Cancel - Avbryt - - - - Frames: %1 -Latency: %2 ms - Ramar: %1 -Latens: %2 ms - - - - Choose your GIG directory - Välj din GIG-mapp - - - - Choose your SF2 directory - Välj din SF2-mapp - - - - minutes - minuter - - - - minute - minut - - - - Disabled - Inaktiverad + + A soundfont %1 could not be loaded. + - SidInstrument + lmms::SfxrInstrument - + + Wave + + + + + lmms::SidInstrument + + Cutoff frequency - Cutoff frekvens + - + Resonance - Resonans + + + + + Filter type + - Filter type - Filtertyp - - - Voice 3 off - Röst 3 av + - + Volume - Volym + - + Chip model - Chipmodell + - SidInstrumentView + lmms::SlicerT - - Volume: - Volym: + + Note threshold + - - Resonance: - Resonans: + + FadeOut + - - - Cutoff frequency: - Brytfrekvens: + + Original bpm + - - High-pass filter - Högpassfilter + + Slice snap + - - Band-pass filter - Bandpassfilter + + BPM sync + - - Low-pass filter - Lågpassfilter + + + slice_%1 + - - Voice 3 off - Röst 3 av - - - - MOS6581 SID - MOS6581 SID - - - - MOS8580 SID - MOS8580 SID - - - - - Attack: - Attack: - - - - - Decay: - Decay: - - - - Sustain: - Sustain: - - - - - Release: - Release: - - - - Pulse Width: - Pulsbredd: - - - - Coarse: - Grov: - - - - Pulse wave - Pulsvåg - - - - Triangle wave - Triangelvåg - - - - Saw wave - Sågtandsvåg - - - - Noise - Brus - - - - Sync - Synkronisera - - - - Ring modulation - Ringmodulering - - - - Filtered - Filtrerad - - - - Test - Testa - - - - Pulse width: - Pulsbredd: + + Sample not found: %1 + - SideBarWidget + lmms::Song - - Close - Stäng - - - - Song - - + Tempo - Tempo + - + Master volume - Huvudvolym + - + Master pitch - Huvudtonhöjd - - - - Aborting project load + Aborting project load + + + + Project file contains local paths to plugins, which could be used to run malicious code. - + Can't load project: Project file contains local paths to plugins. - Det går inte att läsa in projektet: Projektfilen innehåller lokala sökvägar till tillägg. + - + LMMS Error report - LMMS Felrapport + - + (repeated %1 times) - (repetera %1 gånger) + - + The following errors occurred while loading: - Följande fel inträffade under inläsning: + - SongEditor + lmms::StereoEnhancerControls - - Could not open file - Kunde inte öppna fil + + Width + + + + + lmms::StereoMatrixControls + + + Left to Left + - + + Left to Right + + + + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + + + + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. - Det gick inte att öppna filen %1. Du har förmodligen inga behörigheter att läsa den här filen. - Se till att ha åtminstone läsbehörigheter till filen och försök igen. + - + Operation denied - Operation nekad + - + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. - - - + + + Error - Fel + - + Couldn't create bundle folder. - + Couldn't create resources folder. - Det gick inte att skapa resursmappen. - - - - Failed to copy resources. - Det gick inte att kopiera resurser. - - - - Could not write file - Kunde inte skriva fil - - - - Could not open %1 for writing. You probably are not permitted towrite to this file. Please make sure you have write-access to the file and try again. - - This %1 was created with LMMS %2 - Denna %1 har skapats med LMMS %2 + + Failed to copy resources. + - + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + Error in file - Fel i filen + - + The file %1 seems to contain errors and therefore can't be loaded. - Filen %1 verkar innehålla fel och kan därför inte läsas in. + - - Version difference - Versions-skillnad - - - + template - mall + - + project - projekt + - + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + Tempo - Tempo + - + TEMPO - TEMPO + - + Tempo in BPM - Tempot i BPM + - - High quality mode - Hög kvalitet läge - - - - - + + + Master volume - Huvudvolym + - - - - Master pitch - Huvudtonhöjd + + + + Global transposition + - + + 1/%1 Bar + + + + + %1 Bars + + + + Value: %1% - Värde: %1% + - - Value: %1 semitones - Värde: %1 halvtoner + + Value: %1 keys + - SongEditorWindow + lmms::gui::SongEditorWindow - + Song-Editor - Låtredigerare + + + + + Play song (Space) + + + + + Record samples from Audio-device + - Play song (Space) - Spela låt (Mellanslag) + Record samples from Audio-device while playing song or pattern track + - Record samples from Audio-device - Spela in samplingar från ljudenheten - - - - Record samples from Audio-device while playing song or BB track - Spela in samplingar från ljudenheten medan du spelar låten eller BB-spåret - - - Stop song (Space) - Stoppa låt (Mellanslag) + - + Track actions - Spåråtgärder + - - Add beat/bassline - Lägg till takt/basgång + + Add pattern-track + - + Add sample-track - Lägg till ljudspår + - + Add automation-track - Lägg till automationsspår + - + Edit actions - Redigera åtgärder + - + Draw mode - Ritläge + - + Knife mode (split sample clips) - + Edit mode (select and move) - Redigeringsläge (välj och flytta) - - - - Timeline controls - Tidslinjekontroller - - - - Bar insert controls - Infogningskontroller för takt - - - - Insert bar - Infoga takt - - - - Remove bar - Ta bort takt - - - - Zoom controls - Zoomningskontroller - - - - Horizontal zooming - Horisontell zoomning - - - - Snap controls - Fäst kontroller - - - - - Clip snapping size - Fäststorlek för klipp - - - - Toggle proportional snap on/off - Växla proportionell fästning av/på - - - - Base snapping size - Grundläggande fäststorlek - - - - StepRecorderWidget - - - Hint - Ledtråd - - - - Move recording curser using <Left/Right> arrows - Flytta inspelningsmarkör med <Vänster/Höger>-pilarna - - - - SubWindow - - - Close - Stäng - - - - Maximize - Maximera - - - - Restore - Återställ - - - - TabWidget - - - - Settings for %1 - Inställningar för %1 - - - - TemplatesMenu - - - New from template - Nytt från mall - - - - TempoSyncKnob - - - - Tempo Sync - Temposynkronisering - - - - No Sync - Ingen synkronisering - - - - Eight beats - Åtta takter - - - - Whole note - Hel-not - - - - Half note - Halvnot - - - - Quarter note - Fjärdedelsnot - - - - 8th note - 8:e noten - - - - 16th note - 16:e noten - - - - 32nd note - 32:e noten - - - - Custom... - Anpassad... - - - - Custom - Anpassad - - - - Synced to Eight Beats - Synkroniserad till Åtta Takter - - - - Synced to Whole Note - Synkroniserad till helnoten - - - - Synced to Half Note - Synkroniserad till halvnoten - - - - Synced to Quarter Note - Synkroniserad till fjärdedelsnoten - - - - Synced to 8th Note - Synkroniserad till 8:e noten - - - - Synced to 16th Note - Synkroniserad till 16:e noten - - - - Synced to 32nd Note - Synkroniserad till 32:e noten - - - - TimeDisplayWidget - - - Time units - Tidsenheter - - - - MIN - MIN - - - - SEC - SEK - - - - MSEC - MSEK - - - - BAR - TAKT - - - - BEAT - TAKT - - - - TICK - TICK - - - - TimeLineWidget - - - Auto scrolling - Automatisk rullning - - - - Loop points - Looppunkter - - - - After stopping go back to beginning - Efter at ha stannat, gå tillbaka till början - - - - After stopping go back to position at which playing was started - Efter att ha stoppat gå tillbaka till position där spelningen startades - - - - After stopping keep position - Efter stopp behåll positionen - - - - Hint - Ledtråd - - - - Press <%1> to disable magnetic loop points. - Tryck på <%1> för att inaktivera magnetiska slingpunkter. - - - - Track - - - Mute - Tysta - - - - Solo - Solo - - - - TrackContainer - - - Couldn't import file - Kunde inte importera filen - - - - Couldn't find a filter for importing file %1. -You should convert this file into a format supported by LMMS using another software. - Kunde inte hitta ett filter för att importera filen %1. -Du bör konvertera filen till ett format som stöds av LMMS genom att använda ett annat program. - - - - Couldn't open file - Kunde inte öppna filen - - - - Couldn't open file %1 for reading. -Please make sure you have read-permission to the file and the directory containing the file and try again! - Kunde inte öppna filen %1 för läsning. -Se till att du har läsrättigheter för filen och mappen som innehåller filen och försök igen! - - - - Loading project... - Läser in projekt... - - - - - Cancel - Avbryt - - - - - Please wait... - Vänligen vänta... - - - - Loading cancelled - Inläsningen avbruten - - - - Project loading was cancelled. - Projektinläsningen avbröts. - - - - Loading Track %1 (%2/Total %3) - Läser in spår %1 (%2/Totalt %3) - - - - Importing MIDI-file... - Importerar MIDI-fil... - - - - Clip - - - Mute - Tysta - - - - ClipView - - - Current position - Aktuell position - - - - Current length - Aktuell längd - - - - - %1:%2 (%3:%4 to %5:%6) - %1:%2 (%3:%4 till %5:%6) - - - - Press <%1> and drag to make a copy. - Håll nere <%1> och dra för att kopiera. - - - - Press <%1> for free resizing. - Tryck på <%1> för att ändra storleken. - - - - Hint - Ledtråd - - - - Delete (middle mousebutton) - Ta bort (musens mitt-knapp) - - - - Delete selection (middle mousebutton) - Ta bort markering (mittenmusknapp) - - - - Cut - Klipp ut - - - - Cut selection - Klipp ut markering - - - - Merge Selection - Sammanfoga merkering - - - - Copy - Kopiera - - - - Copy selection - Kopiera markering - - - - Paste - Klistra in - - - - Mute/unmute (<%1> + middle click) - Tysta/avtysta (<%1> + mittenklick) - - - - Mute/unmute selection (<%1> + middle click) - Tysta/öppna markering (<%1> + mittenklick) - - - - Set clip color - - Use track color - Använd spårfärg + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + + + + + + Zoom + + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + - TrackContentWidget + lmms::gui::StepRecorderWidget - + + Hint + + + + + Move recording curser using <Left/Right> arrows + + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + + Close + + + + + Maximize + + + + + Restore + + + + + lmms::gui::TapTempoView + + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + + + + + lmms::gui::TemplatesMenu + + + New from template + + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + + + + + MIN + + + + + SEC + + + + + MSEC + + + + + BAR + + + + + BEAT + + + + + TICK + + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + + + + + After stopping go back to beginning + + + + + After stopping go back to position at which playing was started + + + + + After stopping keep position + + + + + Hint + + + + + Press <%1> to disable magnetic loop points. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + Paste - Klistra in + - TrackOperationsWidget + lmms::gui::TrackOperationsWidget - + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. - Tryck på <%1> medan du klickar på flytta-grepp för att börja en ny dra och släpp åtgärd. + Actions - Åtgärder + Mute - Tysta + Solo - Solo + - + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? - + Confirm removal - Bekräfta borttagning + - + Don't ask again - Fråga inte igen + - + Clone this track - Klona detta spår + - + Remove this track - Ta bort detta spår + + + + + Clear this track + - Clear this track - Rensa detta spår - - - Channel %1: %2 - FX %1: %2 + - - Assign to new mixer Channel - Koppla till ny FX-kanal + + Assign to new Mixer Channel + - + Turn all recording on - Slå på all inspelning + - + Turn all recording off - Slå av all inspelning + + + + + Track color + - Change color - Byt färg + Change + + + + + Reset + - Reset color to default - Nollställ färg till standard + Pick random + - Set random color - Ställ in slumpmässig färg - - - - Clear clip colors + Reset clip colors - TripleOscillatorView + lmms::gui::TripleOscillatorView - + Modulate phase of oscillator 1 by oscillator 2 - Modulera fasen för oscillator 1 med oscillator 2 + - + Modulate amplitude of oscillator 1 by oscillator 2 - Modulera amplitud för oscillator 1 med oscillator 2 - - - - Mix output of oscillators 1 & 2 - Mixa utgångarna från oscillatorerna 1 & 2 - - - - Synchronize oscillator 1 with oscillator 2 - Synkronisera oscillatorn 1 med oscillatorn 2 + - Modulate frequency of oscillator 1 by oscillator 2 - Modulera frekvensen för oscillator 1 med oscillator 2 + Mix output of oscillators 1 & 2 + + + + + Synchronize oscillator 1 with oscillator 2 + + Modulate frequency of oscillator 1 by oscillator 2 + + + + Modulate phase of oscillator 2 by oscillator 3 - Modulera fasen för oscillator 2 med oscillator 3 + - + Modulate amplitude of oscillator 2 by oscillator 3 - Modulera amplituden för oscillator 2 med oscillator 3 + - + Mix output of oscillators 2 & 3 - Mixa utgångarna från oscialltorerna 2 & 3 + - + Synchronize oscillator 2 with oscillator 3 - Synkronisera oscillatorn 2 med oscillatorn 3 + - + Modulate frequency of oscillator 2 by oscillator 3 - Modulera frekvensen för oscillator 2 med oscillator 3 + - + Osc %1 volume: - Osc %1 volym: + - + Osc %1 panning: - Osc %1 panorering: + - - Osc %1 coarse detuning: - Osc %1 grov urstämning: - - - - semitones - halvtoner - - - - Osc %1 fine detuning left: - Osc %1 fin urstämning vänster: - - - + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + cents - hundradelar + - + Osc %1 fine detuning right: - Osc %1 fin urstämning höger: + - + Osc %1 phase-offset: - Osc %1 fasposition: + - - + + degrees - grader + - + Osc %1 stereo phase-detuning: - Osc %1 stereo fasurstämning: + - + Sine wave - Sinusvåg + - + Triangle wave - Triangelvåg + - + Saw wave - Sågtandsvåg + - + Square wave - Fyrkantvåg + - + Moog-like saw wave - Moogliknande sågtandsvåg + - + Exponential wave - Exponentiell våg + - + White noise - Vitt brus + - + User-defined wave - Användardefinierad våg + + + + + Use alias-free wavetable oscillators. + - VecControls - - - Display persistence amount - Visa avklingningsmängd - - - - Logarithmic scale - Logaritmisk skala - - - - High quality - Hög kvalitet - - - - VecControlsDialog - - - HQ - HQ - + lmms::gui::VecControlsDialog + HQ + + + + Double the resolution and simulate continuous analog-like trace. - Fördubbla upplösningen och simulera kontinuerligt analogliknande svep. + Log. scale - Log.-skala + Display amplitude on logarithmic scale to better see small values. - Visa amplitud på logaritmisk skala för att bättre se mindre värden. + + + + + Persist. + - Persist. - Avkling. + Trace persistence: higher amount means the trace will stay bright for longer time. + - Trace persistence: higher amount means the trace will stay bright for longer time. - Svepavklingning: högre mängd innebär att svepet kommer att förbli ljust under en längre tid. - - - Trace persistence - Svepavklingning + - VersionedSaveDialog - - - Increment version number - Ökning versionsnummer - + lmms::gui::VersionedSaveDialog + Increment version number + + + + Decrement version number - Minska versionsnummer + - + Save Options - Spara Alternativ + - + already exists. Do you want to replace it? - finns redan. Vill du ersätta den? + - VestigeInstrumentView + lmms::gui::VestigeInstrumentView - - + + Open VST plugin - Öppna VST-tillägg + - + Control VST plugin from LMMS host - Kontroll VST-tillägg från LMMS-värd + - + Open VST plugin preset - Öppna VST-tilläggsförinställning + - + Previous (-) - Tidigare (-) + - + Save preset - Spara förinställning + - + Next (+) - Nästa (+) + - + Show/hide GUI - Visa/dölj användargränssnitt + - + Turn off all notes - Stäng av alla noter + - + DLL-files (*.dll) - DLL-filer (*.dll) + - + EXE-files (*.exe) - EXE-filer (*.exe) + + + + + SO-files (*.so) + + + + + No VST plugin loaded + - No VST plugin loaded - Inget VST-tillägg inläst + Preset + - Preset - Förinställning - - - by - av + - + - VST plugin control - - VST tilläggskontroll + - VstEffectControlDialog + lmms::gui::VibedView - + + Enable waveform + + + + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + Show/hide - Visa/dölj + - + Control VST plugin from LMMS host - Kontroll VST-tillägg från LMMS-värd + - + Open VST plugin preset - Öppna VST-tilläggsförinställning + - + Previous (-) - Tidigare (-) + - + Next (+) - Nästa (+) + - + Save preset - Spara förinställning + - - + + Effect by: - Effekt skapad av: + - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + - VstPlugin + lmms::gui::WatsynView - - - The VST plugin %1 could not be loaded. - VST-tillägget %1 kunde inte läsas in. + + + + + Volume + - - Open Preset - Öppna Förinställning - - - - - Vst Plugin Preset (*.fxp *.fxb) - Vst-tilläggsförinställning (*.fxp *.fxb) - - - - : default - : standard - - - - Save Preset - Spara Förinställning - - - - .fxp - .fxp - - - - .FXP - .FXP - - - - .FXB - .FXB - - - - .fxb - .fxb - - - - Loading plugin - Läser in tillägget - - - - Please wait while loading VST plugin... - Vänligen vänta medan VST-tillägget läses in... - - - - WatsynInstrument - - - Volume A1 - Volym A1 - - - - Volume A2 - Volym A2 - - - - Volume B1 - Volym B2 - - - - Volume B2 - Volym B2 - - - - Panning A1 - Panorering A1 - - - - Panning A2 - Panorering A2 - - - - Panning B1 - Panorering B1 - - - - Panning B2 - Panorering B2 - - - - Freq. multiplier A1 - Frekv. multiplikator A1 - - - - Freq. multiplier A2 - Frekv. multiplikator A2 - - - - Freq. multiplier B1 - Frekv. multiplikator B1 - - - - Freq. multiplier B2 - Frekv. multiplikator B2 - - - - Left detune A1 - Vänster urstämning A1 - - - - Left detune A2 - Vänster urstämning A2 - - - - Left detune B1 - Vänster urstämning B1 - - - - Left detune B2 - Vänster urstämning B2 - - - - Right detune A1 - Höger urstämning A1 - - - - Right detune A2 - Höger urstämning A2 - - - - Right detune B1 - Höger urstämning B1 - - - - Right detune B2 - Höger urstämning B2 - - - - A-B Mix - A-B Mix - - - - A-B Mix envelope amount - A-B-mix konturmängd - - - - A-B Mix envelope attack - A-B-mix konturstegring - - - - A-B Mix envelope hold - A-B-mix konturhåll - - - - A-B Mix envelope decay - A-B-mix konturavklingning - - - - A1-B2 Crosstalk - A1-B2-överhörning - - - - A2-A1 modulation - A2-A1 modulering - - - - B2-B1 modulation - B2-B1 modulering - - - - Selected graph - Vald graf - - - - WatsynView - + + - - - Volume - Volym + Panning + + + - - - Panning - Panorering + Freq. multiplier + + + - - - Freq. multiplier - Frekv.-multiplikator - - - - - - Left detune - Vänster urstämning + + + + + + + - - - - - - cents - hundradelar + + + + + + + + Right detune + + + + + A-B Mix + - - - - Right detune - Höger urstämning - - - - A-B Mix - A-B Mix - - - Mix envelope amount - Mix konturmängd + - + Mix envelope attack - Mix konturstegring + - + Mix envelope hold - Mix konturhåll + - + Mix envelope decay - Mix konturavklingning + - + Crosstalk - Överhörning + - + Select oscillator A1 - Välj oscillator A1 + - + Select oscillator A2 - Välj oscillator A2 + - + Select oscillator B1 - Välj oscillator B1 + - + Select oscillator B2 - Välj oscillator B2 + - + Mix output of A2 to A1 - Mixa utgången från A2 till A1 + - + Modulate amplitude of A1 by output of A2 - Modulera amplituden av A1 med utgången från A2 + - + Ring modulate A1 and A2 - Ringmodulera A1 och A2 + - + Modulate phase of A1 by output of A2 - Modulera fasen av A1 med utången för A2 + - + Mix output of B2 to B1 - Blanda utgång B2 till B1 + - + Modulate amplitude of B1 by output of B2 - Modulera amplituden av B1 med utången från B2 + - + Ring modulate B1 and B2 - Ringmodulera B1 och B2 + - + Modulate phase of B1 by output of B2 - Modulera fasen av B1 med utgången från B2 + - - - - + + + + Draw your own waveform here by dragging your mouse on this graph. - Rita din egen vågform här genom att dra musen på den här grafen. + - + Load waveform - Ladda vågform + - + Load a waveform from a sample file - Läs in en vågform från en sampelfil + - + Phase left - Fas vänster + - + Shift phase by -15 degrees - Skifta fasen -15 grader + - + Phase right - Fas höger + - + Shift phase by +15 degrees - Skifta fasen +15 grader + + + + + + Normalize + - Normalize - Normalisera - - - - Invert - Invertera + - - + + Smooth - Jämna ut + - - + + Sine wave - Sinusvåg + - - - + + + Triangle wave - Triangelvåg + - + Saw wave - Sågtandsvåg + - - + + Square wave - Fyrkantvåg + - Xpressive + lmms::gui::WaveShaperControlDialog - - Selected graph - Vald graf - - - - A1 - A1 - - - - A2 - A2 - - - - A3 - A3 - - - - W1 smoothing - W1-utmjukning - - - - W2 smoothing - W2-utmjukning - - - - W3 smoothing - W3-utmjukning - - - - Panning 1 - Panorering 1 - - - - Panning 2 - Panorering 2 - - - - Rel trans - Rel. trans. - - - - XpressiveView - - - Draw your own waveform here by dragging your mouse on this graph. - Rita din egen vågform här genom att dra musen på den här grafen. - - - - Select oscillator W1 - Välj oscillator W1 - - - - Select oscillator W2 - Välj oscillator W2 - - - - Select oscillator W3 - Välj oscillator W3 - - - - Select output O1 - Välj utgång O1 - - - - Select output O2 - Välj utgång O2 - - - - Open help window - Öppna hjälpfönstret - - - - - Sine wave - Sinusvåg - - - - - Moog-saw wave - Moog-sågtandsvåg - - - - - Exponential wave - Exponentiell våg - - - - - Saw wave - Sågtandsvåg - - - - - User-defined wave - Användardefinierad våg - - - - - Triangle wave - Triangelvåg - - - - - Square wave - Fyrkantvåg - - - - - White noise - Vitt brus - - - - WaveInterpolate - VågInterpolering - - - - ExpressionValid - UttryckGiltig - - - - General purpose 1: - Allmän användning 1: - - - - General purpose 2: - Allmän användning 2: - - - - General purpose 3: - Allmän användning 3: - - - - O1 panning: - O1 panorering: - - - - O2 panning: - O2 panorering: - - - - Release transition: - Avklingningsövergång: - - - - Smoothness - Jämnhet - - - - ZynAddSubFxInstrument - - - Portamento - Portamento - - - - Filter frequency - Filterfrekvens - - - - Filter resonance - Filterresonans - - - - Bandwidth - Bandbredd - - - - FM gain - FM-förstärkning - - - - Resonance center frequency - Centerfrekvens för resonans - - - - Resonance bandwidth - Resonansbandbredd - - - - Forward MIDI control change events - Vidarebefordra MIDI-kontrollförändringshändelser - - - - ZynAddSubFxView - - - Portamento: - Portamento: - - - - PORT - PORT - - - - Filter frequency: - Filterfrekvens: - - - - FREQ - FREQ - - - - Filter resonance: - Filterresonans: - - - - RES - UPPL. - - - - Bandwidth: - Bandbredd: - - - - BW - BW - - - - FM gain: - FM-förstärkning: - - - - FM GAIN - FM FÖRSTÄRKNING - - - - Resonance center frequency: - Resonanscenterfrekvens: - - - - RES CF - UPPL. CF - - - - Resonance bandwidth: - Resonans bandbredd: - - - - RES BW - UPPL BW - - - - Forward MIDI control changes - Vidarebefordra MIDI-kontrollförändringar - - - - Show GUI - Visa användargränssnitt - - - - AudioFileProcessor - - - Amplify - Amplifiera - - - - Start of sample - Start på ljudfil - - - - End of sample - Slut på ljudfil - - - - Loopback point - Loopback punkt - - - - Reverse sample - Spela baklänges - - - - Loop mode - Slinga-läge - - - - Stutter - Stamning - - - - Interpolation mode - Interpoleringsläge - - - - None - Ingen - - - - Linear - Linjär - - - - Sinc - Sinc - - - - Sample not found: %1 - Ljudfil hittades inte: %1 - - - - BitInvader - - - Sample length - Ljudfilens längd - - - - BitInvaderView - - - Sample length - Ljudfilens längd - - - - Draw your own waveform here by dragging your mouse on this graph. - Rita din egen vågform här genom att dra musen på den här grafen. - - - - - Sine wave - Sinusvåg - - - - - Triangle wave - Triangelvåg - - - - - Saw wave - Sågtandsvåg - - - - - Square wave - Fyrkantvåg - - - - - White noise - Vitt brus - - - - - User-defined wave - Användardefinierad våg - - - - - Smooth waveform - Jämn vågform - - - - Interpolation - Interpolering - - - - Normalize - Normalisera - - - - DynProcControlDialog - - + INPUT - INGÅNG + - + Input gain: - Ingångsförstärkning: + - + OUTPUT - UTGÅNG - - - - Output gain: - Utgångsförstärkning: - - - - ATTACK - ATTACK - - - - Peak attack time: - Toppattacktid: - - - - RELEASE - AVKLINGNING - - - - Peak release time: - Toppavklingningstid: - - - - - Reset wavegraph - Återställ vågdiagram - - - - - Smooth wavegraph - Jämnt vågdiagram - - - - - Increase wavegraph amplitude by 1 dB - Öka vågdiagramamplituden med 1 dB - - - - - Decrease wavegraph amplitude by 1 dB - Minska vågformsamplitud med 1dB - - - - Stereo mode: maximum - Stereoläge: maximal - - - - Process based on the maximum of both stereo channels - Hantera baserad på max för båda stereokanalerna - - - - Stereo mode: average - Stereoläge: medelvärdesbildning - - - - Process based on the average of both stereo channels - Hantera baserat på genomsnittet av båda stereokanalerna - - - - Stereo mode: unlinked - Stereoläge: olänkat - - - - Process each stereo channel independently - Hantera varje stereokanal obereoende - - - - DynProcControls - - - Input gain - Ingångsförstärkning - - - - Output gain - Utgångsförstärkning - - - - Attack time - Attacktid - - - - Release time - Avklingningstid - - - - Stereo mode - Stereo-läge - - - - graphModel - - - Graph - Graf - - - - KickerInstrument - - - Start frequency - Startfrekvens - - - - End frequency - Slutfrekvens - - - - Length - Längd - - - - Start distortion - Start för distorsion - - - - End distortion - Slut för distorsion - - - - Gain - Förstärkning - - - - Envelope slope - Konturkurva - - - - Noise - Brus - - - - Click - Klick - - - - Frequency slope - Frekvenslutning - - - - Start from note - Starta från not - - - - End to note - Sluta på not - - - - KickerInstrumentView - - - Start frequency: - Startfrekvens: - - - - End frequency: - Slutfrekvens: - - - - Frequency slope: - Frekvenslutning: - - - - Gain: - Förstärkning: - - - - Envelope length: - Konturlängd: - - - - Envelope slope: - Konturkurva: - - - - Click: - Klick: - - - - Noise: - Brus: - - - - Start distortion: - Startförvrängning: - - - - End distortion: - Slut för distorsion: - - - - LadspaBrowserView - - - - Available Effects - Tillgängliga effekter - - - - - Unavailable Effects - Otillgängliga effekter - - - - - Instruments - Instrument - - - - - Analysis Tools - Analysverktyg - - - - - Don't know - Vet inte - - - - Type: - Typ: - - - - LadspaDescription - - - Plugins - Tillägg - - - - Description - Beskrivning - - - - LadspaPortDialog - - - Ports - Portar - - - - Name - Namn - - - - Rate - Värdera - - - - Direction - Riktning - - - - Type - Typ - - - - Min < Default < Max - Min < Standard < Max - - - - Logarithmic - Logaritmisk - - - - SR Dependent - SR-beroende - - - - Audio - Ljud - - - - Control - Kontroll - - - - Input - Ingång - - - - Output - Utgång - - - - Toggled - Växlad - - - - Integer - Heltal - - - - Float - Flyttal - - - - - Yes - Ja - - - - Lb302Synth - - - VCF Cutoff Frequency - VCF Brytfrekvens - - - - VCF Resonance - VCF-resonans - - - - VCF Envelope Mod - VCF-konturmod. - - - - VCF Envelope Decay - VCF-konturavsänkning - - - - Distortion - Förvrängning - - - - Waveform - Vågform - - - - Slide Decay - Avklingning för glidning - - - - Slide - Glidning - - - - Accent - Betoning - - - - Dead - Död - - - - 24dB/oct Filter - 24db/oct-filter - - - - Lb302SynthView - - - Cutoff Freq: - Brytfrekv.: - - - - Resonance: - Resonans: - - - - Env Mod: - Knt.-mod.: - - - - Decay: - Decay: - - - - 303-es-que, 24dB/octave, 3 pole filter - 303-es-liknande 24dB/oktav, 3poligt filter - - - - Slide Decay: - Glidningsavklingning: - - - - DIST: - DIST: - - - - Saw wave - Sågtandsvåg - - - - Click here for a saw-wave. - Klicka här för sågtandsvåg - - - - Triangle wave - Triangelvåg - - - - Click here for a triangle-wave. - Klicka här för triangelvåg. - - - - Square wave - Fyrkantvåg - - - - Click here for a square-wave. - Klicka här för fyrkantvåg - - - - Rounded square wave - Avrundad fyrkantsvåg - - - - Click here for a square-wave with a rounded end. - Klicka här för en fyrkantsvåg med rundat slut. - - - - Moog wave - Moog-våg - - - - Click here for a moog-like wave. - Klicka här för en moog-liknande våg. - - - - Sine wave - Sinusvåg - - - - Click for a sine-wave. - Klicka för sinusvåg - - - - - White noise wave - Vitt brus-våg - - - - Click here for an exponential wave. - Klicka här för en exponentiell våg. - - - - Click here for white-noise. - Klicka här för vitt brus. - - - - Bandlimited saw wave - Bandbegränsad sågtandsvåg - - - - Click here for bandlimited saw wave. - Klicka här för bandbegränsad sågtandsvåg. - - - - Bandlimited square wave - Bandbegränsad fyrkantsvåg - - - - Click here for bandlimited square wave. - Klicka här för bandbegränsad fyrkantsvåg. - - - - Bandlimited triangle wave - Bandbegränsad triangelvåg - - - - Click here for bandlimited triangle wave. - Klicka här för bandbegränsad triangelvåg. - - - - Bandlimited moog saw wave - Bandbegränsad moog sågtandsvåg - - - - Click here for bandlimited moog saw wave. - Klicka här för bandbegränsad moog sågtandsvåg. - - - - MalletsInstrument - - - Hardness - Hårdhet - - - - Position - Position - - - - Vibrato gain - Vibratoförstärkning - - - - Vibrato frequency - Vibrato frekvens - - - - Stick mix - Kvistmix - - - - Modulator - Modulator - - - - Crossfade - Övertoning - - - - LFO speed - LFO-hastighet - - - - LFO depth - LFO-djup - - - - ADSR - ADSR - - - - Pressure - Tryck - - - - Motion - Rörelse - - - - Speed - Hastighet - - - - Bowed - Med stråke - - - - Spread - Spridning - - - - Marimba - Marimba - - - - Vibraphone - Vibrafon - - - - Agogo - Agogo - - - - Wood 1 - Trä 1 - - - - Reso - Uppl. - - - - Wood 2 - Trä 2 - - - - Beats - Takter - - - - Two fixed - Två fixa - - - - Clump - Klump - - - - Tubular bells - Tubklockor - - - - Uniform bar - Enhetlig takt - - - - Tuned bar - Stämt stycke - - - - Glass - Glas - - - - Tibetan bowl - Tibetansk skål - - - - MalletsInstrumentView - - - Instrument - Instrument - - - - Spread - Spridning - - - - Spread: - Spridning: - - - - Missing files - Saknade filer - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - Din Stk-installation verkar vara ofullständig. Se till att hela Stk-paketet är installerat! - - - - Hardness - Hårdhet - - - - Hardness: - Hårdhet: - - - - Position - Position - - - - Position: - Position: - - - - Vibrato gain - Vibratoförstärkning - - - - Vibrato gain: - Vibratoförstärkning: - - - - Vibrato frequency - Vibrato frekvens - - - - Vibrato frequency: - Vibrato frekvens: - - - - Stick mix - Kvistmix - - - - Stick mix: - Kvistmix: - - - - Modulator - Modulator - - - - Modulator: - Modulator: - - - - Crossfade - Övertoning - - - - Crossfade: - Övertoning: - - - - LFO speed - LFO-hastighet - - - - LFO speed: - LFO-hastighet: - - - - LFO depth - LFO-djup - - - - LFO depth: - LFO-djup: - - - - ADSR - ADSR - - - - ADSR: - ADSR: - - - - Pressure - Tryck - - - - Pressure: - Tryck: - - - - Speed - Hastighet - - - - Speed: - Hastighet: - - - - ManageVSTEffectView - - - - VST parameter control - - VST-parameterkontroll - - - - VST sync - VST-synk - - - - - Automated - Automatiserad - - - - Close - Stäng - - - - ManageVestigeInstrumentView - - - - - VST plugin control - - VST tilläggskontroll - - - - VST Sync - VST-synk - - - - - Automated - Automatiserad - - - - Close - Stäng - - - - OrganicInstrument - - - Distortion - Förvrängning - - - - Volume - Volym - - - - OrganicInstrumentView - - - Distortion: - Förvrängning: - - - - Volume: - Volym: - - - - Randomise - Slumpa - - - - - Osc %1 waveform: - Osc. %1 vågform: - - - - Osc %1 volume: - Osc %1 volym: - - - - Osc %1 panning: - Osc %1 panorering: - - - - Osc %1 stereo detuning - Osc. %1 stereourstämning - - - - cents - hundradelar - - - - Osc %1 harmonic: - Osc %1 harmonisk: - - - - PatchesDialog - - - Qsynth: Channel Preset - Qsynth: Kanal förinställd - - - - Bank selector - Bankväljare - - - - Bank - Bank - - - - Program selector - Programväljare - - - - Patch - Inställning - - - - Name - Namn - - - - OK - OK - - - - Cancel - Avbryt - - - - Sf2Instrument - - - Bank - Bank - - - - Patch - Inställning - - - - Gain - Förstärkning - - - - Reverb - Reverb - - - - Reverb room size - Rumsstorlek för reverb - - - - Reverb damping - Dämpning för reverb - - - - Reverb width - Bredd för reverb - - - - Reverb level - Nivå för reverb - - - - Chorus - Korus - - - - Chorus voices - Korus-röster - - - - Chorus level - Korus-nivå - - - - Chorus speed - Korus-hastighet - - - - Chorus depth - Korus-djup - - - - A soundfont %1 could not be loaded. - En SoundFont %1 kunde inte läsas in. - - - - Sf2InstrumentView - - - - Open SoundFont file - Öppna SoundFont-fil - - - - Choose patch - Välj inställning - - - - Gain: - Förstärkning: - - - - Apply reverb (if supported) - Applicera reverb (om det stöds) - - - - Room size: - Rumstorlek: - - - - Damping: - Dämpning: - - - - Width: - Bredd: - - - - - Level: - Nivå: - - - - Apply chorus (if supported) - Tillämpa korus (om det stöds) - - - - Voices: - Röster: - - - - Speed: - Hastighet: - - - - Depth: - Djup: - - - - SoundFont Files (*.sf2 *.sf3) - SoundFont-filer (*.sf2 *.sf3) - - - - SfxrInstrument - - - Wave - Våg - - - - StereoEnhancerControlDialog - - - WIDTH - BREDD - - - - Width: - Bredd: - - - - StereoEnhancerControls - - - Width - Bredd - - - - StereoMatrixControlDialog - - - Left to Left Vol: - Vänster till Vänster Vol.: - - - - Left to Right Vol: - Vänster till Höger Vol.: - - - - Right to Left Vol: - Höger till Vänster Vol.: - - - - Right to Right Vol: - Höger till Höger vol.: - - - - StereoMatrixControls - - - Left to Left - Vänster till Vänster - - - - Left to Right - Vänster till Höger - - - - Right to Left - Höger till Vänster - - - - Right to Right - Höger till Höger - - - - VestigeInstrument - - - Loading plugin - Läser in plugin - - - - Please wait while loading the VST plugin... - Vänligen vänta medan VST-tillägg läses in... - - - - Vibed - - - String %1 volume - Sträng %1 volym - - - - String %1 stiffness - Sträng %1 styvhet - - - - Pick %1 position - Välj %1 position - - - - Pickup %1 position - Mikrofon %1-position - - - - String %1 panning - Sträng %1 panorering - - - - String %1 detune - Sträng %1 urstämning - - - - String %1 fuzziness - Sträng %1-luddighet - - - - String %1 length - Sträng %1-längd - - - - Impulse %1 - Impuls %1 - - - - String %1 - Sträng %1 - - - - VibedView - - - String volume: - Strängvolym: - - - - String stiffness: - Strängstyvhet: - - - - Pick position: - Plektrumposition: - - - - Pickup position: - Mikrofonposition: - - - - String panning: - Strängpanorering: - - - - String detune: - Strängurstämning: - - - - String fuzziness: - Strängluddighet: - - - - String length: - Stränglängd: - - - - Impulse - Impuls - - - - Octave - Oktav - - - - Impulse Editor - Impulse Editor - - - - Enable waveform - Aktivera vågform - - - - Enable/disable string - Aktivera/inaktivera sträng - - - - String - Sträng - - - - - Sine wave - Sinusvåg - - - - - Triangle wave - Triangelvåg - - - - - Saw wave - Sågtandsvåg - - - - - Square wave - Fyrkantvåg - - - - - White noise - Vitt brus - - - - - User-defined wave - Användardefinierad våg - - - - - Smooth waveform - Jämn vågform - - - - - Normalize waveform - Normalisera vågform - - - - VoiceObject - - - Voice %1 pulse width - Röst %1 pulsbredd - - - - Voice %1 attack - Röst %1 attack - - - - Voice %1 decay - Röst %1 avklingning - - - - Voice %1 sustain - Röst %1 håll - - - - Voice %1 release - Röst %1 avklingning - - - - Voice %1 coarse detuning - Röst %1 grovurstämning - - - - Voice %1 wave shape - Röst %1 vågform - - - - Voice %1 sync - Röst %1 synk - - - - Voice %1 ring modulate - Röst %1 ringmodulering - - - - Voice %1 filtered - Röst %1 filtrerad - - - - Voice %1 test - Röst %1 test - - - - WaveShaperControlDialog - - - INPUT - INGÅNG - - - - Input gain: - Ingångsförstärkning: - - - - OUTPUT - UTGÅNG - - - - Output gain: - Utgångsförstärkning: + - - Reset wavegraph - Återställ vågdiagram + Output gain: + + - - Smooth wavegraph - Jämnt vågdiagram + Reset wavegraph + + - - Increase wavegraph amplitude by 1 dB - Öka vågdiagramamplituden med 1 dB + Smooth wavegraph + + - + Increase wavegraph amplitude by 1 dB + + + + + Decrease wavegraph amplitude by 1 dB - Minska vågformsamplitud med 1dB + - + Clip input - Klipp ingång + - + Clip input signal to 0 dB - Klipp ingångssignal till 0 dB + - WaveShaperControls + lmms::gui::XpressiveView - - Input gain - Ingångsförstärkning + + Draw your own waveform here by dragging your mouse on this graph. + - - Output gain - Utgångsförstärkning + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + - + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + + + + \ No newline at end of file diff --git a/data/locale/tr.ts b/data/locale/tr.ts index bd469667f..0c49ea926 100644 --- a/data/locale/tr.ts +++ b/data/locale/tr.ts @@ -1,4 +1,4 @@ - + AboutDialog @@ -70,811 +70,44 @@ LMMS'yi başka bir dilde çevirmekle ilgileniyorsanız veya mevcut çeviril - AmplifierControlDialog + AboutJuceDialog - - VOL - SES + + About JUCE + - - Volume: - Ses Düzeyi: + + <b>About JUCE</b> + - - PAN - PAN + + This program uses JUCE version 3.x.x. + - - Panning: - Kaydırma: + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + - - LEFT - SOL - - - - Left gain: - Sol kazanç: - - - - RIGHT - SAĞ - - - - Right gain: - Sağ kazanç: + + This program uses JUCE version + - AmplifierControls + AudioDeviceSetupWidget - - Volume - Ses Düzeyi - - - - Panning - Kaydırma - - - - Left gain - Sol kazanç - - - - Right gain - Sağ kazanç - - - - AudioAlsaSetupWidget - - - DEVICE - AYGIT - - - - CHANNELS - KANALLAR - - - - AudioFileProcessorView - - - Open sample - Örnek açın - - - - Reverse sample - Örneği ters çevir - - - - Disable loop - Döngüyü kapat - - - - Enable loop - Döngüyü aç - - - - Enable ping-pong loop - Ping-pong döngüsünü etkinleştir - - - - Continue sample playback across notes - Örneği notalar arasında oynatmaya devam et - - - - Amplify: - Güçlendirin: - - - - Start point: - Başlangıç noktası: - - - - End point: - Bitiş noktası: - - - - Loopback point: - Geri döngü noktası: - - - - AudioFileProcessorWaveView - - - Sample length: - Örnek uzunluğu: - - - - AudioJack - - - JACK client restarted - JACK istemcisi yeniden başlatıldı - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS bir nedenden ötürü JACK tarafından sistemden atıldı. Bundan dolayı LMMS'in JACK altyapısı yeniden başlatıldı. Bağlantıları yeniden elle yapmanız gerekecek. - - - - JACK server down - JACK sunucusu kapalı - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - JACK sunucusu kapanmış gibi görünüyor ve yeni bir örnek başlatılamadı. Bu nedenle LMMS devam edemiyor. Projenizi kaydetmeli, JACK ve LMMS'i yeniden başlatmalısınız. - - - - Client name - İstemci adı - - - - Channels - Kanallar - - - - AudioOss - - - Device - Aygıt - - - - Channels - Kanallar - - - - AudioPortAudio::setupWidget - - - Backend - Arka uç - - - - Device - Cihaz - - - - AudioPulseAudio - - - Device - Cihaz - - - - Channels - Kanallar - - - - AudioSdl::setupWidget - - - Device - Aygıt - - - - AudioSndio - - - Device - Aygıt - - - - Channels - Kanallar - - - - AudioSoundIo::setupWidget - - - Backend - Arka uç - - - - Device - Aygıt - - - - AutomatableModel - - - &Reset (%1%2) - &Sıfırla (%1%2) - - - - &Copy value (%1%2) - &Değeri kopyala (%1%2) - - - - &Paste value (%1%2) - &Değeri yapıştır (%1%2) - - - - &Paste value - &Değeri yapıştır - - - - Edit song-global automation - Global şarkı otomasyonunu düzenle - - - - Remove song-global automation - Global şarkı otomasyonunu kaldır - - - - Remove all linked controls - Tüm bağlantılı kontrolleri kaldır - - - - Connected to %1 - Şuna bağlı: %1 - - - - Connected to controller - Kontrolöre bağlı - - - - Edit connection... - Bağlantıyı düzenle... - - - - Remove connection - Bağlantıyı kaldır - - - - Connect to controller... - Kontrolöre bağla... - - - - AutomationEditor - - - Edit Value - Değeri Düzenleyin - - - - New outValue - Yeni çıkış değeri - - - - New inValue - Yeni giriş Değeri - - - - Please open an automation clip with the context menu of a control! - Lütfen bir kontrolün içerik menüsü ile bir otomasyon modeli açın! - - - - AutomationEditorWindow - - - Play/pause current clip (Space) - Seçili bölümü oynat/durdur (Boşluk Tuşu) - - - - Stop playing of current clip (Space) - Seçili modeli oynatmayı durdur (Boşluk Tuşu) - - - - Edit actions - İşlemleri düzenle - - - - Draw mode (Shift+D) - Çizim modu (Shift+D) - - - - Erase mode (Shift+E) - Silgi modu (Shift+E) - - - - Draw outValues mode (Shift+C) - Değerleri çiz modu (Shift+C) - - - - Flip vertically - Dikey çevir - - - - Flip horizontally - Yatay çevir - - - - Interpolation controls - Enterpolasyon kontrolleri - - - - Discrete progression - Kesikli ilerleme - - - - Linear progression - Doğrusal ilerleme - - - - Cubic Hermite progression - Kübik Hermite ilerleme - - - - Tension value for spline - Sapma için gerilim değeri - - - - Tension: - Gerginlik: - - - - Zoom controls - Yakınlaştırma kontrolleri - - - - Horizontal zooming - Yatay yakınlaştırma - - - - Vertical zooming - Dikey yakınlaştırma - - - - Quantization controls - Niceleme kontrolleri - - - - Quantization - Niceleme - - - - - Automation Editor - no clip - Ayarkayıt Düzenleyici - oluşturulmuş bölüm yok - - - - - Automation Editor - %1 - Ayarkayıt Düzenleyici - %1 - - - - Model is already connected to this clip. - Model zaten bu desene bağlanmış. - - - - AutomationClip - - - Drag a control while pressing <%1> - Kontrollerden birini, <%1> tuşuna basılı tutuyorken kıpırdatın - - - - AutomationClipView - - - Open in Automation editor - Ayarkayıt Düzenleyici'de aç - - - - Clear - Temizle - - - - Reset name - İsmini sıfırla - - - - Change name - İsmini değiştir - - - - Set/clear record - Kayıdı başlat/durdur - - - - Flip Vertically (Visible) - Dikey Yönde Çevir (Görünür) - - - - Flip Horizontally (Visible) - Yatay Yönde Çevir (Görünür) - - - - %1 Connections - %1 Bağlantı - - - - Disconnect "%1" - Şunun bağlantısını kes: "%1" - - - - Model is already connected to this clip. - Model zaten bu desene bağlanmış. - - - - AutomationTrack - - - Automation track - Ayarkayıt parçası - - - - PatternEditor - - - Beat+Bassline Editor - Beat+Bassline Düzenleyici - - - - Play/pause current beat/bassline (Space) - Seçili beat/bassline'ı oynat/durdur (Boşluk Tuşu) - - - - Stop playback of current beat/bassline (Space) - Seçili beat/bassline'ı oynatmayı durdur (Boşluk Tuşu) - - - - Beat selector - Seçici vurgusu - - - - Track and step actions - Eylemleri izleyin ve adımlayın - - - - Add beat/bassline - Beat/bassline ekle - - - - Clone beat/bassline clip - Klon vuruşu / bas hattı deseni - - - - Add sample-track - Örnek parça ekle - - - - Add automation-track - Ayarkayıt parçası ekle - - - - Remove steps - Kısalt - - - - Add steps - Uzat - - - - Clone Steps - Klon Adımları - - - - PatternClipView - - - Open in Beat+Bassline-Editor - Beat+Bassline Düzenleyici'de aç - - - - Reset name - İsmini sıfırla - - - - Change name - İsmini değiştir - - - - PatternTrack - - - Beat/Bassline %1 - Beat/Bassline %1 - - - - Clone of %1 - Kopya %1 - - - - BassBoosterControlDialog - - - FREQ - FREK - - - - Frequency: - Frekans: - - - - GAIN - GAIN - - - - Gain: - Kazanç: - - - - RATIO - ORAN - - - - Ratio: - Oran: - - - - BassBoosterControls - - - Frequency - Frekans - - - - Gain - Kazanç - - - - Ratio - Oran - - - - BitcrushControlDialog - - - IN - IN - - - - OUT - OUT - - - - - GAIN - GAIN - - - - Input gain: - Giriş kazancı: - - - - NOISE - PARAZİT - - - - Input noise: - Giriş gürültüsü: - - - - Output gain: - Çıkış kazancı: - - - - CLIP - KIRP - - - - Output clip: - Çıktı klibi: - - - - Rate enabled - Oran etkinleştirildi - - - - Enable sample-rate crushing - Örnek hızında ezmeyi etkinleştirin - - - - Depth enabled - Derinlik etkinleştirildi - - - - Enable bit-depth crushing - Bit derinliğinde ezmeyi etkinleştirin - - - - FREQ - FREK - - - - Sample rate: - Örnekleme oranı: - - - - STEREO - STEREO - - - - Stereo difference: - Stereo farklılığı: - - - - QUANT - MİKTAR - - - - Levels: - Düzey: - - - - BitcrushControls - - - Input gain - Giriş kazancı - - - - Input noise - Giriş gürültüsü - - - - Output gain - Çıkış kazancı - - - - Output clip - Çıktı klibi - - - - Sample rate - Örnekleme oranı - - - - Stereo difference - Stereo farkı - - - - Levels - Seviyeler - - - - Rate enabled - Oran etkinleştirildi - - - - Depth enabled - Derinlik etkinleştirildi + + [System Default] + @@ -900,124 +133,124 @@ LMMS'yi başka bir dilde çevirmekle ilgileniyorsanız veya mevcut çeviril Genişletilmiş lisans burada - + Artwork Yapıt - + Using KDE Oxygen icon set, designed by Oxygen Team. Oxygen Team tarafından tasarlanan KDE Oxygen simge setini kullanma. - + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. Calf Studio Gear, OpenAV ve OpenOctave projelerinden bazı düğmeler, arka planlar ve diğer küçük sanat eserleri içerir. - + VST is a trademark of Steinberg Media Technologies GmbH. VST, Steinberg Media Technologies GmbH'nin ticari markasıdır. - + Special thanks to António Saraiva for a few extra icons and artwork! Birkaç ekstra simge ve sanat eseri için António Saraiva'ya özel teşekkürler! - + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. LV2 logosu, Peter Shorthose'un bir konseptine dayalı olarak Thorsten Wilms tarafından tasarlanmıştır. - + MIDI Keyboard designed by Thorsten Wilms. Thorsten Wilms tarafından tasarlanan MIDI Klavye. - + Carla, Carla-Control and Patchbay icons designed by DoosC. DoosC tarafından tasarlanan Carla, Carla-Control ve Patchbay simgeleri. - + Features Özellikler - + AU/AudioUnit: AU/Ses Ünitesi: - + LADSPA: LADSPA: - - - - - - - - + + + + + + + + TextLabel YazıEtiketi - + VST2: VST2: - + DSSI: DSSI: - + LV2: LV2: - + VST3: VST3: - + OSC OSC - + Host URLs: Barındırma URL'leri: - + Valid commands: Geçerli komutlar: - + valid osc commands here burada geçerli osc komutları - + Example: Örnek: - + License Lisans - + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -1582,50 +815,50 @@ BU TÜR ZARARLARIN OLASILIĞI. - + OSC Bridge Version OSC Köprü Sürümü - + Plugin Version Eklenti Sürümü - + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> <br>Sürüm %1<br>Carla, tam özellikli bir ses eklentisi barındırıcısıdır %2.<br><br>Telif Hakkı (C) 2011-2019 falkTX<br> - - + + (Engine not running) (Motor çalışmıyor) - + Everything! (Including LRDF) Herşey! (LRDF dahil) - + Everything! (Including CustomData/Chunks) Herşey! (Özel Veriler / Parçalar Dahil) - + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> Hakkında 110&#37; tamam (özel uzantılar kullanarak)<br/>Uygulanan Özellik/Uzantılar:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - - - + + + Using Juce host Juce ana bilgisayarını kullanma - + About 85% complete (missing vst bank/presets and some minor stuff) Yaklaşık % 85 tamamlandı (eksik vst bankası / ön ayarları ve bazı küçük şeyler) @@ -1658,563 +891,600 @@ BU TÜR ZARARLARIN OLASILIĞI. Yükleniyor... - + + Save + + + + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + Buffer Size: Arabellek Boyutu: - + Sample Rate: Örnekleme Oranı: - + ? Xruns ? Xruns - + DSP Load: %p% EKR Yükü: %p% - + &File &Dosya - + &Engine &Motor - + &Plugin &Eklenti - + Macros (all plugins) Makrolar (tüm eklentiler) - + &Canvas &Tuval - + Zoom Büyütme - + &Settings &Ayarlar - + &Help &Yardım - - toolBar - araç Çubuğu + + Tool Bar + - + Disk Disk - - + + Home Ana Sayfa - + Transport Aktarım - + Playback Controls Oynatma Kontrolleri - + Time Information Zaman Bilgileri - + Frame: Çerçeve: - + 000'000'000 000'000'000 - + Time: Zaman: - + 00:00:00 00:00:00 - + BBT: BBT: - + 000|00|0000 000|00|0000 - + Settings Ayarlar - + BPM BPM - + Use JACK Transport JACK Transport'u kullanın - + Use Ableton Link Ableton Bağlantısını kullanın - + &New &Yeni - + Ctrl+N Ctrl+N - + &Open... &Aç... - - + + Open... Aç... - + Ctrl+O Ctrl+O - + &Save &Kaydet - + Ctrl+S CTRL + S - + Save &As... &Farklı Kaydet... - - + + Save As... Farklı Kaydet... - + Ctrl+Shift+S Ctrl+Shift+S - + &Quit &Çıkış - + Ctrl+Q Ctrl+Q - + &Start &Başlat - + F5 F5 - + St&op Du&rdur - + F6 F6 - + &Add Plugin... &Eklenti Ekle... - + Ctrl+A Ctrl+A - + &Remove All Tümünü &Kaldır - + Enable Etkinleştir - + Disable Devre Dışı Bırak - + 0% Wet (Bypass) % 0 Islak (Baypas) - + 100% Wet % 100 Islak - + 0% Volume (Mute) % 0 Ses (Sessiz) - + 100% Volume % 100 Hacim - + Center Balance Merkez Dengesi - + &Play &Oynat - + Ctrl+Shift+P Ctrl+ÜstKrkt+P - + &Stop &Durdur - + Ctrl+Shift+X Ctrl+Shift+X - + &Backwards &Geriye doğru - + Ctrl+Shift+B Ctrl+Shift+B - + &Forwards &İleriye - + Ctrl+Shift+F Ctrl+Shift+F - + &Arrange &Düzenleme - + Ctrl+G Ctrl+G - - + + &Refresh &Yenile - + Ctrl+R Ctrl +R - + Save &Image... &Görüntüyü Kaydet... - + Auto-Fit Otomatik Sığdır - + Zoom In Yakınlaştır - + Ctrl++ Ctrl++ - + Zoom Out Uzaklaştır - + Ctrl+- Ctrl+- - + Zoom 100% % 100 Yakınlaştır - + Ctrl+1 Ctrl +1 - + Show &Toolbar &Araç Çubuğunu Göster - + &Configure Carla &Carla'yı yapılandır - + &About &Hakkında - + About &JUCE &JUCE Hakkında - + About &Qt &Qt Hakkında - + Show Canvas &Meters Tuval &Ölçerleri Göster - + Show Canvas &Keyboard Tuval &Klavyeyi Göster - + Show Internal Dahili Göster - + Show External Harici Göster - + Show Time Panel Zaman Panelini Göster - + Show &Side Panel &Yan Paneli Göster - + + Ctrl+P + + + + &Connect... &Bağlan... - + Compact Slots Kompakt Yuvalar - + Expand Slots Yuvaları Genişlet - + Perform secret 1 Gizli 1'i gerçekleştir - + Perform secret 2 Gizli 2'yi gerçekleştir - + Perform secret 3 Gizli 3'ü gerçekleştir - + Perform secret 4 Gizli 4'ü gerçekleştir - + Perform secret 5 Gizli 5'i gerçekleştir - + Add &JACK Application... &JACK Uygulaması Ekle... - + &Configure driver... Sürücüyü &yapılandırın... - + Panic Panik - + Open custom driver panel... Özel sürücü panelini aç... + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + + CarlaHostWindow - + Export as... Farklı dışa aktar... - - - - + + + + Error Hata - + Failed to load project Proje yüklenemedi - + Failed to save project Proje kaydedilemedi - + Quit Çık - + Are you sure you want to quit Carla? Carla'yı bırakmak istediğinden emin misin? - + Could not connect to Audio backend '%1', possible reasons: %2 '%1' Ses arka ucuna bağlanılamadı, olası nedenler: %2 - + Could not connect to Audio backend '%1' Ses arka ucuna '%1' bağlanılamadı - + Warning Uyarı - + There are still some plugins loaded, you need to remove them to stop the engine. Do you want to do this now? Hala yüklü bazı eklentiler var, motoru durdurmak için bunları kaldırmanız gerekiyor. Bunu şimdi yapmak istiyor musun? - - CarlaInstrumentView - - - Show GUI - Görselli Arayüzü Göster - - CarlaSettingsW @@ -2269,19 +1539,19 @@ Bunu şimdi yapmak istiyor musun? - + Main Ana - + Canvas Tuval - + Engine Motor @@ -2302,1488 +1572,590 @@ Bunu şimdi yapmak istiyor musun? - + Experimental Deneysel - + <b>Main</b> <b>Ana</b> - + Paths Yollar - + Default project folder: Varsayılan proje klasörü: - + Interface Arayüz - + + Use "Classic" as default rack skin + + + + Interface refresh interval: Arayüz yenileme aralığı: - - + + ms ms - + Show console output in Logs tab (needs engine restart) Konsol çıktısını Günlükler sekmesinde göster (motorun yeniden başlatılması gerekir) - + Show a confirmation dialog before quitting Çıkmadan önce bir onay iletişim kutusu göster - - + + Theme Tema - + Use Carla "PRO" theme (needs restart) Carla "PRO" temasını kullanın (yeniden başlatılması gerekiyor) - + Color scheme: Renk düzeni: - + Black Siyah - + System Sistem - + Enable experimental features Deneysel özellikleri etkinleştirin - + <b>Canvas</b> <b>Tuval</b> - + Bezier Lines Bezier Hatları - + Theme: Tema: - + Size: Boyut: - + 775x600 775x600 - + 1550x1200 1550x1200 - + 3100x2400 3100x2400 - + 4650x3600 4650x3600 - + 6200x4800 6200x4800 - + + 12400x9600 + + + + Options Seçenekler - + Auto-hide groups with no ports Bağlantı noktası olmayan grupları otomatik gizle - + Auto-select items on hover Fareyle üzerine gelindiğinde öğeleri otomatik seç - + Basic eye-candy (group shadows) Temel göz şekeri (grup gölgeleri) - + Render Hints Oluşturma İpuçları - + Anti-Aliasing Kenar Yumuşatma - + Full canvas repaints (slower, but prevents drawing issues) Tuvali yeniden boyar (daha yavaştır, ancak çizim sorunlarını önler) - + <b>Engine</b> <b>Motor</b> - - + + Core Çekirdek - + Single Client Tek Alıcı - + Multiple Clients Çoklu Alıcı - - + + Continuous Rack Sürekli Raf - - + + Patchbay Yama yuvası - + Audio driver: Ses sürücüsü: - + Process mode: İşlem modeli: - - - - + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog Yerleşik 'Düzenle' iletişim kutusunda izin verilecek maksimum parametre sayısı - + Max Parameters: Maksimum Parametreler: - + ... ... - + Reset Xrun counter after project load Proje yükünden sonra Xrun sayacını sıfırlayın - + Plugin UIs Eklenti kullanıcı arayüzleri - - + + How much time to wait for OSC GUIs to ping back the host OSC Arayüz'lerin ana bilgisayarı geri göndermesi için ne kadar beklemek gerekir - + UI Bridge Timeout: Arayüz Köprüsü Zaman Aşımı: - + Use OSC-GUI bridges when possible, this way separating the UI from DSP code Mümkün olduğunda OSC-Arayüz köprülerini kullanın, bu şekilde UI'yi DSP kodundan ayırın - + Use UI bridges instead of direct handling when possible Mümkün olduğunda doğrudan işlem yerine Arayüz köprülerini kullanın - + Make plugin UIs always-on-top Eklenti kullanıcı arayüzlerini her zaman en üstte yapın - + Make plugin UIs appear on top of Carla (needs restart) Eklenti kullanıcı arayüzlerinin Carla'nın üstünde görünmesini sağlayın (yeniden başlatılması gerekiyor) - + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS NOT: Eklenti köprüsü kullanıcı arayüzleri, macOS'ta Carla tarafından yönetilemez - - + + Restart the engine to load the new settings Yeni ayarları yüklemek için motoru yeniden başlatın - + <b>OSC</b> <b>OSC</b> - + Enable OSC OSC'yi etkinleştir - + Enable TCP port TCP bağlantı noktasını etkinleştir - - + + Use specific port: Belirli bir bağlantı noktası kullanın: - + Overridden by CARLA_OSC_TCP_PORT env var CARLA_OSC_TCP_PORT env var tarafından geçersiz kılındı - - + + Use randomly assigned port Rastgele atanan bağlantı noktasını kullan - + Enable UDP port UDP bağlantı noktasını etkinleştir - + Overridden by CARLA_OSC_UDP_PORT env var CARLA_OSC_UDP_PORT ortam değişkeni tarafından geçersiz kılındı - + DSSI UIs require OSC UDP port enabled DSSI kullanıcı arabirimleri, OSC UDP bağlantı noktasının etkinleştirilmesini gerektirir - + <b>File Paths</b> <b>Dosya Yolları</b> - + Audio Ses - + MIDI MIDI - + Used for the "audiofile" plugin "Ses dosyası" eklentisi için kullanılır - + Used for the "midifile" plugin "Midifile" eklentisi için kullanılır - - + + Add... Ekle... - - + + Remove Kaldır - - + + Change... Değiştir... - + <b>Plugin Paths</b> <b>Eklenti Yolları</b> - + LADSPA LADSPA - + DSSI DSSI - + LV2 LV2 - + VST2 VST2 - + VST3 VST3 - + SF2/3 SF2/3 - + SFZ SFZ - + + JSFX + + + + + CLAP + + + + Restart Carla to find new plugins Yeni eklentiler bulmak için Carla'yı yeniden başlatın - + <b>Wine</b> <b>Wine</b> - + Executable Yürütülebilir - + Path to 'wine' binary: 'Wine' ikilisine giden yol: - + Prefix Önek - + Auto-detect Wine prefix based on plugin filename Eklenti dosya adına göre Wine önekini otomatik algıla - + Fallback: Geri çekilmek: - + Note: WINEPREFIX env var is preferred over this fallback Not: WINEPREFIX env var değişkeni bu yedek yerine tercih edilir - + Realtime Priority Gerçek Zamanlı Öncelik - + Base priority: Temel öncelik: - + WineServer priority: WineSunucusu önceliği: - + These options are not available for Carla as plugin Bu seçenekler, eklenti olarak Carla için mevcut değildir - + <b>Experimental</b> <b>Deneysel</b> - + Experimental options! Likely to be unstable! Deneysel seçenekler! Kararsız olması muhtemel! - + Enable plugin bridges Eklenti köprülerini etkinleştirin - + Enable Wine bridges Wine köprülerini etkinleştir - + Enable jack applications Jack uygulamalarını etkinleştirin - + Export single plugins to LV2 Tek eklentileri LV2'ye aktarın - + + Use system/desktop-theme icons (needs restart) + + + + Load Carla backend in global namespace (NOT RECOMMENDED) Carla arka ucunu genel ad alanında yükle (ÖNERİLMEZ) - + Fancy eye-candy (fade-in/out groups, glow connections) Süslü göz alıcı (grupların açılması / kapanması, kızdırma bağlantıları) - + Use OpenGL for rendering (needs restart) Oluşturmak için OpenGL kullanın (yeniden başlatılması gerekir) - + High Quality Anti-Aliasing (OpenGL only) Yüksek Kaliteli Örtüşme Önleme (yalnızca OpenGL) - + Render Ardour-style "Inline Displays" Ardour tarzı "Satır İçi Ekranları" Oluştur - + Force mono plugins as stereo by running 2 instances at the same time. This mode is not available for VST plugins. Aynı anda 2 örnek çalıştırarak mono eklentileri stereo olarak zorlayın. Bu mod, VST eklentileri için kullanılamaz. - + Force mono plugins as stereo Mono eklentileri stereo olarak zorla - - Prevent plugins from doing bad stuff (needs restart) - Eklentilerin kötü şeyler yapmasını önleyin (yeniden başlatılması gerekir) + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + - - Whenever possible, run the plugins in bridge mode. - Mümkün olduğunda eklentileri köprü modunda çalıştırın. + + Prevent unsafe calls from plugins (needs restart) + - + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + Run plugins in bridge mode when possible Mümkün olduğunda eklentileri köprü modunda çalıştırın - - - - + + + + Add Path Yol Ekle - - CompressorControlDialog - - - Threshold: - Eşik: - - - - Volume at which the compression begins to take place - Sıkıştırmanın gerçekleşmeye başladığı düzey - - - - Ratio: - Oran: - - - - How far the compressor must turn the volume down after crossing the threshold - Eşiği geçtikten sonra kompresörün hacmi ne kadar azaltması gerekir - - - - Attack: - Saldırı: - - - - Speed at which the compressor starts to compress the audio - Kompresörün sesi sıkıştırmaya başladığı hız - - - - Release: - Yayınla: - - - - Speed at which the compressor ceases to compress the audio - Kompresörün sesi sıkıştırmayı bıraktığı hız - - - - Knee: - Diz: - - - - Smooth out the gain reduction curve around the threshold - Eşiğin etrafındaki kazanç azaltma eğrisini düzeltin - - - - Range: - Menzil: - - - - Maximum gain reduction - Maksimum kazanç azaltma - - - - Lookahead Length: - Önden Bakış Uzunluğu: - - - - How long the compressor has to react to the sidechain signal ahead of time - Kompresörün yan zincir sinyaline vaktinden önce ne kadar süre tepki vermesi gerekir - - - - Hold: - Ambar: - - - - Delay between attack and release stages - Saldırı ve serbest bırakma aşamaları arasındaki gecikme - - - - RMS Size: - RMS Boyutu: - - - - Size of the RMS buffer - RMS arabelleğinin boyutu - - - - Input Balance: - Giriş Dengesi: - - - - Bias the input audio to the left/right or mid/side - Giriş sesini sola / sağa veya ortaya / yana çevirin - - - - Output Balance: - Çıktı Dengesi: - - - - Bias the output audio to the left/right or mid/side - Çıkış sesini sola / sağa veya ortaya / tarafa çevirin - - - - Stereo Balance: - Çift kanal Dengesi: - - - - Bias the sidechain signal to the left/right or mid/side - Yan zincir sinyalini sola / sağa veya ortaya / yana çevirin - - - - Stereo Link Blend: - Çift kanal Bağlantı Karışımı: - - - - Blend between unlinked/maximum/average/minimum stereo linking modes - Bağlantısız / maksimum / ortalama / minimum çift kanal bağlantı modları arasında uyum sağlayın - - - - Tilt Gain: - Eğim Kazancı: - - - - Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. - Yan zincir sinyalini düşük veya yüksek frekanslara yönlendirin. -6 db alçak geçiş, 6 db yüksek geçiştir. - - - - Tilt Frequency: - Eğim Frekansı: - - - - Center frequency of sidechain tilt filter - Yan zincir eğim filtresinin merkez frekansı - - - - Mix: - Karıştır: - - - - Balance between wet and dry signals - Islak ve kuru sinyaller arasında denge - - - - Auto Attack: - Otomatik Saldırı: - - - - Automatically control attack value depending on crest factor - Crest faktörüne bağlı olarak saldırı değerini otomatik olarak kontrol edin - - - - Auto Release: - Otomatik Yayın: - - - - Automatically control release value depending on crest factor - Crest faktörüne bağlı olarak serbest bırakma değerini otomatik olarak kontrol edin - - - - Output gain - Çıkış kazancı - - - - - Gain - Kazanç - - - - Output volume - Çıkış Düzeyi - - - - Input gain - Giriş kazancı - - - - Input volume - Giriş Düzeyi - - - - Root Mean Square - Kök kare ortalama - - - - Use RMS of the input - Girişin RMS'sini kullanın - - - - Peak - Zirve - - - - Use absolute value of the input - Girişin mutlak değerini kullan - - - - Left/Right - Sol/Sağ - - - - Compress left and right audio - Sol ve sağ sesi sıkıştır - - - - Mid/Side - Orta / Yan - - - - Compress mid and side audio - Orta ve yan sesi sıkıştır - - - - Compressor - Sıkıştırıcı - - - - Compress the audio - Sesi sıkıştır - - - - Limiter - Sınırlayıcı - - - - Set Ratio to infinity (is not guaranteed to limit audio volume) - Oranı sonsuza ayarla (ses seviyesini sınırlaması garanti edilmez) - - - - Unlinked - Bağlantısız - - - - Compress each channel separately - Her kanalı ayrı ayrı sıkıştırın - - - - Maximum - En Çok - - - - Compress based on the loudest channel - En gürültülü kanala göre sıkıştır - - - - Average - Ortalama - - - - Compress based on the averaged channel volume - Ortalama kanal hacmine göre sıkıştır - - - - Minimum - En Az - - - - Compress based on the quietest channel - En sessiz kanala göre sıkıştırın - - - - Blend - Harman - - - - Blend between stereo linking modes - Stereo bağlantı modları arasında uyum sağlayın - - - - Auto Makeup Gain - Otomatik Makyaj Kazancı - - - - Automatically change makeup gain depending on threshold, knee, and ratio settings - Eşik, diz ve oran ayarlarına bağlı olarak makyaj kazancını otomatik olarak değiştirin - - - - - Soft Clip - Yumuşak Kırpılma - - - - Play the delta signal - Delta sinyalini çal - - - - Use the compressor's output as the sidechain input - Yan zincir girişi olarak kompresörün çıktısını kullanın - - - - Lookahead Enabled - İleri Bakış Etkinleştirildi - - - - Enable Lookahead, which introduces 20 milliseconds of latency - 20 milisaniyelik gecikme süresi sağlayan Lookahead'i etkinleştirin - - - - CompressorControls - - - Threshold - Eşik - - - - Ratio - Oran - - - - Attack - Saldırı - - - - Release - Yayınla - - - - Knee - Diz - - - - Hold - Tut - - - - Range - Aralık - - - - RMS Size - RMS Boyutu - - - - Mid/Side - Orta / Yan - - - - Peak Mode - Tepe Modu - - - - Lookahead Length - Önden Bakış Uzunluğu - - - - Input Balance - Giriş Dengesi - - - - Output Balance - Çıktı Dengesi - - - - Limiter - Sınırlayıcı - - - - Output Gain - Çıkış Kazancı - - - - Input Gain - Giriş Kazancı - - - - Blend - Harman - - - - Stereo Balance - Çift kanal Dengesi - - - - Auto Makeup Gain - Otomatik Makyaj Kazancı - - - - Audition - İşitme - - - - Feedback - Geri bildirim - - - - Auto Attack - Otomatik Saldırı - - - - Auto Release - Otomatik Yayın - - - - Lookahead - Önden Bakış - - - - Tilt - Eğim - - - - Tilt Frequency - Eğim Frekansı - - - - Stereo Link - Çift kanal Bağlantı - - - - Mix - Karıştır - - - - Controller - - - Controller %1 - Kontrolör %1 - - - - ControllerConnectionDialog - - - Connection Settings - Bağlantı Ayarları - - - - MIDI CONTROLLER - MIDI KONTROLÖR - - - - Input channel - Giriş kanalı - - - - CHANNEL - KANAL - - - - Input controller - Giriş kontrolörü - - - - CONTROLLER - KONTROLÖR - - - - - Auto Detect - Oto-Tespit - - - - MIDI-devices to receive MIDI-events from - MIDI olaylarını almak için MIDI cihazları - - - - USER CONTROLLER - KULLANICI KONTROLÖRÜ - - - - MAPPING FUNCTION - EŞLEŞTİRME FONKSİYONU - - - - OK - Tamam - - - - Cancel - İptal - - - - LMMS - LMMS - - - - Cycle Detected. - Döngü Algılandı. - - - - ControllerRackView - - - Controller Rack - Denetleyici Rafı - - - - Add - Ekle - - - - Confirm Delete - Silmeyi Onayla - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Silmeyi onaylıyor musunuz? Bu denetleyiciyle ilişkili mevcut bağlantılar var. Geri almanın bir yolu yok. - - - - ControllerView - - - Controls - Kontroller - - - - Rename controller - Denetleyiciyi yeniden adlandır - - - - Enter the new name for this controller - Bu denetleyicinin yeni adını girin - - - - LFO - LFO - - - - &Remove this controller - Bu denetleyiciyi &kaldırın - - - - Re&name this controller - Bu denetleyiciyi yeniden ad&landırın - - - - CrossoverEQControlDialog - - - Band 1/2 crossover: - Bant geçişi 1/2: - - - - Band 2/3 crossover: - Bant geçişi 2/3: - - - - Band 3/4 crossover: - Bant geçişi 3/4: - - - - Band 1 gain - Band kazancı 1 - - - - Band 1 gain: - Band kazancı 1: - - - - Band 2 gain - Band kazancı 2 - - - - Band 2 gain: - Band kazancı 2: - - - - Band 3 gain - Band kazancı 3 - - - - Band 3 gain: - Band kazancı 3: - - - - Band 4 gain - Band kazancı 4 - - - - Band 4 gain: - Band kazancı 4: - - - - Band 1 mute - Band 1 sesini kapatma - - - - Mute band 1 - Bant 1'in sesini kapat - - - - Band 2 mute - Band 2 sesini kapatma - - - - Mute band 2 - Band 2'yi sessize al - - - - Band 3 mute - Band 3 sesini kapatma - - - - Mute band 3 - Bant 3'ü sessize al - - - - Band 4 mute - Band 4 sesini kapatma - - - - Mute band 4 - Bant 4'ü sessize al - - - - DelayControls - - - Delay samples - Gecikme örnekleri - - - - Feedback - Geri bildirim - - - - LFO frequency - LFO frekansı - - - - LFO amount - LFO miktarı - - - - Output gain - Çıkış kazancı - - - - DelayControlsDialog - - - DELAY - GECİKME - - - - Delay time - Gecikme süresi - - - - FDBK - FDBK - - - - Feedback amount - Geri bildirim miktarı - - - - RATE - ORAN - - - - LFO frequency - LFO frekansı - - - - AMNT - AMNT - - - - LFO amount - LFO miktarı - - - - Out gain - Çıkış kazancı - - - - Gain - Kazanç - - Dialog - - - Add JACK Application - JACK Uygulaması Ekle - - - - Note: Features not implemented yet are greyed out - Not: Henüz uygulanmayan özellikler gri renkte görünür - - - - Application - Uygulama - - - - Name: - İsim: - - - - Application: - Uygulama: - - - - From template - Şablondan - - - - Custom - Özelleştirilmiş - - - - Template: - Şablon: - - - - Command: - Komut: - - - - Setup - Kurulum - - - - Session Manager: - Oturum Yöneticisi: - - - - None - Hiç - - - - Audio inputs: - Ses girişleri: - - - - MIDI inputs: - MIDI girişleri: - - - - Audio outputs: - Ses çıkışları: - - - - MIDI outputs: - MIDI çıkışları: - - - - Take control of main application window - Ana uygulama penceresinin kontrolünü elinize alın - - - - Workarounds - Çözümler - - - - Wait for external application start (Advanced, for Debug only) - Harici uygulamanın başlamasını bekleyin (Gelişmiş, yalnızca Hata Ayıklama için) - - - - Capture only the first X11 Window - Yalnızca ilk X11 Penceresini yakalayın - - - - Use previous client output buffer as input for the next client - Önceki istemci çıktı arabelleğini sonraki istemci için girdi olarak kullan - - - - Simulate 16 JACK MIDI outputs, with MIDI channel as port index - Port indeksi olarak MIDI kanalı ile 16 JACK MIDI çıkışını simüle edin - - - - Error here - Hata burada - Carla Control - Connect @@ -3809,28 +2181,6 @@ Bu mod, VST eklentileri için kullanılamaz. TCP Port: TCP Bağlantı Noktası: - - - Reported host - Bildirilen ana bilgisayar - - - - Automatic - Otomatik - - - - Custom: - Özel: - - - - In some networks (like USB connections), the remote system cannot reach the local network. You can specify here which hostname or IP to make the remote Carla connect to. -If you are unsure, leave it as 'Automatic'. - Bazı ağlarda (USB bağlantıları gibi), uzak sistem yerel ağa erişemez. Burada Carla'nın uzaktan bağlanacağı ana bilgisayar adını veya IP'yi belirtebilirsiniz. -Emin değilseniz, "Otomatik" olarak bırakın. - Set value @@ -3885,948 +2235,6 @@ Emin değilseniz, "Otomatik" olarak bırakın. Yeni ayarları yüklemek için motoru yeniden başlatın - - DualFilterControlDialog - - - - FREQ - FREK - - - - - Cutoff frequency - Kesme frekansı - - - - - RESO - RESO - - - - - Resonance - Çınlama - - - - - GAIN - KAZANÇ - - - - - Gain - Kazanç - - - - MIX - KARIŞIM - - - - Mix - Karıştır - - - - Filter 1 enabled - Filtre 1 etkinleştirildi - - - - Filter 2 enabled - Filtre 2 etkinleştirildi - - - - Enable/disable filter 1 - Filtre 1'i etkinleştir / devre dışı bırak - - - - Enable/disable filter 2 - Filtre 2'yi etkinleştir / devre dışı bırak - - - - DualFilterControls - - - Filter 1 enabled - Filtre 1 etkinleştirildi - - - - Filter 1 type - Filtre türü 1 - - - - Cutoff frequency 1 - Kesme frekansı 1 - - - - Q/Resonance 1 - Q/Rezonans 1 - - - - Gain 1 - Kazanç 1 - - - - Mix - Karıştır - - - - Filter 2 enabled - Filtre 2 etkinleştirildi - - - - Filter 2 type - Filtre türü 2 - - - - Cutoff frequency 2 - Kesme frekansı 2 - - - - Q/Resonance 2 - Q/Rezonans 2 - - - - Gain 2 - Kazanç 2 - - - - - Low-pass - Düşük geçiş - - - - - Hi-pass - Yüksek geçiş - - - - - Band-pass csg - Bant geçişli csg - - - - - Band-pass czpg - Bant geçişli czpg - - - - - Notch - Çentik - - - - - All-pass - Tamamı bitti - - - - - Moog - Moog - - - - - 2x Low-pass - 2x Düşük geçiş - - - - - RC Low-pass 12 dB/oct - RC Düşük geçişli 12 dB / oct - - - - - RC Band-pass 12 dB/oct - RC Bant geçişi 12 dB / oct - - - - - RC High-pass 12 dB/oct - RC Yüksek Geçişli 12 dB / oct - - - - - RC Low-pass 24 dB/oct - RC Düşük geçişli 24 dB / oct - - - - - RC Band-pass 24 dB/oct - RC Bant geçişi 24 dB / oct - - - - - RC High-pass 24 dB/oct - RC Yüksek Geçişli 24 dB / oct - - - - - Vocal Formant - Vokal Biçimlendirici - - - - - 2x Moog - 2x Moog - - - - - SV Low-pass - SV Düşük geçiş - - - - - SV Band-pass - SV Bant geçişi - - - - - SV High-pass - SV Yüksek geçiş - - - - - SV Notch - SV Notch - - - - - Fast Formant - Hızlı Biçimlendirici - - - - - Tripole - Üçlü - - - - Editor - - - Transport controls - Aktarım kontrolleri - - - - Play (Space) - Oynat (Boşluk) - - - - Stop (Space) - Durdur ( Boşluk) - - - - Record - Kayıt - - - - Record while playing - Çalarken kayıt - - - - Toggle Step Recording - Adım Kaydı Değiştir - - - - Effect - - - Effect enabled - Efekt etkinleştirildi - - - - Wet/Dry mix - Islak / Kuru karışım - - - - Gate - Geçit - - - - Decay - Bozunma - - - - EffectChain - - - Effects enabled - Efektler etkinleştirildi - - - - EffectRackView - - - EFFECTS CHAIN - ETKİ ZİNCİRİ - - - - Add effect - Efekt ekleyin - - - - EffectSelectDialog - - - Add effect - Efekt ekleyin - - - - - Name - İsim - - - - Type - Tip - - - - Description - Açıklama - - - - Author - Yazar - - - - EffectView - - - On/Off - Aç/Kapat - - - - W/D - I/K - - - - Wet Level: - Islak düzey: - - - - DECAY - BOZULMA - - - - Time: - Zaman: - - - - GATE - PORTAL - - - - Gate: - Portal: - - - - Controls - Kontroller - - - - Move &up - Y&ukarı taşı - - - - Move &down - &Aşağı taşı - - - - &Remove this plugin - Bu eklentiyi &kaldır - - - - EnvelopeAndLfoParameters - - - Env pre-delay - Env ön gecikme - - - - Env attack - Env saldırısı - - - - Env hold - Env tutma - - - - Env decay - Env bozunma - - - - Env sustain - Env sürdürmek - - - - Env release - Env yayınlama - - - - Env mod amount - Env mod miktarı - - - - LFO pre-delay - LFO ön gecikmesi - - - - LFO attack - LFO saldırısı - - - - LFO frequency - LFO frekansı - - - - LFO mod amount - LFO mod miktarı - - - - LFO wave shape - LFO dalga şekli - - - - LFO frequency x 100 - LFO frekansı x 100 - - - - Modulate env amount - Ortam miktarını değiştir - - - - EnvelopeAndLfoView - - - - DEL - SİL - - - - - Pre-delay: - Ön gecikme: - - - - - ATT - ATT - - - - - Attack: - Saldırı: - - - - HOLD - TUT - - - - Hold: - Ambar: - - - - DEC - DEC - - - - Decay: - Bozunma: - - - - SUST - SUST - - - - Sustain: - Sürdürmek: - - - - REL - REL - - - - Release: - Yayınla: - - - - - AMT - AMT - - - - - Modulation amount: - Modülasyon miktarı: - - - - SPD - SPD - - - - Frequency: - Frekans: - - - - FREQ x 100 - FREQ x 100 - - - - Multiply LFO frequency by 100 - LFO frekansını 100 ile çarpın - - - - MODULATE ENV AMOUNT - ENV MİKTARINI MODÜLE EDİN - - - - Control envelope amount by this LFO - Bu LFO ile kontrol zarfı miktarı - - - - ms/LFO: - ms/LFO: - - - - Hint - İpucu - - - - Drag and drop a sample into this window. - Bu pencereye bir numune sürükleyip bırakın. - - - - EqControls - - - Input gain - Giriş kazancı - - - - Output gain - Çıkış kazancı - - - - Low-shelf gain - Düşük raf kazancı - - - - Peak 1 gain - Tepe kazancı 1 - - - - Peak 2 gain - Tepe kazancı 2 - - - - Peak 3 gain - Tepe kazancı 3 - - - - Peak 4 gain - Tepe kazancı 4 - - - - High-shelf gain - Yüksek raf kazancı - - - - HP res - HP res - - - - Low-shelf res - Düşük raflı res - - - - Peak 1 BW - Tepe 1 BW - - - - Peak 2 BW - Tepe 2 BW - - - - Peak 3 BW - Tepe 3 BW - - - - Peak 4 BW - Tepe 4 BW - - - - High-shelf res - Yüksek raf çözünürlüğü - - - - LP res - LP res - - - - HP freq - HP frekansı - - - - Low-shelf freq - Düşük raf frekansı - - - - Peak 1 freq - Tepe frekansı 1 - - - - Peak 2 freq - Tepe frekansı 2 - - - - Peak 3 freq - Tepe frekansı 3 - - - - Peak 4 freq - Tepe frekansı 4 - - - - High-shelf freq - Yüksek raf frekansı - - - - LP freq - LP frekansı - - - - HP active - HP etkin - - - - Low-shelf active - Düşük raf etkin - - - - Peak 1 active - Aktif tepe 1 - - - - Peak 2 active - Aktif tepe 2 - - - - Peak 3 active - Aktif tepe 3 - - - - Peak 4 active - Aktif tepe 4 - - - - High-shelf active - Yüksek raf etkin - - - - LP active - LP etkin - - - - LP 12 - LP 12 - - - - LP 24 - LP 24 - - - - LP 48 - LP 48 - - - - HP 12 - HP 12 - - - - HP 24 - HP 24 - - - - HP 48 - HP 48 - - - - Low-pass type - Düşük geçişli tip - - - - High-pass type - Yüksek geçişli tip - - - - Analyse IN - Analiz GİRİŞİ - - - - Analyse OUT - Analiz ÇIKIŞI - - - - EqControlsDialog - - - HP - HP - - - - Low-shelf - Düşük raf - - - - Peak 1 - Tepe 1 - - - - Peak 2 - Tepe 2 - - - - Peak 3 - Tepe 3 - - - - Peak 4 - Tepe 4 - - - - High-shelf - Yüksek raf - - - - LP - LP - - - - Input gain - Giriş kazancı - - - - - - Gain - Kazanç - - - - Output gain - Çıkış kazancı - - - - Bandwidth: - Bant genişliği: - - - - Octave - Octave - - - - Resonance : - Rezonans : - - - - Frequency: - Frekans: - - - - LP group - LP grubu - - - - HP group - HP grubu - - - - EqHandle - - - Reso: - Reso: - - - - BW: - BW: - - - - - Freq: - Freq: - - ExportProjectDialog @@ -4852,7 +2260,7 @@ Emin değilseniz, "Otomatik" olarak bırakın. time(s) - zamanlar) + zaman(lar) @@ -5010,3082 +2418,664 @@ Emin değilseniz, "Otomatik" olarak bırakın. En iyi (en yavaş) - - Oversampling: - Yüksek hızda örnekleme: - - - - 1x (None) - 1x (Hiçbiri) - - - - 2x - 2x - - - - 4x - 4x - - - - 8x - 8x - - - + Start Başlat - + Cancel İptal - - - Could not open file - Dosya açılamadı - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - %1 dosyası yazmak için açılamadı. -Lütfen dosyaya ve dosyayı içeren dizine yazma izniniz olduğundan emin olun ve tekrar deneyin! - - - - Export project to %1 - %1 projesini dışa aktar - - - - ( Fastest - biggest ) - (En hızlı - en büyük) - - - - ( Slowest - smallest ) - (En yavaş - en küçük) - - - - Error - Hata - - - - Error while determining file-encoder device. Please try to choose a different output format. - Dosya kodlayıcı cihazı belirlenirken hata oluştu. Lütfen farklı bir çıktı biçimi seçmeyi deneyin. - - - - Rendering: %1% - Oluşturuluyor: %1% - - - - Fader - - - Set value - Değeri ayarla - - - - Please enter a new value between %1 and %2: - Lütfen %1 ile %2 arasında yeni bir değer girin: - - - - FileBrowser - - - User content - Kullanıcı içeriği - - - - Factory content - Fabrika içeriği - - - - Browser - Tarayıcı - - - - Search - Arama - - - - Refresh list - Listeyi yenile - - - - FileBrowserTreeWidget - - - Send to active instrument-track - Aktif alet izine gönder - - - - Open containing folder - Bulunduğu dizini aç - - - - Song Editor - Şarkı Düzenleyici - - - - BB Editor - BB Düzenleyici - - - - Send to new AudioFileProcessor instance - Yeni Ses Dosyası İşlemcisi örneğine gönder - - - - Send to new instrument track - Yeni enstrüman kanalına gönder - - - - (%2Enter) - (%2Enter) - - - - Send to new sample track (Shift + Enter) - Yeni örnek kanala gönder (Shift + Enter) - - - - Loading sample - Örnek yükleniyor - - - - Please wait, loading sample for preview... - Lütfen bekleyin, önizleme için örnek yükleniyor... - - - - Error - Hata - - - - %1 does not appear to be a valid %2 file - %1 geçerli bir %2 dosyası gibi görünmüyor - - - - --- Factory files --- - --- Fabrika dosyaları --- - - - - FlangerControls - - - Delay samples - Gecikme örnekleri - - - - LFO frequency - LFO frekansı - - - - Seconds - Saniye - - - - Stereo phase - Stereo faz - - - - Regen - Regen - - - - Noise - Parazit - - - - Invert - Tersine çevir - - - - FlangerControlsDialog - - - DELAY - GECİKME - - - - Delay time: - Gecikme süresi: - - - - RATE - ORAN - - - - Period: - Periyod: - - - - AMNT - AMNT - - - - Amount: - Miktar: - - - - PHASE - Evre - - - - Phase: - Evre: - - - - FDBK - FDBK - - - - Feedback amount: - Geri bildirim miktarı: - - - - NOISE - PARAZİT - - - - White noise amount: - Beyaz gürültü miktarı: - - - - Invert - Tersine çevir - - - - FreeBoyInstrument - - - Sweep time - Tarama zamanı - - - - Sweep direction - Tarama yönü - - - - Sweep rate shift amount - Tarama oranı kaydırma miktarı - - - - - Wave pattern duty cycle - Dalga deseni görev döngüsü - - - - Channel 1 volume - Kanal 1 düzeyi - - - - - - Volume sweep direction - Düzey tarama yönü - - - - - - Length of each step in sweep - Taramadaki her adımın uzunluğu - - - - Channel 2 volume - Kanal 2 düzeyi - - - - Channel 3 volume - Kanal 3 düzeyi - - - - Channel 4 volume - Kanal 4 düzeyi - - - - Shift Register width - Vardiya Kaydı genişliği - - - - Right output level - Sağ çıkış seviyesi - - - - Left output level - Sol çıkış seviyesi - - - - Channel 1 to SO2 (Left) - Kanal 1'den SO2'ye (Sol) - - - - Channel 2 to SO2 (Left) - Kanal 2'den SO2'ye (Sol) - - - - Channel 3 to SO2 (Left) - Kanal 3'den SO2'ye (Sol) - - - - Channel 4 to SO2 (Left) - Kanal 4'den SO2'ye (Sol) - - - - Channel 1 to SO1 (Right) - Kanal 1'den SO1'e (Sağ) - - - - Channel 2 to SO1 (Right) - Kanal 2'den SO1'e (Sağ) - - - - Channel 3 to SO1 (Right) - Kanal 3'den SO1'e (Sağ) - - - - Channel 4 to SO1 (Right) - Kanal 4'den SO1'e (Sağ) - - - - Treble - Tiz - - - - Bass - Bas - - - - FreeBoyInstrumentView - - - Sweep time: - Tarama zamanı: - - - - Sweep time - Tarama zamanı - - - - Sweep rate shift amount: - Tarama oranı kaydırma miktarı: - - - - Sweep rate shift amount - Tarama oranı kaydırma miktarı - - - - - Wave pattern duty cycle: - Dalga deseni görev döngüsü: - - - - - Wave pattern duty cycle - Dalga deseni görev döngüsü - - - - Square channel 1 volume: - Kare kanal 1 düzeyi: - - - - Square channel 1 volume - Kare kanal 1 düzeyi - - - - - - Length of each step in sweep: - Taramadaki her adımın uzunluğu: - - - - - - Length of each step in sweep - Taramadaki her adımın uzunluğu - - - - Square channel 2 volume: - Kare kanal 2 düzeyi: - - - - Square channel 2 volume - Kare kanal 2 düzeyi - - - - Wave pattern channel volume: - Dalga deseni kanal düzeyi: - - - - Wave pattern channel volume - Dalga deseni kanal düzeyi - - - - Noise channel volume: - Gürültü kanalı düzeyi: - - - - Noise channel volume - Gürültü kanalı düzeyi - - - - SO1 volume (Right): - SO2 düzeyi (Sağ): - - - - SO1 volume (Right) - SO2 düzeyi (Sağ) - - - - SO2 volume (Left): - SO2 düzeyi (Sol): - - - - SO2 volume (Left) - SO2 düzeyi (Sol) - - - - Treble: - Tiz: - - - - Treble - Tiz - - - - Bass: - Bas: - - - - Bass - Bas - - - - Sweep direction - Tarama yönü - - - - - - - - Volume sweep direction - Düzey tarama yönü - - - - Shift register width - Vardiya kaydı genişliği - - - - Channel 1 to SO1 (Right) - Kanal 1'den SO1'e (Sağ) - - - - Channel 2 to SO1 (Right) - Kanal 2'den SO1'e (Sağ) - - - - Channel 3 to SO1 (Right) - Kanal 3'den SO1'e (Sağ) - - - - Channel 4 to SO1 (Right) - Kanal 4'den SO1'e (Sağ) - - - - Channel 1 to SO2 (Left) - Kanal 1'den SO2'ye (Sol) - - - - Channel 2 to SO2 (Left) - Kanal 2'den SO2'ye (Sol) - - - - Channel 3 to SO2 (Left) - Kanal 3'den SO2'ye (Sol) - - - - Channel 4 to SO2 (Left) - Kanal 4'den SO2'ye (Sol) - - - - Wave pattern graph - Dalga deseni grafiği - - - - MixerChannelView - - - Channel send amount - Kanal gönderme miktarı - - - - Move &left - Sol&a taşı - - - - Move &right - &Sağa taşı - - - - Rename &channel - &Kanalı yeniden adlandır - - - - R&emove channel - Kanalı k&aldır - - - - Remove &unused channels - &Kullanılmayan kanalları kaldırın - - - - Set channel color - Kanal rengini ayarla - - - - Remove channel color - Kanal rengini kaldır - - - - Pick random channel color - Rastgele kanal rengi seçin - - - - MixerChannelLcdSpinBox - - - Assign to: - Ata: - - - - New mixer Channel - Yeni FX Kanalı - - - - Mixer - - - Master - Usta - - - - - - Channel %1 - FX %1 - - - - Volume - Ses Düzeyi - - - - Mute - Sustur - - - - Solo - Tek - - - - MixerView - - - Mixer - FX-Karıştırıcısı - - - - Fader %1 - FX Fader %1 - - - - Mute - Sustur - - - - Mute this mixer channel - Bu FX kanalını sessize al - - - - Solo - Tek - - - - Solo mixer channel - Solo FX kanalı - - - - MixerRoute - - - - Amount to send from channel %1 to channel %2 - %1 kanalından %2 kanalına gönderilecek miktar - - - - GigInstrument - - - Bank - Yuva - - - - Patch - Yama - - - - Gain - Kazanç - - - - GigInstrumentView - - - - Open GIG file - GIG dosyasını açın - - - - Choose patch - Yama seçin - - - - Gain: - Kazanç: - - - - GIG Files (*.gig) - GIG Dosyaları (*.gig) - - - - GuiApplication - - - Working directory - Çalışma dizini - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - %1 LMMS çalışma dizini yok. Şimdi oluşturulsun mu? Dizini daha sonra Düzenle -> Ayarlar üzerinden değiştirebilirsiniz. - - - - Preparing UI - Arayüz hazırlanıyor - - - - Preparing song editor - Şarkı düzenleyicinin hazırlanıyor - - - - Preparing mixer - Karıştırıcı hazırlanıyor - - - - Preparing controller rack - Denetleyici rafını hazırlanıyor - - - - Preparing project notes - Proje notlarının hazırlanıyor - - - - Preparing beat/bassline editor - Beat / bassline editörü hazırlanıyor - - - - Preparing piano roll - Piyano rulosunun hazırlanıyor - - - - Preparing automation editor - Otomasyon düzenleyicinin hazırlanıyor - - - - InstrumentFunctionArpeggio - - - Arpeggio - Arpej - - - - Arpeggio type - Arpej türü - - - - Arpeggio range - Arpej aralığı - - - - Note repeats - Nota tekrarları - - - - Cycle steps - Döngü adımları - - - - Skip rate - Atlama oranı - - - - Miss rate - Iskalama oranı - - - - Arpeggio time - Arpej zamanı - - - - Arpeggio gate - Arpej kapısı - - - - Arpeggio direction - Arpej yönü - - - - Arpeggio mode - Arpej modu - - - - Up - Üst - - - - Down - Aşağı - - - - Up and down - Yukarı ve aşağı - - - - Down and up - Aşağı ve yukarı - - - - Random - Rastgele - - - - Free - Özgür - - - - Sort - Çeşit - - - - Sync - Eşitleme - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - ARPEJ - - - - RANGE - ARALIK - - - - Arpeggio range: - Arpej aralığı: - - - - octave(s) - octave(s) - - - - REP - REP - - - - Note repeats: - Nota tekrarları: - - - - time(s) - zamanlar) - - - - CYCLE - DÖNGÜ - - - - Cycle notes: - Döngü notaları: - - - - note(s) - nota(lar) - - - - SKIP - ATLA - - - - Skip rate: - Atlama oranı: - - - - - - % - % - - - - MISS - KAÇIRMA - - - - Miss rate: - Kaçırma oranı: - - - - TIME - ZAMAN - - - - Arpeggio time: - Arpej zamanı: - - - - ms - ms - - - - GATE - PORTAL - - - - Arpeggio gate: - Arpej kapısı: - - - - Chord: - Akord: - - - - Direction: - Yön: - - - - Mode: - Kip: - InstrumentFunctionNoteStacking - + octave octave - - + + Major Önemli - + Majb5 Majb5 - + minor minor - + minb5 minb5 - + sus2 sus2 - + sus4 sus4 - + aug aug - + augsus4 augsus4 - + tri tri - + 6 6 - + 6sus4 6sus4 - + 6add9 6add9 - + m6 m6 - + m6add9 m6add9 - + 7 7 - + 7sus4 7sus4 - + 7#5 7#5 - + 7b5 7b5 - + 7#9 7#9 - + 7b9 7b9 - + 7#5#9 7#5#9 - + 7#5b9 7#5b9 - + 7b5b9 7b5b9 - + 7add11 7add11 - + 7add13 7add13 - + 7#11 7#11 - + Maj7 Maj7 - + Maj7b5 Maj7b5 - + Maj7#5 Maj7#5 - + Maj7#11 Maj7#11 - + Maj7add13 Maj7add13 - + m7 m7 - + m7b5 m7b5 - + m7b9 m7b9 - + m7add11 m7add11 - + m7add13 m7add13 - + m-Maj7 m-Maj7 - + m-Maj7add11 m-Maj7add11 - + m-Maj7add13 m-Maj7add13 - + 9 9 - + 9sus4 9sus4 - + add9 add9 - + 9#5 9#5 - + 9b5 9b5 - + 9#11 9#11 - + 9b13 9b13 - + Maj9 Maj9 - + Maj9sus4 Maj9sus4 - + Maj9#5 Maj9#5 - + Maj9#11 Maj9#11 - + m9 m9 - + madd9 madd9 - + m9b5 m9b5 - + m9-Maj7 m9-Maj7 - + 11 11 - + 11b9 11b9 - + Maj11 Maj11 - + m11 m11 - + m-Maj11 m-Maj11 - + 13 13 - + 13#9 13#9 - + 13b9 13b9 - + 13b5b9 13b5b9 - + Maj13 Maj13 - + m13 m13 - + m-Maj13 m-Maj13 - + Harmonic minor Harmonik minor - + Melodic minor Melodik minor - + Whole tone Bütün ton - + Diminished Azalma - + Major pentatonic Major pentatonik - + Minor pentatonic Minor pentatonik - + Jap in sen Sen de Jap - + Major bebop Başlıca bebop - + Dominant bebop Baskın bebop - + Blues Blues - + Arabic Arapça - + Enigmatic Esrarengiz - + Neopolitan Neopolitan - + Neopolitan minor Neopolitan minör - + Hungarian minor Macar minör - + Dorian Dorian - + Phrygian Frig - + Lydian Lidya DIli - + Mixolydian Miksolydiyen - + Aeolian Aeolian - + Locrian Locrian - + Minor Minor - + Chromatic Kromatik - + Half-Whole Diminished Yarım-Bütün Azaltılmış - + 5 5 - + Phrygian dominant Frig hakimiyeti - + Persian Farsça - - - Chords - Akordlar - - - - Chord type - Akord türü - - - - Chord range - Akord aralığı - - - - InstrumentFunctionNoteStackingView - - - STACKING - İSTİFLEME - - - - Chord: - Akord: - - - - RANGE - ARALIK - - - - Chord range: - Akord aralığı: - - - - octave(s) - octave(s) - - - - InstrumentMidiIOView - - - ENABLE MIDI INPUT - MIDI GİRİŞİNİ ETKİNLEŞTİR - - - - ENABLE MIDI OUTPUT - MIDI ÇIKIŞINI ETKİNLEŞTİR - - - - - CHAN - This string must be be short, its width must be less than * width of LCD spin-box of two digits - KANAL - - - - - VELOC - This string must be be short, its width must be less than * width of LCD spin-box of three digits - VELOC - - - - PROG - This string must be be short, its width must be less than the * width of LCD spin-box of three digits - PROG - - - - NOTE - This string must be be short, its width must be less than * width of LCD spin-box of three digits - NOTA - - - - MIDI devices to receive MIDI events from - MIDI olaylarının alınacağı MIDI cihazları - - - - MIDI devices to send MIDI events to - MIDI olaylarının gönderileceği MIDI cihazları - - - - CUSTOM BASE VELOCITY - ÖZEL BAZ HIZI - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. - % 100 nota hızında MIDI tabanlı enstrümanlar için hız normalleştirme tabanını belirtin. - - - - BASE VELOCITY - TABAN HIZI - - - - InstrumentTuningView - - - MASTER PITCH - ANA PERDE - - - - Enables the use of master pitch - Ana adımın kullanılmasını sağlar - InstrumentSoundShaping - + VOLUME DÜZEY - + Volume Ses Düzeyi - + CUTOFF AYIRMAK - - + Cutoff frequency Kesme frekansı - + RESO RESO - + Resonance Çınlama - - - Envelopes/LFOs - Zarflar / LFO'lar - - - - Filter type - Filtre tipi - - - - Q/Resonance - Q/Rezonans - - - - Low-pass - Düşük geçiş - - - - Hi-pass - Yüksek geçiş - - - - Band-pass csg - Bant geçişli csg - - - - Band-pass czpg - Bant geçişli czpg - - - - Notch - Çentik - - - - All-pass - Tamamı bitti - - - - Moog - Moog - - - - 2x Low-pass - 2x Düşük geçiş - - - - RC Low-pass 12 dB/oct - RC Düşük geçişli 12 dB / oct - - - - RC Band-pass 12 dB/oct - RC Bant geçişi 12 dB / oct - - - - RC High-pass 12 dB/oct - RC Yüksek Geçişli 12 dB / oct - - - - RC Low-pass 24 dB/oct - RC Düşük geçişli 24 dB / oct - - - - RC Band-pass 24 dB/oct - RC Bant geçişi 24 dB / oct - - - - RC High-pass 24 dB/oct - RC Yüksek Geçişli 24 dB / oct - - - - Vocal Formant - Vokal Biçimlendirici - - - - 2x Moog - 2x Moog - - - - SV Low-pass - SV Düşük geçiş - - - - SV Band-pass - SV Bant geçişi - - - - SV High-pass - SV Yüksek geçiş - - - - SV Notch - SV Notch - - - - Fast Formant - Hızlı Biçimlendirici - - - - Tripole - Üçlü - - InstrumentSoundShapingView + JackAppDialog - - TARGET - HEDEF + + Add JACK Application + - - FILTER - FİLTRE + + Note: Features not implemented yet are greyed out + - - FREQ - FREK + + Application + - - Cutoff frequency: - Kesim frekansı: + + Name: + - - Hz - Hz + + Application: + - - Q/RESO - Q/RESO + + From template + - - Q/Resonance: - Q/Rezonans: + + Custom + - - Envelopes, LFOs and filters are not supported by the current instrument. - Zarflar, LFO'lar ve filtreler mevcut cihaz tarafından desteklenmemektedir. - - - - InstrumentTrack - - - - unnamed_track - adsız_parça + + Template: + - - Base note - Temel nota + + Command: + - - First note - İlk nota + + Setup + - - Last note - Son nota + + Session Manager: + - - Volume - Ses Düzeyi + + None + - - Panning - Panning + + Audio inputs: + - - Pitch - Zift + + MIDI inputs: + - - Pitch range - Eğim aralığı + + Audio outputs: + - - Mixer channel - FX kanalı + + MIDI outputs: + - - Master pitch - Ana sahne + + Take control of main application window + - - Enable/Disable MIDI CC - MIDI CC'yi Etkinleştir / Devre Dışı Bırak + + Workarounds + - - CC Controller %1 - CC Denetleyicisi %1 + + Wait for external application start (Advanced, for Debug only) + - - - Default preset - Varsayılan ön ayar - - - - InstrumentTrackView - - - Volume - Ses Düzeyi + + Capture only the first X11 Window + - - Volume: - Ses Düzeyi: + + Use previous client output buffer as input for the next client + - - VOL - SES + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + - - Panning - Panning + + Error here + - - Panning: - Panning: - - - - PAN - PAN - - - - MIDI - MIDI - - - - Input - Giriş - - - - Output - Çıkış - - - - Open/Close MIDI CC Rack - MIDI CC Rafını Aç / Kapat - - - - Channel %1: %2 - FX %1: %2 - - - - InstrumentTrackWindow - - - GENERAL SETTINGS - GENEL AYARLAR - - - - Volume - Ses Düzeyi - - - - Volume: - Ses Düzeyi: - - - - VOL - SES - - - - Panning - Panning - - - - Panning: - Panning: - - - - PAN - PAN - - - - Pitch - Zift - - - - Pitch: - Hatve (Aralık): - - - - cents - sent - - - - PITCH - PERDE - - - - Pitch range (semitones) - Perde aralığı (yarım tonlar) - - - - RANGE - ARALIK - - - - Mixer channel - FX kanalı - - - - CHANNEL - FX - - - - Save current instrument track settings in a preset file - Mevcut enstrüman parça ayarlarını önceden ayarlanmış bir dosyaya kaydedin - - - - SAVE - KAYDET - - - - Envelope, filter & LFO - Zarf, filtre ve LFO - - - - Chord stacking & arpeggio - Akor istifleme & arpej - - - - Effects - Efektler - - - - MIDI - MIDI - - - - Miscellaneous - Çeşitli - - - - Save preset - Ön ayarı kaydet - - - - XML preset file (*.xpf) - XML hazır ayar dosyası (*.xpf) - - - - Plugin - Eklenti - - - - JackApplicationW - - + NSM applications cannot use abstract or absolute paths - NSM uygulamaları soyut veya mutlak yollar kullanamaz + - + NSM applications cannot use CLI arguments - NSM uygulamaları CLI bağımsız değişkenlerini kullanamaz + - + You need to save the current Carla project before NSM can be used - NSM kullanılmadan önce mevcut Carla projesini kaydetmeniz gerekir + JuceAboutW - - About JUCE - JUCE hakkında - - - - <b>About JUCE</b> - <b>JUCE hakkında</b> - - - - This program uses JUCE version 3.x.x. - Bu program JUCE 3.x.x sürümünü kullanır. - - - - JUCE (Jules' Utility Class Extensions) is an all-encompassing C++ class library for developing cross-platform software. - -It contains pretty much everything you're likely to need to create most applications, and is particularly well-suited for building highly-customised GUIs, and for handling graphics and sound. - -JUCE is licensed under the GNU Public Licence version 2.0. -One module (juce_core) is permissively licensed under the ISC. - -Copyright (C) 2017 ROLI Ltd. - JUCE (Jules'un Yardımcı Sınıf Uzantıları), platformlar arası yazılım geliştirmek için her şeyi kapsayan bir C++ sınıf kitaplığıdır. - -Çoğu uygulamayı oluşturmak için ihtiyaç duyacağınız hemen hemen her şeyi içerir ve özellikle son derece özelleştirilmiş Kullanıcı arayüzleri oluşturmak ve grafik ve sesle çalışmak için çok uygundur. - -JUCE, GNU Kamu Lisansı 2.0 sürümü altında lisanslanmıştır. -Bir modül (juce_core) ISC altında izinli olarak lisanslanmıştır. - -Telif Hakkı (C) 2017 ROLI Ltd. - - - + This program uses JUCE version %1. Bu program JUCE %1 sürümünü kullanıyor. - - Knob - - - Set linear - Doğrusal ayarla - - - - Set logarithmic - Logaritmik ayarla - - - - - Set value - Değeri ayarla - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - Lütfen -96.0 dBFS ve 6.0 dBFS arasında yeni bir değer girin: - - - - Please enter a new value between %1 and %2: - Lütfen %1 ile %2 arasında yeni bir değer girin: - - - - LadspaControl - - - Link channels - Kanalları bağla - - - - LadspaControlDialog - - - Link Channels - Kanalları Bağla - - - - Channel - Kanallar - - - - LadspaControlView - - - Link channels - Kanalları bağla - - - - Value: - Değer: - - - - LadspaEffect - - - Unknown LADSPA plugin %1 requested. - Bilinmeyen LADSPA eklentisi %1 istendi. - - - - LcdFloatSpinBox - - - Set value - Değeri ayarla - - - - Please enter a new value between %1 and %2: - Lütfen %1 ile %2 arasında yeni bir değer girin: - - - - LcdSpinBox - - - Set value - Değeri ayarla - - - - Please enter a new value between %1 and %2: - Lütfen %1 ile %2 arasında yeni bir değer girin: - - - - LeftRightNav - - - - - Previous - Önceki - - - - - - Next - Sonraki - - - - Previous (%1) - Önceki (%1) - - - - Next (%1) - Sonraki (%1) - - - - LfoController - - - LFO Controller - LFO Denetleyicisi - - - - Base value - Temel değer - - - - Oscillator speed - Osilatör hızı - - - - Oscillator amount - Osilatör miktarı - - - - Oscillator phase - Osilatör fazı - - - - Oscillator waveform - Osilatör dalga formu - - - - Frequency Multiplier - Frekans Çarpanı - - - - LfoControllerDialog - - - LFO - LFO - - - - BASE - TEMEL - - - - Base: - Temel: - - - - FREQ - FREK - - - - LFO frequency: - LFO frekansı: - - - - AMNT - AMNT - - - - Modulation amount: - Modülasyon miktarı: - - - - PHS - PHS - - - - Phase offset: - Faz uzaklığı: - - - - degrees - derece - - - - Sine wave - Sinüs dalgası - - - - Triangle wave - Üçgen dalga - - - - Saw wave - Testere dalga - - - - Square wave - Kare dalgası - - - - Moog saw wave - Moog testere dalgası - - - - Exponential wave - Üstel dalga - - - - White noise - Beyaz gürültü - - - - User-defined shape. -Double click to pick a file. - Kullanıcı tanımlı şekil. -Bir dosya seçmek için çift tıklayın. - - - - Mutliply modulation frequency by 1 - Modülasyon frekansını 1 ile çarpın - - - - Mutliply modulation frequency by 100 - Modülasyon frekansını 100 ile çarpın - - - - Divide modulation frequency by 100 - Modülasyon frekansını 100'e bölün - - - - Engine - - - Generating wavetables - Dalgaboyu oluşturma - - - - Initializing data structures - Veri yapılarını başlatma - - - - Opening audio and midi devices - Ses ve midi cihazlarını açma - - - - Launching mixer threads - Karıştırıcı konularının başlatılması - - - - MainWindow - - - Configuration file - Yapılandırma dosyası - - - - Error while parsing configuration file at line %1:%2: %3 - %1:%2: %3 satırındaki yapılandırma dosyası ayrıştırılırken hata oluştu - - - - Could not open file - Dosya açılamadı - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - %1 dosyası yazmak için açılamadı. -Lütfen dosyaya ve dosyayı içeren dizine yazma izniniz olduğundan emin olun ve tekrar deneyin! - - - - Project recovery - Proje kurtarma - - - - There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - Mevcut bir kurtarma dosyası var. Görünüşe göre son oturum düzgün şekilde sona ermemiş veya başka bir LMMS örneği zaten çalışıyor. Bu oturumun projesini kurtarmak istiyor musunuz? - - - - - Recover - Kurtar - - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - Dosyayı kurtarın. Lütfen bunu yaptığınızda birden fazla LMMS örneği çalıştırmayın. - - - - - Discard - Iskarta - - - - Launch a default session and delete the restored files. This is not reversible. - Varsayılan bir oturum başlatın ve geri yüklenen dosyaları silin. Bu geri alınamaz. - - - - Version %1 - Sürüm %1 - - - - Preparing plugin browser - Eklenti tarayıcısı hazırlanıyor - - - - Preparing file browsers - Dosya tarayıcıları hazırlanıyor - - - - My Projects - Projelerim - - - - My Samples - Örneklerim - - - - My Presets - Ön ayarlarım - - - - My Home - Ana sayfam - - - - Root directory - Kök dizini - - - - Volumes - Düzeyler - - - - My Computer - Bilgisayarım - - - - &File - &Dosya - - - - &New - &Yeni - - - - &Open... - &Aç... - - - - Loading background picture - Arka plan resmi yükleniyor - - - - &Save - &Kaydet - - - - Save &As... - &Farklı Kaydet... - - - - Save as New &Version - Yeni &Sürüm Olarak Kaydet - - - - Save as default template - Varsayılan şablon olarak kaydet - - - - Import... - İçe Aktar... - - - - E&xport... - D&ışa aktar... - - - - E&xport Tracks... - Parçaları D&ışa aktar... - - - - Export &MIDI... - &MIDI Dışa Aktar... - - - - &Quit - &Çıkış - - - - &Edit - &Düzenle - - - - Undo - Geri Al - - - - Redo - İleri Al - - - - Settings - Ayarlar - - - - &View - &Görünüm - - - - &Tools - &Araçlar - - - - &Help - &Yardım - - - - Online Help - Çevrimiçi Yardım - - - - Help - Yardım - - - - About - Hakkında - - - - Create new project - Yeni proje oluştur - - - - Create new project from template - Şablondan yeni proje oluştur - - - - Open existing project - Mevcut projeyi aç - - - - Recently opened projects - Yakın zamanda açılan projeler - - - - Save current project - Mevcut projeyi kaydet - - - - Export current project - Mevcut projeyi dışa aktar - - - - Metronome - Metronom - - - - - Song Editor - Şarkı Düzenleyici - - - - - Beat+Bassline Editor - Beat+Bassline Düzenleyici - - - - - Piano Roll - Piyano Rulosu - - - - - Automation Editor - Otomasyon Düzenleyicisi - - - - - Mixer - FX Karıştırıcısı - - - - Show/hide controller rack - Denetleyici rafını göster / gizle - - - - Show/hide project notes - Proje notlarını göster / gizle - - - - Untitled - Başlıksız - - - - Recover session. Please save your work! - Oturumu kurtarın. Lütfen çalışmanızı kaydedin! - - - - LMMS %1 - LMMS %1 - - - - Recovered project not saved - Kurtarılan proje kaydedilmedi - - - - This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? - Bu proje önceki oturumdan kurtarıldı. Şu anda kaydedilmedi ve kaydetmezseniz kaybolacak. Şimdi kaydetmek ister misin? - - - - Project not saved - Proje kaydedilmedi - - - - The current project was modified since last saving. Do you want to save it now? - Mevcut proje, son kayıttan bu yana değiştirildi. Şimdi kaydetmek ister misin? - - - - Open Project - Projeyi Aç - - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - - Save Project - Projeyi Kaydet - - - - LMMS Project - LMMS Projesi - - - - LMMS Project Template - LMMS Proje Şablonu - - - - Save project template - Proje şablonunu kaydet - - - - Overwrite default template? - Varsayılan şablonun üzerine yazılsın mı? - - - - This will overwrite your current default template. - Bu, mevcut varsayılan şablonunuzun üzerine yazacaktır. - - - - Help not available - Yardım mevcut değil - - - - Currently there's no help available in LMMS. -Please visit http://lmms.sf.net/wiki for documentation on LMMS. - Şu anda LMMS'de yardım bulunmamaktadır. -LMMS ile ilgili belgeler için lütfen http://lmms.sf.net/wiki adresini ziyaret edin. - - - - Controller Rack - Denetleyici Rafı - - - - Project Notes - Proje Notları - - - - Fullscreen - Tam ekran - - - - Volume as dBFS - DBFS olarak düzey - - - - Smooth scroll - Düzgün kaydırma - - - - Enable note labels in piano roll - Piyano rulosunda not etiketlerini etkinleştirin - - - - MIDI File (*.mid) - MIDI Dosyası (*.mid) - - - - - untitled - başlıksız - - - - - Select file for project-export... - Proje dışa aktarımı için dosya seçin... - - - - Select directory for writing exported tracks... - Dışa aktarılan parkurları yazmak için dizin seçin... - - - - Save project - Projeyi kaydet - - - - Project saved - Proje kaydedildi - - - - The project %1 is now saved. - %1 projesi şimdi kaydedildi. - - - - Project NOT saved. - Proje kaydedilmedi. - - - - The project %1 was not saved! - %1 projesi kaydedilmedi! - - - - Import file - Dosyayı içe aktar - - - - MIDI sequences - MIDI dizileri - - - - Hydrogen projects - Hidrojen projeleri - - - - All file types - Tüm dosya türleri - - - - MeterDialog - - - - Meter Numerator - Sayaç Payı - - - - Meter numerator - Sayaç payı - - - - - Meter Denominator - Metre Paydası - - - - Meter denominator - Metre paydası - - - - TIME SIG - TIME SIG - - - - MeterModel - - - Numerator - Pay - - - - Denominator - Payda - - - - MidiCCRackView - - - - MIDI CC Rack - %1 - MIDI CC Rack - %1 - - - - MIDI CC Knobs: - MIDI CC Düğmeleri: - - - - CC %1 - CC %1 - - - - MidiController - - - MIDI Controller - MIDI Denetleyicisi - - - - unnamed_midi_controller - adsız_midi_denetleyici - - - - MidiImport - - - - Setup incomplete - Kurulum tamamlanmadı - - - - You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. - Ayarlar iletişim kutusunda (Düzenle-> Ayarlar) varsayılan bir ses yazı tipi ayarlamadınız. Bu nedenle, bu MIDI dosyasını içe aktardıktan sonra hiçbir ses çalınmayacaktır. Bir Genel MIDI ses yazı tipi indirmeli, bunu ayarlar iletişim kutusunda belirtmeli ve tekrar denemelisiniz. - - - - You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - LMMS'yi içe aktarılan MIDI dosyalarına varsayılan ses eklemek için kullanılan SoundFont2 oynatıcı desteğiyle derlemediniz. Bu nedenle, bu MIDI dosyasını içe aktardıktan sonra hiçbir ses çalınmayacaktır. - - - - MIDI Time Signature Numerator - MIDI Zaman İmza Payı - - - - MIDI Time Signature Denominator - MIDI Zaman İmza Paydası - - - - Numerator - Pay - - - - Denominator - Payda - - - - Track - Parça - - - - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - JACK sunucusu kapalı - - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - JACK sunucusu kapatılmış görünüyor. - - MidiPatternW @@ -8291,2731 +3281,370 @@ LMMS ile ilgili belgeler için lütfen http://lmms.sf.net/wiki adresini ziyaret &Çıkış - + + Esc + + + + &Insert Mode &Ekle Modu - + F F - + &Velocity Mode &Hız Modu - + D D - + Select All Tümünü seç - + A A - - MidiPort - - - Input channel - Giriş kanalı - - - - Output channel - Çıkış kanalı - - - - Input controller - Giriş kontrolörü - - - - Output controller - Çıkış denetleyicisi - - - - Fixed input velocity - Sabit giriş hızı - - - - Fixed output velocity - Sabit çıkış hızı - - - - Fixed output note - Sabit çıktı notu - - - - Output MIDI program - MIDI programı çıktısı - - - - Base velocity - Temel hız - - - - Receive MIDI-events - MIDI olaylarını alın - - - - Send MIDI-events - MIDI olayları gönder - - - - MidiSetupWidget - - - Device - Cihaz - - - - MonstroInstrument - - - Osc 1 volume - Osc 1 düzey - - - - Osc 1 panning - Osc 1 kaydırma - - - - Osc 1 coarse detune - Osc 1 kaba detay - - - - Osc 1 fine detune left - Osc 1 ince detay sol - - - - Osc 1 fine detune right - Osc 1 ince detay sağ - - - - Osc 1 stereo phase offset - Osc 1 çift kanal faz ofseti - - - - Osc 1 pulse width - Osc 1 darbe genişliği - - - - Osc 1 sync send on rise - Osc 1 nsenkronizasyonu yükselişte gönder - - - - Osc 1 sync send on fall - Osc 1 senkronizasyonu sonbaharda gönder - - - - Osc 2 volume - Osc 2 düzey - - - - Osc 2 panning - Osc 2 kaydırma - - - - Osc 2 coarse detune - Osc 2 kaba detay - - - - Osc 2 fine detune left - Osc 2 ince detay sol - - - - Osc 2 fine detune right - Osc 2 ince detay sağ - - - - Osc 2 stereo phase offset - Osc 2 çift kanal faz ofseti - - - - Osc 2 waveform - Osc 2 dalga formu - - - - Osc 2 sync hard - Osc 2 senkronizasyonu zor - - - - Osc 2 sync reverse - Osc 2 senkronizasyon ters - - - - Osc 3 volume - Osc 3 düzey - - - - Osc 3 panning - Osc 3 kaydırma - - - - Osc 3 coarse detune - Osc 3 kaba detay - - - - Osc 3 Stereo phase offset - Osc 3 çift kanal faz ofseti - - - - Osc 3 sub-oscillator mix - Osc 3 alt osilatör karışımı - - - - Osc 3 waveform 1 - Osc 3 dalga formu 1 - - - - Osc 3 waveform 2 - Osc 3 dalga formu 2 - - - - Osc 3 sync hard - Osc 3 senkronizasyonu zor - - - - Osc 3 Sync reverse - Osc 3 Senkronizasyon ters - - - - LFO 1 waveform - LFO 1 dalga formu - - - - LFO 1 attack - LFO 1 saldırısı - - - - LFO 1 rate - LFO 1 oran - - - - LFO 1 phase - LFO 1 aşaması - - - - LFO 2 waveform - LFO 2 dalga formu - - - - LFO 2 attack - LFO 2 saldırısı - - - - LFO 2 rate - LFO 2 oran - - - - LFO 2 phase - LFO 2 aşaması - - - - Env 1 pre-delay - Env 1 ön gecikme - - - - Env 1 attack - Env 1 saldırısı - - - - Env 1 hold - Env 1 tutma - - - - Env 1 decay - Env 1 bozunma - - - - Env 1 sustain - Env 1 sürdürmek - - - - Env 1 release - Env 1 yayını - - - - Env 1 slope - Env 1 eğimi - - - - Env 2 pre-delay - Env 2 ön gecikmesi - - - - Env 2 attack - Env 2 saldırısı - - - - Env 2 hold - Env 2 tutma - - - - Env 2 decay - Env 2 bozunma - - - - Env 2 sustain - Env 2 sürdürmek - - - - Env 2 release - Env 2 yayını - - - - Env 2 slope - Env 2 eğimi - - - - Osc 2+3 modulation - Osc 2+3 modülasyonu - - - - Selected view - Seçili görünüm - - - - Osc 1 - Vol env 1 - Osc 1 - Düzey env 1 - - - - Osc 1 - Vol env 2 - Osc 1 - Düzey env 2 - - - - Osc 1 - Vol LFO 1 - Osc 1 - Düzey LFO 1 - - - - Osc 1 - Vol LFO 2 - Osc 1 - Düzey LFO 2 - - - - Osc 2 - Vol env 1 - Osc 2 - Düzey env 1 - - - - Osc 2 - Vol env 2 - Osc 2 - Düzey env 2 - - - - Osc 2 - Vol LFO 1 - Osc 2 - Düzey LFO 1 - - - - Osc 2 - Vol LFO 2 - Osc 2 - Düzey LFO 2 - - - - Osc 3 - Vol env 1 - Osc 3 - Düzey env 1 - - - - Osc 3 - Vol env 2 - Osc 3 - Düzey env 2 - - - - Osc 3 - Vol LFO 1 - Osc 3 - Düzey LFO 1 - - - - Osc 3 - Vol LFO 2 - Osc 3 - Düzey LFO 2 - - - - Osc 1 - Phs env 1 - Osc 1 - Phs env 1 - - - - Osc 1 - Phs env 2 - Osc 1 - Phs env 2 - - - - Osc 1 - Phs LFO 1 - Osc 1 - Phs LFO 1 - - - - Osc 1 - Phs LFO 2 - Osc 1 - Phs LFO 2 - - - - Osc 2 - Phs env 1 - Osc 2 - Phs env 1 - - - - Osc 2 - Phs env 2 - Osc 2 - Phs env 2 - - - - Osc 2 - Phs LFO 1 - Osc 2 - Phs LFO 1 - - - - Osc 2 - Phs LFO 2 - Osc 2 - Phs LFO 2 - - - - Osc 3 - Phs env 1 - Osc 3 - Phs env 1 - - - - Osc 3 - Phs env 2 - Osc 3 - Phs env 2 - - - - Osc 3 - Phs LFO 1 - Osc 3 - Phs LFO 1 - - - - Osc 3 - Phs LFO 2 - Osc 3 - Phs LFO 2 - - - - Osc 1 - Pit env 1 - Osc 1 - Pit env 1 - - - - Osc 1 - Pit env 2 - Osc 1 - Pit env 2 - - - - Osc 1 - Pit LFO 1 - Osc 1 - Pit LFO 1 - - - - Osc 1 - Pit LFO 2 - Osc 1 - Pit LFO 2 - - - - Osc 2 - Pit env 1 - Osc 2 - Pit env 1 - - - - Osc 2 - Pit env 2 - Osc 2 - Pit env 2 - - - - Osc 2 - Pit LFO 1 - Osc 2 - Pit LFO 1 - - - - Osc 2 - Pit LFO 2 - Osc 2 - Pit LFO 2 - - - - Osc 3 - Pit env 1 - Osc 3 - Pit env 1 - - - - Osc 3 - Pit env 2 - Osc 3 - Pit env 2 - - - - Osc 3 - Pit LFO 1 - Osc 3 - Pit LFO 1 - - - - Osc 3 - Pit LFO 2 - Osc 3 - Pit LFO 2 - - - - Osc 1 - PW env 1 - Osc 1 - PW env 1 - - - - Osc 1 - PW env 2 - Osc 1 - PW env 2 - - - - Osc 1 - PW LFO 1 - Osc 1 - PW LFO 1 - - - - Osc 1 - PW LFO 2 - Osc 1 - PW LFO 2 - - - - Osc 3 - Sub env 1 - Osc 3 - Sub env 1 - - - - Osc 3 - Sub env 2 - Osc 3 - Sub env 2 - - - - Osc 3 - Sub LFO 1 - Osc 3 - Sub LFO 1 - - - - Osc 3 - Sub LFO 2 - Osc 3 - Sub LFO 2 - - - - - Sine wave - Sinüs dalgası - - - - Bandlimited Triangle wave - Band sınırlı Üçgen dalga - - - - Bandlimited Saw wave - Bant sınırı Testere dalgası - - - - Bandlimited Ramp wave - Bant sınırlı Rampa dalgası - - - - Bandlimited Square wave - Bant sınırı Kare dalga - - - - Bandlimited Moog saw wave - Band sınırlı Moog testere dalgası - - - - - Soft square wave - Yumuşak kare dalga - - - - Absolute sine wave - Mutlak sinüs dalgası - - - - - Exponential wave - Üstel dalga - - - - White noise - Beyaz gürültü - - - - Digital Triangle wave - Dijital Üçgen dalga - - - - Digital Saw wave - Dijital Testere dalgası - - - - Digital Ramp wave - Dijital Rampa dalgası - - - - Digital Square wave - Dijital Kare dalga - - - - Digital Moog saw wave - Digital Moog testere dalgası - - - - Triangle wave - Üçgen dalga - - - - Saw wave - Testere dalga - - - - Ramp wave - Rampa dalgası - - - - Square wave - Kare dalgası - - - - Moog saw wave - Moog testere dalgası - - - - Abs. sine wave - Abs. sinüs dalgası - - - - Random - Rastgele - - - - Random smooth - Rastgele pürüzsüz - - - - MonstroView - - - Operators view - Operatörler görünümü - - - - Matrix view - Matris görünümü - - - - - - Volume - Ses Düzeyi - - - - - - Panning - Panning - - - - - - Coarse detune - Kaba detune - - - - - - semitones - yarım tonlar - - - - - Fine tune left - Sola ince ayar - - - - - - - cents - sent - - - - - Fine tune right - Sağa ince ayar - - - - - - Stereo phase offset - Stereo faz kayması - - - - - - - - deg - deg - - - - Pulse width - Darbe genişliği - - - - Send sync on pulse rise - Nabız yükseldiğinde senkronizasyon gönder - - - - Send sync on pulse fall - Nabız düşüşünde senkronizasyon gönder - - - - Hard sync oscillator 2 - Sabit senkron osilatör 2 - - - - Reverse sync oscillator 2 - Ters senkron osilatör 2 - - - - Sub-osc mix - Alt osc karışımı - - - - Hard sync oscillator 3 - Sabit senkron osilatör 3 - - - - Reverse sync oscillator 3 - Ters senkron osilatör 3 - - - - - - - Attack - Saldırı - - - - - Rate - Oran - - - - - Phase - Evre - - - - - Pre-delay - Ön gecikme - - - - - Hold - Tut - - - - - Decay - Bozunma - - - - - Sustain - Sürdürmek - - - - - Release - Yayınla - - - - - Slope - Eğim - - - - Mix osc 2 with osc 3 - Osc 2'yi osc 3 ile karıştır - - - - Modulate amplitude of osc 3 by osc 2 - OSC 3'ün genliğini osc 2 ile modüle edin - - - - Modulate frequency of osc 3 by osc 2 - OSC 3'ün frekansını osc 2 ile modüle edin - - - - Modulate phase of osc 3 by osc 2 - OSC 3'ün fazını OSC 2 ile modüle edin - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Modulation amount - Modülasyon miktarı - - - - MultitapEchoControlDialog - - - Length - Süre - - - - Step length: - Adım uzunluğu: - - - - Dry - Kuru - - - - Dry gain: - Kuru kazanç: - - - - Stages - Aşamalar - - - - Low-pass stages: - Düşük geçiş aşamaları: - - - - Swap inputs - Girişleri değiştir - - - - Swap left and right input channels for reflections - Yansımalar için sol ve sağ giriş kanallarını değiştirin - - - - NesInstrument - - - Channel 1 coarse detune - Kanal 1 kaba detune - - - - Channel 1 volume - Kanal 1 düzeyi - - - - Channel 1 envelope length - Kanal 1 zarf uzunluğu - - - - Channel 1 duty cycle - Kanal 1 görev döngüsü - - - - Channel 1 sweep amount - Kanal 1 tarama miktarı - - - - Channel 1 sweep rate - Kanal 1 tarama hızı - - - - Channel 2 Coarse detune - Kanal 2 Kaba detune - - - - Channel 2 Volume - Kanal 2 Düzeyi - - - - Channel 2 envelope length - Kanal 2 zarf uzunluğu - - - - Channel 2 duty cycle - Kanal 2 görev döngüsü - - - - Channel 2 sweep amount - Kanal 2 tarama miktarı - - - - Channel 2 sweep rate - Kanal 2 tarama hızı - - - - Channel 3 coarse detune - Kanal 3 kaba detune - - - - Channel 3 volume - Kanal 3 düzeyi - - - - Channel 4 volume - Kanal 4 düzeyi - - - - Channel 4 envelope length - Kanal 4 zarf uzunluğu - - - - Channel 4 noise frequency - Kanal 4 gürültü frekansı - - - - Channel 4 noise frequency sweep - Kanal 4 gürültü frekansı taraması - - - - Master volume - Ana ses - - - - Vibrato - Titreşim - - - - NesInstrumentView - - - - - - Volume - Ses Düzeyi - - - - - - Coarse detune - Kaba detune - - - - - - Envelope length - Zarf uzunluğu - - - - Enable channel 1 - 1. kanalı etkinleştir - - - - Enable envelope 1 - Zarf 1'i etkinleştir - - - - Enable envelope 1 loop - Zarf 1 döngüsünü etkinleştir - - - - Enable sweep 1 - Tarama 1`i etkinleştir - - - - - Sweep amount - Tarama miktarı - - - - - Sweep rate - Tarama oranı - - - - - 12.5% Duty cycle - % 12,5 Görev döngüsü - - - - - 25% Duty cycle - % 25 Görev döngüsü - - - - - 50% Duty cycle - % 50 Görev döngüsü - - - - - 75% Duty cycle - % 75 Görev döngüsü - - - - Enable channel 2 - 2. kanalı etkinleştir - - - - Enable envelope 2 - Zarf 2'yi etkinleştir - - - - Enable envelope 2 loop - Zarf 2 döngüsünü etkinleştir - - - - Enable sweep 2 - Tarama 2 yi etkinleştir - - - - Enable channel 3 - 3. kanalı etkinleştir - - - - Noise Frequency - Gürültü Frekansı - - - - Frequency sweep - Frekans taraması - - - - Enable channel 4 - 4. kanalı etkinleştir - - - - Enable envelope 4 - Zarf 4'ü etkinleştir - - - - Enable envelope 4 loop - Zarf 4 döngüsünü etkinleştir - - - - Quantize noise frequency when using note frequency - Nota frekansını kullanırken gürültü frekansını nicelendirin - - - - Use note frequency for noise - Gürültü için nota frekansını kullanın - - - - Noise mode - Gürültü modu - - - - Master volume - Ana ses - - - - Vibrato - Titreşim - - - - OpulenzInstrument - - - Patch - Yama - - - - Op 1 attack - Op 1 saldırısı - - - - Op 1 decay - Op 1 bozunması - - - - Op 1 sustain - Op 1 sürdürme - - - - Op 1 release - Op 1 yayını - - - - Op 1 level - Op 1 seviyesi - - - - Op 1 level scaling - Op 1 seviye ölçeklendirme - - - - Op 1 frequency multiplier - Op 1 frekans çarpanı - - - - Op 1 feedback - Op 1 geribildirimi - - - - Op 1 key scaling rate - Op 1 anahtar ölçekleme oranı - - - - Op 1 percussive envelope - Op 1 vurmalı zarf - - - - Op 1 tremolo - Op 1 tremolo - - - - Op 1 vibrato - Op 1 titreşimi - - - - Op 1 waveform - Op 1 dalga formu - - - - Op 2 attack - Op 2 saldırısı - - - - Op 2 decay - Op 2 bozunması - - - - Op 2 sustain - Op 2 sürdürme - - - - Op 2 release - Op 2 yayını - - - - Op 2 level - Op 2 seviyesi - - - - Op 2 level scaling - Op 2 seviye ölçeklendirme - - - - Op 2 frequency multiplier - Op 2 frekans çarpanı - - - - Op 2 key scaling rate - Op 2 anahtar ölçekleme oranı - - - - Op 2 percussive envelope - Op 2 vurmalı zarf - - - - Op 2 tremolo - Op 2 tremolo - - - - Op 2 vibrato - Op 2 titreşimi - - - - Op 2 waveform - Op 2 dalga formu - - - - FM - FM - - - - Vibrato depth - Titreşim derinliği - - - - Tremolo depth - Tremolo derinliği - - - - OpulenzInstrumentView - - - - Attack - Saldırı - - - - - Decay - Bozunma - - - - - Release - Yayınla - - - - - Frequency multiplier - Frekans çarpanı - - - - OscillatorObject - - - Osc %1 waveform - Osc %1 dalga biçimi - - - - Osc %1 harmonic - Osc %1 harmonik - - - - - Osc %1 volume - Osc %1 düzeyi - - - - - Osc %1 panning - Osc %1 kaydırma - - - - - Osc %1 fine detuning left - Osc %1 ince ayar sol - - - - Osc %1 coarse detuning - Osc %1 kaba ince ayar - - - - Osc %1 fine detuning right - Osc %1 ince ayar sağ - - - - Osc %1 phase-offset - Osc %1 faz kayması - - - - Osc %1 stereo phase-detuning - Osc %1 stereo faz ayarlama - - - - Osc %1 wave shape - Osc %1 dalga şekli - - - - Modulation type %1 - Modülasyon türü %1 - - - - Oscilloscope - - - Oscilloscope - Oscilloscope - - - - Click to enable - Etkinleştirmek için tıklayın - - PatchesDialog + Qsynth: Channel Preset Qsynth: Kanal Ön Ayarı + Bank selector Yuva seçici + Bank Yuva + Program selector Program seçici + Patch Yama + Name İsim + OK Tamam + Cancel İptal - - PatmanView - - - Open patch - Yama aç - - - - Loop - Döngü - - - - Loop mode - Döngü modu - - - - Tune - Ayarla - - - - Tune mode - Ayar modu - - - - No file selected - Dosya seçilmedi - - - - Open patch file - Yama dosyasını aç - - - - Patch-Files (*.pat) - Yama Dosyaları (*.pat) - - - - MidiClipView - - - Open in piano-roll - Piyano rulosunda aç - - - - Set as ghost in piano-roll - Piyano rulosunda hayalet olarak ayarla - - - - Clear all notes - Tüm notaları temizle - - - - Reset name - İsmini sıfırla - - - - Change name - İsmini değiştir - - - - Add steps - Uzat - - - - Remove steps - Kısalt - - - - Clone Steps - Klon Adımları - - - - PeakController - - - Peak Controller - Tepe Kontrolörü - - - - Peak Controller Bug - Tepe Kontrol Hatası - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - LMMS'nin eski sürümündeki bir hata nedeniyle, tepe denetleyicileri doğru şekilde bağlanamayabilir. Lütfen tepe denetleyicilerin doğru şekilde bağlandığından emin olun ve bu dosyayı yeniden kaydedin. Herhangi bir rahatsızlık verdiysem üzgünüm. - - - - PeakControllerDialog - - - PEAK - ZİRVE - - - - LFO Controller - LFO Denetleyicisi - - - - PeakControllerEffectControlDialog - - - BASE - TEMEL - - - - Base: - Temel: - - - - AMNT - AMNT - - - - Modulation amount: - Modülasyon miktarı: - - - - MULT - ÇOK - - - - Amount multiplicator: - Miktar çarpanı: - - - - ATCK - SALDIRI - - - - Attack: - Saldırı: - - - - DCAY - BOZUNMA - - - - Release: - Yayınla: - - - - TRSH - EŞİK - - - - Treshold: - Eşik: - - - - Mute output - Çıkış sessiz - - - - Absolute value - Mutlak değer - - - - PeakControllerEffectControls - - - Base value - Temel değer - - - - Modulation amount - Modülasyon miktarı - - - - Attack - Saldırı - - - - Release - Yayınla - - - - Treshold - Eşik - - - - Mute output - Çıkış sessiz - - - - Absolute value - Mutlak değer - - - - Amount multiplicator - Miktar çarpanı - - - - PianoRoll - - - Note Velocity - Nota Hızı - - - - Note Panning - Nota Kaydırma - - - - Mark/unmark current semitone - Geçerli yarım tonu işaretle / işareti kaldır - - - - Mark/unmark all corresponding octave semitones - İlgili tüm oktav yarı tonlarını işaretle / işareti kaldır - - - - Mark current scale - Mevcut ölçeği işaretle - - - - Mark current chord - Geçerli akoru işaretle - - - - Unmark all - Hepsinin işaretini kaldır - - - - Select all notes on this key - Bu anahtardaki tüm notaları seçin - - - - Note lock - Nota kilidi - - - - Last note - Son nota - - - - No key - Anahtar yok - - - - No scale - Ölçek yok - - - - No chord - Akord yok - - - - Nudge - Dürtme - - - - Snap - Yapış - - - - Velocity: %1% - Hız: %1% - - - - Panning: %1% left - Kaydırma: %1% sola - - - - Panning: %1% right - Kaydırma: %1% sağa - - - - Panning: center - Kaydırma: merkez - - - - Glue notes failed - Yapışkan notaları başarısız oldu - - - - Please select notes to glue first. - Lütfen önce yapıştırılacak notaları seçin. - - - - Please open a clip by double-clicking on it! - Lütfen üzerine çift tıklayarak bir desen açın! - - - - - Please enter a new value between %1 and %2: - Lütfen %1 ile %2 arasında yeni bir değer girin: - - - - PianoRollWindow - - - Play/pause current clip (Space) - Seçili bölümü oynat/durdur (Boşluk Tuşu) - - - - Record notes from MIDI-device/channel-piano - MIDI aygıtında/kanal piyanodan notaları kaydedin - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - Şarkı veya BB parçası çalarken MIDI aygıtından/kanal piyanodan notaları kaydedin - - - - Record notes from MIDI-device/channel-piano, one step at the time - MIDI aygıtından/kanal piyanodan notaları bir seferde bir adım kaydedin - - - - Stop playing of current clip (Space) - Seçili bölümü oynatmayı durdur (Boşluk Tuşu) - - - - Edit actions - İşlemleri düzenle - - - - Draw mode (Shift+D) - Çizim modu (Shift+D) - - - - Erase mode (Shift+E) - Silgi modu (Shift+E) - - - - Select mode (Shift+S) - Modu seçin (Shift + S) - - - - Pitch Bend mode (Shift+T) - Pitch Bend modu (Shift+T) - - - - Quantize - Niceleme - - - - Quantize positions - Niceleme pozisyonları - - - - Quantize lengths - Niceleme uzunlukları - - - - File actions - Dosya işlemleri - - - - Import clip - Deseni içe aktar - - - - - Export clip - Deseni dışa aktar - - - - Copy paste controls - Kopyala yapıştır kontrolleri - - - - Cut (%1+X) - Kes (%1+X) - - - - Copy (%1+C) - Kopyala (%1+C) - - - - Paste (%1+V) - Yapıştır (%1+V) - - - - Timeline controls - Zaman çizelgesi kontrolleri - - - - Glue - Yapıştırıcı - - - - Knife - Bıçak - - - - Fill - Doldur - - - - Cut overlaps - Örtüşmeleri kes - - - - Min length as last - Son olarak en düşük uzunluk - - - - Max length as last - Son olarak en yüksek uzunluk - - - - Zoom and note controls - Yakınlaştırma ve nota kontrolleri - - - - Horizontal zooming - Yatay yakınlaştırma - - - - Vertical zooming - Dikey yakınlaştırma - - - - Quantization - Niceleme - - - - Note length - Nota uzunluğu - - - - Key - Anahtar - - - - Scale - Ölçek - - - - Chord - Kiriş - - - - Snap mode - Anlık çekim modu - - - - Clear ghost notes - Hayalet notaları temizle - - - - - Piano-Roll - %1 - Piyano Rulosu -%1 - - - - - Piano-Roll - no clip - Piyano Rulosu - desen yok - - - - - XML clip file (*.xpt *.xptz) - XML desen dosyası (*.xpt *.xptz) - - - - Export clip success - Deseni dışa aktarma başarılı - - - - Clip saved to %1 - Desen %1'e kaydedildi - - - - Import clip. - Deseni içe aktar. - - - - You are about to import a clip, this will overwrite your current clip. Do you want to continue? - Bir kalıp almak üzeresiniz, bu mevcut kalıbınızın üzerine yazılacaktır. Devam etmek istiyor musun? - - - - Open clip - Desen aç - - - - Import clip success - Desen başarılı şekilde içe aktarıldı - - - - Imported clip %1! - %1 deseni içe aktarıldı! - - - - PianoView - - - Base note - Temel nota - - - - First note - İlk nota - - - - Last note - Son nota - - - - Plugin - - - Plugin not found - Eklenti bulunamadı - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - "%1" eklentisi bulunamadı veya yüklenemedi! -Nedeni: "%2" - - - - Error while loading plugin - Eklenti yüklenirken hata - - - - Failed to load plugin "%1"! - "%1" eklentisi yüklenemedi! - - PluginBrowser - - Instrument Plugins - Enstrüman Eklentileri - - - - Instrument browser - Enstrüman tarayıcısı - - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - Bir enstrümanı Şarkı Düzenleyici, Beat + Bassline Editor veya mevcut bir enstrüman parçasına sürükleyin. - - - + no description açıklama yok - + A native amplifier plugin Yerel bir amplifikatör eklentisi - + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track Bir enstrüman kanalında örnekleri (ör. Davullar) kullanmak için çeşitli ayarlara sahip basit örnekleyici - + Boost your bass the fast and simple way Basınızı hızlı ve basit bir şekilde güçlendirin - + Customizable wavetable synthesizer Özelleştirilebilir dalgalı sentezleyici - + An oversampling bitcrusher Bir yüksek hızda örnekleme bit kırıcı - + Carla Patchbay Instrument Carla Patchbay Enstrüman - + Carla Rack Instrument Carla Raf Enstrümanı - + A dynamic range compressor. Dinamik aralıklı kompresör. - + A 4-band Crossover Equalizer 4 bantlı Crossover Ekolayzer - + A native delay plugin Yerel bir gecikme eklentisi - + A Dual filter plugin Çift filtre eklentisi - + plugin for processing dynamics in a flexible way dinamikleri esnek bir şekilde işlemek için eklenti - + A native eq plugin Yerel bir eq eklentisi - + A native flanger plugin Yerel bir flanger eklentisi - + Emulation of GameBoy (TM) APU GameBoy (TM) APU Emülasyonu - + Player for GIG files GIG dosyaları için oynatıcı - + Filter for importing Hydrogen files into LMMS Hydrogen dosyalarını LMMS'ye aktarmak için filtre - + Versatile drum synthesizer Çok yönlü davul synthesizer - + List installed LADSPA plugins Yüklü LADSPA eklentilerini listeleyin - + plugin for using arbitrary LADSPA-effects inside LMMS. LMMS içinde rastgele LADSPA efektlerini kullanmak için eklenti. - + Incomplete monophonic imitation TB-303 Eksik monofonik taklit TB-303 - + plugin for using arbitrary LV2-effects inside LMMS. LMMS içinde rastgele LV2 efektlerini kullanmak için eklenti. - + plugin for using arbitrary LV2 instruments inside LMMS. LMMS içinde rastgele LV2 araçlarını kullanmak için eklenti. - + Filter for exporting MIDI-files from LMMS MIDI dosyalarını LMMS'den dışa aktarmak için filtre - + Filter for importing MIDI-files into LMMS MIDI dosyalarını LMMS'ye aktarmak için filtre - + Monstrous 3-oscillator synth with modulation matrix Modülasyon matrisli devasa 3-osilatör sentezi - + A multitap echo delay plugin Çok noktalı yankı gecikmesi eklentisi - + A NES-like synthesizer NES benzeri bir sentezleyici - + 2-operator FM Synth 2 operatörlü FM Synth - + Additive Synthesizer for organ-like sounds Organ benzeri sesler için Additive Synthesizer - + GUS-compatible patch instrument GUS uyumlu yama aracı - + Plugin for controlling knobs with sound peaks Ses zirvelerine sahip düğmeleri kontrol etmek için eklenti - + Reverb algorithm by Sean Costello Sean Costello'dan yankı algoritması - + Player for SoundFont files Soundfont dosyaları için oynatıcı - + LMMS port of sfxr Sfxr'nin LMMS bağlantı noktası - + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. MOS6581 ve MOS8580 SID'nin öykünmesi. Bu çip Commodore 64 bilgisayarında kullanıldı. - + A graphical spectrum analyzer. Bir grafik spektrum analizörü. - + Plugin for enhancing stereo separation of a stereo input file Bir stereo giriş dosyasının stereo ayrımını geliştirmek için eklenti - + Plugin for freely manipulating stereo output Stereo çıkışı serbestçe değiştirmek için eklenti - + Tuneful things to bang on Etkileyecek güzel şeyler - + Three powerful oscillators you can modulate in several ways Çeşitli şekillerde modüle edebileceğiniz üç güçlü osilatör - + A stereo field visualizer. Bir stereo alan görselleştiricisi. - + VST-host for using VST(i)-plugins within LMMS LMMS içinde VST (i) eklentilerini kullanmak için VST ana bilgisayarı - + Vibrating string modeler Titreşimli dizi modelleyici - + plugin for using arbitrary VST effects inside LMMS. LMMS içinde rastgele VST efektlerini kullanmak için eklenti. - + 4-oscillator modulatable wavetable synth 4-osilatör modüle edilebilir dalgalanabilir synth - + plugin for waveshaping dalgalı şekillendirme eklentisi - + Mathematical expression parser Matematiksel ifade ayrıştırıcı - + Embedded ZynAddSubFX Gömülü ZynAddSubFX - - - PluginDatabaseW - - Carla - Add New - Carla - Yeni Ekle + + An all-pass filter allowing for extremely high orders. + Son derece yüksek siparişlere izin veren bir all-pass filtresi. - - Format - Biçim + + Granular pitch shifter + - - Internal - Dahili + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. + - - LADSPA - LADSPA + + Basic Slicer + - - DSSI - DSSI - - - - LV2 - LV2 - - - - VST2 - VST2 - - - - VST3 - VST3 - - - - AU - AU - - - - Sound Kits - Ses Kitleri - - - - Type - Tip - - - - Effects - Efektler - - - - Instruments - Enstrümanlar - - - - MIDI Plugins - MIDI Eklentileri - - - - Other/Misc - Diğer/Çeşitli - - - - Architecture - Mimari - - - - Native - Doğal - - - - Bridged - Köprülü - - - - Bridged (Wine) - Köprülü (Wine) - - - - Requirements - Gereksinimler - - - - With Custom GUI - Özel Arayüz ile - - - - With CV Ports - CV Portları ile - - - - Real-time safe only - Yalnızca gerçek zamanlı güvenli - - - - Stereo only - Yalnızca stereo - - - - With Inline Display - Satır İçi Ekranlı - - - - Favorites only - Yalnızca favoriler - - - - (Number of Plugins go here) - (Eklenti sayısı buraya gelir) - - - - &Add Plugin - &Eklenti Ekle - - - - Cancel - İptal - - - - Refresh - Tazeleme - - - - Reset filters - Filtreleri sıfırla - - - - - - - - - - - - - - - - - - - TextLabel - YazıEtiketi - - - - Format: - Biçim: - - - - Architecture: - Mimari: - - - - Type: - Türü: - - - - MIDI Ins: - MIDI Girişleri: - - - - Audio Ins: - Ses Girişleri: - - - - CV Outs: - CV Çıkışları: - - - - MIDI Outs: - MIDI Çıkışları: - - - - Parameter Ins: - Parametre Girişleri: - - - - Parameter Outs: - Parametre Çıkışları: - - - - Audio Outs: - Ses Çıkışları: - - - - CV Ins: - CV Girişleri: - - - - UniqueID: - Benzersiz Kimlik: - - - - Has Inline Display: - Satır İçi Ekrana Sahiptir: - - - - Has Custom GUI: - Özel Arayüz'e sahiptir: - - - - Is Synth: - Is Synth: - - - - Is Bridged: - Köprülü: - - - - Information - Bilgi - - - - Name - İsim - - - - Label/URI - Etiket/URI - - - - Maker - Yapıcı - - - - Binary/Filename - İkili/Dosya adı - - - - Focus Text Search - Metin Aramaya Odaklan - - - - Ctrl+F - Ctrl+F + + Tap to the beat + Ritim için dokunun @@ -11113,36 +3742,41 @@ Bu çip Commodore 64 bilgisayarında kullanıldı. + Send Notes + + + + Send Bank/Program Changes Yuva/Program Değişikliklerini Gönderin - + Send Control Changes Kontrol Değişikliklerini Gönder - + Send Channel Pressure Kanal Basıncını Gönder - + Send Note Aftertouch Sonra Dokunma Notası Gönder - + Send Pitchbend Perde eğimi Gönder - + Send All Sound/Notes Off Tüm Sesleri/Notaları Gönder Kapalı - + Plugin Name @@ -11151,57 +3785,57 @@ Eklenti İsmi - + Program: Program: - + MIDI Program: MIDI programı: - + Save State Kayıt Yeri - + Load State Yükleme durumu - + Information Bilgi - + Label/URI: Etiket/URI: - + Name: Ad: - + Type: Türü: - + Maker: Yapıcı: - + Copyright: Telif hakkı: - + Unique ID: Benzersiz Kimlik: @@ -11209,16 +3843,457 @@ Eklenti İsmi PluginFactory - + Plugin not found. Eklenti bulunamadı. - + LMMS plugin %1 does not have a plugin descriptor named %2! LMMS eklentisi %1,%2 adında bir eklenti tanımlayıcısına sahip değil! + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + PluginParameter @@ -11233,158 +4308,61 @@ Eklenti İsmi + TextLabel + + + + ... ... - PluginRefreshW + PluginRefreshDialog - - Carla - Refresh - Carla - Yenile + + Plugin Refresh + - - Search for new... - Yeni ara... + + Search for: + - - LADSPA - LADSPA + + All plugins, ignoring cache + - - DSSI - DSSI + + Updated plugins only + - - LV2 - LV2 + + Check previously invalid plugins + - - VST2 - VST2 - - - - VST3 - VST3 - - - - AU - AU - - - - SF2/3 - SF2/3 - - - - SFZ - SFZ - - - - Native - Doğal - - - - POSIX 32bit - POSIX 32bit - - - - POSIX 64bit - POSIX 64bit - - - - Windows 32bit - Windows 32bit - - - - Windows 64bit - Windows 64bit - - - - Available tools: - Mevcut araçlar: - - - - python3-rdflib (LADSPA-RDF support) - python3-rdflib (LADSPA-RDF desteği) - - - - carla-discovery-win64 - carla-keşif-win64 - - - - carla-discovery-native - carla-keşif-yerli - - - - carla-discovery-posix32 - carla-keşif-posix32 - - - - carla-discovery-posix64 - carla-keşif-posix64 - - - - carla-discovery-win32 - carla-keşif-win32 - - - - Options: - Seçenekler: - - - - Carla will run small processing checks when scanning the plugins (to make sure they won't crash). -You can disable these checks to get a faster scanning time (at your own risk). - Carla, eklentileri tararken küçük işlem kontrolleri yapacak (çökmeyeceklerinden emin olmak için). -Daha hızlı bir tarama süresi elde etmek için bu kontrolleri devre dışı bırakabilirsiniz (kendi sorumluluğunuzdadır). - - - - Run processing checks while scanning - Tarama sırasında işleme kontrollerini çalıştırın - - - + Press 'Scan' to begin the search - Aramaya başlamak için 'Tara'ya basın + - + Scan - Tara + - + >> Skip - >> Atla + - + Close - Kapat + @@ -11399,50 +4377,50 @@ Daha hızlı bir tarama süresi elde etmek için bu kontrolleri devre dışı b Çerçeve - + Enable Etkinleştir - + On/Off Aç/Kapat - + - + PluginName Eklentiİsmi - + MIDI MIDI - + AUDIO IN SES GİRİŞİ - + AUDIO OUT SES ÇIKIŞI - + GUI Arayüz - + Edit Düzenle - + Remove Kaldır @@ -11457,2286 +4435,13576 @@ Daha hızlı bir tarama süresi elde etmek için bu kontrolleri devre dışı b Ön ayar: - - ProjectNotes - - - Project Notes - Proje Notları - - - - Enter project notes here - Buraya proje notlarını girin - - - - Edit Actions - İşlemleri Düzenle - - - - &Undo - Geri &Al - - - - %1+Z - %1+Z - - - - &Redo - &Yinele - - - - %1+Y - %1+Y - - - - &Copy - &Kopyala - - - - %1+C - %1+C - - - - Cu&t - Ke&s - - - - %1+X - %1+X - - - - &Paste - &Yapıştır - - - - %1+V - %1+V - - - - Format Actions - Eylemleri Biçimlendir - - - - &Bold - &Kalın - - - - %1+B - %1+B - - - - &Italic - &İtalik - - - - %1+I - %1+I - - - - &Underline - &Altı Çizili - - - - %1+U - %1+U - - - - &Left - &Sol - - - - %1+L - %1+L - - - - C&enter - M&erkez - - - - %1+E - %1+E - - - - &Right - &Sağ - - - - %1+R - %1+R - - - - &Justify - &Yasla - - - - %1+J - %1+J - - - - &Color... - &Renk... - - ProjectRenderer - + WAV (*.wav) WAV (*.wav) - + FLAC (*.flac) FLAC (*.flac) - + OGG (*.ogg) OGG (*.ogg) - + MP3 (*.mp3) MP3 (*.mp3) + + QGroupBox + + + + Settings for %1 + + + QObject - + Reload Plugin Eklentiyi Yeniden Yükle - + Show GUI Görselli Arayüzü Göster - + Help Yardım + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + QWidget - - - - + + Name: İsim: - - URI: - URI: - - - - - + Maker: Yapıcı: - - - + Copyright: Telif Hakkı: - - + Requires Real Time: Gerçek Zaman Gerektirir: - - - - - - + + + Yes Evet - - - - - - + + + No Hayır - - + Real Time Capable: Gerçek Zamanlı Yetenekli: - - + In Place Broken: Yerinde Kırık: - - + Channels In: Giriş Kanalları: - - + Channels Out: Çıkış Kanalları: - + File: %1 Dosya: %1 - + File: Dosya: - RecentProjectsMenu + XYControllerW - - &Recently Opened Projects - &Yeni Açılan Projeler + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + - RenameDialog + lmms::AmplifierControls - - Rename... - Yeniden adlandır... + + Volume + Düzey + + + + Panning + Kaydırma + + + + Left gain + Sol kazanç + + + + Right gain + Sağ kazanç - ReverbSCControlDialog + lmms::AudioFileProcessor - - Input - Giriş + + Amplify + Yükseltici - - Input gain: - Giriş kazancı: + + Start of sample + Örnek başlangıcı - - Size - Boyut + + End of sample + Örneğin sonu - - Size: - Boyut: + + Loopback point + Geri döngü noktası - - Color - Renk + + Reverse sample + Ters örnek - - Color: - Renk: + + Loop mode + Döngü modu - - Output - Çıkış + + Stutter + Kekemelik - - Output gain: - Çıkış kazancı: + + Interpolation mode + Ara değerlendirme modu + + + + None + Hiçbiri + + + + Linear + Doğrusal + + + + Sinc + Sinc + + + + Sample not found + - ReverbSCControls + lmms::AudioJack - + + JACK client restarted + JACK istemcisi yeniden başlatıldı + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + LMMS bir nedenden ötürü JACK tarafından sistemden atıldı. Bundan dolayı LMMS'in JACK altyapısı yeniden başlatıldı. Bağlantıları yeniden elle yapmanız gerekecek. + + + + JACK server down + JACK sunucusu kapalı + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + JACK sunucusu kapanmış gibi görünüyor ve yeni bir örnek başlatılamadı. Bu nedenle LMMS devam edemiyor. Projenizi kaydetmeli, JACK ve LMMS'i yeniden başlatmalısınız. + + + + Client name + İstemci adı + + + + Channels + Kanallar + + + + lmms::AudioOss + + + Device + Aygıt + + + + Channels + Kanallar + + + + lmms::AudioPortAudio::setupWidget + + + Backend + Arka uç + + + + Device + Aygıt + + + + lmms::AudioPulseAudio + + + Device + Aygıt + + + + Channels + Kanallar + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + Aygıt + + + + Channels + Kanallar + + + + lmms::AudioSoundIo::setupWidget + + + Backend + Arka uç + + + + Device + Aygıt + + + + lmms::AutomatableModel + + + &Reset (%1%2) + &Sıfırla (%1%2) + + + + &Copy value (%1%2) + &Değeri kopyala (%1%2) + + + + &Paste value (%1%2) + &Değeri yapıştır (%1%2) + + + + &Paste value + &Değeri yapıştır + + + + Edit song-global automation + Global şarkı otomasyonunu düzenle + + + + Remove song-global automation + Global şarkı otomasyonunu kaldır + + + + Remove all linked controls + Tüm bağlantılı kontrolleri kaldır + + + + Connected to %1 + Şuna bağlı: %1 + + + + Connected to controller + Kontrolöre bağlı + + + + Edit connection... + Bağlantıyı düzenle... + + + + Remove connection + Bağlantıyı kaldır + + + + Connect to controller... + Kontrolöre bağla... + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + <%1> tuşuna basarken bir kontrolü sürükleyin + + + + lmms::AutomationTrack + + + Automation track + Parça otomasyonu + + + + lmms::BassBoosterControls + + + Frequency + Frekans + + + + Gain + Kazanç + + + + Ratio + Oran + + + + lmms::BitInvader + + + Sample length + Örnek uzunluğu + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + Input gain Giriş kazancı - - Size - Boyut + + Input noise + Giriş gürültüsü - - Color - Renk + + Output gain + Çıkış kazancı - + + Output clip + Çıktı klibi + + + + Sample rate + Örnekleme oranı + + + + Stereo difference + Stereo farkı + + + + Levels + Seviyeler + + + + Rate enabled + Oran etkinleştirildi + + + + Depth enabled + Derinlik etkinleştirildi + + + + lmms::Clip + + + Mute + Sustur + + + + lmms::CompressorControls + + + Threshold + Eşik + + + + Ratio + Oran + + + + Attack + Saldırı + + + + Release + Yayınla + + + + Knee + Diz + + + + Hold + Tut + + + + Range + Aralık + + + + RMS Size + RMS Boyutu + + + + Mid/Side + Orta/Yan + + + + Peak Mode + Tepe Modu + + + + Lookahead Length + Önden Bakış Uzunluğu + + + + Input Balance + Giriş Dengesi + + + + Output Balance + Çıktı Dengesi + + + + Limiter + Sınırlayıcı + + + + Output Gain + Çıkış Kazancı + + + + Input Gain + Giriş Kazancı + + + + Blend + Harman + + + + Stereo Balance + Çift kanal Dengesi + + + + Auto Makeup Gain + Otomatik Makyaj Kazancı + + + + Audition + İşitme + + + + Feedback + Geri bildirim + + + + Auto Attack + Otomatik Saldırı + + + + Auto Release + Otomatik Yayın + + + + Lookahead + Önden Bakış + + + + Tilt + Eğim + + + + Tilt Frequency + Eğim Frekansı + + + + Stereo Link + Çift kanal Bağlantı + + + + Mix + Karıştır + + + + lmms::Controller + + + Controller %1 + Kontrolör %1 + + + + lmms::DelayControls + + + Delay samples + Gecikme örnekleri + + + + Feedback + Geri bildirim + + + + LFO frequency + LFO frekansı + + + + LFO amount + LFO miktarı + + + Output gain Çıkış kazancı - SaControls + lmms::DispersionControls - - Pause - Duraklat + + Amount + Miktar - - Reference freeze - Referans dondurma + + Frequency + Frekans - - Waterfall - Şelale + + Resonance + Rezonans - - Averaging - Ortalama + + Feedback + Geri bildirim - - Stereo - Stereo + + DC Offset Removal + DC Ofset Kaldırma + + + + lmms::DualFilterControls + + + Filter 1 enabled + Filtre 1 etkinleştirildi - - Peak hold - Tepe tutma + + Filter 1 type + Filtre türü 1 - - Logarithmic frequency - Logaritmik frekans + + Cutoff frequency 1 + Kesme frekansı 1 - - Logarithmic amplitude - Logaritmik genlik + + Q/Resonance 1 + Q/Rezonans 1 - - Frequency range - Frekans aralığı + + Gain 1 + Kazanç 1 - - Amplitude range - Genlik aralığı + + Mix + Karıştır - - FFT block size - FFT blok boyutu + + Filter 2 enabled + Filtre 2 etkinleştirildi - - FFT window type - FFT pencere türü + + Filter 2 type + Filtre türü 2 - - Peak envelope resolution - En yüksek zarf çözünürlüğü + + Cutoff frequency 2 + Kesme frekansı 2 - - Spectrum display resolution - Spektrum ekran çözünürlüğü + + Q/Resonance 2 + Q/Rezonans 2 - - Peak decay multiplier - Tepe bozunma çarpanı + + Gain 2 + Kazanç 2 - - Averaging weight - Ortalama ağırlık + + + Low-pass + Düşük geçiş - - Waterfall history size - Şelale geçmişi boyutu + + + Hi-pass + Yüksek geçiş - - Waterfall gamma correction - Şelale gama düzeltmesi + + + Band-pass csg + Bant geçişli csg - - FFT window overlap - FFT penceresi çakışması + + + Band-pass czpg + Bant geçişli czpg - - FFT zero padding - FFT sıfır dolgusu + + + Notch + Çentik - - - Full (auto) - Tam (otomatik) + + + All-pass + Tamamı bitti - - - - Audible - Sesli + + + Moog + Moog - + + + 2x Low-pass + 2x Düşük geçiş + + + + + RC Low-pass 12 dB/oct + RC Düşük geçişli 12 dB/oct + + + + + RC Band-pass 12 dB/oct + RC Bant geçişi 12 dB/oct + + + + + RC High-pass 12 dB/oct + RC Yüksek Geçişli 12 dB/oct + + + + + RC Low-pass 24 dB/oct + RC Düşük geçişli 24 dB/oct + + + + + RC Band-pass 24 dB/oct + RC Bant geçişi 24 dB/oct + + + + + RC High-pass 24 dB/oct + RC Yüksek Geçişli 24 dB/oct + + + + + Vocal Formant + Vokal Biçimlendirici + + + + + 2x Moog + 2x Moog + + + + + SV Low-pass + SV Düşük geçiş + + + + + SV Band-pass + SV Bant geçişi + + + + + SV High-pass + SV Yüksek geçiş + + + + + SV Notch + SV Çentiği + + + + + Fast Formant + Hızlı Biçimlendirici + + + + + Tripole + Üçlü + + + + lmms::DynProcControls + + + Input gain + Giriş kazancı + + + + Output gain + Çıkış kazancı + + + + Attack time + Kalkma zamanı + + + + Release time + Yayımlama zamanı + + + + Stereo mode + Çift kanal modu + + + + lmms::Effect + + + Effect enabled + Efekt etkinleştirildi + + + + Wet/Dry mix + Islak/Kuru karışım + + + + Gate + Geçit + + + + Decay + Bozunma + + + + lmms::EffectChain + + + Effects enabled + Efektler etkinleştirildi + + + + lmms::Engine + + + Generating wavetables + Dalgaboyu oluşturma + + + + Initializing data structures + Veri yapılarını başlatma + + + + Opening audio and midi devices + Ses ve midi cihazlarını açma + + + + Launching audio engine threads + Ses motoru dizileri başlatılıyor + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + Ortam ön gecikme + + + + Env attack + Ortam saldırısı + + + + Env hold + Ortam tutma + + + + Env decay + Ortam bozunma + + + + Env sustain + Ortam sürdürme + + + + Env release + Ortam yayınlama + + + + Env mod amount + Ortam mod miktarı + + + + LFO pre-delay + LFO ön gecikmesi + + + + LFO attack + LFO saldırısı + + + + LFO frequency + LFO frekansı + + + + LFO mod amount + LFO mod miktarı + + + + LFO wave shape + LFO dalga şekli + + + + LFO frequency x 100 + LFO frekansı x 100 + + + + Modulate env amount + Ortam miktarını değiştir + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + Giriş kazancı + + + + Output gain + Çıkış kazancı + + + + Low-shelf gain + Düşük raf kazancı + + + + Peak 1 gain + Tepe kazancı 1 + + + + Peak 2 gain + Tepe kazancı 2 + + + + Peak 3 gain + Tepe kazancı 3 + + + + Peak 4 gain + Tepe kazancı 4 + + + + High-shelf gain + Yüksek raf kazancı + + + + HP res + HP res + + + + Low-shelf res + Düşük raflı res + + + + Peak 1 BW + Tepe 1 BW + + + + Peak 2 BW + Tepe 2 BW + + + + Peak 3 BW + Tepe 3 BW + + + + Peak 4 BW + Tepe 4 BW + + + + High-shelf res + Yüksek raf çözünürlüğü + + + + LP res + LP res + + + + HP freq + HP frekansı + + + + Low-shelf freq + Düşük raf frekansı + + + + Peak 1 freq + Tepe frekansı 1 + + + + Peak 2 freq + Tepe frekansı 2 + + + + Peak 3 freq + Tepe frekansı 3 + + + + Peak 4 freq + Tepe frekansı 4 + + + + High-shelf freq + Yüksek raf frekansı + + + + LP freq + LP frekansı + + + + HP active + HP etkin + + + + Low-shelf active + Düşük raf etkin + + + + Peak 1 active + Aktif tepe 1 + + + + Peak 2 active + Aktif tepe 2 + + + + Peak 3 active + Aktif tepe 3 + + + + Peak 4 active + Aktif tepe 4 + + + + High-shelf active + Yüksek raf etkin + + + + LP active + LP etkin + + + + LP 12 + LP 12 + + + + LP 24 + LP 24 + + + + LP 48 + LP 48 + + + + HP 12 + HP 12 + + + + HP 24 + HP 24 + + + + HP 48 + HP 48 + + + + Low-pass type + Düşük geçişli tip + + + + High-pass type + Yüksek geçişli tip + + + + Analyse IN + GİRİŞ'i analiz et + + + + Analyse OUT + ÇIKIŞ'ı analiz et + + + + lmms::FlangerControls + + + Delay samples + Gecikme örnekleri + + + + LFO frequency + LFO frekansı + + + + Amount + + + + + Stereo phase + Stereo faz + + + + Feedback + + + + + Noise + Gürültü + + + + Invert + Tersine çevir + + + + lmms::FreeBoyInstrument + + + Sweep time + Tarama zamanı + + + + Sweep direction + Tarama yönü + + + + Sweep rate shift amount + Tarama oranı kaydırma miktarı + + + + + Wave pattern duty cycle + Dalga deseni görev döngüsü + + + + Channel 1 volume + Kanal 1 düzeyi + + + + + + Volume sweep direction + Düzey tarama yönü + + + + + + Length of each step in sweep + Taramadaki her adımın uzunluğu + + + + Channel 2 volume + Kanal 2 düzeyi + + + + Channel 3 volume + Kanal 3 düzeyi + + + + Channel 4 volume + Kanal 4 düzeyi + + + + Shift Register width + Kayıt genişliğini kaydır + + + + Right output level + Sağ çıkış seviyesi + + + + Left output level + Sol çıkış seviyesi + + + + Channel 1 to SO2 (Left) + Kanal 1'den SO2'ye (Sol) + + + + Channel 2 to SO2 (Left) + Kanal 2'den SO2'ye (Sol) + + + + Channel 3 to SO2 (Left) + Kanal 3'den SO2'ye (Sol) + + + + Channel 4 to SO2 (Left) + Kanal 4'den SO2'ye (Sol) + + + + Channel 1 to SO1 (Right) + Kanal 1'den SO1'e (Sağ) + + + + Channel 2 to SO1 (Right) + Kanal 2'den SO1'e (Sağ) + + + + Channel 3 to SO1 (Right) + Kanal 3'den SO1'e (Sağ) + + + + Channel 4 to SO1 (Right) + Kanal 4'den SO1'e (Sağ) + + + + Treble + Tiz + + + Bass Bas + + + lmms::GigInstrument - - Mids - Ortalar + + Bank + Yuva - - High - Yüksek + + Patch + Yama - - Extended - Genişletilmiş - - - - Loud - Yüksek - - - - Silent - Sessiz - - - - (High time res.) - (Yüksek zaman çözünürlüğü) - - - - (High freq. res.) - (Yüksek frekans çözünürlüğü) - - - - Rectangular (Off) - Dikdörtgen (Kapalı) - - - - - Blackman-Harris (Default) - Blackman-Harris (Varsayılan) - - - - Hamming - Hamming - - - - Hanning - Hanning + + Gain + Kazanç - SaControlsDialog + lmms::GranularPitchShifterControls - - Pause - Duraklat + + Pitch + - - Pause data acquisition - Veri edinmeyi duraklatın + + Grain Size + - - Reference freeze - Referans dondurma + + Spray + - - Freeze current input as a reference / disable falloff in peak-hold mode. - Pik tutma modunda akım girişini referans olarak dondurun / düşüşü devre dışı bırakın. + + Jitter + - - Waterfall - Şelale + + Twitch + - - Display real-time spectrogram - Gerçek zamanlı spektrogramı göster + + Pitch Stereo Spread + - - Averaging - Ortalama + + Spray Stereo + - - Enable exponential moving average - Üstel hareketli ortalamayı etkinleştir + + Shape + - - Stereo - Stereo + + Fade Length + - - Display stereo channels separately - Stereo kanalları ayrı olarak görüntüleyin + + Feedback + - - Peak hold - Tepe tutma + + Minimum Allowed Latency + - - Display envelope of peak values - Tepe değerlerin zarfını görüntüle + + Prefilter + - - Logarithmic frequency - Logaritmik frekans + + Density + - - Switch between logarithmic and linear frequency scale - Logaritmik ve doğrusal frekans ölçeği arasında geçiş yapın + + Glide + - - - Frequency range - Frekans aralığı + + Ring Buffer Length + - - Logarithmic amplitude - Logaritmik genlik + + 5 Seconds + - - Switch between logarithmic and linear amplitude scale - Logaritmik ve doğrusal genlik ölçeği arasında geçiş yapın + + 10 Seconds (Size) + - - - Amplitude range - Genlik aralığı + + 40 Seconds (Size and Pitch) + - - Envelope res. - Zarf çözümü. + + 40 Seconds (Size and Spray and Jitter) + - - Increase envelope resolution for better details, decrease for better GUI performance. - Daha iyi ayrıntılar için zarf çözünürlüğünü artırın, daha iyi Arayüz performansı için azaltın. - - - - - Draw at most - En fazla çekiliş - - - - envelope points per pixel - piksel başına zarf noktaları - - - - Spectrum res. - Spectrum res. - - - - Increase spectrum resolution for better details, decrease for better GUI performance. - Daha iyi ayrıntılar için spektrum çözünürlüğünü artırın, daha iyi Arayüz performansı için azaltın. - - - - spectrum points per pixel - piksel başına spektrum noktaları - - - - Falloff factor - Düşüş faktörü - - - - Decrease to make peaks fall faster. - Zirvelerin daha hızlı düşmesi için azaltın. - - - - Multiply buffered value by - Arabelleğe alınan değeri şununla çarp - - - - Averaging weight - Ortalama ağırlık - - - - Decrease to make averaging slower and smoother. - Ortalama almayı daha yavaş ve pürüzsüz hale getirmek için azaltın. - - - - New sample contributes - Yeni örnek katkıda bulunur - - - - Waterfall height - Şelale yüksekliği - - - - Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. - Daha yavaş kaydırmak için artırın, hızlı geçişleri daha iyi görmek için azaltın. Uyarı: orta CPU kullanımı. - - - - Keep - Tut - - - - lines - çizgiler - - - - Waterfall gamma - Şelale gama - - - - Decrease to see very weak signals, increase to get better contrast. - Çok zayıf sinyalleri görmeyi azaltın, daha iyi kontrast elde etmek için artırın. - - - - Gamma value: - Gama değeri: - - - - Window overlap - Pencere örtüşmesi - - - - Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. - FFT pencere kenarlarının yakınına gelen eksik hızlı geçişleri önlemek için artırın. Uyarı: yüksek CPU kullanımı. - - - - Each sample processed - Her numune işlendi - - - - times - defa - - - - Zero padding - Sıfır dolgu - - - - Increase to get smoother-looking spectrum. Warning: high CPU usage. - Daha pürüzsüz görünen spektrum elde etmek için artırın. Uyarı: yüksek CPU kullanımı. - - - - Processing buffer is - İşleme tamponu - - - - steps larger than input block - giriş bloğundan daha büyük adımlar - - - - Advanced settings - Gelişmiş ayarlar - - - - Access advanced settings - Gelişmiş ayarlara erişin - - - - - FFT block size - FFT blok boyutu - - - - - FFT window type - FFT pencere türü + + 120 Seconds (All of the above) + - SampleBuffer + lmms::InstrumentFunctionArpeggio - - Fail to open file - Dosya açılamadı + + Arpeggio + Arpej - - Audio files are limited to %1 MB in size and %2 minutes of playing time - Ses dosyalarının boyutu %1 MB ve %2 dakika oynatma süresiyle sınırlıdır + + Arpeggio type + Arpej türü - - Open audio file - Ses dosyasını aç + + Arpeggio range + Arpej aralığı - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - Tüm Ses Dosyaları (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) + + Note repeats + Nota tekrarları - - Wave-Files (*.wav) - Wave Dosyaları (*.wav) + + Cycle steps + Döngü adımları - - OGG-Files (*.ogg) - OGG Dosyaları (*.ogg) + + Skip rate + Atlama oranı - - DrumSynth-Files (*.ds) - DrumSynth Dosyaları (*.ds) + + Miss rate + Iskalama oranı - - FLAC-Files (*.flac) - FLAC Dosyaları (*.flac) + + Arpeggio time + Arpej zamanı - - SPEEX-Files (*.spx) - SPEEX Dosyaları (*.spx) + + Arpeggio gate + Arpej kapısı - - VOC-Files (*.voc) - VOC Dosyaları (*.voc) + + Arpeggio direction + Arpej yönü - - AIFF-Files (*.aif *.aiff) - AIFF Dosyaları (*.aif *.aiff) + + Arpeggio mode + Arpej modu - - AU-Files (*.au) - AU Dosyaları (*.au) + + Up + Üst - - RAW-Files (*.raw) - RAW Dosyaları (*.raw) + + Down + Aşağı + + + + Up and down + Yukarı ve aşağı + + + + Down and up + Aşağı ve yukarı + + + + Random + Rastgele + + + + Free + Boş + + + + Sort + Sırala + + + + Sync + Eşitle - SampleClipView + lmms::InstrumentFunctionNoteStacking - - Double-click to open sample - Örneği açmak için çift tıklayın + + Chords + Akordlar - - Delete (middle mousebutton) - Sil (orta klik) + + Chord type + Akord türü - - Delete selection (middle mousebutton) - Seçimi sil (orta fare düğmesi) - - - - Cut - Kes - - - - Cut selection - Seçimi Kes - - - - Copy - Kopyala - - - - Copy selection - Seçimi Kopyala - - - - Paste - Yapıştır - - - - Mute/unmute (<%1> + middle click) - Sesi kapat/sesi aç (<%1> + orta tıklama) - - - - Mute/unmute selection (<%1> + middle click) - Seçimin sesini kapat/aç (<%1> + orta tıklama) - - - - Reverse sample - Örneği ters çevir - - - - Set clip color - Klip rengini ayarla - - - - Use track color - Parça rengini kullan + + Chord range + Akord aralığı - SampleTrack + lmms::InstrumentSoundShaping - - Volume - Ses Düzeyi + + Envelopes/LFOs + Zarflar / LFO'lar - - Panning - Panning - - - - Mixer channel - FX kanalı - - - - - Sample track - Örnek parça - - - - SampleTrackView - - - Track volume - Parça ses düzeyi - - - - Channel volume: - Kanal ses düzeyi: - - - - VOL - SES - - - - Panning - Panning - - - - Panning: - Panning: - - - - PAN - PAN - - - - Channel %1: %2 - FX %1: %2 - - - - SampleTrackWindow - - - GENERAL SETTINGS - GENEL AYARLAR - - - - Sample volume - Örnek düzey - - - - Volume: - Ses Düzeyi: - - - - VOL - SES - - - - Panning - Panning - - - - Panning: - Panning: - - - - PAN - PAN - - - - Mixer channel - FX kanalı - - - - CHANNEL - FX - - - - SaveOptionsWidget - - - Discard MIDI connections - MIDI bağlantılarını atın - - - - Save As Project Bundle (with resources) - Proje Paketi Olarak Kaydet (kaynaklarla) - - - - SetupDialog - - - Reset to default value - Varsayılan değere sıfırla - - - - Use built-in NaN handler - Yerleşik NaN işleyicisini kullanın - - - - Settings - Ayarlar - - - - - General - Genel - - - - Graphical user interface (GUI) - Grafik kullanıcı arayüzü (GUI) - - - - Display volume as dBFS - Ses seviyesini dBFS olarak görüntüle - - - - Enable tooltips - Araç ipuçlarını etkinleştirin - - - - Enable master oscilloscope by default - Ana osiloskopu varsayılan olarak etkinleştirin - - - - Enable all note labels in piano roll - Piyano rulosundaki tüm nota etiketlerini etkinleştirin - - - - Enable compact track buttons - Kompakt parça düğmelerini etkinleştirin - - - - Enable one instrument-track-window mode - Bir enstrüman izleme penceresi modunu etkinleştirin - - - - Show sidebar on the right-hand side - Sağ tarafta kenar çubuğunu göster - - - - Let sample previews continue when mouse is released - Fare bırakıldığında örnek önizlemelerin devam etmesine izin verin - - - - Mute automation tracks during solo - Solo sırasında otomasyon izlerini sessize alma - - - - Show warning when deleting tracks - Parçaları silerken uyarı göster - - - - Projects - Projeler - - - - Compress project files by default - Proje dosyalarını varsayılan olarak sıkıştır - - - - Create a backup file when saving a project - Bir projeyi kaydederken bir yedek dosya oluşturun - - - - Reopen last project on startup - Başlangıçta son projeyi yeniden aç - - - - Language - Dil - - - - - Performance - Başarım - - - - Autosave - Otomatik kaydet - - - - Enable autosave - Otomatik kaydetmeyi etkinleştir - - - - Allow autosave while playing - Oynatırken otomatik kaydetmeye izin ver - - - - User interface (UI) effects vs. performance - Kullanıcı arayüzü (UI) efektleri ile performans karşılaştırması - - - - Smooth scroll in song editor - Şarkı düzenleyicide yumuşak kaydırma - - - - Display playback cursor in AudioFileProcessor - Ses Dosyası İşlemcisindeki oynatma imlecini görüntüle - - - - Plugins - Eklentiler - - - - VST plugins embedding: - Gömülü VST eklentileri: - - - - No embedding - Yerleştirme yok - - - - Embed using Qt API - Qt API kullanarak yerleştirin - - - - Embed using native Win32 API - Yerel Win32 API kullanarak yerleştirme - - - - Embed using XEmbed protocol - XEmbed protokolünü kullanarak gömün - - - - Keep plugin windows on top when not embedded - Gömülü değilken eklenti pencerelerini üstte tutun - - - - Sync VST plugins to host playback - Oynatma barındırmak için VST eklentilerini senkronize edin - - - - Keep effects running even without input - Efektlerin girdi olmasa bile çalışmaya devam etmesini sağlayın - - - - - Audio - Ses - - - - Audio interface - Ses arayüzü - - - - HQ mode for output audio device - Ses çıkışı cihazı için HQ modu - - - - Buffer size - Arabellek boyutu - - - - - MIDI - MIDI - - - - MIDI interface - MIDI arayüzü - - - - Automatically assign MIDI controller to selected track - MIDI denetleyicisini seçilen parçaya otomatik olarak atayın - - - - LMMS working directory - LMMS çalışma dizini - - - - VST plugins directory - VST eklentileri dizini - - - - LADSPA plugins directories - LADSPA eklenti dizinleri - - - - SF2 directory - SF2 dizini - - - - Default SF2 - Varsayılan SF2 - - - - GIG directory - GIG dizini - - - - Theme directory - Tema dizini - - - - Background artwork - Arka plan resmi - - - - Some changes require restarting. - Bazı değişiklikler yeniden başlatmayı gerektirir. - - - - Autosave interval: %1 - Otomatik kaydetme aralığı: %1 - - - - Choose the LMMS working directory - LMMS çalışma dizinini seçin - - - - Choose your VST plugins directory - VST eklentileri dizininizi seçin - - - - Choose your LADSPA plugins directory - LADSPA eklentileri dizininizi seçin - - - - Choose your default SF2 - Varsayılan SF2'nizi seçin - - - - Choose your theme directory - Tema dizininizi seçin - - - - Choose your background picture - Arka plan resminizi seçin - - - - - Paths - Yollar - - - - OK - Tamam - - - - Cancel - İptal - - - - Frames: %1 -Latency: %2 ms - Çerçeveler: %1 -Gecikme: %2 ms - - - - Choose your GIG directory - GIG dizininizi seçin - - - - Choose your SF2 directory - SF2 dizininizi seçin - - - - minutes - dakika - - - - minute - dakika - - - - Disabled - Devre dışı - - - - SidInstrument - - - Cutoff frequency - Kesme frekansı - - - - Resonance - Çınlama - - - + Filter type Filtre tipi - - Voice 3 off - Ses 3 kapalı + + Cutoff frequency + Kesme frekansı - + + Q/Resonance + Q/Rezonans + + + + Low-pass + Düşük geçiş + + + + Hi-pass + Yüksek geçiş + + + + Band-pass csg + Bant geçişli csg + + + + Band-pass czpg + Bant geçişli czpg + + + + Notch + Çentik + + + + All-pass + Tamamı bitti + + + + Moog + Moog + + + + 2x Low-pass + 2x Düşük geçiş + + + + RC Low-pass 12 dB/oct + RC Düşük geçişli 12 dB/oct + + + + RC Band-pass 12 dB/oct + RC Bant geçişi 12 dB/oct + + + + RC High-pass 12 dB/oct + RC Yüksek Geçişli 12 dB/oct + + + + RC Low-pass 24 dB/oct + RC Düşük geçişli 24 dB/oct + + + + RC Band-pass 24 dB/oct + RC Bant geçişi 24 dB/oct + + + + RC High-pass 24 dB/oct + RC Yüksek Geçişli 24 dB/oct + + + + Vocal Formant + Vokal Biçimlendirici + + + + 2x Moog + 2x Moog + + + + SV Low-pass + SV Düşük geçiş + + + + SV Band-pass + SV Bant geçişi + + + + SV High-pass + SV Yüksek geçiş + + + + SV Notch + SV Çentiği + + + + Fast Formant + Hızlı Biçimlendirici + + + + Tripole + Üçlü + + + + lmms::InstrumentTrack + + + + unnamed_track + adsız_parça + + + + Base note + Temel nota + + + + First note + İlk nota + + + + Last note + Son nota + + + + Volume + Düzey + + + + Panning + Kaydırma + + + + Pitch + Saha + + + + Pitch range + Eğim aralığı + + + + Mixer channel + FX kanalı + + + + Master pitch + Ana sahne + + + + Enable/Disable MIDI CC + MIDI CC'yi Etkinleştir / Devre Dışı Bırak + + + + CC Controller %1 + CC Denetleyicisi %1 + + + + + Default preset + Varsayılan ön ayar + + + + lmms::Keymap + + + empty + boş + + + + lmms::KickerInstrument + + + Start frequency + Başlangıç frekansı + + + + End frequency + Bitiş frekansı + + + + Length + Süre + + + + Start distortion + Bozulmayı başlat + + + + End distortion + Bozulmayı bitir + + + + Gain + Kazanç + + + + Envelope slope + Zarf eğimi + + + + Noise + Gürültü + + + + Click + Tıkla + + + + Frequency slope + Frekans eğimi + + + + Start from note + Notadan başla + + + + End to note + Notanın sonu + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + Kanalları bağla + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + Bilinmeyen LADSPA eklentisi %1 istendi. + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + VCF Kesme Frekansı + + + + VCF Resonance + VCF Rezonansı + + + + VCF Envelope Mod + VCF Zarf Modu + + + + VCF Envelope Decay + VCF Zarf Bozulması + + + + Distortion + Bozma + + + + Waveform + Dalga şekli + + + + Slide Decay + Bozulma Kaydırma + + + + Slide + Kaydır + + + + Accent + Vurgu + + + + Dead + Ölü + + + + 24dB/oct Filter + 24dB/oct FiltRESİ + + + + lmms::LfoController + + + LFO Controller + LFO Denetleyicisi + + + + Base value + Temel değer + + + + Oscillator speed + Osilatör hızı + + + + Oscillator amount + Osilatör miktarı + + + + Oscillator phase + Osilatör fazı + + + + Oscillator waveform + Osilatör dalga formu + + + + Frequency Multiplier + Frekans Çarpanı + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + Sertlik + + + + Position + Konum + + + + Vibrato gain + Titreşim kazancı + + + + Vibrato frequency + Titreşim frekansı + + + + Stick mix + Çubuk karıştırıcı + + + + Modulator + Modülatör + + + + Crossfade + Çapraz geçiş + + + + LFO speed + LFO hızı + + + + LFO depth + LFO derinliği + + + + ADSR + ADSR + + + + Pressure + Basınç + + + + Motion + Hareket + + + + Speed + Hız + + + + Bowed + Eğilmiş + + + + Instrument + + + + + Spread + Etrafa Saç + + + + Randomness + + + + + Marimba + Marimba + + + + Vibraphone + Vibrafon + + + + Agogo + Agogo + + + + Wood 1 + Ahşap 1 + + + + Reso + Reso + + + + Wood 2 + Ahşap 2 + + + + Beats + Vuruşlar + + + + Two fixed + İki sabit + + + + Clump + Tortu + + + + Tubular bells + Borulu çanlar + + + + Uniform bar + Üniforma çubuğu + + + + Tuned bar + Ayarlanmış çubuk + + + + Glass + Cam + + + + Tibetan bowl + Tibet kase + + + + lmms::MeterModel + + + Numerator + Pay + + + + Denominator + Payda + + + + lmms::Microtuner + + + Microtuner + Mikro ayarlayıcı + + + + Microtuner on / off + Mikro ayarlayıcı açık / kapalı + + + + Selected scale + Seçili ölçek + + + + Selected keyboard mapping + Seçilen klavye eşlemesi + + + + lmms::MidiController + + + MIDI Controller + MIDI Denetleyicisi + + + + unnamed_midi_controller + adsız_midi_denetleyici + + + + lmms::MidiImport + + + + Setup incomplete + Kurulum tamamlanmadı + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + Ayarlar iletişim kutusunda (Düzenle-> Ayarlar) varsayılan bir ses yazı tipi ayarlamadınız. Bu nedenle, bu MIDI dosyasını içe aktardıktan sonra hiçbir ses çalınmayacaktır. Bir Genel MIDI ses yazı tipi indirmeli, bunu ayarlar iletişim kutusunda belirtmeli ve tekrar denemelisiniz. + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + LMMS'yi içe aktarılan MIDI dosyalarına varsayılan ses eklemek için kullanılan SoundFont2 oynatıcı desteğiyle derlemediniz. Bu nedenle, bu MIDI dosyasını içe aktardıktan sonra hiçbir ses çalınmayacaktır. + + + + MIDI Time Signature Numerator + MIDI Zaman İmza Payı + + + + MIDI Time Signature Denominator + MIDI Zaman İmza Paydası + + + + Numerator + Pay + + + + Denominator + Payda + + + + + Tempo + Tempo + + + + Track + Parça + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + JACK sunucusu kapalı + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + JACK sunucusu kapatılmış görünüyor. + + + + lmms::MidiPort + + + Input channel + Giriş kanalı + + + + Output channel + Çıkış kanalı + + + + Input controller + Giriş kontrolörü + + + + Output controller + Çıkış denetleyicisi + + + + Fixed input velocity + Sabit giriş hızı + + + + Fixed output velocity + Sabit çıkış hızı + + + + Fixed output note + Sabit çıktı notu + + + + Output MIDI program + MIDI programı çıktısı + + + + Base velocity + Temel hız + + + + Receive MIDI-events + MIDI olaylarını alın + + + + Send MIDI-events + MIDI olayları gönder + + + + lmms::Mixer + + + Master + Usta + + + + + + Channel %1 + FX %1 + + + Volume Ses Düzeyi - - Chip model - Yonga modeli - - - - SidInstrumentView - - - Volume: - Ses Düzeyi: - - - - Resonance: - Rezonans: - - - - - Cutoff frequency: - Kesim frekansı: - - - - High-pass filter - Yüksek geçişli filtre - - - - Band-pass filter - Bant geçişli filtre - - - - Low-pass filter - Düşük geçişli filtre - - - - Voice 3 off - Ses 3 kapalı - - - - MOS6581 SID - MOS6581 SID - - - - MOS8580 SID - MOS8580 SID - - - - - Attack: - Saldırı: - - - - - Decay: - Bozunma: - - - - Sustain: - Sürdürmek: - - - - - Release: - Yayınla: - - - - Pulse Width: - Darbe genişliği: - - - - Coarse: - Kaba: - - - - Pulse wave - Nabız dalgası - - - - Triangle wave - Üçgen dalga - - - - Saw wave - Testere dalga - - - - Noise - Parazit - - - - Sync - Eşitleme - - - - Ring modulation - Halka modülasyonu - - - - Filtered - Filtrelenmiş - - - - Test - Dene - - - - Pulse width: - Darbe genişliği: - - - - SideBarWidget - - - Close - Kapat - - - - Song - - - Tempo - Tempo - - - - Master volume - Ana ses - - - - Master pitch - Ana sahne - - - - Aborting project load - Proje yüklemesi iptal ediliyor - - - - Project file contains local paths to plugins, which could be used to run malicious code. - Proje dosyası, kötü amaçlı kod çalıştırmak için kullanılabilecek eklentilere giden yerel yolları içerir. - - - - Can't load project: Project file contains local paths to plugins. - Proje yüklenemiyor: Proje dosyası, eklentilere giden yerel yolları içerir. - - - - LMMS Error report - LMMS Hata raporu - - - - (repeated %1 times) - (%1 kez tekrarlandı) - - - - The following errors occurred while loading: - Yükleme sırasında aşağıdaki hatalar oluştu: - - - - SongEditor - - - Could not open file - Dosya açılamadı - - - - Could not open file %1. You probably have no permissions to read this file. - Please make sure to have at least read permissions to the file and try again. - %1 dosyası açılamadı. Muhtemelen bu dosyayı okuma izniniz yok. - Lütfen dosya için en azından okuma izninizin olduğundan emin olun ve tekrar deneyin. - - - - Operation denied - İşlem reddedildi - - - - A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. - Bu ada sahip bir paket klasörü zaten seçili yolda bulunuyor. Proje paketinin üzerine yazılamaz. Lütfen farklı bir isim seçin. - - - - - - Error - Hata - - - - Couldn't create bundle folder. - Paket klasörü oluşturulamadı. - - - - Couldn't create resources folder. - Kaynaklar klasörü oluşturulamadı. - - - - Failed to copy resources. - Kaynaklar kopyalanamadı. - - - - Could not write file - Dosya yazılamadı - - - - Could not open %1 for writing. You probably are not permitted towrite to this file. Please make sure you have write-access to the file and try again. - %1 yazmak için açılamadı. Muhtemelen bu dosyaya yazma izniniz yok. Lütfen dosyaya yazma erişiminiz olduğundan emin olun ve tekrar deneyin. - - - - This %1 was created with LMMS %2 - Bu %1, %2 LMMS ile oluşturuldu - - - - Error in file - Dosyada hata - - - - The file %1 seems to contain errors and therefore can't be loaded. - Görünüşe göre %1 dosyası hatalar içeriyor ve bu nedenle yüklenemiyor. - - - - Version difference - Sürüm farkı - - - - template - şablon - - - - project - proje - - - - Tempo - Tempo - - - - TEMPO - TEMPO - - - - Tempo in BPM - BPM'de Tempo - - - - High quality mode - Yüksek kalite modu - - - - - - Master volume - Ana ses - - - - - - Master pitch - Ana sahne - - - - Value: %1% - Değer: %1% - - - - Value: %1 semitones - Değer: %1 yarım ton - - - - SongEditorWindow - - - Song-Editor - Şarkı-Düzenleyici - - - - Play song (Space) - Şarkıyı başlat (Space) - - - - Record samples from Audio-device - Ses cihazından örnekleri kaydedin - - - - Record samples from Audio-device while playing song or BB track - Şarkı veya BB parçası çalarken Ses cihazından örnekleri kaydedin - - - - Stop song (Space) - Şarkıyı durdur (Space) - - - - Track actions - Parça eylemleri - - - - Add beat/bassline - Beat/bassline ekle - - - - Add sample-track - Örnek parça ekle - - - - Add automation-track - Ayarkayıt parçası ekle - - - - Edit actions - İşlemleri düzenle - - - - Draw mode - Çizim kipi - - - - Knife mode (split sample clips) - Bıçak modu (örnek klipleri ayır) - - - - Edit mode (select and move) - Düzenleme modu (seç ve taşı) - - - - Timeline controls - Zaman çizelgesi kontrolleri - - - - Bar insert controls - Çubuk ekleme kontrolleri - - - - Insert bar - Çubuk ekle - - - - Remove bar - Çubuğu kaldır - - - - Zoom controls - Yakınlaştırma ayarı - - - - Horizontal zooming - Yatay yakınlaştırma - - - - Snap controls - Yapış denetimleri - - - - - Clip snapping size - Klip yapışma boyutu - - - - Toggle proportional snap on/off - Orantılı tutturmayı aç/kapat - - - - Base snapping size - Taban yapışma boyutu - - - - StepRecorderWidget - - - Hint - İpucu - - - - Move recording curser using <Left/Right> arrows - <Sol/Sağ> oklarını kullanarak kayıt imlecini hareket ettirin - - - - SubWindow - - - Close - Kapat - - - - Maximize - Büyütme - - - - Restore - Onar - - - - TabWidget - - - - Settings for %1 - %1 ayarları - - - - TemplatesMenu - - - New from template - Şablondan yeni - - - - TempoSyncKnob - - - - Tempo Sync - Tempo Senkronizasyonu - - - - No Sync - Senkronizasyon yok - - - - Eight beats - Sekiz vuruş - - - - Whole note - Tam nota - - - - Half note - Yarım nota - - - - Quarter note - Çeyrek nota - - - - 8th note - 8'lik nota - - - - 16th note - 16'lık nota - - - - 32nd note - 32'lik nota - - - - Custom... - Özel... - - - - Custom - Özel - - - - Synced to Eight Beats - Sekiz Vuruşla Senkronize Edildi - - - - Synced to Whole Note - Tüm Nota Senkronize Edildi - - - - Synced to Half Note - Yarım Nota Senkronize Edildi - - - - Synced to Quarter Note - Çeyrek Nota Senkronize Edildi - - - - Synced to 8th Note - 8. Nota senkronize edildi - - - - Synced to 16th Note - 16. Nota senkronize edildi - - - - Synced to 32nd Note - 32. Nota senkronize edildi - - - - TimeDisplayWidget - - - Time units - Zaman birimleri - - - - MIN - DAK - - - - SEC - SAN - - - - MSEC - MSEC - - - - BAR - ÇUBUK - - - - BEAT - VURUŞ - - - - TICK - TIK - - - - TimeLineWidget - - - Auto scrolling - Otomatik kaydırma - - - - Loop points - Döngü noktaları - - - - After stopping go back to beginning - Durduktan sonra başa dön - - - - After stopping go back to position at which playing was started - Durduktan sonra oyunun başladığı konuma geri dönün - - - - After stopping keep position - Durduktan sonra pozisyonunuzu koruyun - - - - Hint - İpucu - - - - Press <%1> to disable magnetic loop points. - Manyetik döngü noktalarını devre dışı bırakmak için <%1> tuşuna basın. - - - - Track - - + Mute - Ses kapatma + Sustur - + Solo Tek - TrackContainer + lmms::MixerRoute - + + + Amount to send from channel %1 to channel %2 + %1 kanalından %2 kanalına gönderilecek miktar + + + + lmms::MonstroInstrument + + + Osc 1 volume + Osc 1 düzey + + + + Osc 1 panning + Osc 1 kaydırma + + + + Osc 1 coarse detune + Osc 1 kaba detay + + + + Osc 1 fine detune left + Osc 1 ince detay sol + + + + Osc 1 fine detune right + Osc 1 ince detay sağ + + + + Osc 1 stereo phase offset + Osc 1 çift kanal faz ofseti + + + + Osc 1 pulse width + Osc 1 darbe genişliği + + + + Osc 1 sync send on rise + Osc 1 nsenkronizasyonu yükselişte gönder + + + + Osc 1 sync send on fall + Osc 1 senkronizasyonu sonbaharda gönder + + + + Osc 2 volume + Osc 2 düzey + + + + Osc 2 panning + Osc 2 kaydırma + + + + Osc 2 coarse detune + Osc 2 kaba detay + + + + Osc 2 fine detune left + Osc 2 ince detay sol + + + + Osc 2 fine detune right + Osc 2 ince detay sağ + + + + Osc 2 stereo phase offset + Osc 2 çift kanal faz ofseti + + + + Osc 2 waveform + Osc 2 dalga formu + + + + Osc 2 sync hard + Osc 2 senkronizasyonu zor + + + + Osc 2 sync reverse + Osc 2 senkronizasyon ters + + + + Osc 3 volume + Osc 3 düzey + + + + Osc 3 panning + Osc 3 kaydırma + + + + Osc 3 coarse detune + Osc 3 kaba detay + + + + Osc 3 Stereo phase offset + Osc 3 çift kanal faz ofseti + + + + Osc 3 sub-oscillator mix + Osc 3 alt osilatör karışımı + + + + Osc 3 waveform 1 + Osc 3 dalga formu 1 + + + + Osc 3 waveform 2 + Osc 3 dalga formu 2 + + + + Osc 3 sync hard + Osc 3 senkronizasyonu zor + + + + Osc 3 Sync reverse + Osc 3 Senkronizasyon ters + + + + LFO 1 waveform + LFO 1 dalga formu + + + + LFO 1 attack + LFO 1 saldırısı + + + + LFO 1 rate + LFO 1 oran + + + + LFO 1 phase + LFO 1 aşaması + + + + LFO 2 waveform + LFO 2 dalga formu + + + + LFO 2 attack + LFO 2 saldırısı + + + + LFO 2 rate + LFO 2 oran + + + + LFO 2 phase + LFO 2 aşaması + + + + Env 1 pre-delay + Env 1 ön gecikme + + + + Env 1 attack + Env 1 saldırısı + + + + Env 1 hold + Env 1 tutma + + + + Env 1 decay + Env 1 bozunma + + + + Env 1 sustain + Env 1 sürdürmek + + + + Env 1 release + Env 1 yayını + + + + Env 1 slope + Env 1 eğimi + + + + Env 2 pre-delay + Env 2 ön gecikmesi + + + + Env 2 attack + Env 2 saldırısı + + + + Env 2 hold + Env 2 tutma + + + + Env 2 decay + Env 2 bozunma + + + + Env 2 sustain + Env 2 sürdürmek + + + + Env 2 release + Env 2 yayını + + + + Env 2 slope + Env 2 eğimi + + + + Osc 2+3 modulation + Osc 2+3 modülasyonu + + + + Selected view + Seçili görünüm + + + + Osc 1 - Vol env 1 + Osc 1 - Düzey env 1 + + + + Osc 1 - Vol env 2 + Osc 1 - Düzey env 2 + + + + Osc 1 - Vol LFO 1 + Osc 1 - Düzey LFO 1 + + + + Osc 1 - Vol LFO 2 + Osc 1 - Düzey LFO 2 + + + + Osc 2 - Vol env 1 + Osc 2 - Düzey env 1 + + + + Osc 2 - Vol env 2 + Osc 2 - Düzey env 2 + + + + Osc 2 - Vol LFO 1 + Osc 2 - Düzey LFO 1 + + + + Osc 2 - Vol LFO 2 + Osc 2 - Düzey LFO 2 + + + + Osc 3 - Vol env 1 + Osc 3 - Düzey env 1 + + + + Osc 3 - Vol env 2 + Osc 3 - Düzey env 2 + + + + Osc 3 - Vol LFO 1 + Osc 3 - Düzey LFO 1 + + + + Osc 3 - Vol LFO 2 + Osc 3 - Düzey LFO 2 + + + + Osc 1 - Phs env 1 + Osc 1 - Phs env 1 + + + + Osc 1 - Phs env 2 + Osc 1 - Phs env 2 + + + + Osc 1 - Phs LFO 1 + Osc 1 - Phs LFO 1 + + + + Osc 1 - Phs LFO 2 + Osc 1 - Phs LFO 2 + + + + Osc 2 - Phs env 1 + Osc 2 - Phs env 1 + + + + Osc 2 - Phs env 2 + Osc 2 - Phs env 2 + + + + Osc 2 - Phs LFO 1 + Osc 2 - Phs LFO 1 + + + + Osc 2 - Phs LFO 2 + Osc 2 - Phs LFO 2 + + + + Osc 3 - Phs env 1 + Osc 3 - Phs env 1 + + + + Osc 3 - Phs env 2 + Osc 3 - Phs env 2 + + + + Osc 3 - Phs LFO 1 + Osc 3 - Phs LFO 1 + + + + Osc 3 - Phs LFO 2 + Osc 3 - Phs LFO 2 + + + + Osc 1 - Pit env 1 + Osc 1 - Pit env 1 + + + + Osc 1 - Pit env 2 + Osc 1 - Pit env 2 + + + + Osc 1 - Pit LFO 1 + Osc 1 - Pit LFO 1 + + + + Osc 1 - Pit LFO 2 + Osc 1 - Pit LFO 2 + + + + Osc 2 - Pit env 1 + Osc 2 - Pit env 1 + + + + Osc 2 - Pit env 2 + Osc 2 - Pit env 2 + + + + Osc 2 - Pit LFO 1 + Osc 2 - Pit LFO 1 + + + + Osc 2 - Pit LFO 2 + Osc 2 - Pit LFO 2 + + + + Osc 3 - Pit env 1 + Osc 3 - Pit env 1 + + + + Osc 3 - Pit env 2 + Osc 3 - Pit env 2 + + + + Osc 3 - Pit LFO 1 + Osc 3 - Pit LFO 1 + + + + Osc 3 - Pit LFO 2 + Osc 3 - Pit LFO 2 + + + + Osc 1 - PW env 1 + Osc 1 - PW env 1 + + + + Osc 1 - PW env 2 + Osc 1 - PW env 2 + + + + Osc 1 - PW LFO 1 + Osc 1 - PW LFO 1 + + + + Osc 1 - PW LFO 2 + Osc 1 - PW LFO 2 + + + + Osc 3 - Sub env 1 + Osc 3 - Sub env 1 + + + + Osc 3 - Sub env 2 + Osc 3 - Sub env 2 + + + + Osc 3 - Sub LFO 1 + Osc 3 - Sub LFO 1 + + + + Osc 3 - Sub LFO 2 + Osc 3 - Sub LFO 2 + + + + + Sine wave + Sinüs dalgası + + + + Bandlimited Triangle wave + Band sınırlı Üçgen dalga + + + + Bandlimited Saw wave + Bant sınırı Testere dalgası + + + + Bandlimited Ramp wave + Bant sınırlı Rampa dalgası + + + + Bandlimited Square wave + Bant sınırı Kare dalga + + + + Bandlimited Moog saw wave + Band sınırlı Moog testere dalgası + + + + + Soft square wave + Yumuşak kare dalga + + + + Absolute sine wave + Mutlak sinüs dalgası + + + + + Exponential wave + Üstel dalga + + + + White noise + Beyaz gürültü + + + + Digital Triangle wave + Dijital Üçgen dalga + + + + Digital Saw wave + Dijital Testere dalgası + + + + Digital Ramp wave + Dijital Rampa dalgası + + + + Digital Square wave + Dijital Kare dalga + + + + Digital Moog saw wave + Digital Moog testere dalgası + + + + Triangle wave + Üçgen dalga + + + + Saw wave + Testere dalga + + + + Ramp wave + Rampa dalgası + + + + Square wave + Kare dalgası + + + + Moog saw wave + Moog testere dalgası + + + + Abs. sine wave + Abs. sinüs dalgası + + + + Random + Rastgele + + + + Random smooth + Rastgele pürüzsüz + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + Kanal 1 kaba detune + + + + Channel 1 volume + Kanal 1 düzeyi + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + Kanal 1 zarf uzunluğu + + + + Channel 1 duty cycle + Kanal 1 görev döngüsü + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + Kanal 1 tarama miktarı + + + + Channel 1 sweep rate + Kanal 1 tarama hızı + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + Kanal 2 zarf uzunluğu + + + + Channel 2 duty cycle + Kanal 2 görev döngüsü + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + Kanal 2 tarama miktarı + + + + Channel 2 sweep rate + Kanal 2 tarama hızı + + + + Channel 3 enable + + + + + Channel 3 coarse detune + Kanal 3 kaba detune + + + + Channel 3 volume + Kanal 3 düzeyi + + + + Channel 4 enable + + + + + Channel 4 volume + Kanal 4 düzeyi + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + Kanal 4 zarf uzunluğu + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + Kanal 4 gürültü frekansı + + + + Channel 4 noise frequency sweep + Kanal 4 gürültü frekansı taraması + + + + Channel 4 quantize + + + + + Master volume + Ana ses + + + + Vibrato + Titreşim + + + + lmms::OpulenzInstrument + + + Patch + Yama + + + + Op 1 attack + Op 1 saldırısı + + + + Op 1 decay + Op 1 bozunması + + + + Op 1 sustain + Op 1 sürdürme + + + + Op 1 release + Op 1 yayını + + + + Op 1 level + Op 1 seviyesi + + + + Op 1 level scaling + Op 1 seviye ölçeklendirme + + + + Op 1 frequency multiplier + Op 1 frekans çarpanı + + + + Op 1 feedback + Op 1 geribildirimi + + + + Op 1 key scaling rate + Op 1 anahtar ölçekleme oranı + + + + Op 1 percussive envelope + Op 1 vurmalı zarf + + + + Op 1 tremolo + Op 1 tremolo + + + + Op 1 vibrato + Op 1 titreşimi + + + + Op 1 waveform + Op 1 dalga formu + + + + Op 2 attack + Op 2 saldırısı + + + + Op 2 decay + Op 2 bozunması + + + + Op 2 sustain + Op 2 sürdürme + + + + Op 2 release + Op 2 yayını + + + + Op 2 level + Op 2 seviyesi + + + + Op 2 level scaling + Op 2 seviye ölçeklendirme + + + + Op 2 frequency multiplier + Op 2 frekans çarpanı + + + + Op 2 key scaling rate + Op 2 anahtar ölçekleme oranı + + + + Op 2 percussive envelope + Op 2 vurmalı zarf + + + + Op 2 tremolo + Op 2 tremolo + + + + Op 2 vibrato + Op 2 titreşimi + + + + Op 2 waveform + Op 2 dalga formu + + + + FM + FM + + + + Vibrato depth + Titreşim derinliği + + + + Tremolo depth + Tremolo derinliği + + + + lmms::OrganicInstrument + + + Distortion + Bozma + + + + Volume + Ses Düzeyi + + + + lmms::OscillatorObject + + + Osc %1 waveform + Osc %1 dalga biçimi + + + + Osc %1 harmonic + Osc %1 harmonik + + + + + Osc %1 volume + Osc %1 düzeyi + + + + + Osc %1 panning + Osc %1 kaydırma + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + Osc %1 kaba ince ayar + + + + Osc %1 fine detuning left + Osc %1 ince ayar sol + + + + Osc %1 fine detuning right + Osc %1 ince ayar sağ + + + + Osc %1 phase-offset + Osc %1 faz kayması + + + + Osc %1 stereo phase-detuning + Osc %1 stereo faz ayarlama + + + + Osc %1 wave shape + Osc %1 dalga şekli + + + + Modulation type %1 + Modülasyon türü %1 + + + + lmms::PatternTrack + + + Pattern %1 + %1 Kalıbı + + + + Clone of %1 + Kopya %1 + + + + lmms::PeakController + + + Peak Controller + Tepe Kontrolörü + + + + Peak Controller Bug + Tepe Kontrol Hatası + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + LMMS'nin eski sürümündeki bir hata nedeniyle, tepe denetleyicileri doğru şekilde bağlanamayabilir. Lütfen tepe denetleyicilerin doğru şekilde bağlandığından emin olun ve bu dosyayı yeniden kaydedin. Herhangi bir rahatsızlık verdiysem üzgünüm. + + + + lmms::PeakControllerEffectControls + + + Base value + Temel değer + + + + Modulation amount + Modülasyon miktarı + + + + Attack + Saldırı + + + + Release + Yayınla + + + + Treshold + Eşik + + + + Mute output + Çıkış sessiz + + + + Absolute value + Mutlak değer + + + + Amount multiplicator + Miktar çarpanı + + + + lmms::Plugin + + + Plugin not found + Eklenti bulunamadı + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + "%1" eklentisi bulunamadı veya yüklenemedi! +Nedeni: "%2" + + + + Error while loading plugin + Eklenti yüklenirken hata + + + + Failed to load plugin "%1"! + "%1" eklentisi yüklenemedi! + + + + lmms::ReverbSCControls + + + Input gain + Giriş kazancı + + + + Size + Boy + + + + Color + Renk + + + + Output gain + Çıkış kazancı + + + + lmms::SaControls + + + Pause + Duraklat + + + + Reference freeze + Referans dondurma + + + + Waterfall + Şelale + + + + Averaging + Ortalama + + + + Stereo + Stereo + + + + Peak hold + Tepe tutma + + + + Logarithmic frequency + Logaritmik frekans + + + + Logarithmic amplitude + Logaritmik genlik + + + + Frequency range + Frekans aralığı + + + + Amplitude range + Genlik aralığı + + + + FFT block size + FFT blok boyutu + + + + FFT window type + FFT pencere türü + + + + Peak envelope resolution + En yüksek zarf çözünürlüğü + + + + Spectrum display resolution + Spektrum ekran çözünürlüğü + + + + Peak decay multiplier + Tepe bozunma çarpanı + + + + Averaging weight + Ortalama ağırlık + + + + Waterfall history size + Şelale geçmişi boyutu + + + + Waterfall gamma correction + Şelale gama düzeltmesi + + + + FFT window overlap + FFT penceresi çakışması + + + + FFT zero padding + FFT sıfır dolgusu + + + + + Full (auto) + Tam (otomatik) + + + + + + Audible + Sesli + + + + Bass + Bas + + + + Mids + Ortalar + + + + High + Yüksek + + + + Extended + Genişletilmiş + + + + Loud + Yüksek + + + + Silent + Sessiz + + + + (High time res.) + (Yüksek zaman çözünürlüğü) + + + + (High freq. res.) + (Yüksek frekans çözünürlüğü) + + + + Rectangular (Off) + Dikdörtgen (Kapalı) + + + + + Blackman-Harris (Default) + Blackman-Harris (Varsayılan) + + + + Hamming + Hamming + + + + Hanning + Hanning + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + Ses Düzeyi + + + + Panning + Kaydırma + + + + Mixer channel + FX kanalı + + + + + Sample track + Örnek parça + + + + lmms::Scale + + + empty + boş + + + + lmms::Sf2Instrument + + + Bank + Yuva + + + + Patch + Yama + + + + Gain + Kazanç + + + + Reverb + Yankı + + + + Reverb room size + Yankı odası boyutu + + + + Reverb damping + Yankı sönümleme + + + + Reverb width + Yankı genişliği + + + + Reverb level + Yankı seviyesi + + + + Chorus + Koro + + + + Chorus voices + Koro sesleri + + + + Chorus level + Koro seviyesi + + + + Chorus speed + Koro hızı + + + + Chorus depth + Koro derinliği + + + + A soundfont %1 could not be loaded. + %1 ses yazı tipi yüklenemedi. + + + + lmms::SfxrInstrument + + + Wave + Dalga + + + + lmms::SidInstrument + + + Cutoff frequency + Kesme frekansı + + + + Resonance + Çınlama + + + + Filter type + Filtre tipi + + + + Voice 3 off + Ses 3 kapalı + + + + Volume + Ses Düzeyi + + + + Chip model + Yonga modeli + + + + lmms::SlicerT + + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + + + + + lmms::Song + + + Tempo + Tempo + + + + Master volume + Ana ses + + + + Master pitch + Ana sahne + + + + Aborting project load + Proje yüklemesi iptal ediliyor + + + + Project file contains local paths to plugins, which could be used to run malicious code. + Proje dosyası, kötü amaçlı kod çalıştırmak için kullanılabilecek eklentilere giden yerel yolları içerir. + + + + Can't load project: Project file contains local paths to plugins. + Proje yüklenemiyor: Proje dosyası, eklentilere giden yerel yolları içerir. + + + + LMMS Error report + LMMS Hata raporu + + + + (repeated %1 times) + (%1 kez tekrarlandı) + + + + The following errors occurred while loading: + Yükleme sırasında aşağıdaki hatalar oluştu: + + + + lmms::StereoEnhancerControls + + + Width + Genişlik + + + + lmms::StereoMatrixControls + + + Left to Left + Soldan Sola + + + + Left to Right + Soldan sağa + + + + Right to Left + Sağdan sola + + + + Right to Right + Sağa Doğru + + + + lmms::Track + + + Mute + Sustur + + + + Solo + Tek + + + + lmms::TrackContainer + + Couldn't import file Dosya içe aktarılamadı - + Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software. %1 dosyasını içe aktarmak için bir filtre bulunamadı. Bu dosyayı başka bir yazılım kullanarak LMMS tarafından desteklenen bir biçime dönüştürmelisiniz. - + Couldn't open file Dosya açılamadı - + Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! %1 dosyası okumak için açılamadı. Lütfen dosyayı ve dosyayı içeren dizini okuma iznine sahip olduğunuzdan emin olun ve tekrar deneyin! - + Loading project... Proje yükleniyor... - - + + Cancel - İptal + Çıkış - - + + Please wait... Lütfen bekleyin... - + Loading cancelled Yükleme iptal edildi - + Project loading was cancelled. Proje yüklemesi iptal edildi. - + Loading Track %1 (%2/Total %3) %1 Parça Yükleniyor (%2/Toplam %3) - + Importing MIDI-file... MIDI dosyası içe aktarılıyor... - Clip + lmms::TripleOscillator - - Mute - Ses kapatma + + Sample not found + - ClipView + lmms::VecControls - + + Display persistence amount + Kalıcılık miktarını göster + + + + Logarithmic scale + Logaritmik ölçek + + + + High quality + Yüksek kalite + + + + lmms::VestigeInstrument + + + Loading plugin + Eklenti yükleniyor + + + + Please wait while loading the VST plugin... + VST eklentisini yüklerken lütfen bekleyin... + + + + lmms::Vibed + + + String %1 volume + Dize %1 hacmi + + + + String %1 stiffness + Dize %1 sertliği + + + + Pick %1 position + %1 pozisyon seçin + + + + Pickup %1 position + Alım %1 pozisyon + + + + String %1 panning + %1 dize kaydırma + + + + String %1 detune + %1 dize detune + + + + String %1 fuzziness + Dize %1 belirsizliği + + + + String %1 length + Dize %1 uzunluğu + + + + Impulse %1 + Dürtü %1 + + + + String %1 + Dize %1 + + + + lmms::VoiceObject + + + Voice %1 pulse width + Ses %1 darbe genişliği + + + + Voice %1 attack + Ses %1 saldırısı + + + + Voice %1 decay + Ses %1 zayıflaması + + + + Voice %1 sustain + Ses %1 sürdür + + + + Voice %1 release + Ses %1 sürümü + + + + Voice %1 coarse detuning + Ses %1 kaba ince ayar + + + + Voice %1 wave shape + Ses %1 dalga şekli + + + + Voice %1 sync + Ses %1 senkronizasyonu + + + + Voice %1 ring modulate + Ses %1 zil sesi modülasyonu + + + + Voice %1 filtered + Ses %1 filtrelendi + + + + Voice %1 test + Ses %1 testi + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + %1 VST eklentisi yüklenemedi. + + + + Open Preset + Ön Ayarı Aç + + + + + VST Plugin Preset (*.fxp *.fxb) + VST Eklenti Ön Ayarı (*.fxp *.fxb) + + + + : default + : öntanımlı + + + + Save Preset + Önayarı Kaydet + + + + .fxp + .fxp + + + + .FXP + .FXP + + + + .FXB + .FXB + + + + .fxb + .fxb + + + + Loading plugin + Eklenti yükleniyor + + + + Please wait while loading VST plugin... + VST eklentisi yüklenirken lütfen bekleyin... + + + + lmms::WatsynInstrument + + + Volume A1 + Düzey A1 + + + + Volume A2 + Düzey A2 + + + + Volume B1 + Düzey B1 + + + + Volume B2 + Düzey B2 + + + + Panning A1 + Kaydırma A1 + + + + Panning A2 + Kaydırma A2 + + + + Panning B1 + Kaydırma B1 + + + + Panning B2 + Kaydırma B2 + + + + Freq. multiplier A1 + Frekans. çarpan A1 + + + + Freq. multiplier A2 + Frekans. çarpan A2 + + + + Freq. multiplier B1 + Frekans. çarpan B1 + + + + Freq. multiplier B2 + Frekans. çarpan B2 + + + + Left detune A1 + Sol detune A1 + + + + Left detune A2 + Sol detune A2 + + + + Left detune B1 + Sol detune B1 + + + + Left detune B2 + Sol detune B2 + + + + Right detune A1 + Sağ detune A1 + + + + Right detune A2 + Sağ detune A2 + + + + Right detune B1 + Sağ detune B1 + + + + Right detune B2 + Sağ detune B2 + + + + A-B Mix + A-B Karışımı + + + + A-B Mix envelope amount + A-B Karışık zarf miktarı + + + + A-B Mix envelope attack + A-B Karışık zarf saldırısı + + + + A-B Mix envelope hold + A-B Karışık zarf tutma + + + + A-B Mix envelope decay + A-B Karışım zarf bozunması + + + + A1-B2 Crosstalk + A1-B2 Çapraz Karışma + + + + A2-A1 modulation + A2-A1 modülasyonu + + + + B2-B1 modulation + B2-B1 modülasyonu + + + + Selected graph + Seçili grafik + + + + lmms::WaveShaperControls + + + Input gain + Giriş kazancı + + + + Output gain + Çıkış kazancı + + + + lmms::Xpressive + + + Selected graph + Seçili grafik + + + + A1 + A1 + + + + A2 + A2 + + + + A3 + A3 + + + + W1 smoothing + W1 yumuşatma + + + + W2 smoothing + W2 yumuşatma + + + + W3 smoothing + W3 yumuşatma + + + + Panning 1 + Kaydırma 1 + + + + Panning 2 + Kaydırma 2 + + + + Rel trans + Rel trans + + + + lmms::ZynAddSubFxInstrument + + + Portamento + Kaydırma + + + + Filter frequency + Frekans filtresi + + + + Filter resonance + Rezonans filtresi + + + + Bandwidth + Bant genişliği + + + + FM gain + FM kazancı + + + + Resonance center frequency + Rezonans merkez frekansı + + + + Resonance bandwidth + Rezonans bant genişliği + + + + Forward MIDI control change events + MIDI kontrol değişikliği olaylarını iletme + + + + lmms::graphModel + + + Graph + Grafik + + + + lmms::gui::AmplifierControlDialog + + + VOL + SES + + + + Volume: + Ses Düzeyi: + + + + PAN + PAN + + + + Panning: + Kaydırma: + + + + LEFT + SOL + + + + Left gain: + Sol kazanç: + + + + RIGHT + SAĞ + + + + Right gain: + Sağ kazanç: + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + Örnek açın + + + + Reverse sample + Ters örnek + + + + Disable loop + Döngüyü kapat + + + + Enable loop + Döngüyü aç + + + + Enable ping-pong loop + Ping-pong döngüsünü etkinleştir + + + + Continue sample playback across notes + Örneği notalar arasında oynatmaya devam et + + + + Amplify: + Güçlendirin: + + + + Start point: + Başlangıç noktası: + + + + End point: + Bitiş noktası: + + + + Loopback point: + Geri döngü noktası: + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + Örnek uzunluğu: + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + Ayarkayıt Düzenleyici'de aç + + + + Clear + Temizle + + + + Reset name + İsmini sıfırla + + + + Change name + İsmini değiştir + + + + Set/clear record + Kayıdı başlat/durdur + + + + Flip Vertically (Visible) + Dikey Yönde Çevir (Görünür) + + + + Flip Horizontally (Visible) + Yatay Yönde Çevir (Görünür) + + + + %1 Connections + %1 Bağlantı + + + + Disconnect "%1" + Şunun bağlantısını kes: "%1" + + + + Model is already connected to this clip. + Model zaten bu desene bağlanmış. + + + + lmms::gui::AutomationEditor + + + Edit Value + Değeri Düzenleyin + + + + New outValue + Yeni çıkış değeri + + + + New inValue + Yeni giriş Değeri + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + Seçili bölümü oynat/durdur (Boşluk Tuşu) + + + + Stop playing of current clip (Space) + Seçili modeli oynatmayı durdur (Boşluk Tuşu) + + + + Edit actions + İşlemleri düzenle + + + + Draw mode (Shift+D) + Çizim modu (Shift+D) + + + + Erase mode (Shift+E) + Silgi modu (Shift+E) + + + + Draw outValues mode (Shift+C) + Değerleri çiz modu (Shift+C) + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + Dikey çevir + + + + Flip horizontally + Yatay çevir + + + + Interpolation controls + Enterpolasyon kontrolleri + + + + Discrete progression + Kesikli ilerleme + + + + Linear progression + Doğrusal ilerleme + + + + Cubic Hermite progression + Kübik Hermite ilerleme + + + + Tension value for spline + Sapma için gerilim değeri + + + + Tension: + Gerginlik: + + + + Zoom controls + Yakınlaştırma kontrolleri + + + + Horizontal zooming + Yatay yakınlaştırma + + + + Vertical zooming + Dikey yakınlaştırma + + + + Quantization controls + Niceleme kontrolleri + + + + Quantization + Niceleme + + + + Clear ghost notes + + + + + + Automation Editor - no clip + Ayarkayıt Düzenleyici - oluşturulmuş bölüm yok + + + + + Automation Editor - %1 + Ayarkayıt Düzenleyici - %1 + + + + Model is already connected to this clip. + Model zaten bu desene bağlanmış. + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + FREK + + + + Frequency: + Frekans: + + + + GAIN + GAIN + + + + Gain: + Kazanç: + + + + RATIO + ORAN + + + + Ratio: + Oran: + + + + lmms::gui::BitInvaderView + + + Sample length + Örnek uzunluğu + + + + Draw your own waveform here by dragging your mouse on this graph. + Farenizi bu grafiğin üzerine sürükleyerek buraya kendi dalga formunuzu çizin. + + + + + Sine wave + Sinüs dalgası + + + + + Triangle wave + Üçgen dalga + + + + + Saw wave + Testere dalga + + + + + Square wave + Kare dalgası + + + + + White noise + Beyaz gürültü + + + + + User-defined wave + Kullanıcı tanımlı dalga + + + + + Smooth waveform + Düzgün dalga formu + + + + Interpolation + Aradeğerleme + + + + Normalize + Normalleştir + + + + lmms::gui::BitcrushControlDialog + + + IN + İÇİNDE + + + + OUT + OUT + + + + + GAIN + GAIN + + + + Input gain: + Giriş kazancı: + + + + NOISE + PARAZİT + + + + Input noise: + Giriş gürültüsü: + + + + Output gain: + Çıkış kazancı: + + + + CLIP + KIRP + + + + Output clip: + Çıktı klibi: + + + + Rate enabled + Oran etkinleştirildi + + + + Enable sample-rate crushing + Örnek hızında ezmeyi etkinleştirin + + + + Depth enabled + Derinlik etkinleştirildi + + + + Enable bit-depth crushing + Bit derinliğinde ezmeyi etkinleştirin + + + + FREQ + FREK + + + + Sample rate: + Örnekleme oranı: + + + + STEREO + STEREO + + + + Stereo difference: + Stereo farklılığı: + + + + QUANT + MİKTAR + + + + Levels: + Düzey: + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + Görselli Arayüzü Göster + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + Carla'nın grafiksel kullanıcı arayüzünü (GUI) göstermek veya gizlemek için buraya tıklayın. + + + + Params + Parametreler + + + + Available from Carla version 2.1 and up. + Carla sürüm 2.1 ve üzeri sürümlerde mevcuttur. + + + + lmms::gui::CarlaParamsView + + + Search.. + Ara.. + + + + Clear filter text + Filtre metnini temizle + + + + Only show knobs with a connection. + Yalnızca bağlantılı düğmeleri gösterin. + + + + - Parameters + - Parametreler + + + + lmms::gui::ClipView + + Current position Şu anki pozisyon - + Current length Mevcut uzunluk - - + + %1:%2 (%3:%4 to %5:%6) %1:%2 (%3:%4 to %5:%6) - + Press <%1> and drag to make a copy. Bir kopya oluşturmak için <%1> tuşuna basın ve sürükleyin. - + Press <%1> for free resizing. Serbest yeniden boyutlandırma için <%1> seçeneğine basın. - + Hint İpucu - + Delete (middle mousebutton) Sil (orta klik) - + Delete selection (middle mousebutton) Seçimi sil (orta fare düğmesi) - + Cut Kes - + Cut selection Seçimi Kes - + Merge Selection Seçimi Birleştir - + Copy - Kopyala + Kopya - + Copy selection Seçimi Kopyala - + Paste Yapıştır - + Mute/unmute (<%1> + middle click) Sesi kapat/sesi aç (<%1> + orta tıklama) - + Mute/unmute selection (<%1> + middle click) Seçimin sesini kapat/aç (<%1> + orta tıklama) - - Set clip color - Klip rengini ayarla + + Clip color + Klip rengi - - Use track color - Parça rengini kullan + + Change + Değiştir + + + + Reset + Sıfırla + + + + Pick random + Rastgele seç - TrackContentWidget + lmms::gui::CompressorControlDialog - + + Threshold: + Eşik: + + + + Volume at which the compression begins to take place + Sıkıştırmanın gerçekleşmeye başladığı düzey + + + + Ratio: + Oran: + + + + How far the compressor must turn the volume down after crossing the threshold + Eşiği geçtikten sonra kompresörün hacmi ne kadar azaltması gerekir + + + + Attack: + Saldırı: + + + + Speed at which the compressor starts to compress the audio + Kompresörün sesi sıkıştırmaya başladığı hız + + + + Release: + Yayınla: + + + + Speed at which the compressor ceases to compress the audio + Kompresörün sesi sıkıştırmayı bıraktığı hız + + + + Knee: + Diz: + + + + Smooth out the gain reduction curve around the threshold + Eşiğin etrafındaki kazanç azaltma eğrisini düzeltin + + + + Range: + Menzil: + + + + Maximum gain reduction + Maksimum kazanç azaltma + + + + Lookahead Length: + Önden Bakış Uzunluğu: + + + + How long the compressor has to react to the sidechain signal ahead of time + Kompresörün yan zincir sinyaline vaktinden önce ne kadar süre tepki vermesi gerekir + + + + Hold: + Ambar: + + + + Delay between attack and release stages + Saldırı ve serbest bırakma aşamaları arasındaki gecikme + + + + RMS Size: + RMS Boyutu: + + + + Size of the RMS buffer + RMS arabelleğinin boyutu + + + + Input Balance: + Giriş Dengesi: + + + + Bias the input audio to the left/right or mid/side + Giriş sesini sola / sağa veya ortaya / yana çevirin + + + + Output Balance: + Çıktı Dengesi: + + + + Bias the output audio to the left/right or mid/side + Çıkış sesini sola / sağa veya ortaya / tarafa çevirin + + + + Stereo Balance: + Çift kanal Dengesi: + + + + Bias the sidechain signal to the left/right or mid/side + Yan zincir sinyalini sola / sağa veya ortaya / yana çevirin + + + + Stereo Link Blend: + Çift kanal Bağlantı Karışımı: + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + Bağlantısız / maksimum / ortalama / minimum çift kanal bağlantı modları arasında uyum sağlayın + + + + Tilt Gain: + Eğim Kazancı: + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + Yan zincir sinyalini düşük veya yüksek frekanslara yönlendirin. -6 db alçak geçiş, 6 db yüksek geçiştir. + + + + Tilt Frequency: + Eğim Frekansı: + + + + Center frequency of sidechain tilt filter + Yan zincir eğim filtresinin merkez frekansı + + + + Mix: + Karıştır: + + + + Balance between wet and dry signals + Islak ve kuru sinyaller arasında denge + + + + Auto Attack: + Otomatik Saldırı: + + + + Automatically control attack value depending on crest factor + Crest faktörüne bağlı olarak saldırı değerini otomatik olarak kontrol edin + + + + Auto Release: + Otomatik Yayın: + + + + Automatically control release value depending on crest factor + Crest faktörüne bağlı olarak serbest bırakma değerini otomatik olarak kontrol edin + + + + Output gain + Çıkış kazancı + + + + + Gain + Kazanç + + + + Output volume + Çıkış Düzeyi + + + + Input gain + Giriş kazancı + + + + Input volume + Giriş Düzeyi + + + + Root Mean Square + Kök kare ortalama + + + + Use RMS of the input + Girişin RMS'sini kullanın + + + + Peak + Zirve + + + + Use absolute value of the input + Girişin mutlak değerini kullan + + + + Left/Right + Sol/Sağ + + + + Compress left and right audio + Sol ve sağ sesi sıkıştır + + + + Mid/Side + Orta/Yan + + + + Compress mid and side audio + Orta ve yan sesi sıkıştır + + + + Compressor + Sıkıştırıcı + + + + Compress the audio + Sesi sıkıştır + + + + Limiter + Sınırlayıcı + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + Oranı sonsuza ayarla (ses seviyesini sınırlaması garanti edilmez) + + + + Unlinked + Bağlantısız + + + + Compress each channel separately + Her kanalı ayrı ayrı sıkıştırın + + + + Maximum + En Çok + + + + Compress based on the loudest channel + En gürültülü kanala göre sıkıştır + + + + Average + Ortalama + + + + Compress based on the averaged channel volume + Ortalama kanal hacmine göre sıkıştır + + + + Minimum + En Az + + + + Compress based on the quietest channel + En sessiz kanala göre sıkıştırın + + + + Blend + Harman + + + + Blend between stereo linking modes + Stereo bağlantı modları arasında uyum sağlayın + + + + Auto Makeup Gain + Otomatik Makyaj Kazancı + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + Eşik, diz ve oran ayarlarına bağlı olarak makyaj kazancını otomatik olarak değiştirin + + + + + Soft Clip + Yumuşak Kırpılma + + + + Play the delta signal + Delta sinyalini çal + + + + Use the compressor's output as the sidechain input + Yan zincir girişi olarak kompresörün çıktısını kullanın + + + + Lookahead Enabled + İleri Bakış Etkinleştirildi + + + + Enable Lookahead, which introduces 20 milliseconds of latency + 20 milisaniyelik gecikme süresi sağlayan Lookahead'i etkinleştirin + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + Bağlantı Ayarları + + + + MIDI CONTROLLER + MIDI KONTROLÖR + + + + Input channel + Giriş kanalı + + + + CHANNEL + KANAL + + + + Input controller + Giriş kontrolörü + + + + CONTROLLER + KONTROLÖR + + + + + Auto Detect + Oto-Tespit + + + + MIDI-devices to receive MIDI-events from + MIDI olaylarını almak için MIDI cihazları + + + + USER CONTROLLER + KULLANICI KONTROLÖRÜ + + + + MAPPING FUNCTION + EŞLEŞTİRME FONKSİYONU + + + + OK + TAMAM + + + + Cancel + Çıkış + + + + LMMS + LMMS + + + + Cycle Detected. + Döngü Algılandı. + + + + lmms::gui::ControllerRackView + + + Controller Rack + Denetleyici Rafı + + + + Add + Ekle + + + + Confirm Delete + Silmeyi Onayla + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + Silmeyi onaylıyor musunuz? Bu denetleyiciyle ilişkili mevcut bağlantılar var. Geri almanın bir yolu yok. + + + + lmms::gui::ControllerView + + + Controls + Kontroller + + + + Rename controller + Denetleyiciyi yeniden adlandır + + + + Enter the new name for this controller + Bu denetleyicinin yeni adını girin + + + + LFO + LFO + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + Bu denetleyiciyi &kaldırın + + + + Re&name this controller + Bu denetleyiciyi yeniden ad&landırın + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + Bant geçişi 1/2: + + + + Band 2/3 crossover: + Bant geçişi 2/3: + + + + Band 3/4 crossover: + Bant geçişi 3/4: + + + + Band 1 gain + Band kazancı 1 + + + + Band 1 gain: + Band kazancı 1: + + + + Band 2 gain + Band kazancı 2 + + + + Band 2 gain: + Band kazancı 2: + + + + Band 3 gain + Band kazancı 3 + + + + Band 3 gain: + Band kazancı 3: + + + + Band 4 gain + Band kazancı 4 + + + + Band 4 gain: + Band kazancı 4: + + + + Band 1 mute + Band 1 sesini kapatma + + + + Mute band 1 + Bant 1'in sesini kapat + + + + Band 2 mute + Band 2 sesini kapatma + + + + Mute band 2 + Band 2'yi sessize al + + + + Band 3 mute + Band 3 sesini kapatma + + + + Mute band 3 + Bant 3'ü sessize al + + + + Band 4 mute + Band 4 sesini kapatma + + + + Mute band 4 + Bant 4'ü sessize al + + + + lmms::gui::DelayControlsDialog + + + DELAY + GECİKME + + + + Delay time + Gecikme süresi + + + + FDBK + FDBK + + + + Feedback amount + Geri bildirim miktarı + + + + RATE + ORAN + + + + LFO frequency + LFO frekansı + + + + AMNT + AMNT + + + + LFO amount + LFO miktarı + + + + Out gain + Çıkış kazancı + + + + Gain + Kazanç + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + MİKTAR + + + + Number of all-pass filters + all-pass filtree numarası + + + + FREQ + FREKANS + + + + Frequency: + Frekans: + + + + RESO + REZONANS + + + + Resonance: + Rezonans: + + + + FEED + GERİ BİLDİRİM + + + + Feedback: + Geri bildirim: + + + + DC Offset Removal + DC Ofset Kaldırma + + + + Remove DC Offset + DC Ofsetini Kaldır + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + FREK + + + + + Cutoff frequency + Kesme frekansı + + + + + RESO + RESO + + + + + Resonance + Çınlama + + + + + GAIN + GAIN + + + + + Gain + Kazanç + + + + MIX + KARIŞIM + + + + Mix + Karıştır + + + + Filter 1 enabled + Filtre 1 etkinleştirildi + + + + Filter 2 enabled + Filtre 2 etkinleştirildi + + + + Enable/disable filter 1 + Filtre 1'i etkinleştir / devre dışı bırak + + + + Enable/disable filter 2 + Filtre 2'yi etkinleştir / devre dışı bırak + + + + lmms::gui::DynProcControlDialog + + + INPUT + GİRDİ + + + + Input gain: + Giriş kazancı: + + + + OUTPUT + ÇIKTI + + + + Output gain: + Çıkış kazancı: + + + + ATTACK + SALDIRI + + + + Peak attack time: + Tepe saldırı süresi: + + + + RELEASE + YAYINLAMA + + + + Peak release time: + En yüksek yayın süresi: + + + + + Reset wavegraph + Dalga grafiğini sıfırla + + + + + Smooth wavegraph + Pürüzsüz dalga grafiği + + + + + Increase wavegraph amplitude by 1 dB + Dalga grafiğinin genliğini 1 dB artırın + + + + + Decrease wavegraph amplitude by 1 dB + Dalga grafiğinin genliğini 1 dB azaltın + + + + Stereo mode: maximum + Stereo modu: maksimum + + + + Process based on the maximum of both stereo channels + Her iki stereo kanalın maksimumuna dayalı işlem + + + + Stereo mode: average + Stereo modu: ortalama + + + + Process based on the average of both stereo channels + Her iki stereo kanalın ortalamasına dayalı işlem + + + + Stereo mode: unlinked + Stereo mod: bağlantısız + + + + Process each stereo channel independently + Her bir stereo kanalı bağımsız olarak işleyin + + + + lmms::gui::Editor + + + Transport controls + Aktarım kontrolleri + + + + Play (Space) + Oynat (Boşluk) + + + + Stop (Space) + Durdur ( Boşluk) + + + + Record + Kayıt + + + + Record while playing + Çalarken kayıt + + + + Toggle Step Recording + Adım Kaydı Değiştir + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + ETKİ ZİNCİRİ + + + + Add effect + Efekt ekleyin + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + İsme göre + + + + Type + Tür + + + + All + + + + + Search + + + + + Description + Açıklama + + + + Author + Yazar + + + + lmms::gui::EffectView + + + On/Off + Aç/Kapat + + + + W/D + I/K + + + + Wet Level: + Islak düzey: + + + + DECAY + BOZULMA + + + + Time: + Zaman: + + + + GATE + PORTAL + + + + Gate: + Portal: + + + + Controls + Kontroller + + + + Move &up + Y&ukarı taşı + + + + Move &down + &Aşağı taşı + + + + &Remove this plugin + Bu eklentiyi &kaldır + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + AMT + + + + + Modulation amount: + Modülasyon miktarı: + + + + + DEL + SİL + + + + + Pre-delay: + Ön gecikme: + + + + + ATT + ATT + + + + + Attack: + Saldırı: + + + + HOLD + TUT + + + + Hold: + Ambar: + + + + DEC + DEC + + + + Decay: + Bozunma: + + + + SUST + SUST + + + + Sustain: + Sürdürmek: + + + + REL + REL + + + + Release: + Yayınla: + + + + SPD + SPD + + + + Frequency: + Frekans: + + + + FREQ x 100 + FREQ x 100 + + + + Multiply LFO frequency by 100 + LFO frekansını 100 ile çarpın + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + Bu LFO ile kontrol zarfı miktarı + + + + Hint + İpucu + + + + Drag and drop a sample into this window. + Bu pencereye bir örnek sürükleyip bırakın. + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + HP + + + + Low-shelf + Düşük raf + + + + Peak 1 + Tepe 1 + + + + Peak 2 + Tepe 2 + + + + Peak 3 + Tepe 3 + + + + Peak 4 + Tepe 4 + + + + High-shelf + Yüksek raf + + + + LP + LP + + + + Input gain + Giriş kazancı + + + + + + Gain + Kazanç + + + + Output gain + Çıkış kazancı + + + + Bandwidth: + Bant genişliği: + + + + Octave + Octave + + + + Resonance: + + + + + Frequency: + Frekans: + + + + LP group + LP grubu + + + + HP group + HP grubu + + + + lmms::gui::EqHandle + + + Reso: + Reso: + + + + BW: + BW: + + + + + Freq: + Freq: + + + + lmms::gui::ExportProjectDialog + + + Could not open file + Dosya açılamadı + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + %1 dosyası yazmak için açılamadı. +Lütfen dosyaya ve dosyayı içeren dizine yazma izniniz olduğundan emin olun ve tekrar deneyin! + + + + Export project to %1 + %1 projesini dışa aktar + + + + ( Fastest - biggest ) + (En hızlı - en büyük) + + + + ( Slowest - smallest ) + (En yavaş - en küçük) + + + + Error + Sorun + + + + Error while determining file-encoder device. Please try to choose a different output format. + Dosya kodlayıcı cihazı belirlenirken hata oluştu. Lütfen farklı bir çıktı biçimi seçmeyi deneyin. + + + + Rendering: %1% + Oluşturuluyor: %1% + + + + lmms::gui::Fader + + + Set value + Değeri ayarla + + + + Please enter a new value between %1 and %2: + Lütfen %1 ile %2 arasında yeni bir değer girin: + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + Tarayıcı + + + + Search + Ara + + + + Refresh list + Listeyi yenile + + + + User content + Kullanıcı içeriği + + + + Factory content + Fabrika içeriği + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + Aktif alet izine gönder + + + + Open containing folder + Bulunduğu dizini aç + + + + Song Editor + Şarkı Düzenleyici + + + + Pattern Editor + Kalıp Düzenleyici + + + + Send to new AudioFileProcessor instance + Yeni Ses Dosyası İşlemcisi örneğine gönder + + + + Send to new instrument track + Yeni enstrüman kanalına gönder + + + + (%2Enter) + (%2Enter) + + + + Send to new sample track (Shift + Enter) + Yeni örnek kanala gönder (Shift + Enter) + + + + Loading sample + Örnek yükleniyor + + + + Please wait, loading sample for preview... + Lütfen bekleyin, önizleme için örnek yükleniyor... + + + + Error + Sorun + + + + %1 does not appear to be a valid %2 file + %1 geçerli bir %2 dosyası gibi görünmüyor + + + + --- Factory files --- + --- Fabrika dosyaları --- + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + GECİKME + + + + Delay time: + Gecikme süresi: + + + + RATE + ORAN + + + + Period: + Periyod: + + + + AMNT + AMNT + + + + Amount: + Miktar: + + + + PHASE + Evre + + + + Phase: + Evre: + + + + FDBK + FDBK + + + + Feedback amount: + Geri bildirim miktarı: + + + + NOISE + PARAZİT + + + + White noise amount: + Beyaz gürültü miktarı: + + + + Invert + Tersine çevir + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + Tarama zamanı: + + + + Sweep time + Tarama zamanı + + + + Sweep rate shift amount: + Tarama oranı kaydırma miktarı: + + + + Sweep rate shift amount + Tarama oranı kaydırma miktarı + + + + + Wave pattern duty cycle: + Dalga deseni görev döngüsü: + + + + + Wave pattern duty cycle + Dalga deseni görev döngüsü + + + + Square channel 1 volume: + Kare kanal 1 düzeyi: + + + + Square channel 1 volume + Kare kanal 1 düzeyi + + + + + + Length of each step in sweep: + Taramadaki her adımın uzunluğu: + + + + + + Length of each step in sweep + Taramadaki her adımın uzunluğu + + + + Square channel 2 volume: + Kare kanal 2 düzeyi: + + + + Square channel 2 volume + Kare kanal 2 düzeyi + + + + Wave pattern channel volume: + Dalga deseni kanal düzeyi: + + + + Wave pattern channel volume + Dalga deseni kanal düzeyi + + + + Noise channel volume: + Gürültü kanalı düzeyi: + + + + Noise channel volume + Gürültü kanalı düzeyi + + + + SO1 volume (Right): + SO2 düzeyi (Sağ): + + + + SO1 volume (Right) + SO2 düzeyi (Sağ) + + + + SO2 volume (Left): + SO2 düzeyi (Sol): + + + + SO2 volume (Left) + SO2 düzeyi (Sol) + + + + Treble: + Tiz: + + + + Treble + Tiz + + + + Bass: + Bas: + + + + Bass + Bas + + + + Sweep direction + Tarama yönü + + + + + + + + Volume sweep direction + Düzey tarama yönü + + + + Shift register width + Vardiya kaydı genişliği + + + + Channel 1 to SO1 (Right) + Kanal 1'den SO1'e (Sağ) + + + + Channel 2 to SO1 (Right) + Kanal 2'den SO1'e (Sağ) + + + + Channel 3 to SO1 (Right) + Kanal 3'den SO1'e (Sağ) + + + + Channel 4 to SO1 (Right) + Kanal 4'den SO1'e (Sağ) + + + + Channel 1 to SO2 (Left) + Kanal 1'den SO2'ye (Sol) + + + + Channel 2 to SO2 (Left) + Kanal 2'den SO2'ye (Sol) + + + + Channel 3 to SO2 (Left) + Kanal 3'den SO2'ye (Sol) + + + + Channel 4 to SO2 (Left) + Kanal 4'den SO2'ye (Sol) + + + + Wave pattern graph + Dalga deseni grafiği + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + GIG dosyasını açın + + + + Choose patch + Yama seçin + + + + Gain: + Kazanç: + + + + GIG Files (*.gig) + GIG Dosyaları (*.gig) + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + Çalışma dizini + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + %1 LMMS çalışma dizini yok. Şimdi oluşturulsun mu? Dizini daha sonra Düzenle -> Ayarlar üzerinden değiştirebilirsiniz. + + + + Preparing UI + Arayüz hazırlanıyor + + + + Preparing song editor + Şarkı düzenleyicinin hazırlanıyor + + + + Preparing mixer + Karıştırıcı hazırlanıyor + + + + Preparing controller rack + Denetleyici rafını hazırlanıyor + + + + Preparing project notes + Proje notlarının hazırlanıyor + + + + Preparing microtuner + Mikro ayarlayıcı hazırlanıyor + + + + Preparing pattern editor + Kalıp düzenleyici hazırlanıyor + + + + Preparing piano roll + Piyano rulosunun hazırlanıyor + + + + Preparing automation editor + Otomasyon düzenleyicinin hazırlanıyor + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + ARPEJ + + + + RANGE + ARALIK + + + + Arpeggio range: + Arpej aralığı: + + + + octave(s) + octave(s) + + + + REP + REP + + + + Note repeats: + Nota tekrarları: + + + + time(s) + zamanlar) + + + + CYCLE + DÖNGÜ + + + + Cycle notes: + Döngü notaları: + + + + note(s) + nota(lar) + + + + SKIP + ATLA + + + + Skip rate: + Atlama oranı: + + + + + + % + % + + + + MISS + KAÇIRMA + + + + Miss rate: + Kaçırma oranı: + + + + TIME + ZAMAN + + + + Arpeggio time: + Arpej zamanı: + + + + ms + ms + + + + GATE + PORTAL + + + + Arpeggio gate: + Arpej kapısı: + + + + Chord: + Akord: + + + + Direction: + Yön: + + + + Mode: + Kip: + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + İSTİFLEME + + + + Chord: + Akord: + + + + RANGE + ARALIK + + + + Chord range: + Akord aralığı: + + + + octave(s) + octave(s) + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + MIDI GİRİŞİNİ ETKİNLEŞTİR + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + KANAL + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + VELOC + + + + ENABLE MIDI OUTPUT + MIDI ÇIKIŞINI ETKİNLEŞTİR + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + PROG + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + NOTA + + + + MIDI devices to receive MIDI events from + MIDI olaylarının alınacağı MIDI cihazları + + + + MIDI devices to send MIDI events to + MIDI olaylarının gönderileceği MIDI cihazları + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + HEDEF + + + + FILTER + FİLTRE + + + + FREQ + FREK + + + + Cutoff frequency: + Kesim frekansı: + + + + Hz + Hz + + + + Q/RESO + Q/RESO + + + + Q/Resonance: + Q/Rezonans: + + + + Envelopes, LFOs and filters are not supported by the current instrument. + Zarflar, LFO'lar ve filtreler mevcut cihaz tarafından desteklenmemektedir. + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + Ses Düzeyi + + + + Volume: + Ses Düzeyi: + + + + VOL + SES + + + + Panning + Kaydırma + + + + Panning: + Kaydırma: + + + + PAN + PAN + + + + MIDI + MIDI + + + + Input + Giriş + + + + Output + Çıkış + + + + Open/Close MIDI CC Rack + MIDI CC Rafını Aç / Kapat + + + + %1: %2 + %1: %2 + + + + lmms::gui::InstrumentTrackWindow + + + Volume + Ses Düzeyi + + + + Volume: + Ses Düzeyi: + + + + VOL + SES + + + + Panning + Kaydırma + + + + Panning: + Kaydırma: + + + + PAN + PAN + + + + Pitch + Saha + + + + Pitch: + Hatve (Aralık): + + + + cents + sent + + + + PITCH + PERDE + + + + Pitch range (semitones) + Perde aralığı (yarım tonlar) + + + + RANGE + ARALIK + + + + Mixer channel + FX kanalı + + + + CHANNEL + KANAL + + + + Save current instrument track settings in a preset file + Mevcut enstrüman parça ayarlarını önceden ayarlanmış bir dosyaya kaydedin + + + + SAVE + KAYDET + + + + Envelope, filter & LFO + Zarf, filtre ve LFO + + + + Chord stacking & arpeggio + Akor istifleme & arpej + + + + Effects + Efektler + + + + MIDI + MIDI + + + + Tuning and transposition + + + + + Save preset + Ön ayarı kaydet + + + + XML preset file (*.xpf) + XML hazır ayar dosyası (*.xpf) + + + + Plugin + Eklenti + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + Başlangıç frekansı: + + + + End frequency: + Bitiş frekansı: + + + + Frequency slope: + Frekans eğimi: + + + + Gain: + Kazanç: + + + + Envelope length: + Zarf uzunluğu: + + + + Envelope slope: + Zarf eğimi: + + + + Click: + Tıkla: + + + + Noise: + Gürültü: + + + + Start distortion: + Bozulmayı başlat: + + + + End distortion: + Bozulmayı bitir: + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + Mevcut Efektler + + + + + Unavailable Effects + Kullanılamayan Etkiler + + + + + Instruments + Enstrümanlar + + + + + Analysis Tools + Analiz Araçları + + + + + Don't know + Bilmiyorum + + + + Type: + Tür: + + + + lmms::gui::LadspaControlDialog + + + Link Channels + Kanalları Bağla + + + + Channel + Kanallar + + + + lmms::gui::LadspaControlView + + + Link channels + Kanalları bağla + + + + Value: + Değer: + + + + lmms::gui::LadspaDescription + + + Plugins + Eklentiler + + + + Description + Açıklama + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + Bağlantı Noktaları + + + + Name + İsme göre + + + + Rate + Oran + + + + Direction + Yön + + + + Type + Tür + + + + Min < Default < Max + Min <Varsayılan <Maks + + + + Logarithmic + Logaritmik + + + + SR Dependent + SR Bağımlı + + + + Audio + Ses + + + + Control + Kontrol + + + + Input + Giriş + + + + Output + Çıkış + + + + Toggled + Geçişli + + + + Integer + Tamsayı + + + + Float + Şamandıra + + + + + Yes + Evet + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + Kesim Frekansı: + + + + Resonance: + Rezonans: + + + + Env Mod: + Env Mod: + + + + Decay: + Bozunma: + + + + 303-es-que, 24dB/octave, 3 pole filter + 303-es-que, 24dB/octave, 3 kutuplu filtre + + + + Slide Decay: + Bozulma Kaydırma: + + + + DIST: + MESAFE: + + + + Saw wave + Testere dalga + + + + Click here for a saw-wave. + Testere dalgası için buraya tıklayın. + + + + Triangle wave + Üçgen dalga + + + + Click here for a triangle-wave. + Üçgen dalga için burayı tıklayın. + + + + Square wave + Kare dalgası + + + + Click here for a square-wave. + Kare dalga için burayı tıklayın. + + + + Rounded square wave + Yuvarlak kare dalga + + + + Click here for a square-wave with a rounded end. + Yuvarlak uçlu bir kare dalga için burayı tıklayın. + + + + Moog wave + Moog dalgası + + + + Click here for a moog-like wave. + Moog benzeri bir dalga için burayı tıklayın. + + + + Sine wave + Sinüs dalgası + + + + Click for a sine-wave. + Sinüs dalgası için tıklayın. + + + + + White noise wave + Beyaz gürültü dalgası + + + + Click here for an exponential wave. + Üstel dalga için burayı tıklayın. + + + + Click here for white-noise. + Beyaz gürültü için buraya tıklayın. + + + + Bandlimited saw wave + Bant sınırlı testere dalgası + + + + Click here for bandlimited saw wave. + Bantlı testere dalgası için buraya tıklayın. + + + + Bandlimited square wave + Bant sınırlı kare dalga + + + + Click here for bandlimited square wave. + Band sınırlı kare dalga için buraya tıklayın. + + + + Bandlimited triangle wave + Bant sınırlı üçgen dalga + + + + Click here for bandlimited triangle wave. + Bant sınırlı üçgen dalga için buraya tıklayın. + + + + Bandlimited moog saw wave + Band sınırlı moog testere dalgası + + + + Click here for bandlimited moog saw wave. + Bant sınırlı moog testere dalgası için buraya tıklayın. + + + + lmms::gui::LcdFloatSpinBox + + + Set value + Değeri ayarla + + + + Please enter a new value between %1 and %2: + Lütfen %1 ile %2 arasında yeni bir değer girin: + + + + lmms::gui::LcdSpinBox + + + Set value + Değeri ayarla + + + + Please enter a new value between %1 and %2: + Lütfen %1 ile %2 arasında yeni bir değer girin: + + + + lmms::gui::LeftRightNav + + + + + Previous + Önceki + + + + + + Next + Sonraki + + + + Previous (%1) + Önceki (%1) + + + + Next (%1) + Sonraki (%1) + + + + lmms::gui::LfoControllerDialog + + + LFO + LFO + + + + BASE + TEMEL + + + + Base: + Temel: + + + + FREQ + FREK + + + + LFO frequency: + LFO frekansı: + + + + AMNT + AMNT + + + + Modulation amount: + Modülasyon miktarı: + + + + PHS + PHS + + + + Phase offset: + Faz uzaklığı: + + + + degrees + derece + + + + Sine wave + Sinüs dalgası + + + + Triangle wave + Üçgen dalga + + + + Saw wave + Testere dalga + + + + Square wave + Kare dalgası + + + + Moog saw wave + Moog testere dalgası + + + + Exponential wave + Üstel dalga + + + + White noise + Beyaz gürültü + + + + User-defined shape. +Double click to pick a file. + Kullanıcı tanımlı şekil. +Bir dosya seçmek için çift tıklayın. + + + + Multiply modulation frequency by 1 + Geçiş frekansını 1 ile çarpın + + + + Multiply modulation frequency by 100 + Geçiş frekansını 100 ile çarpın + + + + Divide modulation frequency by 100 + Modülasyon frekansını 100'e bölün + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + Yapılandırma dosyası + + + + Error while parsing configuration file at line %1:%2: %3 + %1:%2: %3 satırındaki yapılandırma dosyası ayrıştırılırken hata oluştu + + + + Could not open file + Dosya açılamadı + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + %1 dosyası yazmak için açılamadı. +Lütfen dosyaya ve dosyayı içeren dizine yazma izniniz olduğundan emin olun ve tekrar deneyin! + + + + Project recovery + Proje kurtarma + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + Mevcut bir kurtarma dosyası var. Görünüşe göre son oturum düzgün şekilde sona ermemiş veya başka bir LMMS örneği zaten çalışıyor. Bu oturumun projesini kurtarmak istiyor musunuz? + + + + + Recover + Kurtar + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + Dosyayı kurtarın. Lütfen bunu yaptığınızda birden fazla LMMS örneği çalıştırmayın. + + + + + Discard + Iskarta + + + + Launch a default session and delete the restored files. This is not reversible. + Varsayılan bir oturum başlatın ve geri yüklenen dosyaları silin. Bu geri alınamaz. + + + + Version %1 + Sürüm %1 + + + + Preparing plugin browser + Eklenti tarayıcısı hazırlanıyor + + + + Preparing file browsers + Dosya tarayıcıları hazırlanıyor + + + + My Projects + Projelerim + + + + My Samples + Örneklerim + + + + My Presets + Ön ayarlarım + + + + My Home + Ana sayfam + + + + Root Directory + + + + + Volumes + Düzeyler + + + + My Computer + Bilgisayarım + + + + Loading background picture + Arka plan resmi yükleniyor + + + + &File + &DOSYA + + + + &New + &Yeni + + + + &Open... + &Aç... + + + + &Save + &Kaydet + + + + Save &As... + &Farklı kaydet... + + + + Save as New &Version + Yeni &Sürüm Olarak Kaydet + + + + Save as default template + Varsayılan şablon olarak kaydet + + + + Import... + İçe Aktar... + + + + E&xport... + D&ışa aktar... + + + + E&xport Tracks... + Parçaları D&ışa aktar... + + + + Export &MIDI... + &MIDI Dışa Aktar... + + + + &Quit + &Çıkış + + + + &Edit + &Düzen + + + + Undo + Geri Al + + + + Redo + İleri Al + + + + Scales and keymaps + + + + + Settings + Ayarlar + + + + &View + Gö&rünüm + + + + &Tools + &Araçlar + + + + &Help + &Yardım + + + + Online Help + Çevrimiçi Yardım + + + + Help + Yardım + + + + About + Hakkında + + + + Create new project + Yeni proje oluştur + + + + Create new project from template + Şablondan yeni proje oluştur + + + + Open existing project + Mevcut projeyi aç + + + + Recently opened projects + Yakın zamanda açılan projeler + + + + Save current project + Mevcut projeyi kaydet + + + + Export current project + Mevcut projeyi dışa aktar + + + + Metronome + Metronom + + + + + Song Editor + Şarkı Düzenleyici + + + + + Pattern Editor + Kalıp Düzenleyici + + + + + Piano Roll + Piyano Rulosu + + + + + Automation Editor + Otomasyon Düzenleyicisi + + + + + Mixer + FX-Karıştırıcısı + + + + Show/hide controller rack + Denetleyici rafını göster / gizle + + + + Show/hide project notes + Proje notlarını göster / gizle + + + + Untitled + Başlıksız + + + + Recover session. Please save your work! + Oturumu kurtarın. Lütfen çalışmanızı kaydedin! + + + + LMMS %1 + LMMS %1 + + + + Recovered project not saved + Kurtarılan proje kaydedilmedi + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + Bu proje önceki oturumdan kurtarıldı. Şu anda kaydedilmedi ve kaydetmezseniz kaybolacak. Şimdi kaydetmek ister misin? + + + + Project not saved + Proje kaydedilmedi + + + + The current project was modified since last saving. Do you want to save it now? + Mevcut proje, son kayıttan bu yana değiştirildi. Şimdi kaydetmek ister misin? + + + + Open Project + Projeyi Aç + + + + LMMS (*.mmp *.mmpz) + LMMS (*.mmp *.mmpz) + + + + Save Project + Projeyi Kaydet + + + + LMMS Project + LMMS Projesi + + + + LMMS Project Template + LMMS Proje Şablonu + + + + Save project template + Proje şablonunu kaydet + + + + Overwrite default template? + Varsayılan şablonun üzerine yazılsın mı? + + + + This will overwrite your current default template. + Bu, mevcut varsayılan şablonunuzun üzerine yazacaktır. + + + + Help not available + Yardım mevcut değil + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + Şu anda LMMS'de yardım bulunmamaktadır. +LMMS ile ilgili belgeler için lütfen http://lmms.sf.net/wiki adresini ziyaret edin. + + + + Controller Rack + Denetleyici Rafı + + + + Project Notes + Proje Notları + + + + Fullscreen + Tam ekran + + + + Volume as dBFS + DBFS olarak düzey + + + + Smooth scroll + Düzgün kaydırma + + + + Enable note labels in piano roll + Piyano rulosunda not etiketlerini etkinleştirin + + + + MIDI File (*.mid) + MIDI Dosyası (*.mid) + + + + + untitled + başlıksız + + + + + Select file for project-export... + Proje dışa aktarımı için dosya seçin... + + + + Select directory for writing exported tracks... + Dışa aktarılan parkurları yazmak için dizin seçin... + + + + Save project + Projeyi kaydet + + + + Project saved + Proje kaydedildi + + + + The project %1 is now saved. + %1 projesi şimdi kaydedildi. + + + + Project NOT saved. + Proje kaydedilmedi. + + + + The project %1 was not saved! + %1 projesi kaydedilmedi! + + + + Import file + Dosyayı içe aktar + + + + MIDI sequences + MIDI dizileri + + + + Hydrogen projects + Hidrojen projeleri + + + + All file types + Tüm dosya türleri + + + + lmms::gui::MalletsInstrumentView + + + Instrument + Enstrüman + + + + Spread + Etrafa Saç + + + + Spread: + Yayılmış: + + + + Random + + + + + Random: + + + + + Missing files + Eksik Dosyalar + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + Stk kurulumunuz eksik görünüyor. Lütfen tam Stk paketinin kurulu olduğundan emin olun! + + + + Hardness + Sertlik + + + + Hardness: + Sertlik: + + + + Position + Konum + + + + Position: + Konum: + + + + Vibrato gain + Titreşim kazancı + + + + Vibrato gain: + Titreşim kazancı: + + + + Vibrato frequency + Titreşim frekansı + + + + Vibrato frequency: + Titreşim frekansı: + + + + Stick mix + Çubuk karıştırıcı + + + + Stick mix: + Çubuk karıştırıcı: + + + + Modulator + Modülatör + + + + Modulator: + Modülatör: + + + + Crossfade + Çapraz geçiş + + + + Crossfade: + Çapraz geçiş: + + + + LFO speed + LFO hızı + + + + LFO speed: + LFO hızı: + + + + LFO depth + LFO derinliği + + + + LFO depth: + LFO derinliği: + + + + ADSR + ADSR + + + + ADSR: + ADSR: + + + + Pressure + Basınç + + + + Pressure: + Basınç: + + + + Speed + Hız + + + + Speed: + Hız: + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + - VST parametre kontrolü + + + + VST sync + VST senkronizasyonu + + + + + Automated + Otomatik + + + + Close + Kapat + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + - VST eklenti kontrolü + + + + VST Sync + VST Senkronizasyonu + + + + + Automated + Otomatik + + + + Close + Kapat + + + + lmms::gui::MeterDialog + + + + Meter Numerator + Sayaç Payı + + + + Meter numerator + Sayaç payı + + + + + Meter Denominator + Metre Paydası + + + + Meter denominator + Metre paydası + + + + TIME SIG + TIME SIG + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + İlk tuş + + + + + Last key + Son tuş + + + + + Middle key + Orta tuş + + + + + Base key + Temel tuş + + + + + + Base note frequency + Temel nota frekansı + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + Ölçek açıklaması. "!" İle başlayamaz ve yeni satır karakteri içeremez. + + + + + Load + Yükle + + + + + Save + Kaydet + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + Aralıkları ayrı satırlara girin. Ondalık nokta içeren sayılar sent olarak kabul edilir. +Diğer girdiler tamsayı oranları olarak değerlendirilir ve 'a/b' veya 'a' biçiminde olmalıdır. +Birlik (0.0 sent veya oran 1/1) her zaman gizli bir ilk değer olarak bulunur; manuel olarak girmeyin. + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + Tuş haritası açıklaması. "!" İle başlayamaz ve yeni satır karakteri içeremez. + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + Anahtar eşlemelerini ayrı satırlara girin. Her satır bir MIDI anahtarına bir ölçek derecesi atar, +orta tuşla başlayıp sırayla devam eder. +Kalıp, açık anahtar eşleme aralığının dışındaki anahtarlar için tekrarlanır. +Birden fazla anahtar aynı ölçek derecesine eşlenebilir. +Anahtarı devre dışı bırakmak / eşlenmemiş olarak bırakmak istiyorsanız 'x' girin. + + + + FIRST + İLK + + + + First MIDI key that will be mapped + Eşlenecek ilk MIDI anahtarı + + + + LAST + SON + + + + Last MIDI key that will be mapped + Eşlenecek son MIDI anahtarı + + + + MIDDLE + ORTA + + + + First line in the keymap refers to this MIDI key + Tuş haritasındaki ilk satır bu MIDI anahtarına atıfta bulunur + + + + BASE N. + TEMEL N. + + + + Base note frequency will be assigned to this MIDI key + Temel nota frekansı bu MIDI anahtarına atanacaktır + + + + BASE NOTE FREQ + TEMEL NOTA FREKANS + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + Ölçek ayrıştırma hatası + + + + Scale name cannot start with an exclamation mark + Ölçek adı bir ünlem işaretiyle başlayamaz + + + + Scale name cannot contain a new-line character + Ölçek adı yeni satır karakteri içeremez + + + + Interval defined in cents cannot be converted to a number + Sent olarak tanımlanan aralık bir sayıya dönüştürülemez + + + + Numerator of an interval defined as a ratio cannot be converted to a number + Oran olarak tanımlanan bir aralığın payı sayıya dönüştürülemez + + + + Denominator of an interval defined as a ratio cannot be converted to a number + Oran olarak tanımlanan bir aralığın paydası sayıya dönüştürülemez + + + + Interval defined as a ratio cannot be negative + Oran olarak tanımlanan aralık negatif olamaz + + + + Keymap parsing error + Tuş haritası ayrıştırma hatası + + + + Keymap name cannot start with an exclamation mark + Tuş haritası adı ünlem işaretiyle başlayamaz + + + + Keymap name cannot contain a new-line character + Tuş haritası adı yeni satır karakteri içeremez + + + + Scale degree cannot be converted to a whole number + Ölçek derecesi tam sayıya dönüştürülemez + + + + Scale degree cannot be negative + Ölçek derecesi negatif olamaz + + + + Invalid keymap + Geçersiz tuş haritası + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + Temel anahtar herhangi bir ölçek derecesine eşlenmez. Herhangi bir nota referans frekansı atamanın bir yolu olmadığından ses üretilmeyecektir. + + + + Open scale + Ölçek açın + + + + + Scala scale definition (*.scl) + Ölçek ölçeği tanımı (*.scl) + + + + Scale load failure + Ölçek yükleme hatası + + + + + Unable to open selected file. + Seçili dosya açılamıyor. + + + + Open keymap + Tuş haritasını aç + + + + + Scala keymap definition (*.kbm) + Tuş haritası ölçek tanımı (*.kbm) + + + + Keymap load failure + Tuş haritası yükleme hatası + + + + Save scale + Ölçeği kaydet + + + + Scale save failure + Ölçek kaydetme hatası + + + + + Unable to open selected file for writing. + Seçili dosya yazmak için açılamıyor. + + + + Save keymap + Tuş haritasını kaydet + + + + Keymap save failure + Tuş haritası kaydetme hatası + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + MIDI CC Rack - %1 + + + + MIDI CC Knobs: + MIDI CC Düğmeleri: + + + + CC %1 + CC %1 + + + + lmms::gui::MidiClipView + + + + Transpose + Devrik + + + + Semitones to transpose by: + Aktarılacak yarım tonlar: + + + + Open in piano-roll + Piyano rulosunda aç + + + + Set as ghost in piano-roll + Piyano rulosunda hayalet olarak ayarla + + + + Set as ghost in automation editor + + + + + Clear all notes + Tüm notaları temizle + + + + Reset name + İsmini sıfırla + + + + Change name + İsmini değiştir + + + + Add steps + Uzat + + + + Remove steps + Kısalt + + + + Clone Steps + Klon Adımları + + + + lmms::gui::MidiSetupWidget + + + Device + Aygıt + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + FX-Karıştırıcısı + + + + lmms::gui::MonstroView + + + Operators view + Operatörler görünümü + + + + Matrix view + Matris görünümü + + + + + + Volume + Ses Düzeyi + + + + + + Panning + Kaydırma + + + + + + Coarse detune + Kaba detune + + + + + + semitones + yarım tonlar + + + + + Fine tune left + Sola ince ayar + + + + + + + cents + sent + + + + + Fine tune right + Sağa ince ayar + + + + + + Stereo phase offset + Stereo faz kayması + + + + + + + + deg + deg + + + + Pulse width + Darbe genişliği + + + + Send sync on pulse rise + Nabız yükseldiğinde senkronizasyon gönder + + + + Send sync on pulse fall + Nabız düşüşünde senkronizasyon gönder + + + + Hard sync oscillator 2 + Sabit senkron osilatör 2 + + + + Reverse sync oscillator 2 + Ters senkron osilatör 2 + + + + Sub-osc mix + Alt osc karışımı + + + + Hard sync oscillator 3 + Sabit senkron osilatör 3 + + + + Reverse sync oscillator 3 + Ters senkron osilatör 3 + + + + + + + Attack + Saldırı + + + + + Rate + Oran + + + + + Phase + Evre + + + + + Pre-delay + Ön gecikme + + + + + Hold + Tut + + + + + Decay + Bozunma + + + + + Sustain + Sürdürmek + + + + + Release + Yayınla + + + + + Slope + Eğim + + + + Mix osc 2 with osc 3 + Osc 2'yi osc 3 ile karıştır + + + + Modulate amplitude of osc 3 by osc 2 + OSC 3'ün genliğini osc 2 ile modüle edin + + + + Modulate frequency of osc 3 by osc 2 + OSC 3'ün frekansını osc 2 ile modüle edin + + + + Modulate phase of osc 3 by osc 2 + OSC 3'ün fazını OSC 2 ile modüle edin + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + Modülasyon miktarı + + + + lmms::gui::MultitapEchoControlDialog + + + Length + Süre + + + + Step length: + Adım uzunluğu: + + + + Dry + Kuru + + + + Dry gain: + Kuru kazanç: + + + + Stages + Aşamalar + + + + Low-pass stages: + Düşük geçiş aşamaları: + + + + Swap inputs + Girişleri değiştir + + + + Swap left and right input channels for reflections + Yansımalar için sol ve sağ giriş kanallarını değiştirin + + + + lmms::gui::NesInstrumentView + + + + + + Volume + Ses Düzeyi + + + + + + Coarse detune + Kaba detune + + + + + + Envelope length + Zarf uzunluğu + + + + Enable channel 1 + 1. kanalı etkinleştir + + + + Enable envelope 1 + Zarf 1'i etkinleştir + + + + Enable envelope 1 loop + Zarf 1 döngüsünü etkinleştir + + + + Enable sweep 1 + Tarama 1`i etkinleştir + + + + + Sweep amount + Tarama miktarı + + + + + Sweep rate + Tarama oranı + + + + + 12.5% Duty cycle + % 12,5 Görev döngüsü + + + + + 25% Duty cycle + % 25 Görev döngüsü + + + + + 50% Duty cycle + % 50 Görev döngüsü + + + + + 75% Duty cycle + % 75 Görev döngüsü + + + + Enable channel 2 + 2. kanalı etkinleştir + + + + Enable envelope 2 + Zarf 2'yi etkinleştir + + + + Enable envelope 2 loop + Zarf 2 döngüsünü etkinleştir + + + + Enable sweep 2 + Tarama 2 yi etkinleştir + + + + Enable channel 3 + 3. kanalı etkinleştir + + + + Noise Frequency + Gürültü Frekansı + + + + Frequency sweep + Frekans taraması + + + + Enable channel 4 + 4. kanalı etkinleştir + + + + Enable envelope 4 + Zarf 4'ü etkinleştir + + + + Enable envelope 4 loop + Zarf 4 döngüsünü etkinleştir + + + + Quantize noise frequency when using note frequency + Nota frekansını kullanırken gürültü frekansını nicelendirin + + + + Use note frequency for noise + Gürültü için nota frekansını kullanın + + + + Noise mode + Gürültü modu + + + + Master volume + Ana ses + + + + Vibrato + Titreşim + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + Saldırı + + + + + Decay + Bozunma + + + + + Release + Yayınla + + + + + Frequency multiplier + Frekans çarpanı + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + Çarpıtma: + + + + Volume: + Ses Düzeyi: + + + + Randomise + Rastgele + + + + + Osc %1 waveform: + Osc %1 dalga biçimi: + + + + Osc %1 volume: + Osc %1 düzeyi: + + + + Osc %1 panning: + Osc %1 kaydırma: + + + + Osc %1 stereo detuning + Osc %1 stereo perdeleme + + + + cents + sent + + + + Osc %1 harmonic: + Osc %1 harmonik: + + + + lmms::gui::Oscilloscope + + + Oscilloscope + Oscilloscope + + + + Click to enable + Etkinleştirmek için tıklayın + + + + lmms::gui::PatmanView + + + Open patch + Yama aç + + + + Loop + Döngü + + + + Loop mode + Döngü modu + + + + Tune + Ayarla + + + + Tune mode + Ayar modu + + + + No file selected + Dosya seçilmedi + + + + Open patch file + Yama dosyasını aç + + + + Patch-Files (*.pat) + Yama Dosyaları (*.pat) + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + Kalıp Düzenleyicide Aç + + + + Reset name + İsmini sıfırla + + + + Change name + İsmini değiştir + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + Kalıp Düzenleyici + + + + Play/pause current pattern (Space) + Geçerli kalıbı oynat/duraklat (Boşluk) + + + + Stop playback of current pattern (Space) + Geçerli kalıbın oynatılmasını durdur (Boşluk) + + + + Pattern selector + Kalıp seçici + + + + Track and step actions + Eylemleri izleyin ve adımlayın + + + + New pattern + Yeni kalıp + + + + Clone pattern + Kalıbı klonla + + + + Add sample-track + Örnek parça ekle + + + + Add automation-track + Ayarkayıt parçası ekle + + + + Remove steps + Kısalt + + + + Add steps + Uzat + + + + Clone Steps + Klon Adımları + + + + lmms::gui::PeakControllerDialog + + + PEAK + ZİRVE + + + + LFO Controller + LFO Denetleyicisi + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + TEMEL + + + + Base: + Temel: + + + + AMNT + AMNT + + + + Modulation amount: + Modülasyon miktarı: + + + + MULT + ÇOK + + + + Amount multiplicator: + Miktar çarpanı: + + + + ATCK + SALDIRI + + + + Attack: + Saldırı: + + + + DCAY + BOZUNMA + + + + Release: + Yayınla: + + + + TRSH + EŞİK + + + + Treshold: + Eşik: + + + + Mute output + Çıkış sessiz + + + + Absolute value + Mutlak değer + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + Nota Hızı + + + + Note Panning + Nota Kaydırma + + + + Mark/unmark current semitone + Geçerli yarım tonu işaretle / işareti kaldır + + + + Mark/unmark all corresponding octave semitones + İlgili tüm oktav yarı tonlarını işaretle / işareti kaldır + + + + Mark current scale + Mevcut ölçeği işaretle + + + + Mark current chord + Geçerli akoru işaretle + + + + Unmark all + Hepsinin işaretini kaldır + + + + Select all notes on this key + Bu anahtardaki tüm notaları seçin + + + + Note lock + Nota kilidi + + + + Last note + Son nota + + + + No key + Anahtar yok + + + + No scale + Ölçek yok + + + + No chord + Akord yok + + + + Nudge + Dürtme + + + + Snap + Yapış + + + + Velocity: %1% + Hız: %1% + + + + Panning: %1% left + Kaydırma: %1% sola + + + + Panning: %1% right + Kaydırma: %1% sağa + + + + Panning: center + Kaydırma: merkez + + + + Glue notes failed + Yapışkan notaları başarısız oldu + + + + Please select notes to glue first. + Lütfen önce yapıştırılacak notaları seçin. + + + + Please open a clip by double-clicking on it! + Lütfen üzerine çift tıklayarak bir desen açın! + + + + + Please enter a new value between %1 and %2: + Lütfen %1 ile %2 arasında yeni bir değer girin: + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + Seçili bölümü oynat/durdur (Boşluk Tuşu) + + + + Record notes from MIDI-device/channel-piano + MIDI aygıtında/kanal piyanodan notaları kaydedin + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + Şarkı veya kalıp parçasını çalarken MIDI cihazından/kanal piyanosundan notlar kaydedin + + + + Record notes from MIDI-device/channel-piano, one step at the time + MIDI aygıtından/kanal piyanodan notaları bir seferde bir adım kaydedin + + + + Stop playing of current clip (Space) + Seçili modeli oynatmayı durdur (Boşluk Tuşu) + + + + Edit actions + İşlemleri düzenle + + + + Draw mode (Shift+D) + Çizim modu (Shift+D) + + + + Erase mode (Shift+E) + Silgi modu (Shift+E) + + + + Select mode (Shift+S) + Modu seçin (Shift + S) + + + + Pitch Bend mode (Shift+T) + Pitch Bend modu (Shift+T) + + + + Quantize + Niceleme + + + + Quantize positions + Niceleme pozisyonları + + + + Quantize lengths + Niceleme uzunlukları + + + + File actions + Dosya işlemleri + + + + Import clip + Deseni içe aktar + + + + + Export clip + Deseni dışa aktar + + + + Copy paste controls + Kopyala yapıştır kontrolleri + + + + Cut (%1+X) + Kes (%1+X) + + + + Copy (%1+C) + Kopyala (%1+C) + + + + Paste (%1+V) + Yapıştır (%1+V) + + + + Timeline controls + Zaman çizelgesi kontrolleri + + + + Glue + Yapıştırıcı + + + + Knife + Bıçak + + + + Fill + Dolgu + + + + Cut overlaps + Örtüşmeleri kes + + + + Min length as last + Son olarak en düşük uzunluk + + + + Max length as last + Son olarak en yüksek uzunluk + + + + Zoom and note controls + Yakınlaştırma ve nota kontrolleri + + + + Horizontal zooming + Yatay yakınlaştırma + + + + Vertical zooming + Dikey yakınlaştırma + + + + Quantization + Niceleme + + + + Note length + Nota uzunluğu + + + + Key + Anahtar + + + + Scale + Ölçek + + + + Chord + Kiriş + + + + Snap mode + Anlık çekim modu + + + + Clear ghost notes + Hayalet notaları temizle + + + + + Piano-Roll - %1 + Piyano Rulosu -%1 + + + + + Piano-Roll - no clip + Piyano Rulosu - desen yok + + + + + XML clip file (*.xpt *.xptz) + XML desen dosyası (*.xpt *.xptz) + + + + Export clip success + Deseni dışa aktarma başarılı + + + + Clip saved to %1 + Desen %1'e kaydedildi + + + + Import clip. + Deseni içe aktar. + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + Bir kalıp almak üzeresiniz, bu mevcut kalıbınızın üzerine yazılacaktır. Devam etmek istiyor musun? + + + + Open clip + Desen aç + + + + Import clip success + Desen başarılı şekilde içe aktarıldı + + + + Imported clip %1! + %1 deseni içe aktarıldı! + + + + lmms::gui::PianoView + + + Base note + Temel nota + + + + First note + İlk nota + + + + Last note + Son nota + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + Enstrüman Eklentileri + + + + Instrument browser + Enstrüman tarayıcısı + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + Yeni enstrüman parçasına gönder + + + + lmms::gui::ProjectNotes + + + Project Notes + Proje Notları + + + + Enter project notes here + Buraya proje notlarını girin + + + + Edit Actions + İşlemleri Düzenle + + + + &Undo + Geri &Al + + + + %1+Z + %1+Z + + + + &Redo + &Yinele + + + + %1+Y + %1+Y + + + + &Copy + &Kopyala + + + + %1+C + %1+C + + + + Cu&t + Ke&s + + + + %1+X + %1+X + + + + &Paste + &Yapıştır + + + + %1+V + %1+V + + + + Format Actions + Eylemleri Biçimlendir + + + + &Bold + &Kalın + + + + %1+B + %1+B + + + + &Italic + &İtalik + + + + %1+I + %1+I + + + + &Underline + &Altını çizgili + + + + %1+U + %1+U + + + + &Left + &Sol + + + + %1+L + %1+L + + + + C&enter + M&erkez + + + + %1+E + %1+E + + + + &Right + S&ağ + + + + %1+R + %1+R + + + + &Justify + &Yasla + + + + %1+J + %1+J + + + + &Color... + &Renk... + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + &Yeni Açılan Projeler + + + + lmms::gui::RenameDialog + + + Rename... + Yeniden adlandır... + + + + lmms::gui::ReverbSCControlDialog + + + Input + Giriş + + + + Input gain: + Giriş kazancı: + + + + Size + Boy + + + + Size: + Büyüklük: + + + + Color + Renk + + + + Color: + Renk: + + + + Output + Çıkış + + + + Output gain: + Çıkış kazancı: + + + + lmms::gui::SaControlsDialog + + + Pause + Duraklat + + + + Pause data acquisition + Veri edinmeyi duraklatın + + + + Reference freeze + Referans dondurma + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + Pik tutma modunda akım girişini referans olarak dondurun / düşüşü devre dışı bırakın. + + + + Waterfall + Şelale + + + + Display real-time spectrogram + Gerçek zamanlı spektrogramı göster + + + + Averaging + Ortalama + + + + Enable exponential moving average + Üstel hareketli ortalamayı etkinleştir + + + + Stereo + Stereo + + + + Display stereo channels separately + Stereo kanalları ayrı olarak görüntüleyin + + + + Peak hold + Tepe tutma + + + + Display envelope of peak values + Tepe değerlerin zarfını görüntüle + + + + Logarithmic frequency + Logaritmik frekans + + + + Switch between logarithmic and linear frequency scale + Logaritmik ve doğrusal frekans ölçeği arasında geçiş yapın + + + + + Frequency range + Frekans aralığı + + + + Logarithmic amplitude + Logaritmik genlik + + + + Switch between logarithmic and linear amplitude scale + Logaritmik ve doğrusal genlik ölçeği arasında geçiş yapın + + + + + Amplitude range + Genlik aralığı + + + + + FFT block size + FFT blok boyutu + + + + + FFT window type + FFT pencere türü + + + + Envelope res. + Zarf çözümü. + + + + Increase envelope resolution for better details, decrease for better GUI performance. + Daha iyi ayrıntılar için zarf çözünürlüğünü artırın, daha iyi Arayüz performansı için azaltın. + + + + Maximum number of envelope points drawn per pixel: + Piksel başına çizilen azami zarf noktası sayısı: + + + + Spectrum res. + Spectrum res. + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + Daha iyi ayrıntılar için spektrum çözünürlüğünü artırın, daha iyi Arayüz performansı için azaltın. + + + + Maximum number of spectrum points drawn per pixel: + Piksel başına çizilen azami spektrum noktası sayısı: + + + + Falloff factor + Düşüş faktörü + + + + Decrease to make peaks fall faster. + Zirvelerin daha hızlı düşmesi için azaltın. + + + + Multiply buffered value by + Arabelleğe alınan değeri şununla çarp + + + + Averaging weight + Ortalama ağırlık + + + + Decrease to make averaging slower and smoother. + Ortalama almayı daha yavaş ve pürüzsüz hale getirmek için azaltın. + + + + New sample contributes + Yeni örnek katkıda bulunur + + + + Waterfall height + Şelale yüksekliği + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + Daha yavaş kaydırmak için artırın, hızlı geçişleri daha iyi görmek için azaltın. Uyarı: orta CPU kullanımı. + + + + Number of lines to keep: + Saklanacak satır sayısı: + + + + Waterfall gamma + Şelale gama + + + + Decrease to see very weak signals, increase to get better contrast. + Çok zayıf sinyalleri görmeyi azaltın, daha iyi kontrast elde etmek için artırın. + + + + Gamma value: + Gama değeri: + + + + Window overlap + Pencere örtüşmesi + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + FFT pencere kenarlarının yakınına gelen eksik hızlı geçişleri önlemek için artırın. Uyarı: yüksek CPU kullanımı. + + + + Number of times each sample is processed: + Her örneğin işlenme sayısı: + + + + Zero padding + Sıfır dolgu + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + Daha pürüzsüz görünen spektrum elde etmek için artırın. Uyarı: yüksek CPU kullanımı. + + + + Processing buffer is + İşleme tamponu + + + + steps larger than input block + giriş bloğundan daha büyük adımlar + + + + Advanced settings + Gelişmiş ayarlar + + + + Access advanced settings + Gelişmiş ayarlara erişin + + + + lmms::gui::SampleClipView + + + Double-click to open sample + Örneği açmak için çift tıklayın + + + + Reverse sample + Ters örnek + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + Parça ses düzeyi + + + + Channel volume: + Kanal ses düzeyi: + + + + VOL + SES + + + + Panning + Kaydırma + + + + Panning: + Kaydırma: + + + + PAN + PAN + + + + %1: %2 + %1: %2 + + + + lmms::gui::SampleTrackWindow + + + Sample volume + Örnek düzey + + + + Volume: + Ses Düzeyi: + + + + VOL + SES + + + + Panning + Kaydırma + + + + Panning: + Kaydırma: + + + + PAN + PAN + + + + Mixer channel + FX kanalı + + + + CHANNEL + KANAL + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + MIDI bağlantılarını atın + + + + Save As Project Bundle (with resources) + Proje Paketi Olarak Kaydet (kaynaklarla) + + + + lmms::gui::SetupDialog + + + Settings + Ayarlar + + + + + General + Genel + + + + Graphical user interface (GUI) + Grafik kullanıcı arayüzü (GUI) + + + + Display volume as dBFS + Ses seviyesini dBFS olarak görüntüle + + + + Enable tooltips + Araç ipuçlarını etkinleştirin + + + + Enable master oscilloscope by default + Ana osiloskopu varsayılan olarak etkinleştirin + + + + Enable all note labels in piano roll + Piyano rulosundaki tüm nota etiketlerini etkinleştirin + + + + Enable compact track buttons + Kompakt parça düğmelerini etkinleştirin + + + + Enable one instrument-track-window mode + Bir enstrüman izleme penceresi modunu etkinleştirin + + + + Show sidebar on the right-hand side + Sağ tarafta kenar çubuğunu göster + + + + Let sample previews continue when mouse is released + Fare bırakıldığında örnek önizlemelerin devam etmesine izin verin + + + + Mute automation tracks during solo + Solo sırasında otomasyon izlerini sessize alma + + + + Show warning when deleting tracks + Parçaları silerken uyarı göster + + + + Show warning when deleting a mixer channel that is in use + Kullanımda olan bir mikser kanalını silerken uyarı göster + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + Projeler + + + + Compress project files by default + Proje dosyalarını varsayılan olarak sıkıştır + + + + Create a backup file when saving a project + Bir projeyi kaydederken bir yedek dosya oluşturun + + + + Reopen last project on startup + Başlangıçta son projeyi yeniden aç + + + + Language + Dil + + + + + Performance + Başarım + + + + Autosave + Otomatik kaydet + + + + Enable autosave + Otomatik kaydetmeyi etkinleştir + + + + Allow autosave while playing + Oynatırken otomatik kaydetmeye izin ver + + + + User interface (UI) effects vs. performance + Kullanıcı arayüzü (UI) efektleri ile performans karşılaştırması + + + + Smooth scroll in song editor + Şarkı düzenleyicide yumuşak kaydırma + + + + Display playback cursor in AudioFileProcessor + Ses Dosyası İşlemcisindeki oynatma imlecini görüntüle + + + + Plugins + Eklentiler + + + + VST plugins embedding: + Gömülü VST eklentileri: + + + + No embedding + Yerleştirme yok + + + + Embed using Qt API + Qt API kullanarak yerleştirin + + + + Embed using native Win32 API + Yerel Win32 API kullanarak yerleştirme + + + + Embed using XEmbed protocol + XEmbed protokolünü kullanarak gömün + + + + Keep plugin windows on top when not embedded + Gömülü değilken eklenti pencerelerini üstte tutun + + + + Keep effects running even without input + Efektlerin girdi olmasa bile çalışmaya devam etmesini sağlayın + + + + + Audio + Ses + + + + Audio interface + Ses arayüzü + + + + Buffer size + Arabellek boyutu + + + + Reset to default value + Varsayılan değere sıfırla + + + + + MIDI + MIDI + + + + MIDI interface + MIDI arayüzü + + + + Automatically assign MIDI controller to selected track + MIDI denetleyicisini seçilen parçaya otomatik olarak atayın + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + Yollar + + + + LMMS working directory + LMMS çalışma dizini + + + + VST plugins directory + VST eklentileri dizini + + + + LADSPA plugins directories + LADSPA eklenti dizinleri + + + + SF2 directory + SF2 dizini + + + + Default SF2 + Varsayılan SF2 + + + + GIG directory + GIG dizini + + + + Theme directory + Tema dizini + + + + Background artwork + Arka plan resmi + + + + Some changes require restarting. + Bazı değişiklikler yeniden başlatmayı gerektirir. + + + + OK + TAMAM + + + + Cancel + Çıkış + + + + minutes + dakika + + + + minute + dakika + + + + Disabled + Devre dışı + + + + Autosave interval: %1 + Otomatik kaydetme aralığı: %1 + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + Çerçeveler: %1 +Gecikme: %2 ms + + + + Choose the LMMS working directory + LMMS çalışma dizinini seçin + + + + Choose your VST plugins directory + VST eklentileri dizininizi seçin + + + + Choose your LADSPA plugins directory + LADSPA eklentileri dizininizi seçin + + + + Choose your SF2 directory + SF2 dizininizi seçin + + + + Choose your default SF2 + Varsayılan SF2'nizi seçin + + + + Choose your GIG directory + GIG dizininizi seçin + + + + Choose your theme directory + Tema dizininizi seçin + + + + Choose your background picture + Arka plan resminizi seçin + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + Ses Yazı Tipi dosyasını aç + + + + Choose patch + Yama seçin + + + + Gain: + Kazanç: + + + + Apply reverb (if supported) + Yankı uygula (destekleniyorsa) + + + + Room size: + Oda boyutu: + + + + Damping: + Sönümleme: + + + + Width: + En: + + + + + Level: + Düzey: + + + + Apply chorus (if supported) + Koro uygula (destekleniyorsa) + + + + Voices: + Sesler: + + + + Speed: + Hız: + + + + Depth: + Derinlik: + + + + SoundFont Files (*.sf2 *.sf3) + Ses Yazı Tipi Dosyaları (*.sf2 *.sf3) + + + + lmms::gui::SidInstrumentView + + + Volume: + Ses Düzeyi: + + + + Resonance: + Rezonans: + + + + + Cutoff frequency: + Kesim frekansı: + + + + High-pass filter + Yüksek geçişli filtre + + + + Band-pass filter + Bant geçişli filtre + + + + Low-pass filter + Düşük geçişli filtre + + + + Voice 3 off + Ses 3 kapalı + + + + MOS6581 SID + MOS6581 SID + + + + MOS8580 SID + MOS8580 SID + + + + + Attack: + Saldırı: + + + + + Decay: + Bozunma: + + + + Sustain: + Sürdürmek: + + + + + Release: + Yayınla: + + + + Pulse Width: + Darbe genişliği: + + + + Coarse: + Kaba: + + + + Pulse wave + Nabız dalgası + + + + Triangle wave + Üçgen dalga + + + + Saw wave + Testere dalga + + + + Noise + Gürültü + + + + Sync + Eşitle + + + + Ring modulation + Halka modülasyonu + + + + Filtered + Filtrelenmiş + + + + Test + Dene + + + + Pulse width: + Darbe genişliği: + + + + lmms::gui::SideBarWidget + + + Close + Kapat + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + Dosya açılamadı + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + %1 dosyası açılamadı. Muhtemelen bu dosyayı okuma izniniz yok. + Lütfen dosya için en azından okuma izninizin olduğundan emin olun ve tekrar deneyin. + + + + Operation denied + İşlem reddedildi + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + Bu ada sahip bir paket klasörü zaten seçili yolda bulunuyor. Proje paketinin üzerine yazılamaz. Lütfen farklı bir isim seçin. + + + + + + Error + Sorun + + + + Couldn't create bundle folder. + Paket klasörü oluşturulamadı. + + + + Couldn't create resources folder. + Kaynaklar klasörü oluşturulamadı. + + + + Failed to copy resources. + Kaynaklar kopyalanamadı. + + + + + Could not write file + Dosya yazılamadı + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + Dosyada hata + + + + The file %1 seems to contain errors and therefore can't be loaded. + Görünüşe göre %1 dosyası hatalar içeriyor ve bu nedenle yüklenemiyor. + + + + template + şablon + + + + project + proje + + + + Version difference + Sürüm farkı + + + + This %1 was created with LMMS %2 + Bu %1, %2 LMMS ile oluşturuldu + + + + Zoom + Yakınlaştır + + + + Tempo + Tempo + + + + TEMPO + TEMPO + + + + Tempo in BPM + BPM'de Tempo + + + + + + Master volume + Ana ses + + + + + + Global transposition + Genel aktarma + + + + 1/%1 Bar + 1/%1 Çubuk + + + + %1 Bars + %1 Çubuklar + + + + Value: %1% + Değer: %1% + + + + Value: %1 keys + Değer: %1 anahtar + + + + lmms::gui::SongEditorWindow + + + Song-Editor + Şarkı-Düzenleyici + + + + Play song (Space) + Şarkıyı başlat (Space) + + + + Record samples from Audio-device + Ses cihazından örnekleri kaydedin + + + + Record samples from Audio-device while playing song or pattern track + Şarkı veya kalıp parçası çalarken Ses cihazından örnekler kaydedin + + + + Stop song (Space) + Şarkıyı durdur (Space) + + + + Track actions + Parça eylemleri + + + + Add pattern-track + Kalıp-parça ekle + + + + Add sample-track + Örnek parça ekle + + + + Add automation-track + Ayarkayıt parçası ekle + + + + Edit actions + İşlemleri düzenle + + + + Draw mode + Çizim kipi + + + + Knife mode (split sample clips) + Bıçak modu (örnek klipleri ayır) + + + + Edit mode (select and move) + Düzenleme modu (seç ve taşı) + + + + Timeline controls + Zaman çizelgesi kontrolleri + + + + Bar insert controls + Çubuk ekleme kontrolleri + + + + Insert bar + Çubuk ekle + + + + Remove bar + Çubuğu kaldır + + + + Zoom controls + Yakınlaştırma kontrolleri + + + + + Zoom + Yakınlaştır + + + + Snap controls + Yapış denetimleri + + + + + Clip snapping size + Klip yapışma boyutu + + + + Toggle proportional snap on/off + Orantılı tutturmayı aç/kapat + + + + Base snapping size + Taban yapışma boyutu + + + + lmms::gui::StepRecorderWidget + + + Hint + İpucu + + + + Move recording curser using <Left/Right> arrows + <Sol/Sağ> oklarını kullanarak kayıt imlecini hareket ettirin + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + GENİŞLİK + + + + Width: + En: + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + Soldan Sola Düzey: + + + + Left to Right Vol: + Soldan Sağa Düzey: + + + + Right to Left Vol: + Sağdan Sola Düzey: + + + + Right to Right Vol: + Sağdan Sağa Düzey: + + + + lmms::gui::SubWindow + + + Close + Kapat + + + + Maximize + Büyütme + + + + Restore + Onar + + + + lmms::gui::TapTempoView + + + 0 + 0 + + + + + Precision + Kesinlik + + + + Display in high precision + Yüksek hassasiyette görüntüleme + + + + 0.0 ms + 0.0 ms + + + + Mute metronome + Metronomun sesini kapat + + + + Mute + Sustur + + + + BPM in milliseconds + Milisaniye cinsinden BPM + + + + 0 ms + 0 ms + + + + Frequency of BPM + BPM'nin sıklığı + + + + 0.0000 hz + 0.0000 hz + + + + Reset + Sıfırla + + + + Reset counter and sidebar information + Sayaç ve kenar çubuğu bilgilerini sıfırlayın + + + + Sync + Eşitle + + + + Sync with project tempo + Proje temposuyla senkronize edin + + + + %1 ms + %1 ms + + + + %1 hz + %1 hz + + + + lmms::gui::TemplatesMenu + + + New from template + Şablondan yeni + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + Tempo Senkronizasyonu + + + + No Sync + Senkronizasyon yok + + + + Eight beats + Sekiz vuruş + + + + Whole note + Tam nota + + + + Half note + Yarım nota + + + + Quarter note + Çeyrek nota + + + + 8th note + 8'lik nota + + + + 16th note + 16'lık nota + + + + 32nd note + 32'lik nota + + + + Custom... + Özel... + + + + Custom + Özel + + + + Synced to Eight Beats + Sekiz Vuruşla Senkronize Edildi + + + + Synced to Whole Note + Tüm Nota Senkronize Edildi + + + + Synced to Half Note + Yarım Nota Senkronize Edildi + + + + Synced to Quarter Note + Çeyrek Nota Senkronize Edildi + + + + Synced to 8th Note + 8. Nota senkronize edildi + + + + Synced to 16th Note + 16. Nota senkronize edildi + + + + Synced to 32nd Note + 32. Nota senkronize edildi + + + + lmms::gui::TimeDisplayWidget + + + Time units + Zaman birimleri + + + + MIN + DAK + + + + SEC + SAN + + + + MSEC + MSEC + + + + BAR + ÇUBUK + + + + BEAT + VURUŞ + + + + TICK + TIK + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + Otomatik kaydırma + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + Döngü noktaları + + + + After stopping go back to beginning + Durduktan sonra başa dön + + + + After stopping go back to position at which playing was started + Durduktan sonra oyunun başladığı konuma geri dönün + + + + After stopping keep position + Durduktan sonra pozisyonunuzu koruyun + + + + Hint + İpucu + + + + Press <%1> to disable magnetic loop points. + Manyetik döngü noktalarını devre dışı bırakmak için <%1> tuşuna basın. + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + Paste Yapıştır - TrackOperationsWidget + lmms::gui::TrackOperationsWidget - + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. Yeni bir sürükle ve bırak eylemine başlamak için tutamağa tıklarken <%1> tuşuna basın. @@ -13749,7 +18017,7 @@ Lütfen dosyayı ve dosyayı içeren dizini okuma iznine sahip olduğunuzdan emi Mute - Ses kapatma + Sustur @@ -13758,248 +18026,240 @@ Lütfen dosyayı ve dosyayı içeren dizini okuma iznine sahip olduğunuzdan emi Tek - + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? Bir parça kaldırıldıktan sonra kurtarılamaz. "%1" parçasını kaldırmak istediğinizden emin misiniz? - + Confirm removal Kaldırma işlemini onayla - + Don't ask again Bir daha sorma - + Clone this track Bu parçayı çoğalt - + Remove this track Bu parçayı sil - + Clear this track Bu parçayı temizle - + Channel %1: %2 FX %1: %2 - - Assign to new mixer Channel - Yeni FX Kanalına atayın + + Assign to new Mixer Channel + Yeni Karıştırıcı Kanalına Ata - + Turn all recording on Tüm kaydı aç - + Turn all recording off Tüm kayıtları kapat + + + Track color + Parça rengi + - Change color - Rengini değiştir + Change + Değiştir + + + + Reset + Sıfırla - Reset color to default - Rengini varsayılana sıfırla + Pick random + Rastgele seç - Set random color - Rastgele renk ayarla - - - - Clear clip colors - Klip renklerini temizle + Reset clip colors + Klip renklerini sıfırla - TripleOscillatorView + lmms::gui::TripleOscillatorView - + Modulate phase of oscillator 1 by oscillator 2 Osilatör 1'in fazını osilatör 2 ile modüle edin - + Modulate amplitude of oscillator 1 by oscillator 2 Osilatör 1'in genliğini osilatör 2 ile modüle edin - + Mix output of oscillators 1 & 2 Osilatör 1 ve 2'nin Karışım çıkışı - + Synchronize oscillator 1 with oscillator 2 Osilatör 1'i osilatör 2 ile senkronize edin - + Modulate frequency of oscillator 1 by oscillator 2 Osilatör 1'in frekansını osilatör 2 ile modüle edin - + Modulate phase of oscillator 2 by oscillator 3 Osilatör 2'nin fazını osilatör 3 ile modüle edin - + Modulate amplitude of oscillator 2 by oscillator 3 Osilatör 2'nin genliğini osilatör 3 ile modüle edin - + Mix output of oscillators 2 & 3 Osilatör 2 ve 3'ün Karışım çıkışı - + Synchronize oscillator 2 with oscillator 3 Osilatör 2'yi osilatör 3 ile senkronize edin - + Modulate frequency of oscillator 2 by oscillator 3 Osilatör 2'nin frekansını osilatör 3 ile modüle edin - + Osc %1 volume: Osc %1 düzeyi: - + Osc %1 panning: Osc %1 kaydırma: - + Osc %1 coarse detuning: Osc %1 kaba ince ayar: - + semitones yarım tonlar - + Osc %1 fine detuning left: Osc %1 ince ayar sol: - - + + cents sent - + Osc %1 fine detuning right: Osc %1 ince ayar sağ: - + Osc %1 phase-offset: Osc %1 faz kayması: - - + + degrees derece - + Osc %1 stereo phase-detuning: Osc %1 stereo faz ayarlama: - + Sine wave Sinüs dalgası - + Triangle wave Üçgen dalga - + Saw wave Testere dalga - + Square wave Kare dalgası - + Moog-like saw wave Moog benzeri testere dalgası - + Exponential wave Üstel dalga - + White noise Beyaz gürültü - + User-defined wave Kullanıcı tanımlı dalga - - - VecControls - - Display persistence amount - Kalıcılık miktarını göster - - - - Logarithmic scale - Logaritmik ölçek - - - - High quality - Yüksek kalite + + Use alias-free wavetable oscillators. + Takma ad içermeyen dalga tablosu osilatörleri kullanın. - VecControlsDialog + lmms::gui::VecControlsDialog - + HQ YK - + Double the resolution and simulate continuous analog-like trace. Çözünürlüğü ikiye katlayın ve sürekli analog benzeri izi simüle edin. @@ -14014,2618 +18274,782 @@ Lütfen dosyayı ve dosyayı içeren dizini okuma iznine sahip olduğunuzdan emi Küçük değerleri daha iyi görmek için genliği logaritmik ölçekte görüntüleyin. - + Persist. Kalıcılık. - + Trace persistence: higher amount means the trace will stay bright for longer time. Kalıcılığı izleme: daha yüksek miktar, izin daha uzun süre parlak kalacağı anlamına gelir. - + Trace persistence Kalıcılığı izle - VersionedSaveDialog + lmms::gui::VersionedSaveDialog - + Increment version number Sürüm numarasını artır - + Decrement version number Sürüm numarasını azaltın - + Save Options Seçenekleri Kaydet - + already exists. Do you want to replace it? zaten var. Değiştirmek istiyor musun? - VestigeInstrumentView + lmms::gui::VestigeInstrumentView - - + + Open VST plugin VST eklentisini aç - + Control VST plugin from LMMS host LMMS ana bilgisayarından VST eklentisini kontrol edin - + Open VST plugin preset VST eklenti ön ayarını aç - + Previous (-) Önceki (-) - + Save preset Ön ayarı kaydet - + Next (+) Sonraki (+) - + Show/hide GUI Kullanıcı arabirimini göster/gizle - + Turn off all notes Tüm notaları kapat - + DLL-files (*.dll) DLL-dosyaları (*.dll) - + EXE-files (*.exe) EXE-dosyaları (*.exe) - + + SO-files (*.so) + SO-dosyaları (*.so) + + + No VST plugin loaded Yüklü VST eklentisi yok - + Preset Hazır Ayar - + by tarafından - + - VST plugin control - VST eklenti kontrolü - VstEffectControlDialog + lmms::gui::VibedView - + + Enable waveform + Dalga biçimini etkinleştir + + + + + Smooth waveform + Düzgün dalga formu + + + + + Normalize waveform + Dalga formunu normalleştir + + + + + Sine wave + Sinüs dalgası + + + + + Triangle wave + Üçgen dalga + + + + + Saw wave + Testere dalga + + + + + Square wave + Kare dalgası + + + + + White noise + Beyaz gürültü + + + + + User-defined wave + Kullanıcı tanımlı dalga + + + + String volume: + Dize hacmi: + + + + String stiffness: + Dize sertliği: + + + + Pick position: + Pozisyon seçin: + + + + Pickup position: + Alış konumu: + + + + String panning: + Dize kaydırma: + + + + String detune: + Dize detayı: + + + + String fuzziness: + Dize belirsizliği: + + + + String length: + Dize uzunluğu: + + + + Impulse Editor + Dürtü Düzenleyici + + + + Impulse + Dürtü + + + + Enable/disable string + Dizeyi etkinleştir / devre dışı bırak + + + + Octave + Octave + + + + String + Dize + + + + lmms::gui::VstEffectControlDialog + + Show/hide Göster/gizle - + Control VST plugin from LMMS host LMMS ana bilgisayarından VST eklentisini kontrol edin - + Open VST plugin preset VST eklenti ön ayarını aç - + Previous (-) Önceki (-) - + Next (+) Sonraki (+) - + Save preset Ön ayarı kaydet - - + + Effect by: Efektler: - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - VstPlugin + lmms::gui::WatsynView - - - The VST plugin %1 could not be loaded. - %1 VST eklentisi yüklenemedi. - - - - Open Preset - Ön Ayarı Aç - - - - - Vst Plugin Preset (*.fxp *.fxb) - Vst Eklenti Ön Ayarı (*.fxp *.fxb) - - - - : default - : öntanımlı - - - - Save Preset - Önayarı Kaydet - - - - .fxp - .fxp - - - - .FXP - .FXP - - - - .FXB - .FXB - - - - .fxb - .fxb - - - - Loading plugin - Eklenti yükleniyor - - - - Please wait while loading VST plugin... - VST eklentisi yüklenirken lütfen bekleyin... - - - - WatsynInstrument - - - Volume A1 - Düzey A1 - - - - Volume A2 - Düzey A2 - - - - Volume B1 - Düzey B1 - - - - Volume B2 - Düzey B2 - - - - Panning A1 - Kaydırma A1 - - - - Panning A2 - Kaydırma A2 - - - - Panning B1 - Kaydırma B1 - - - - Panning B2 - Kaydırma B2 - - - - Freq. multiplier A1 - Frekans. çarpan A1 - - - - Freq. multiplier A2 - Frekans. çarpan A2 - - - - Freq. multiplier B1 - Frekans. çarpan B1 - - - - Freq. multiplier B2 - Frekans. çarpan B2 - - - - Left detune A1 - Sol detune A1 - - - - Left detune A2 - Sol detune A2 - - - - Left detune B1 - Sol detune B1 - - - - Left detune B2 - Sol detune B2 - - - - Right detune A1 - Sağ detune A1 - - - - Right detune A2 - Sağ detune A2 - - - - Right detune B1 - Sağ detune B1 - - - - Right detune B2 - Sağ detune B2 - - - - A-B Mix - A-B Karışımı - - - - A-B Mix envelope amount - A-B Karışık zarf miktarı - - - - A-B Mix envelope attack - A-B Karışık zarf saldırısı - - - - A-B Mix envelope hold - A-B Karışık zarf tutma - - - - A-B Mix envelope decay - A-B Karışım zarf bozunması - - - - A1-B2 Crosstalk - A1-B2 Çapraz Karışma - - - - A2-A1 modulation - A2-A1 modülasyonu - - - - B2-B1 modulation - B2-B1 modülasyonu - - - - Selected graph - Seçili grafik - - - - WatsynView - - - - - + + + + Volume Ses Düzeyi - - - - + + + + Panning - Panning + Kaydırma - - - - + + + + Freq. multiplier Frekans. çarpanı - - - - + + + + Left detune Sol detune + + + + + + - - - - - - cents sent - - - - + + + + Right detune Sağ detune - + A-B Mix A-B Karışımı - + Mix envelope amount Zarf miktarını karıştır - + Mix envelope attack Zarf saldırısını karıştır - + Mix envelope hold Zarf tutmayı karıştır - + Mix envelope decay Zarf bozunmasını karıştır - + Crosstalk Cızırtı - + Select oscillator A1 Osilatör A1'i seçin - + Select oscillator A2 Osilatör A2`yi seçin - + Select oscillator B1 Osilatör B1'i seçin - + Select oscillator B2 Osilatör B2'yi seçin - + Mix output of A2 to A1 A2'den A1'e Karışım çıkışı - + Modulate amplitude of A1 by output of A2 A1'in genliğini A2 çıkışı ile modüle edin - + Ring modulate A1 and A2 Halka modüle A1 ve A2 - + Modulate phase of A1 by output of A2 A1'in fazını A2 çıkışı ile modüle edin - + Mix output of B2 to B1 B2'den B1'e Karıştırma çıkışı - + Modulate amplitude of B1 by output of B2 B2 çıkışı ile B1 genliğini modüle edin - + Ring modulate B1 and B2 Halka modülasyonu B1 ve B2 - + Modulate phase of B1 by output of B2 B2 çıkışı ile B1 fazını modüle edin - - - - + + + + Draw your own waveform here by dragging your mouse on this graph. Farenizi bu grafiğin üzerine sürükleyerek buraya kendi dalga formunuzu çizin. - + Load waveform Dalga formu yükle - + Load a waveform from a sample file Örnek bir dosyadan bir dalga formu yükleyin - + Phase left Aşama sola - + Shift phase by -15 degrees Aşamayı -15 derece kaydır - + Phase right Aşama sağa - + Shift phase by +15 degrees Aşamayı +15 derece kaydır - - + + Normalize Normalleştir - - + + Invert Tersine çevir - - + + Smooth Pürüzsüz - - + + Sine wave Sinüs dalgası - - - + + + Triangle wave Üçgen dalga - + Saw wave Testere dalga - - + + Square wave Kare dalgası - Xpressive + lmms::gui::WaveShaperControlDialog - - Selected graph - Seçili grafik - - - - A1 - A1 - - - - A2 - A2 - - - - A3 - A3 - - - - W1 smoothing - W1 yumuşatma - - - - W2 smoothing - W2 yumuşatma - - - - W3 smoothing - W3 yumuşatma - - - - Panning 1 - Kaydırma 1 - - - - Panning 2 - Kaydırma 2 - - - - Rel trans - Rel trans - - - - XpressiveView - - - Draw your own waveform here by dragging your mouse on this graph. - Farenizi bu grafiğin üzerine sürükleyerek buraya kendi dalga formunuzu çizin. - - - - Select oscillator W1 - Osilatör W1'i seçin - - - - Select oscillator W2 - Osilatör W2'yi seçin - - - - Select oscillator W3 - Osilatör W3 seçin - - - - Select output O1 - O1 çıkışını seçin - - - - Select output O2 - O2 çıkışını seçin - - - - Open help window - Yardım penceresini aç - - - - - Sine wave - Sinüs dalgası - - - - - Moog-saw wave - Moog-saw dalgası - - - - - Exponential wave - Üstel dalga - - - - - Saw wave - Testere dalga - - - - - User-defined wave - Kullanıcı tanımlı dalga - - - - - Triangle wave - Üçgen dalga - - - - - Square wave - Kare dalgası - - - - - White noise - Beyaz gürültü - - - - WaveInterpolate - Dalga ekleme - - - - ExpressionValid - İfade Geçerli - - - - General purpose 1: - Genel amaç 1: - - - - General purpose 2: - Genel amaç 2: - - - - General purpose 3: - Genel amaçlı 3: - - - - O1 panning: - O1 kaydırma: - - - - O2 panning: - O2 kaydırma: - - - - Release transition: - Sürüm geçişi: - - - - Smoothness - Pürüssüzlük - - - - ZynAddSubFxInstrument - - - Portamento - Kaydırma - - - - Filter frequency - Frekans filtresi - - - - Filter resonance - Rezonans filtresi - - - - Bandwidth - Bant genişliği - - - - FM gain - FM kazancı - - - - Resonance center frequency - Rezonans merkez frekansı - - - - Resonance bandwidth - Rezonans bant genişliği - - - - Forward MIDI control change events - MIDI kontrol değişikliği olaylarını iletme - - - - ZynAddSubFxView - - - Portamento: - Kaydırma: - - - - PORT - KAYDIRMA - - - - Filter frequency: - Frekans filtresi: - - - - FREQ - FREK - - - - Filter resonance: - Rezonans filtresi: - - - - RES - RF - - - - Bandwidth: - Bant genişliği: - - - - BW - BG - - - - FM gain: - FM kazancı: - - - - FM GAIN - FM KAZANÇ - - - - Resonance center frequency: - Rezonans merkez frekansı: - - - - RES CF - Rez MF - - - - Resonance bandwidth: - Rezonans bant genişliği: - - - - RES BW - REZ BG - - - - Forward MIDI control changes - MIDI kontrol değişikliklerini ilet - - - - Show GUI - Görselli Arayüzü Göster - - - - AudioFileProcessor - - - Amplify - Yükseltici - - - - Start of sample - Örnek başlangıcı - - - - End of sample - Örneğin sonu - - - - Loopback point - Geri döngü noktası - - - - Reverse sample - Sample'ı ters yüz et - - - - Loop mode - Döngü modu - - - - Stutter - Kekemelik - - - - Interpolation mode - Ara değerlendirme modu - - - - None - Hiç - - - - Linear - Doğrusal - - - - Sinc - Sinc - - - - Sample not found: %1 - Örnek bulunamadı: %1 - - - - BitInvader - - - Sample length - Örnek uzunluğu - - - - BitInvaderView - - - Sample length - Örnek uzunluğu - - - - Draw your own waveform here by dragging your mouse on this graph. - Farenizi bu grafiğin üzerine sürükleyerek buraya kendi dalga formunuzu çizin. - - - - - Sine wave - Sinüs dalgası - - - - - Triangle wave - Üçgen dalga - - - - - Saw wave - Testere dalga - - - - - Square wave - Kare dalgası - - - - - White noise - Beyaz gürültü - - - - - User-defined wave - Kullanıcı tanımlı dalga - - - - - Smooth waveform - Düzgün dalga formu - - - - Interpolation - Aradeğerleme - - - - Normalize - Normalleştir - - - - DynProcControlDialog - - + INPUT GİRDİ - + Input gain: Giriş kazancı: - + OUTPUT ÇIKTI - - - Output gain: - Çıkış kazancı: - - - - ATTACK - SALDIRI - - - - Peak attack time: - Tepe saldırı süresi: - - - - RELEASE - YAYINLAMA - - - - Peak release time: - En yüksek yayın süresi: - - - - - Reset wavegraph - Dalga grafiğini sıfırla - - - - - Smooth wavegraph - Pürüzsüz dalga grafiği - - - - - Increase wavegraph amplitude by 1 dB - Dalga grafiğinin genliğini 1 dB artırın - - - - - Decrease wavegraph amplitude by 1 dB - Dalga grafiğinin genliğini 1 dB azaltın - - - - Stereo mode: maximum - Stereo modu: maksimum - - - - Process based on the maximum of both stereo channels - Her iki stereo kanalın maksimumuna dayalı işlem - - - - Stereo mode: average - Stereo modu: ortalama - - - - Process based on the average of both stereo channels - Her iki stereo kanalın ortalamasına dayalı işlem - - - - Stereo mode: unlinked - Stereo mod: bağlantısız - - - - Process each stereo channel independently - Her bir stereo kanalı bağımsız olarak işleyin - - - - DynProcControls - - - Input gain - Giriş kazancı - - - - Output gain - Çıkış kazancı - - - - Attack time - Kalkma zamanı - - - - Release time - Yayımlama zamanı - - - - Stereo mode - Çift kanal modu - - - - graphModel - - - Graph - Grafik - - - - KickerInstrument - - - Start frequency - Başlangıç frekansı - - - - End frequency - Bitiş frekansı - - - - Length - Süre - - - - Start distortion - Bozulmayı başlat - - - - End distortion - Bozulmayı bitir - - - - Gain - Kazanç - - - - Envelope slope - Zarf eğimi - - - - Noise - Parazit - - - - Click - Tıkla - - - - Frequency slope - Frekans eğimi - - - - Start from note - Notadan başla - - - - End to note - Notanın sonu - - - - KickerInstrumentView - - - Start frequency: - Başlangıç frekansı: - - - - End frequency: - Bitiş frekansı: - - - - Frequency slope: - Frekans eğimi: - - - - Gain: - Kazanç: - - - - Envelope length: - Zarf uzunluğu: - - - - Envelope slope: - Zarf eğimi: - - - - Click: - Tıkla: - - - - Noise: - Gürültü: - - - - Start distortion: - Bozulmayı başlat: - - - - End distortion: - Bozulmayı bitir: - - - - LadspaBrowserView - - - - Available Effects - Mevcut Efektler - - - - - Unavailable Effects - Kullanılamayan Etkiler - - - - - Instruments - Enstrümanlar - - - - - Analysis Tools - Analiz Araçları - - - - - Don't know - Bilmiyorum - - - - Type: - Türü: - - - - LadspaDescription - - - Plugins - Eklentiler - - - - Description - Açıklama - - - - LadspaPortDialog - - - Ports - Bağlantı Noktaları - - - - Name - İsim - - - - Rate - Oran - - - - Direction - Yön - - - - Type - Tip - - - - Min < Default < Max - Min <Varsayılan <Maks - - - - Logarithmic - Logaritmik - - - - SR Dependent - SR Bağımlı - - - - Audio - Ses - - - - Control - Kontrol - - - - Input - Giriş - - - - Output - Çıkış - - - - Toggled - Geçişli - - - - Integer - Tamsayı - - - - Float - Şamandıra - - - - - Yes - Evet - - - - Lb302Synth - - - VCF Cutoff Frequency - VCF Kesme Frekansı - - - - VCF Resonance - VCF Rezonansı - - - - VCF Envelope Mod - VCF Zarf Modu - - - - VCF Envelope Decay - VCF Zarf Bozulması - - - - Distortion - Bozma - - - - Waveform - Dalga şekli - - - - Slide Decay - Bozulma Kaydırma - - - - Slide - Kaydır - - - - Accent - Vurgu - - - - Dead - Ölü - - - - 24dB/oct Filter - 24dB/oct FiltRESİ - - - - Lb302SynthView - - - Cutoff Freq: - Kesim Frekansı: - - - - Resonance: - Rezonans: - - - - Env Mod: - Env Mod: - - - - Decay: - Bozunma: - - - - 303-es-que, 24dB/octave, 3 pole filter - 303-es-que, 24dB/octave, 3 kutuplu filtre - - - - Slide Decay: - Bozulma Kaydırma: - - - - DIST: - MESAFE: - - - - Saw wave - Testere dalga - - - - Click here for a saw-wave. - Testere dalgası için buraya tıklayın. - - - - Triangle wave - Üçgen dalga - - - - Click here for a triangle-wave. - Üçgen dalga için burayı tıklayın. - - - - Square wave - Kare dalgası - - - - Click here for a square-wave. - Kare dalga için burayı tıklayın. - - - - Rounded square wave - Yuvarlak kare dalga - - - - Click here for a square-wave with a rounded end. - Yuvarlak uçlu bir kare dalga için burayı tıklayın. - - - - Moog wave - Moog dalgası - - - - Click here for a moog-like wave. - Moog benzeri bir dalga için burayı tıklayın. - - - - Sine wave - Sinüs dalgası - - - - Click for a sine-wave. - Sinüs dalgası için tıklayın. - - - - - White noise wave - Beyaz gürültü dalgası - - - - Click here for an exponential wave. - Üstel dalga için burayı tıklayın. - - - - Click here for white-noise. - Beyaz gürültü için buraya tıklayın. - - - - Bandlimited saw wave - Bant sınırlı testere dalgası - - - - Click here for bandlimited saw wave. - Bantlı testere dalgası için buraya tıklayın. - - - - Bandlimited square wave - Bant sınırlı kare dalga - - - - Click here for bandlimited square wave. - Band sınırlı kare dalga için buraya tıklayın. - - - - Bandlimited triangle wave - Bant sınırlı üçgen dalga - - - - Click here for bandlimited triangle wave. - Bant sınırlı üçgen dalga için buraya tıklayın. - - - - Bandlimited moog saw wave - Band sınırlı moog testere dalgası - - - - Click here for bandlimited moog saw wave. - Bant sınırlı moog testere dalgası için buraya tıklayın. - - - - MalletsInstrument - - - Hardness - Sertlik - - - - Position - Konum - - - - Vibrato gain - Titreşim kazancı - - - - Vibrato frequency - Titreşim frekansı - - - - Stick mix - Çubuk karıştırıcı - - - - Modulator - Modülatör - - - - Crossfade - Çapraz geçiş - - - - LFO speed - LFO hızı - - - - LFO depth - LFO derinliği - - - - ADSR - ADSR - - - - Pressure - Basınç - - - - Motion - Hareket - - - - Speed - Hız - - - - Bowed - Eğilmiş - - - - Spread - Etrafa Saç - - - - Marimba - Marimba - - - - Vibraphone - Vibrafon - - - - Agogo - Agogo - - - - Wood 1 - Ahşap 1 - - - - Reso - Reso - - - - Wood 2 - Ahşap 2 - - - - Beats - Vuruşlar - - - - Two fixed - İki sabit - - - - Clump - Tortu - - - - Tubular bells - Borulu çanlar - - - - Uniform bar - Üniforma çubuğu - - - - Tuned bar - Ayarlanmış çubuk - - - - Glass - Cam - - - - Tibetan bowl - Tibet kase - - - - MalletsInstrumentView - - - Instrument - Enstrüman - - - - Spread - Etrafa Saç - - - - Spread: - Yayılmış: - - - - Missing files - Eksik Dosyalar - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - Stk kurulumunuz eksik görünüyor. Lütfen tam Stk paketinin kurulu olduğundan emin olun! - - - - Hardness - Sertlik - - - - Hardness: - Sertlik: - - - - Position - Konum - - - - Position: - Konum: - - - - Vibrato gain - Titreşim kazancı - - - - Vibrato gain: - Titreşim kazancı: - - - - Vibrato frequency - Titreşim frekansı - - - - Vibrato frequency: - Titreşim frekansı: - - - - Stick mix - Çubuk karıştırıcı - - - - Stick mix: - Çubuk karıştırıcı: - - - - Modulator - Modülatör - - - - Modulator: - Modülatör: - - - - Crossfade - Çapraz geçiş - - - - Crossfade: - Çapraz geçiş: - - - - LFO speed - LFO hızı - - - - LFO speed: - LFO hızı: - - - - LFO depth - LFO derinliği - - - - LFO depth: - LFO derinliği: - - - - ADSR - ADSR - - - - ADSR: - ADSR: - - - - Pressure - Basınç - - - - Pressure: - Basınç: - - - - Speed - Hız - - - - Speed: - Hız: - - - - ManageVSTEffectView - - - - VST parameter control - - VST parametre kontrolü - - - - VST sync - VST senkronizasyonu - - - - - Automated - Otomatik - - - - Close - Kapat - - - - ManageVestigeInstrumentView - - - - - VST plugin control - - VST eklenti kontrolü - - - - VST Sync - VST Senkronizasyonu - - - - - Automated - Otomatik - - - - Close - Kapat - - - - OrganicInstrument - - - Distortion - Bozma - - - - Volume - Ses Düzeyi - - - - OrganicInstrumentView - - - Distortion: - Çarpıtma: - - - - Volume: - Ses Düzeyi: - - - - Randomise - Rastgele - - - - - Osc %1 waveform: - Osc %1 dalga biçimi: - - - - Osc %1 volume: - Osc %1 düzeyi: - - - - Osc %1 panning: - Osc %1 kaydırma: - - - - Osc %1 stereo detuning - Osc %1 stereo perdeleme - - - - cents - sent - - - - Osc %1 harmonic: - Osc %1 harmonik: - - - - PatchesDialog - - - Qsynth: Channel Preset - Qsynth: Kanal Ön Ayarı - - - - Bank selector - Yuva seçici - - - - Bank - Yuva - - - - Program selector - Program seçici - - - - Patch - Yama - - - - Name - İsim - - - - OK - Tamam - - - - Cancel - İptal - - - - Sf2Instrument - - - Bank - Yuva - - - - Patch - Yama - - - - Gain - Kazanç - - - - Reverb - Yankı - - - - Reverb room size - Yankı odası boyutu - - - - Reverb damping - Yankı sönümleme - - - - Reverb width - Yankı genişliği - - - - Reverb level - Yankı seviyesi - - - - Chorus - Koro - - - - Chorus voices - Koro sesleri - - - - Chorus level - Koro seviyesi - - - - Chorus speed - Koro hızı - - - - Chorus depth - Koro derinliği - - - - A soundfont %1 could not be loaded. - %1 ses yazı tipi yüklenemedi. - - - - Sf2InstrumentView - - - - Open SoundFont file - Ses Yazı Tipi dosyasını aç - - - - Choose patch - Yama seçin - - - - Gain: - Kazanç: - - - - Apply reverb (if supported) - Yankı uygula (destekleniyorsa) - - - - Room size: - Oda boyutu: - - - - Damping: - Sönümleme: - - - - Width: - En: - - - - - Level: - Düzey: - - - - Apply chorus (if supported) - Koro uygula (destekleniyorsa) - - - - Voices: - Sesler: - - - - Speed: - Hız: - - - - Depth: - Derinlik: - - - - SoundFont Files (*.sf2 *.sf3) - Ses Yazı Tipi Dosyaları (*.sf2 *.sf3) - - - - SfxrInstrument - - - Wave - Dalga - - - - StereoEnhancerControlDialog - - - WIDTH - GENİŞLİK - - - - Width: - En: - - - - StereoEnhancerControls - - - Width - Genişlik - - - - StereoMatrixControlDialog - - - Left to Left Vol: - Soldan Sola Düzey: - - - - Left to Right Vol: - Soldan Sağa Düzey: - - - - Right to Left Vol: - Sağdan Sola Düzey: - - - - Right to Right Vol: - Sağdan Sağa Düzey: - - - - StereoMatrixControls - - - Left to Left - Soldan Sola - - - - Left to Right - Soldan sağa - - - - Right to Left - Sağdan sola - - - - Right to Right - Sağa Doğru - - - - VestigeInstrument - - - Loading plugin - Eklenti yükleniyor - - - - Please wait while loading the VST plugin... - VST eklentisini yüklerken lütfen bekleyin... - - - - Vibed - - - String %1 volume - Dize %1 hacmi - - - - String %1 stiffness - Dize %1 sertliği - - - - Pick %1 position - %1 pozisyon seçin - - - - Pickup %1 position - Alım %1 pozisyon - - - - String %1 panning - %1 dize kaydırma - - - - String %1 detune - %1 dize detune - - - - String %1 fuzziness - Dize %1 belirsizliği - - - - String %1 length - Dize %1 uzunluğu - - - - Impulse %1 - Dürtü %1 - - - - String %1 - Dize %1 - - - - VibedView - - - String volume: - Dize hacmi: - - - - String stiffness: - Dize sertliği: - - - - Pick position: - Pozisyon seçin: - - - - Pickup position: - Alış konumu: - - - - String panning: - Dize kaydırma: - - - - String detune: - Dize detayı: - - - - String fuzziness: - Dize belirsizliği: - - - - String length: - Dize uzunluğu: - - - - Impulse - Dürtü - - - - Octave - Octave - - - - Impulse Editor - Dürtü Düzenleyici - - - - Enable waveform - Dalga biçimini etkinleştir - - - - Enable/disable string - Dizeyi etkinleştir / devre dışı bırak - - - - String - Dize - - - - - Sine wave - Sinüs dalgası - - - - - Triangle wave - Üçgen dalga - - - - - Saw wave - Testere dalga - - - - - Square wave - Kare dalgası - - - - - White noise - Beyaz gürültü - - - - - User-defined wave - Kullanıcı tanımlı dalga - - - - - Smooth waveform - Düzgün dalga formu - - - - - Normalize waveform - Dalga formunu normalleştir - - - - VoiceObject - - - Voice %1 pulse width - Ses %1 darbe genişliği - - - - Voice %1 attack - Ses %1 saldırısı - - - - Voice %1 decay - Ses %1 zayıflaması - - - - Voice %1 sustain - Ses %1 sürdür - - - - Voice %1 release - Ses %1 sürümü - - - - Voice %1 coarse detuning - Ses %1 kaba ince ayar - - - - Voice %1 wave shape - Ses %1 dalga şekli - - - - Voice %1 sync - Ses %1 senkronizasyonu - - - - Voice %1 ring modulate - Ses %1 zil sesi modülasyonu - - - - Voice %1 filtered - Ses %1 filtrelendi - - - - Voice %1 test - Ses %1 testi - - - - WaveShaperControlDialog - - - INPUT - GİRDİ - - - - Input gain: - Giriş kazancı: - - - - OUTPUT - ÇIKTI - - - - Output gain: - Çıkış kazancı: - - + Output gain: + Çıkış kazancı: + + + + Reset wavegraph Dalga grafiğini sıfırla - - + + Smooth wavegraph Pürüzsüz dalga grafiği - - + + Increase wavegraph amplitude by 1 dB Dalga grafiğinin genliğini 1 dB artırın - - + + Decrease wavegraph amplitude by 1 dB Dalga grafiğinin genliğini 1 dB azaltın - + Clip input Klip girişi - + Clip input signal to 0 dB Giriş sinyalini 0 dB'ye klipsleyin - WaveShaperControls + lmms::gui::XpressiveView - - Input gain - Giriş kazancı + + Draw your own waveform here by dragging your mouse on this graph. + Farenizi bu grafiğin üzerine sürükleyerek buraya kendi dalga formunuzu çizin. - - Output gain - Çıkış kazancı + + Select oscillator W1 + Osilatör W1'i seçin + + + + Select oscillator W2 + Osilatör W2'yi seçin + + + + Select oscillator W3 + Osilatör W3 seçin + + + + Select output O1 + O1 çıkışını seçin + + + + Select output O2 + O2 çıkışını seçin + + + + Open help window + Yardım penceresini aç + + + + + Sine wave + Sinüs dalgası + + + + + Moog-saw wave + Moog-saw dalgası + + + + + Exponential wave + Üstel dalga + + + + + Saw wave + Testere dalga + + + + + User-defined wave + Kullanıcı tanımlı dalga + + + + + Triangle wave + Üçgen dalga + + + + + Square wave + Kare dalgası + + + + + White noise + Beyaz gürültü + + + + WaveInterpolate + Dalga ekleme + + + + ExpressionValid + İfade Geçerli + + + + General purpose 1: + Genel amaç 1: + + + + General purpose 2: + Genel amaç 2: + + + + General purpose 3: + Genel amaçlı 3: + + + + O1 panning: + O1 kaydırma: + + + + O2 panning: + O2 kaydırma: + + + + Release transition: + Sürüm geçişi: + + + + Smoothness + Pürüssüzlük - + + lmms::gui::ZynAddSubFxView + + + Portamento: + Kaydırma: + + + + PORT + KAYDIRMA + + + + Filter frequency: + Frekans filtresi: + + + + FREQ + FREK + + + + Filter resonance: + Rezonans filtresi: + + + + RES + RF + + + + Bandwidth: + Bant genişliği: + + + + BW + BG + + + + FM gain: + FM kazancı: + + + + FM GAIN + FM KAZANÇ + + + + Resonance center frequency: + Rezonans merkez frekansı: + + + + RES CF + Rez MF + + + + Resonance bandwidth: + Rezonans bant genişliği: + + + + RES BW + REZ BG + + + + Forward MIDI control changes + MIDI kontrol değişikliklerini ilet + + + + Show GUI + Görselli Arayüzü Göster + + + \ No newline at end of file diff --git a/data/locale/uk.ts b/data/locale/uk.ts index 245c433a1..015980135 100644 --- a/data/locale/uk.ts +++ b/data/locale/uk.ts @@ -1,4 +1,4 @@ - + AboutDialog @@ -69,810 +69,43 @@ If you're interested in translating LMMS in another language or want to imp - AmplifierControlDialog + AboutJuceDialog - - VOL - ГУЧН - - - - Volume: - Гучність: - - - - PAN - БАЛ - - - - Panning: - Баланс: - - - - LEFT - ЛІВЕ - - - - Left gain: - Ліве підсилення: - - - - RIGHT - ПРАВЕ - - - - Right gain: - Праве підсилення: - - - - AmplifierControls - - - Volume - Гучність - - - - Panning - Баланс - - - - Left gain - Ліве підсилення - - - - Right gain - Праве підсилення - - - - AudioAlsaSetupWidget - - - DEVICE - ПРИСТРІЙ - - - - CHANNELS - КАНАЛИ - - - - AudioFileProcessorView - - - Open sample + + About JUCE - - Reverse sample - Реверс запису - - - - Disable loop - Відключити повторення - - - - Enable loop - Включити повторення - - - - Enable ping-pong loop - Увімкнути пінг-понг повторення - - - - Continue sample playback across notes - Продовжити відтворення запису по нотах - - - - Amplify: - Підсилення: - - - - Start point: + + <b>About JUCE</b> - - End point: + + This program uses JUCE version 3.x.x. - - Loopback point: - Точка повернення з повтору: - - - - AudioFileProcessorWaveView - - - Sample length: - Довжина запису: - - - - AudioJack - - - JACK client restarted - JACK-клієнт перезапущений - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS не був підключений до JACK з якоїсь причини, тому LMMS підключення до JACK було перезапущено. Вам доведеться заново вручну створити з'єднання. - - - - JACK server down - JACK-сервер не доступний - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - Можливо JACK-сервер був вимкнений і запуск нового процесу не вдався, тому LMMS не може продовжити роботу. Вам слід зберегти проект і перезапустити JACK і LMMS. - - - - Client name + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. - - Channels + + This program uses JUCE version - AudioOss + AudioDeviceSetupWidget - - Device - - - - - Channels - - - - - AudioPortAudio::setupWidget - - - Backend - - - - - Device - - - - - AudioPulseAudio - - - Device - - - - - Channels - - - - - AudioSdl::setupWidget - - - Device - - - - - AudioSndio - - - Device - - - - - Channels - - - - - AudioSoundIo::setupWidget - - - Backend - - - - - Device - - - - - AutomatableModel - - - &Reset (%1%2) - &R Скинути (%1%2) - - - - &Copy value (%1%2) - &C Копіювати значення (%1%2) - - - - &Paste value (%1%2) - &P Вставити значення (%1%2) - - - - &Paste value - - - - - Edit song-global automation - Змінити глоабльную автоматизацію композиції - - - - Remove song-global automation - Прибрати глобальну автоматизацію композиції - - - - Remove all linked controls - Прибрати все приєднане управління - - - - Connected to %1 - Приєднано до %1 - - - - Connected to controller - Приєднано до контролера - - - - Edit connection... - Налаштувати з'єднання... - - - - Remove connection - Видалити з'єднання - - - - Connect to controller... - З'єднати з контролером ... - - - - AutomationEditor - - - Edit Value - - - - - New outValue - - - - - New inValue - - - - - Please open an automation clip with the context menu of a control! - Відкрийте редатор автоматизації через контекстне меню регулятора! - - - - AutomationEditorWindow - - - Play/pause current clip (Space) - Гра/Пауза поточної мелодії (Пробіл) - - - - Stop playing of current clip (Space) - Зупинити програвання поточної мелодії (Пробіл) - - - - Edit actions - Зміна - - - - Draw mode (Shift+D) - Режим малювання (Shift + D) - - - - Erase mode (Shift+E) - Режим стирання (Shift+E) - - - - Draw outValues mode (Shift+C) - - - - - Flip vertically - Перевернути вертикально - - - - Flip horizontally - Перевернути горизонтально - - - - Interpolation controls - Управління інтерполяцією - - - - Discrete progression - Дискретна прогресія - - - - Linear progression - Лінійна прогресія - - - - Cubic Hermite progression - Кубічна Ермітова прогресія - - - - Tension value for spline - Величина напруженості для сплайна - - - - Tension: - Напруженість: - - - - Zoom controls - Управління масштабом - - - - Horizontal zooming - - - - - Vertical zooming - - - - - Quantization controls - Управління квантуванням - - - - Quantization - Квантування - - - - - Automation Editor - no clip - Редактор автоматизації - немає шаблону - - - - - Automation Editor - %1 - Редактор автоматизації - %1 - - - - Model is already connected to this clip. - Модель вже підключена до цього шаблону. - - - - AutomationClip - - - Drag a control while pressing <%1> - Тягніть контроль утримуючи <%1> - - - - AutomationClipView - - - Open in Automation editor - Відкрити в редакторі автоматизації - - - - Clear - Очистити - - - - Reset name - Скинути назву - - - - Change name - Перейменувати - - - - Set/clear record - Встановити/очистити запис - - - - Flip Vertically (Visible) - Перевернути вертикально (Видиме) - - - - Flip Horizontally (Visible) - Перевернути горизонтально (Видиме) - - - - %1 Connections - З'єднання %1 - - - - Disconnect "%1" - Від'єднати «%1» - - - - Model is already connected to this clip. - Модель вже підключена до цього шаблону. - - - - AutomationTrack - - - Automation track - Доріжка автоматизації - - - - PatternEditor - - - Beat+Bassline Editor - Ритм Бас Редактор - - - - Play/pause current beat/bassline (Space) - Грати/пауза поточної лінії ритму/басу (Пробіл) - - - - Stop playback of current beat/bassline (Space) - Зупинити відтворення поточної лінії ритм-басу (Пробіл) - - - - Beat selector - Вибір ударних - - - - Track and step actions - Дії для доріжки чи її частини - - - - Add beat/bassline - Додати ритм/бас - - - - Clone beat/bassline clip - - - - - Add sample-track - Додати доріжку запису - - - - Add automation-track - Додати доріжку автоматизації - - - - Remove steps - Видалити такти - - - - Add steps - Додати такти - - - - Clone Steps - Клонувати такти - - - - PatternClipView - - - Open in Beat+Bassline-Editor - Відкрити в редакторі ритму і басу - - - - Reset name - Скинути назву - - - - Change name - Перейменувати - - - - PatternTrack - - - Beat/Bassline %1 - Ритм/Бас лінія %1 - - - - Clone of %1 - Копія %1 - - - - BassBoosterControlDialog - - - FREQ - ЧАСТ - - - - Frequency: - Частота: - - - - GAIN - ПІДС - - - - Gain: - Підсилення: - - - - RATIO - ВІДН - - - - Ratio: - Відношення: - - - - BassBoosterControls - - - Frequency - Частота - - - - Gain - Підсилення - - - - Ratio - Відношення - - - - BitcrushControlDialog - - - IN - ВХД - - - - OUT - ВИХ - - - - - GAIN - ПІДС - - - - Input gain: - Вхідне підсилення: - - - - NOISE - ШУМ - - - - Input noise: - - - - - Output gain: - Вихідне підсилення: - - - - CLIP - ЗРІЗ - - - - Output clip: - - - - - Rate enabled - - - - - Enable sample-rate crushing - - - - - Depth enabled - - - - - Enable bit-depth crushing - - - - - FREQ - ЧАСТ - - - - Sample rate: - Частота дискретизації: - - - - STEREO - СТЕРЕО - - - - Stereo difference: - Стерео різниця: - - - - QUANT - КВАНТ - - - - Levels: - Рівні: - - - - BitcrushControls - - - Input gain - Вхідне підсилення - - - - Input noise - - - - - Output gain - Вихідне підсилення - - - - Output clip - - - - - Sample rate - - - - - Stereo difference - - - - - Levels - Рівні - - - - Rate enabled - - - - - Depth enabled + + [System Default] @@ -899,124 +132,124 @@ If you're interested in translating LMMS in another language or want to imp - + Artwork - + Using KDE Oxygen icon set, designed by Oxygen Team. - + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. - + VST is a trademark of Steinberg Media Technologies GmbH. - + Special thanks to António Saraiva for a few extra icons and artwork! - + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. - + MIDI Keyboard designed by Thorsten Wilms. - + Carla, Carla-Control and Patchbay icons designed by DoosC. - + Features - + AU/AudioUnit: - + LADSPA: - - - - - - - - + + + + + + + + TextLabel - + VST2: - + DSSI: - + LV2: - + VST3: - + OSC - + Host URLs: - + Valid commands: - + valid osc commands here - + Example: - + License Ліцензія - + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -1301,50 +534,50 @@ POSSIBILITY OF SUCH DAMAGES. - + OSC Bridge Version - + Plugin Version - + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> - - + + (Engine not running) - + Everything! (Including LRDF) - + Everything! (Including CustomData/Chunks) - + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - - - + + + Using Juce host - + About 85% complete (missing vst bank/presets and some minor stuff) @@ -1377,561 +610,598 @@ POSSIBILITY OF SUCH DAMAGES. - + + Save + + + + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + Buffer Size: - + Sample Rate: - + ? Xruns - + DSP Load: %p% - + &File &Файл - + &Engine - + &Plugin - + Macros (all plugins) - + &Canvas - + Zoom - + &Settings - + &Help &H Довідка - - toolBar + + Tool Bar - + Disk - - + + Home - + Transport - + Playback Controls - + Time Information - + Frame: - + 000'000'000 - + Time: Час: - + 00:00:00 - + BBT: - + 000|00|0000 - + Settings Параметри - + BPM - + Use JACK Transport - + Use Ableton Link - + &New &N Новий - + Ctrl+N - + &Open... &O Відкрити... - - + + Open... - + Ctrl+O - + &Save &S Зберегти - + Ctrl+S - + Save &As... &A Зберегти як... - - + + Save As... - + Ctrl+Shift+S - + &Quit &Q Вийти - + Ctrl+Q - + &Start - + F5 - + St&op - + F6 - + &Add Plugin... - + Ctrl+A - + &Remove All - + Enable - + Disable - + 0% Wet (Bypass) - + 100% Wet - + 0% Volume (Mute) - + 100% Volume - + Center Balance - + &Play - + Ctrl+Shift+P - + &Stop - + Ctrl+Shift+X - + &Backwards - + Ctrl+Shift+B - + &Forwards - + Ctrl+Shift+F - + &Arrange - + Ctrl+G - - + + &Refresh - + Ctrl+R - + Save &Image... - + Auto-Fit - + Zoom In - + Ctrl++ - + Zoom Out - + Ctrl+- - + Zoom 100% - + Ctrl+1 - + Show &Toolbar - + &Configure Carla - + &About - + About &JUCE - + About &Qt - + Show Canvas &Meters - + Show Canvas &Keyboard - + Show Internal - + Show External - + Show Time Panel - + Show &Side Panel - + + Ctrl+P + + + + &Connect... - + Compact Slots - + Expand Slots - + Perform secret 1 - + Perform secret 2 - + Perform secret 3 - + Perform secret 4 - + Perform secret 5 - + Add &JACK Application... - + &Configure driver... - + Panic - + Open custom driver panel... + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + + CarlaHostWindow - + Export as... - - - - + + + + Error Помилка - + Failed to load project - + Failed to save project - + Quit Вихід - + Are you sure you want to quit Carla? - + Could not connect to Audio backend '%1', possible reasons: %2 - + Could not connect to Audio backend '%1' - + Warning - + There are still some plugins loaded, you need to remove them to stop the engine. Do you want to do this now? - - CarlaInstrumentView - - - Show GUI - Показати інтерфейс - - CarlaSettingsW @@ -1986,19 +1256,19 @@ Do you want to do this now? - + Main - + Canvas - + Engine @@ -2019,1487 +1289,589 @@ Do you want to do this now? - + Experimental - + <b>Main</b> - + Paths Шляхи - + Default project folder: - + Interface - + + Use "Classic" as default rack skin + + + + Interface refresh interval: - - + + ms - + Show console output in Logs tab (needs engine restart) - + Show a confirmation dialog before quitting - - + + Theme - + Use Carla "PRO" theme (needs restart) - + Color scheme: - + Black - + System - + Enable experimental features - + <b>Canvas</b> - + Bezier Lines - + Theme: - + Size: Розмір: - + 775x600 - + 1550x1200 - + 3100x2400 - + 4650x3600 - + 6200x4800 - + + 12400x9600 + + + + Options - + Auto-hide groups with no ports - + Auto-select items on hover - + Basic eye-candy (group shadows) - + Render Hints - + Anti-Aliasing - + Full canvas repaints (slower, but prevents drawing issues) - + <b>Engine</b> - - + + Core - + Single Client - + Multiple Clients - - + + Continuous Rack - - + + Patchbay - + Audio driver: - + Process mode: - - - - + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog - + Max Parameters: - + ... - + Reset Xrun counter after project load - + Plugin UIs - - + + How much time to wait for OSC GUIs to ping back the host - + UI Bridge Timeout: - + Use OSC-GUI bridges when possible, this way separating the UI from DSP code - + Use UI bridges instead of direct handling when possible - + Make plugin UIs always-on-top - + Make plugin UIs appear on top of Carla (needs restart) - + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS - - + + Restart the engine to load the new settings - + <b>OSC</b> - + Enable OSC - + Enable TCP port - - + + Use specific port: - + Overridden by CARLA_OSC_TCP_PORT env var - - + + Use randomly assigned port - + Enable UDP port - + Overridden by CARLA_OSC_UDP_PORT env var - + DSSI UIs require OSC UDP port enabled - + <b>File Paths</b> - + Audio Аудіо - + MIDI MIDI - + Used for the "audiofile" plugin - + Used for the "midifile" plugin - - + + Add... - - + + Remove - - + + Change... - + <b>Plugin Paths</b> - + LADSPA - + DSSI - + LV2 - + VST2 - + VST3 - + SF2/3 - + SFZ - + + JSFX + + + + + CLAP + + + + Restart Carla to find new plugins - + <b>Wine</b> - + Executable - + Path to 'wine' binary: - + Prefix - + Auto-detect Wine prefix based on plugin filename - + Fallback: - + Note: WINEPREFIX env var is preferred over this fallback - + Realtime Priority - + Base priority: - + WineServer priority: - + These options are not available for Carla as plugin - + <b>Experimental</b> - + Experimental options! Likely to be unstable! - + Enable plugin bridges - + Enable Wine bridges - + Enable jack applications - + Export single plugins to LV2 - + + Use system/desktop-theme icons (needs restart) + + + + Load Carla backend in global namespace (NOT RECOMMENDED) - + Fancy eye-candy (fade-in/out groups, glow connections) - + Use OpenGL for rendering (needs restart) - + High Quality Anti-Aliasing (OpenGL only) - + Render Ardour-style "Inline Displays" - + Force mono plugins as stereo by running 2 instances at the same time. This mode is not available for VST plugins. - + Force mono plugins as stereo - - Prevent plugins from doing bad stuff (needs restart) + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. - - Whenever possible, run the plugins in bridge mode. + + Prevent unsafe calls from plugins (needs restart) - + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + Run plugins in bridge mode when possible - - - - + + + + Add Path - - CompressorControlDialog - - - Threshold: - - - - - Volume at which the compression begins to take place - - - - - Ratio: - Відношення: - - - - How far the compressor must turn the volume down after crossing the threshold - - - - - Attack: - Вступ: - - - - Speed at which the compressor starts to compress the audio - - - - - Release: - Зменшення: - - - - Speed at which the compressor ceases to compress the audio - - - - - Knee: - - - - - Smooth out the gain reduction curve around the threshold - - - - - Range: - - - - - Maximum gain reduction - - - - - Lookahead Length: - - - - - How long the compressor has to react to the sidechain signal ahead of time - - - - - Hold: - Утримання: - - - - Delay between attack and release stages - - - - - RMS Size: - - - - - Size of the RMS buffer - - - - - Input Balance: - - - - - Bias the input audio to the left/right or mid/side - - - - - Output Balance: - - - - - Bias the output audio to the left/right or mid/side - - - - - Stereo Balance: - - - - - Bias the sidechain signal to the left/right or mid/side - - - - - Stereo Link Blend: - - - - - Blend between unlinked/maximum/average/minimum stereo linking modes - - - - - Tilt Gain: - - - - - Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. - - - - - Tilt Frequency: - - - - - Center frequency of sidechain tilt filter - - - - - Mix: - - - - - Balance between wet and dry signals - - - - - Auto Attack: - - - - - Automatically control attack value depending on crest factor - - - - - Auto Release: - - - - - Automatically control release value depending on crest factor - - - - - Output gain - Вихідне підсилення - - - - - Gain - Підсилення - - - - Output volume - - - - - Input gain - Вхідне підсилення - - - - Input volume - - - - - Root Mean Square - - - - - Use RMS of the input - - - - - Peak - - - - - Use absolute value of the input - - - - - Left/Right - - - - - Compress left and right audio - - - - - Mid/Side - - - - - Compress mid and side audio - - - - - Compressor - - - - - Compress the audio - - - - - Limiter - - - - - Set Ratio to infinity (is not guaranteed to limit audio volume) - - - - - Unlinked - - - - - Compress each channel separately - - - - - Maximum - - - - - Compress based on the loudest channel - - - - - Average - - - - - Compress based on the averaged channel volume - - - - - Minimum - - - - - Compress based on the quietest channel - - - - - Blend - - - - - Blend between stereo linking modes - - - - - Auto Makeup Gain - - - - - Automatically change makeup gain depending on threshold, knee, and ratio settings - - - - - - Soft Clip - - - - - Play the delta signal - - - - - Use the compressor's output as the sidechain input - - - - - Lookahead Enabled - - - - - Enable Lookahead, which introduces 20 milliseconds of latency - - - - - CompressorControls - - - Threshold - - - - - Ratio - Відношення - - - - Attack - Вступ - - - - Release - Зменшення - - - - Knee - - - - - Hold - Утримання - - - - Range - - - - - RMS Size - - - - - Mid/Side - - - - - Peak Mode - - - - - Lookahead Length - - - - - Input Balance - - - - - Output Balance - - - - - Limiter - - - - - Output Gain - Вихідне підсилення - - - - Input Gain - Вхідне підсилення - - - - Blend - - - - - Stereo Balance - - - - - Auto Makeup Gain - - - - - Audition - - - - - Feedback - Повернення - - - - Auto Attack - - - - - Auto Release - - - - - Lookahead - - - - - Tilt - - - - - Tilt Frequency - - - - - Stereo Link - - - - - Mix - Мікс - - - - Controller - - - Controller %1 - Контролер %1 - - - - ControllerConnectionDialog - - - Connection Settings - Параметры соединения - - - - MIDI CONTROLLER - MIDI-КОНТРОЛЕР - - - - Input channel - Канал введення - - - - CHANNEL - КАНАЛ - - - - Input controller - Контролер введення - - - - CONTROLLER - КОНТРОЛЕР - - - - - Auto Detect - Автовизначення - - - - MIDI-devices to receive MIDI-events from - Пристрої MiDi для прийому подій - - - - USER CONTROLLER - КОРИСТ. КОНТРОЛЕР - - - - MAPPING FUNCTION - ПЕРЕВИЗНАЧЕННЯ - - - - OK - ОК - - - - Cancel - Відміна - - - - LMMS - ЛММС - - - - Cycle Detected. - Виявлено цикл. - - - - ControllerRackView - - - Controller Rack - Стійка контролерів - - - - Add - Додати - - - - Confirm Delete - Підтвердити видалення - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Чи підтверджуєте видалення? Є можливі зв'язки з цим контролером, потім їх не можна буде повернути.. - - - - ControllerView - - - Controls - Управління - - - - Rename controller - Перейменувати контролер - - - - Enter the new name for this controller - Введіть нову назву контролера - - - - LFO - LFO - - - - &Remove this controller - &R Видалити цей контролер - - - - Re&name this controller - &N Перейменувати цей контролер - - - - CrossoverEQControlDialog - - - Band 1/2 crossover: - - - - - Band 2/3 crossover: - - - - - Band 3/4 crossover: - - - - - Band 1 gain - - - - - Band 1 gain: - - - - - Band 2 gain - - - - - Band 2 gain: - - - - - Band 3 gain - - - - - Band 3 gain: - - - - - Band 4 gain - - - - - Band 4 gain: - - - - - Band 1 mute - - - - - Mute band 1 - - - - - Band 2 mute - - - - - Mute band 2 - - - - - Band 3 mute - - - - - Mute band 3 - - - - - Band 4 mute - - - - - Mute band 4 - - - - - DelayControls - - - Delay samples - - - - - Feedback - Повернення - - - - LFO frequency - - - - - LFO amount - - - - - Output gain - Вихідне підсилення - - - - DelayControlsDialog - - - DELAY - ЗАТРИМ - - - - Delay time - - - - - FDBK - FDBK - - - - Feedback amount - - - - - RATE - ЧАСТ - - - - LFO frequency - - - - - AMNT - ГЛИБ - - - - LFO amount - - - - - Out gain - - - - - Gain - Підсилення - - Dialog - - - Add JACK Application - - - - - Note: Features not implemented yet are greyed out - - - - - Application - - - - - Name: - - - - - Application: - - - - - From template - - - - - Custom - - - - - Template: - - - - - Command: - - - - - Setup - - - - - Session Manager: - - - - - None - Нічого - - - - Audio inputs: - - - - - MIDI inputs: - - - - - Audio outputs: - - - - - MIDI outputs: - - - - - Take control of main application window - - - - - Workarounds - - - - - Wait for external application start (Advanced, for Debug only) - - - - - Capture only the first X11 Window - - - - - Use previous client output buffer as input for the next client - - - - - Simulate 16 JACK MIDI outputs, with MIDI channel as port index - - - - - Error here - - Carla Control - Connect @@ -3525,27 +1897,6 @@ This mode is not available for VST plugins. TCP Port: - - - Reported host - - - - - Automatic - - - - - Custom: - - - - - In some networks (like USB connections), the remote system cannot reach the local network. You can specify here which hostname or IP to make the remote Carla connect to. -If you are unsure, leave it as 'Automatic'. - - Set value @@ -3600,948 +1951,6 @@ If you are unsure, leave it as 'Automatic'. - - DualFilterControlDialog - - - - FREQ - ЧАСТ - - - - - Cutoff frequency - Зріз частоти - - - - - RESO - РЕЗО - - - - - Resonance - Резонанс - - - - - GAIN - ПІДС - - - - - Gain - Підсилення - - - - MIX - МІКС - - - - Mix - Мікс - - - - Filter 1 enabled - Фільтр 1 включено - - - - Filter 2 enabled - Фільтр 2 включено - - - - Enable/disable filter 1 - - - - - Enable/disable filter 2 - - - - - DualFilterControls - - - Filter 1 enabled - Фільтр 1 включено - - - - Filter 1 type - Тип фільтру - - - - Cutoff frequency 1 - - - - - Q/Resonance 1 - Кіл./Резонансу 1 - - - - Gain 1 - Підсилення 1 - - - - Mix - Мікс - - - - Filter 2 enabled - Фільтр 2 включено - - - - Filter 2 type - Тип фільтру 2 - - - - Cutoff frequency 2 - - - - - Q/Resonance 2 - Кіл./Резонансу 2 - - - - Gain 2 - Підсилення 2 - - - - - Low-pass - - - - - - Hi-pass - - - - - - Band-pass csg - - - - - - Band-pass czpg - - - - - - Notch - Смуго-загороджуючий - - - - - All-pass - - - - - - Moog - Муг - - - - - 2x Low-pass - - - - - - RC Low-pass 12 dB/oct - - - - - - RC Band-pass 12 dB/oct - - - - - - RC High-pass 12 dB/oct - - - - - - RC Low-pass 24 dB/oct - - - - - - RC Band-pass 24 dB/oct - - - - - - RC High-pass 24 dB/oct - - - - - - Vocal Formant - - - - - - 2x Moog - 2x Муг - - - - - SV Low-pass - - - - - - SV Band-pass - - - - - - SV High-pass - - - - - - SV Notch - SV Смуго-заг - - - - - Fast Formant - Швидка форманта - - - - - Tripole - Тріполі - - - - Editor - - - Transport controls - Управління засобами сполучення - - - - Play (Space) - Грати (Пробіл) - - - - Stop (Space) - Зупинити (Пробіл) - - - - Record - Запис - - - - Record while playing - Запис під час програвання - - - - Toggle Step Recording - - - - - Effect - - - Effect enabled - Ефект включений - - - - Wet/Dry mix - Насиченість - - - - Gate - Шлюз - - - - Decay - Згасання - - - - EffectChain - - - Effects enabled - Ефекти включені - - - - EffectRackView - - - EFFECTS CHAIN - МЕРЕЖА ЕФЕКТІВ - - - - Add effect - Додати ефект - - - - EffectSelectDialog - - - Add effect - Додати ефект - - - - - Name - І'мя - - - - Type - Тип - - - - Description - Опис - - - - Author - Автор - - - - EffectView - - - On/Off - Увімк/Вимк - - - - W/D - НАСИЧ - - - - Wet Level: - Рівень насиченості: - - - - DECAY - ЗГАСАННЯ - - - - Time: - Час: - - - - GATE - ШЛЮЗ - - - - Gate: - Шлюз: - - - - Controls - Управління - - - - Move &up - &u Перемістити вище - - - - Move &down - &d Перемістити нижче - - - - &Remove this plugin - &R Видалити цей плагін - - - - EnvelopeAndLfoParameters - - - Env pre-delay - - - - - Env attack - - - - - Env hold - - - - - Env decay - - - - - Env sustain - - - - - Env release - - - - - Env mod amount - - - - - LFO pre-delay - - - - - LFO attack - - - - - LFO frequency - - - - - LFO mod amount - - - - - LFO wave shape - - - - - LFO frequency x 100 - - - - - Modulate env amount - - - - - EnvelopeAndLfoView - - - - DEL - DEL - - - - - Pre-delay: - - - - - - ATT - ATT - - - - - Attack: - Вступ: - - - - HOLD - HOLD - - - - Hold: - Утримання: - - - - DEC - DEC - - - - Decay: - Згасання: - - - - SUST - SUST - - - - Sustain: - Витримка: - - - - REL - REL - - - - Release: - Зменшення: - - - - - AMT - AMT - - - - - Modulation amount: - Глибина модуляції: - - - - SPD - SPD - - - - Frequency: - Частота: - - - - FREQ x 100 - ЧАСТОТА x 100 - - - - Multiply LFO frequency by 100 - - - - - MODULATE ENV AMOUNT - - - - - Control envelope amount by this LFO - - - - - ms/LFO: - мс/LFO: - - - - Hint - Підказка - - - - Drag and drop a sample into this window. - - - - - EqControls - - - Input gain - Вхідне підсилення - - - - Output gain - Вихідне підсилення - - - - Low-shelf gain - - - - - Peak 1 gain - Пік 1 підсилення - - - - Peak 2 gain - Пік 2 підсилення - - - - Peak 3 gain - Пік 3 підсилення - - - - Peak 4 gain - Пік 4 підсилення - - - - High-shelf gain - - - - - HP res - ВЧ резон - - - - Low-shelf res - - - - - Peak 1 BW - Пік 1 BW - - - - Peak 2 BW - Пік 2 BW - - - - Peak 3 BW - Пік 3 BW - - - - Peak 4 BW - Пік 4 BW - - - - High-shelf res - - - - - LP res - НЧ резон - - - - HP freq - НЧ част - - - - Low-shelf freq - - - - - Peak 1 freq - Пік 1 част - - - - Peak 2 freq - Пік 2 част - - - - Peak 3 freq - Пік 3 част - - - - Peak 4 freq - Пік 4 част - - - - High-shelf freq - - - - - LP freq - НЧ част - - - - HP active - ВЧ активна - - - - Low-shelf active - - - - - Peak 1 active - Пік 1 активний - - - - Peak 2 active - Пік 2 активний - - - - Peak 3 active - Пік 3 активний - - - - Peak 4 active - Пік 4 активний - - - - High-shelf active - - - - - LP active - НЧ активна - - - - LP 12 - НЧ 12 - - - - LP 24 - НЧ 24 - - - - LP 48 - НЧ 48 - - - - HP 12 - ВЧ 12 - - - - HP 24 - ВЧ 24 - - - - HP 48 - ВЧ 48 - - - - Low-pass type - - - - - High-pass type - - - - - Analyse IN - Аналізувати ВХІД - - - - Analyse OUT - Аналізувати ВИХІД - - - - EqControlsDialog - - - HP - ВЧ - - - - Low-shelf - - - - - Peak 1 - Пік 1 - - - - Peak 2 - Пік 2 - - - - Peak 3 - Пік 3 - - - - Peak 4 - Пік 4 - - - - High-shelf - - - - - LP - НЧ - - - - Input gain - Вхідне підсилення - - - - - - Gain - Підсилення - - - - Output gain - Вихідне підсилення - - - - Bandwidth: - Ширина смуги: - - - - Octave - Октава - - - - Resonance : - Резонанс: - - - - Frequency: - Частота: - - - - LP group - - - - - HP group - - - - - EqHandle - - - Reso: - Резон: - - - - BW: - ШС: - - - - - Freq: - Част: - - ExportProjectDialog @@ -4725,2126 +2134,652 @@ If you are unsure, leave it as 'Automatic'. - - Oversampling: - - - - - 1x (None) - 1х (Ні) - - - - 2x - - - - - 4x - - - - - 8x - - - - + Start Почати - + Cancel Відміна - - - Could not open file - Не можу відкрити файл - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Не вдалось відкрити файл %1 для запису. -Перевірте, чи маєте ви права на запис файлу і каталог що його містить і спробуйте знову! - - - - Export project to %1 - Експорт проекту в %1 - - - - ( Fastest - biggest ) - - - - - ( Slowest - smallest ) - - - - - Error - Помилка - - - - Error while determining file-encoder device. Please try to choose a different output format. - Помилка при визначенні кодека файлу. Спробуйте вибрати інший формат виводу. - - - - Rendering: %1% - Обробка: %1% - - - - Fader - - - Set value - - - - - Please enter a new value between %1 and %2: - Введіть нове значення від %1 до %2: - - - - FileBrowser - - - User content - - - - - Factory content - - - - - Browser - Оглядач файлів - - - - Search - - - - - Refresh list - - - - - FileBrowserTreeWidget - - - Send to active instrument-track - З'єднати з активним інструментом-доріжкою - - - - Open containing folder - - - - - Song Editor - Музичний редактор - - - - BB Editor - - - - - Send to new AudioFileProcessor instance - - - - - Send to new instrument track - - - - - (%2Enter) - - - - - Send to new sample track (Shift + Enter) - - - - - Loading sample - Завантаження запису - - - - Please wait, loading sample for preview... - Будь-ласка почекайте, запис завантажується для перегляду ... - - - - Error - Помилка - - - - %1 does not appear to be a valid %2 file - - - - - --- Factory files --- - --- Заводські файли --- - - - - FlangerControls - - - Delay samples - - - - - LFO frequency - - - - - Seconds - Секунд - - - - Stereo phase - - - - - Regen - Перегенерувати - - - - Noise - Шум - - - - Invert - Інвертувати - - - - FlangerControlsDialog - - - DELAY - ЗАТРИМ - - - - Delay time: - - - - - RATE - ЧАСТ - - - - Period: - Період: - - - - AMNT - ГЛИБ - - - - Amount: - Величина: - - - - PHASE - - - - - Phase: - - - - - FDBK - FDBK - - - - Feedback amount: - - - - - NOISE - ШУМ - - - - White noise amount: - - - - - Invert - Інвертувати - - - - FreeBoyInstrument - - - Sweep time - Час поширення - - - - Sweep direction - Напрям поширення - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle - - - - - Channel 1 volume - Гучність першого каналу - - - - - - Volume sweep direction - Обсяг напрямку поширення - - - - - - Length of each step in sweep - Довжина кожного кроку в розгортці - - - - Channel 2 volume - Гучність другого каналу - - - - Channel 3 volume - Гучність третього каналу - - - - Channel 4 volume - Гучність четвертого каналу - - - - Shift Register width - Зміщення ширини регістра - - - - Right output level - - - - - Left output level - - - - - Channel 1 to SO2 (Left) - Від першого каналу до SO2 (лівий канал) - - - - Channel 2 to SO2 (Left) - Від другого каналу до SO2 (лівий канал) - - - - Channel 3 to SO2 (Left) - Від третього каналу до SO2 (лівий канал) - - - - Channel 4 to SO2 (Left) - Від четвертого каналу до SO2 (лівий канал) - - - - Channel 1 to SO1 (Right) - Від першого каналу до SO1 (правий канал) - - - - Channel 2 to SO1 (Right) - Від другого каналу до SO1 (правий канал) - - - - Channel 3 to SO1 (Right) - Від третього каналу до SO1 (правий канал) - - - - Channel 4 to SO1 (Right) - Від четвертого каналу до SO1 (правий канал) - - - - Treble - Дискант - - - - Bass - Бас - - - - FreeBoyInstrumentView - - - Sweep time: - - - - - Sweep time - Час поширення - - - - Sweep rate shift amount: - - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle: - - - - - - Wave pattern duty cycle - - - - - Square channel 1 volume: - - - - - Square channel 1 volume - - - - - - - Length of each step in sweep: - Довжина кожного кроку в розгортці: - - - - - - Length of each step in sweep - Довжина кожного кроку в розгортці - - - - Square channel 2 volume: - - - - - Square channel 2 volume - - - - - Wave pattern channel volume: - - - - - Wave pattern channel volume - - - - - Noise channel volume: - - - - - Noise channel volume - - - - - SO1 volume (Right): - - - - - SO1 volume (Right) - - - - - SO2 volume (Left): - - - - - SO2 volume (Left) - - - - - Treble: - Дискант: - - - - Treble - Дискант - - - - Bass: - Бас: - - - - Bass - Бас - - - - Sweep direction - Напрям поширення - - - - - - - - Volume sweep direction - Обсяг напрямку поширення - - - - Shift register width - - - - - Channel 1 to SO1 (Right) - Від першого каналу до SO1 (правий канал) - - - - Channel 2 to SO1 (Right) - Від другого каналу до SO1 (правий канал) - - - - Channel 3 to SO1 (Right) - Від третього каналу до SO1 (правий канал) - - - - Channel 4 to SO1 (Right) - Від четвертого каналу до SO1 (правий канал) - - - - Channel 1 to SO2 (Left) - Від першого каналу до SO2 (лівий канал) - - - - Channel 2 to SO2 (Left) - Від другого каналу до SO2 (лівий канал) - - - - Channel 3 to SO2 (Left) - Від третього каналу до SO2 (лівий канал) - - - - Channel 4 to SO2 (Left) - Від четвертого каналу до SO2 (лівий канал) - - - - Wave pattern graph - - - - - MixerChannelView - - - Channel send amount - Величина відправки каналу - - - - Move &left - Рухати вліво &L - - - - Move &right - Рухати вправо &R - - - - Rename &channel - Перейменувати канал &C - - - - R&emove channel - Видалити канал &e - - - - Remove &unused channels - Видалити канали які &не використовуються - - - - Set channel color - - - - - Remove channel color - - - - - Pick random channel color - - - - - MixerChannelLcdSpinBox - - - Assign to: - Призначити до: - - - - New mixer Channel - Новий ефект каналу - - - - Mixer - - - Master - Головний - - - - - - Channel %1 - Ефект %1 - - - - Volume - Гучність - - - - Mute - Тиша - - - - Solo - Соло - - - - MixerView - - - Mixer - Мікшер Ефектів - - - - Fader %1 - Повзунок Ефекту %1 - - - - Mute - Тиша - - - - Mute this mixer channel - Тиша на цьому каналі Ефекту - - - - Solo - Соло - - - - Solo mixer channel - Соло каналу ЕФ - - - - MixerRoute - - - - Amount to send from channel %1 to channel %2 - Величина відправки з каналу %1 на канал %2 - - - - GigInstrument - - - Bank - Банк - - - - Patch - Патч - - - - Gain - Підсилення - - - - GigInstrumentView - - - - Open GIG file - Відкрити GIG файл - - - - Choose patch - - - - - Gain: - Підсилення: - - - - GIG Files (*.gig) - GIG Файли (*.gig) - - - - GuiApplication - - - Working directory - Робочий каталог LMMS - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - Робочий каталог LMMS (%1) не існує. Створити його? Пізніше ви зможете змінити його через Правку -> Параметри. - - - - Preparing UI - Підготовка користувацького інтерфейсу - - - - Preparing song editor - Підготовка музичного редактора - - - - Preparing mixer - Підготовка міксера - - - - Preparing controller rack - Підготовка стійки контролерів - - - - Preparing project notes - Підготовка заміток проекту - - - - Preparing beat/bassline editor - Підготовка ритм/бас редактора - - - - Preparing piano roll - Підготовка нотного редактора - - - - Preparing automation editor - Підготовка редактора автоматизації - - - - InstrumentFunctionArpeggio - - - Arpeggio - Арпеджіо - - - - Arpeggio type - Тип арпеджіо - - - - Arpeggio range - Діапазон арпеджіо - - - - Note repeats - - - - - Cycle steps - Зациклити такти - - - - Skip rate - Частота пропуску - - - - Miss rate - Частота пропуску - - - - Arpeggio time - Період арпеджіо - - - - Arpeggio gate - Шлюз арпеджіо - - - - Arpeggio direction - Напрямок арпеджіо - - - - Arpeggio mode - Режим арпеджіо - - - - Up - Вгору - - - - Down - Вниз - - - - Up and down - Вгору та вниз - - - - Down and up - Вниз та вгору - - - - Random - Випадково - - - - Free - Вільно - - - - Sort - Сортувати - - - - Sync - Синхронізувати - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - ARPEGGIO - - - - RANGE - RANGE - - - - Arpeggio range: - Діапазон арпеджіо: - - - - octave(s) - Октав(а/и) - - - - REP - - - - - Note repeats: - - - - - time(s) - - - - - CYCLE - ЦИКЛ - - - - Cycle notes: - Зациклити ноти: - - - - note(s) - нота(и) - - - - SKIP - ПРОПУСК - - - - Skip rate: - Частота пропуску: - - - - - - % - % - - - - MISS - ПРОПУСК - - - - Miss rate: - Частота пропуску: - - - - TIME - TIME - - - - Arpeggio time: - Період арпеджіо: - - - - ms - мс - - - - GATE - GATE - - - - Arpeggio gate: - Шлюз арпеджіо: - - - - Chord: - Акорд: - - - - Direction: - Напрямок: - - - - Mode: - Режим: - InstrumentFunctionNoteStacking - + octave Октава - - + + Major Мажорний - + Majb5 Majb5 - + minor мінорний - + minb5 minb5 - + sus2 sus2 - + sus4 sus4 - + aug aug - + augsus4 augsus4 - + tri tri - + 6 6 - + 6sus4 6sus4 - + 6add9 6add9 - + m6 m6 - + m6add9 m6add9 - + 7 7 - + 7sus4 7sus4 - + 7#5 7#5 - + 7b5 7b5 - + 7#9 7#9 - + 7b9 7b9 - + 7#5#9 7#5#9 - + 7#5b9 7#5b9 - + 7b5b9 7b5b9 - + 7add11 7add11 - + 7add13 7add13 - + 7#11 7#11 - + Maj7 Maj7 - + Maj7b5 Maj7b5 - + Maj7#5 Maj7#5 - + Maj7#11 Maj7#11 - + Maj7add13 Maj7add13 - + m7 m7 - + m7b5 m7b5 - + m7b9 m7b9 - + m7add11 m7add11 - + m7add13 m7add13 - + m-Maj7 m-Maj7 - + m-Maj7add11 m-Maj7add11 - + m-Maj7add13 m-Maj7add13 - + 9 9 - + 9sus4 9sus4 - + add9 add9 - + 9#5 9#5 - + 9b5 9b5 - + 9#11 9#11 - + 9b13 9b13 - + Maj9 Maj9 - + Maj9sus4 Maj9sus4 - + Maj9#5 Maj9#5 - + Maj9#11 Maj9#11 - + m9 m9 - + madd9 madd9 - + m9b5 m9b5 - + m9-Maj7 m9-Maj7 - + 11 11 - + 11b9 11b9 - + Maj11 Maj11 - + m11 m11 - + m-Maj11 m-Maj11 - + 13 13 - + 13#9 13#9 - + 13b9 13b9 - + 13b5b9 13b5b9 - + Maj13 Maj13 - + m13 m13 - + m-Maj13 m-Maj13 - + Harmonic minor Гармонійний мінор - + Melodic minor Мелодійний мінор - + Whole tone Цілий тон - + Diminished Понижений - + Major pentatonic Пентатонік major - + Minor pentatonic Пентатонік major - + Jap in sen Япон in sen - + Major bebop Major Бібоп - + Dominant bebop Домінтний бібоп - + Blues Блюз - + Arabic Арабська - + Enigmatic Загадкова - + Neopolitan Неаполітанська - + Neopolitan minor Неаполітанський мінор - + Hungarian minor Угорський мінор - + Dorian Дорійська - + Phrygian Фрігійський - + Lydian Лідійська - + Mixolydian Міксолідійська - + Aeolian Еолійська - + Locrian Локріанська - + Minor Мінор - + Chromatic Хроматична - + Half-Whole Diminished Напів-зниження - + 5 5 - + Phrygian dominant Фрігійська домінанта - + Persian Перська - - - Chords - Акорди - - - - Chord type - Тип акорду - - - - Chord range - Діапазон акорду - - - - InstrumentFunctionNoteStackingView - - - STACKING - Стиковка - - - - Chord: - Акорд: - - - - RANGE - ДІАПАЗОН - - - - Chord range: - Діапазон акорду: - - - - octave(s) - Октав[а/и] - - - - InstrumentMidiIOView - - - ENABLE MIDI INPUT - УВІМК MIDI ВХІД - - - - ENABLE MIDI OUTPUT - УВІМК MIDI ВИВІД - - - - - CHAN - This string must be be short, its width must be less than * width of LCD spin-box of two digits - - - - - - VELOC - This string must be be short, its width must be less than * width of LCD spin-box of three digits - - - - - PROG - This string must be be short, its width must be less than the * width of LCD spin-box of three digits - - - - - NOTE - This string must be be short, its width must be less than * width of LCD spin-box of three digits - NOTE - - - - MIDI devices to receive MIDI events from - MiDi пристрої-джерела подій - - - - MIDI devices to send MIDI events to - MiDi пристрої для відправки подій на них - - - - CUSTOM BASE VELOCITY - СВОЯ БАЗОВА ШВИДКІСТЬ - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. - - - - - BASE VELOCITY - БАЗОВА ШВИДКІСТЬ - - - - InstrumentTuningView - - - MASTER PITCH - ОСНОВНА ТОНАЛЬНІСТЬ - - - - Enables the use of master pitch - - InstrumentSoundShaping - + VOLUME VOLUME - + Volume Гучність - + CUTOFF CUTOFF - - + Cutoff frequency Зріз частоти - + RESO RESO - + Resonance Резонанс - - - Envelopes/LFOs - Обвідні/LFO - - - - Filter type - Тип фільтру - - - - Q/Resonance - Кіл./Резонансу - - - - Low-pass - - - - - Hi-pass - - - - - Band-pass csg - - - - - Band-pass czpg - - - - - Notch - Смуго-загороджуючий - - - - All-pass - - - - - Moog - Муг - - - - 2x Low-pass - - - - - RC Low-pass 12 dB/oct - - - - - RC Band-pass 12 dB/oct - - - - - RC High-pass 12 dB/oct - - - - - RC Low-pass 24 dB/oct - - - - - RC Band-pass 24 dB/oct - - - - - RC High-pass 24 dB/oct - - - - - Vocal Formant - - - - - 2x Moog - 2x Муг - - - - SV Low-pass - - - - - SV Band-pass - - - - - SV High-pass - - - - - SV Notch - SV Смуго-заг - - - - Fast Formant - Швидка форманта - - - - Tripole - Тріполі - - InstrumentSoundShapingView + JackAppDialog - - TARGET - ЦЕЛЬ - - - - FILTER - ФИЛЬТР - - - - FREQ - ЧАСТ - - - - Cutoff frequency: - Частота зрізу: - - - - Hz - Гц - - - - Q/RESO + + Add JACK Application - - Q/Resonance: + + Note: Features not implemented yet are greyed out - - Envelopes, LFOs and filters are not supported by the current instrument. - Обвідні, LFO і фільтри не підтримуються цим інструментом. - - - - InstrumentTrack - - - - unnamed_track - безіменна_доріжка - - - - Base note - Опорна нота - - - - First note + + Application - - Last note - По останій ноті - - - - Volume - Гучність - - - - Panning - Стерео - - - - Pitch - Тональність - - - - Pitch range - Діапазон тональності - - - - Mixer channel - Канал ЕФ - - - - Master pitch - Основна тональність - - - - Enable/Disable MIDI CC + + Name: - - CC Controller %1 + + Application: - - - Default preset - Основна предустановка - - - - InstrumentTrackView - - - Volume - Гучність - - - - Volume: - Гучність: - - - - VOL - ГУЧН - - - - Panning - Баланс - - - - Panning: - Баланс: - - - - PAN - БАЛ - - - - MIDI - MIDI - - - - Input - Вхід - - - - Output - Вихід - - - - Open/Close MIDI CC Rack + + From template - - Channel %1: %2 - ЕФ %1: %2 - - - - InstrumentTrackWindow - - - GENERAL SETTINGS - ОСНОВНІ НАЛАШТУВАННЯ + + Custom + - - Volume - Гучність + + Template: + - - Volume: - Гучність: + + Command: + - - VOL - ГУЧН + + Setup + - - Panning - Баланс + + Session Manager: + - - Panning: - Стереобаланс: + + None + - - PAN - БАЛ + + Audio inputs: + - - Pitch - Тональність + + MIDI inputs: + - - Pitch: - Тональність: + + Audio outputs: + - - cents - відсотків + + MIDI outputs: + - - PITCH - ТОН + + Take control of main application window + - - Pitch range (semitones) - Діапазон тональності (півтону) + + Workarounds + - - RANGE - ДІАПАЗОН + + Wait for external application start (Advanced, for Debug only) + - - Mixer channel - Канал ЕФ + + Capture only the first X11 Window + - - CHANNEL - ЕФ + + Use previous client output buffer as input for the next client + - - Save current instrument track settings in a preset file - Зберегти поточну інструментаьную доріжку в файл предустановок + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + - - SAVE - ЗБЕРЕГТИ + + Error here + - - Envelope, filter & LFO - Обвідна, фільтр & LFO - - - - Chord stacking & arpeggio - Укладання акордів & арпеджіо - - - - Effects - Ефекти - - - - MIDI - MIDI - - - - Miscellaneous - Різне - - - - Save preset - Зберегти передустановку - - - - XML preset file (*.xpf) - XML файл налаштувань (*.xpf) - - - - Plugin - Модуль - - - - JackApplicationW - - + NSM applications cannot use abstract or absolute paths - + NSM applications cannot use CLI arguments - + You need to save the current Carla project before NSM can be used @@ -6852,947 +2787,11 @@ Please make sure you have write permission to the file and the directory contain JuceAboutW - - About JUCE - - - - - <b>About JUCE</b> - - - - - This program uses JUCE version 3.x.x. - - - - - JUCE (Jules' Utility Class Extensions) is an all-encompassing C++ class library for developing cross-platform software. - -It contains pretty much everything you're likely to need to create most applications, and is particularly well-suited for building highly-customised GUIs, and for handling graphics and sound. - -JUCE is licensed under the GNU Public Licence version 2.0. -One module (juce_core) is permissively licensed under the ISC. - -Copyright (C) 2017 ROLI Ltd. - - - - + This program uses JUCE version %1. - - Knob - - - Set linear - Встановити лінійний - - - - Set logarithmic - Встановити логарифмічний - - - - - Set value - - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - Введіть нове значення від -96,0 дБFS до 6,0 дБFS: - - - - Please enter a new value between %1 and %2: - Введіть нове значення від %1 до %2: - - - - LadspaControl - - - Link channels - Зв'язати канали - - - - LadspaControlDialog - - - Link Channels - Зв'язати канали - - - - Channel - Канал - - - - LadspaControlView - - - Link channels - Зв'язати канали - - - - Value: - Значення: - - - - LadspaEffect - - - Unknown LADSPA plugin %1 requested. - Запитаний невідомий модуль LADSPA «%1». - - - - LcdFloatSpinBox - - - Set value - - - - - Please enter a new value between %1 and %2: - Введіть нове значення від %1 до %2: - - - - LcdSpinBox - - - Set value - - - - - Please enter a new value between %1 and %2: - Введіть нове значення від %1 до %2: - - - - LeftRightNav - - - - - Previous - Попередній - - - - - - Next - Наступний - - - - Previous (%1) - Попередній (%1) - - - - Next (%1) - Наступний (%1) - - - - LfoController - - - LFO Controller - Контролер LFO - - - - Base value - Основне значення - - - - Oscillator speed - Швидкість хвилі - - - - Oscillator amount - Розмір хвилі - - - - Oscillator phase - Фаза хвилі - - - - Oscillator waveform - Форма хвилі - - - - Frequency Multiplier - Множник частоти - - - - LfoControllerDialog - - - LFO - LFO - - - - BASE - БАЗА - - - - Base: - - - - - FREQ - ЧАСТ - - - - LFO frequency: - - - - - AMNT - ГЛИБ - - - - Modulation amount: - Кількість модуляції: - - - - PHS - ФАЗА - - - - Phase offset: - Зсув фази: - - - - degrees - - - - - Sine wave - Синусоїда - - - - Triangle wave - Трикутник - - - - Saw wave - Зигзаг - - - - Square wave - Квадратна хвиля - - - - Moog saw wave - Муг-зигзаг хвиля - - - - Exponential wave - Експоненціальна хвиля - - - - White noise - Білий шум - - - - User-defined shape. -Double click to pick a file. - - - - - Mutliply modulation frequency by 1 - - - - - Mutliply modulation frequency by 100 - - - - - Divide modulation frequency by 100 - - - - - Engine - - - Generating wavetables - Генерування синтезатора звукозаписів - - - - Initializing data structures - Ініціалізація структур даних - - - - Opening audio and midi devices - Відкриття аудіо та міді пристроїв - - - - Launching mixer threads - Запуск потоків міксера - - - - MainWindow - - - Configuration file - Файл налаштувань - - - - Error while parsing configuration file at line %1:%2: %3 - Помилка під час обробки файлу налаштувань в рядку %1:%2:%3 - - - - Could not open file - Не можу відкрити файл - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Не вдалось відкрити файл %1 для запису. -Перевірте, чи маєте ви права на запис файлу і каталог що його містить і спробуйте знову! - - - - Project recovery - Відновлення проекту - - - - There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - Присутній файл відновлення. Схоже, остання сесія не закінчилася належним чином або інший екземпляр LMMS вже запущений. Ви хочете, відновити проект цієї сесії? - - - - - Recover - Відновлення - - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - Відновлення файлу. Будь ласка, не запускайте кілька копій LMMS під час цієї операції. - - - - - Discard - Відкинути - - - - Launch a default session and delete the restored files. This is not reversible. - Запуск за замовчуванням з видаленням файла відновлення. Ця дія не відворотня. - - - - Version %1 - Версія %1 - - - - Preparing plugin browser - Підготовка браузера плагінів - - - - Preparing file browsers - Підготовка переглядача файлів - - - - My Projects - Мої проекти - - - - My Samples - Мої записи - - - - My Presets - Мої передустановки - - - - My Home - Моя домашня тека - - - - Root directory - Кореневий каталог - - - - Volumes - Гучності - - - - My Computer - Мій комп'ютер - - - - &File - &Файл - - - - &New - &N Новий - - - - &Open... - &O Відкрити... - - - - Loading background picture - - - - - &Save - &S Зберегти - - - - Save &As... - &A Зберегти як... - - - - Save as New &Version - Зберегти як нову &Версію - - - - Save as default template - Зберегти як шаблон за замовчуванням - - - - Import... - Імпорт... - - - - E&xport... - &X Експорт ... - - - - E&xport Tracks... - &Експортувати треки ... - - - - Export &MIDI... - Експорт в &MIDI ... - - - - &Quit - &Q Вийти - - - - &Edit - &E Редагування - - - - Undo - Скасувати - - - - Redo - Повторити - - - - Settings - Параметри - - - - &View - &V Перегляд - - - - &Tools - &T Сервіс - - - - &Help - &H Довідка - - - - Online Help - Онлайн Допомога - - - - Help - Довідка - - - - About - Про програму - - - - Create new project - Створити новий проект - - - - Create new project from template - Створити новий проект по шаблону - - - - Open existing project - Відкрити існуючий проект - - - - Recently opened projects - Нещодавні проекти - - - - Save current project - Зберегти поточний проект - - - - Export current project - Експорт проекту - - - - Metronome - - - - - - Song Editor - Музичний редактор - - - - - Beat+Bassline Editor - Редактор шаблонів - - - - - Piano Roll - Нотний редактор - - - - - Automation Editor - Редактор автоматизації - - - - - Mixer - Мікшер Ефектів - - - - Show/hide controller rack - Показати/сховати керування контролерами - - - - Show/hide project notes - Показати/сховати замітки до проекту - - - - Untitled - Без назви - - - - Recover session. Please save your work! - Відновлення сесії. Будь ласка, збережіть свою роботу! - - - - LMMS %1 - LMMS %1 - - - - Recovered project not saved - Відновлений проект не збережено - - - - This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? - Цей проект буво відновлено з попередньої сесії. В даний час він не збережений і буде втрачений, якщо ви його не збережете. Ви хочете, зберегти його зараз? - - - - Project not saved - Проект не збережений - - - - The current project was modified since last saving. Do you want to save it now? - Проект був змінений. Зберегти його зараз? - - - - Open Project - Відкрити проект - - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - - Save Project - Зберегти проект - - - - LMMS Project - LMMS проект - - - - LMMS Project Template - Шаблон LMMS проекту - - - - Save project template - Зберегти шаблон проекту - - - - Overwrite default template? - Переписати шаблон за замовчуванням? - - - - This will overwrite your current default template. - Це перезапише поточний шаблон за замовчуванням. - - - - Help not available - Довідка недоступна - - - - Currently there's no help available in LMMS. -Please visit http://lmms.sf.net/wiki for documentation on LMMS. - Поки що довідка для LMMS не написана. -Ймовірно, Ви зможете знайти потрібні матеріали на http://lmms.sf.net/wiki. - - - - Controller Rack - Стійка контролерів - - - - Project Notes - Примітки проекту - - - - Fullscreen - - - - - Volume as dBFS - Відображати гучність в децибелах - - - - Smooth scroll - Плавне прокручування - - - - Enable note labels in piano roll - Включити позначення нот у музичному редакторі - - - - MIDI File (*.mid) - MIDI-файл (* mid) - - - - - untitled - Без назви - - - - - Select file for project-export... - Вибір файлу для експорту проекту ... - - - - Select directory for writing exported tracks... - Виберіть теку для запису експортованих доріжок ... - - - - Save project - Зберегти проект - - - - Project saved - Проект збережено - - - - The project %1 is now saved. - Проект %1 збережено. - - - - Project NOT saved. - Проект НЕ ЗБЕРЕЖЕНО. - - - - The project %1 was not saved! - Проект %1 не збережено! - - - - Import file - Імпорт файлу - - - - MIDI sequences - MiDi послідовність - - - - Hydrogen projects - Hydrogen проекти - - - - All file types - Всі типи файлів - - - - MeterDialog - - - - Meter Numerator - Шкала чисел - - - - Meter numerator - - - - - - Meter Denominator - Шкала поділів - - - - Meter denominator - - - - - TIME SIG - ПЕРІОД - - - - MeterModel - - - Numerator - Чисельник - - - - Denominator - Знаменник - - - - MidiCCRackView - - - - MIDI CC Rack - %1 - - - - - MIDI CC Knobs: - - - - - CC %1 - - - - - MidiController - - - MIDI Controller - Контролер MIDI - - - - unnamed_midi_controller - нерозпізнаний міді контролер - - - - MidiImport - - - - Setup incomplete - Установку не завершено - - - - You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. - - - - - You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - Ви не увімкнули підтримку програвача SoundFont2 при компіляції LMMS, він використовується для додавання основного звуку в імпортовані Міді файли, тому після імпорту цього міді файлу звуку не буде. - - - - MIDI Time Signature Numerator - - - - - MIDI Time Signature Denominator - - - - - Numerator - Чисельник - - - - Denominator - Знаменник - - - - Track - Трек - - - - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - JACK-сервер не доступний - - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - Здається, сервер JACK відключений. - - MidiPatternW @@ -7998,2730 +2997,369 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. &Q Вийти - - &Insert Mode + + Esc + &Insert Mode + + + + F - + &Velocity Mode - + D - + Select All - + A - - MidiPort - - - Input channel - Вхід - - - - Output channel - Вихід - - - - Input controller - Контролер входу - - - - Output controller - Контролер виходу - - - - Fixed input velocity - Постійна швидкість введення - - - - Fixed output velocity - Постійна швидкість виведення - - - - Fixed output note - Постійний вихід нот - - - - Output MIDI program - Програма для виведення MiDi - - - - Base velocity - Базова швидкість - - - - Receive MIDI-events - Приймати події MIDI - - - - Send MIDI-events - Відправляти події MIDI - - - - MidiSetupWidget - - - Device - - - - - MonstroInstrument - - - Osc 1 volume - - - - - Osc 1 panning - - - - - Osc 1 coarse detune - - - - - Osc 1 fine detune left - - - - - Osc 1 fine detune right - - - - - Osc 1 stereo phase offset - - - - - Osc 1 pulse width - - - - - Osc 1 sync send on rise - - - - - Osc 1 sync send on fall - - - - - Osc 2 volume - - - - - Osc 2 panning - - - - - Osc 2 coarse detune - - - - - Osc 2 fine detune left - - - - - Osc 2 fine detune right - - - - - Osc 2 stereo phase offset - - - - - Osc 2 waveform - - - - - Osc 2 sync hard - - - - - Osc 2 sync reverse - - - - - Osc 3 volume - - - - - Osc 3 panning - - - - - Osc 3 coarse detune - - - - - Osc 3 Stereo phase offset - Зміщення стерео-фази осциллятора 3 - - - - Osc 3 sub-oscillator mix - - - - - Osc 3 waveform 1 - - - - - Osc 3 waveform 2 - - - - - Osc 3 sync hard - - - - - Osc 3 Sync reverse - - - - - LFO 1 waveform - - - - - LFO 1 attack - - - - - LFO 1 rate - - - - - LFO 1 phase - - - - - LFO 2 waveform - - - - - LFO 2 attack - - - - - LFO 2 rate - - - - - LFO 2 phase - - - - - Env 1 pre-delay - - - - - Env 1 attack - - - - - Env 1 hold - - - - - Env 1 decay - - - - - Env 1 sustain - - - - - Env 1 release - - - - - Env 1 slope - - - - - Env 2 pre-delay - - - - - Env 2 attack - - - - - Env 2 hold - - - - - Env 2 decay - - - - - Env 2 sustain - - - - - Env 2 release - - - - - Env 2 slope - - - - - Osc 2+3 modulation - - - - - Selected view - Перегляд обраного - - - - Osc 1 - Vol env 1 - - - - - Osc 1 - Vol env 2 - - - - - Osc 1 - Vol LFO 1 - - - - - Osc 1 - Vol LFO 2 - - - - - Osc 2 - Vol env 1 - - - - - Osc 2 - Vol env 2 - - - - - Osc 2 - Vol LFO 1 - - - - - Osc 2 - Vol LFO 2 - - - - - Osc 3 - Vol env 1 - - - - - Osc 3 - Vol env 2 - - - - - Osc 3 - Vol LFO 1 - - - - - Osc 3 - Vol LFO 2 - - - - - Osc 1 - Phs env 1 - - - - - Osc 1 - Phs env 2 - - - - - Osc 1 - Phs LFO 1 - - - - - Osc 1 - Phs LFO 2 - - - - - Osc 2 - Phs env 1 - - - - - Osc 2 - Phs env 2 - - - - - Osc 2 - Phs LFO 1 - - - - - Osc 2 - Phs LFO 2 - - - - - Osc 3 - Phs env 1 - - - - - Osc 3 - Phs env 2 - - - - - Osc 3 - Phs LFO 1 - - - - - Osc 3 - Phs LFO 2 - - - - - Osc 1 - Pit env 1 - - - - - Osc 1 - Pit env 2 - - - - - Osc 1 - Pit LFO 1 - - - - - Osc 1 - Pit LFO 2 - - - - - Osc 2 - Pit env 1 - - - - - Osc 2 - Pit env 2 - - - - - Osc 2 - Pit LFO 1 - - - - - Osc 2 - Pit LFO 2 - - - - - Osc 3 - Pit env 1 - - - - - Osc 3 - Pit env 2 - - - - - Osc 3 - Pit LFO 1 - - - - - Osc 3 - Pit LFO 2 - - - - - Osc 1 - PW env 1 - - - - - Osc 1 - PW env 2 - - - - - Osc 1 - PW LFO 1 - - - - - Osc 1 - PW LFO 2 - - - - - Osc 3 - Sub env 1 - - - - - Osc 3 - Sub env 2 - - - - - Osc 3 - Sub LFO 1 - - - - - Osc 3 - Sub LFO 2 - - - - - - Sine wave - Синусоїда - - - - Bandlimited Triangle wave - Трикутна хвиля з обмеженою смугою - - - - Bandlimited Saw wave - Зигзаг хвиля з обмеженою смугою - - - - Bandlimited Ramp wave - Спадаюча хвиля з обмеженою смугою - - - - Bandlimited Square wave - Квадратна хвиля з обмеженою смугою - - - - Bandlimited Moog saw wave - Муг-зигзаг хвиля з обмеженою смугою - - - - - Soft square wave - М'яка прямокутна хвиля - - - - Absolute sine wave - Абсолютна синусоїдна хвиля - - - - - Exponential wave - Експоненціальна хвиля - - - - White noise - Білий шум - - - - Digital Triangle wave - Цифрова трикутна хвиля - - - - Digital Saw wave - Цифрова зигзаг хвиля - - - - Digital Ramp wave - Цифрова спадна хвиля - - - - Digital Square wave - Цифрова квадратна хвиля - - - - Digital Moog saw wave - Цифрова Муг-зигзаг хвиля - - - - Triangle wave - Трикутна хвиля - - - - Saw wave - Зигзаг - - - - Ramp wave - Спадна хвиля - - - - Square wave - Квадратна хвиля - - - - Moog saw wave - Муг-зигзаг хвиля - - - - Abs. sine wave - Синусоїда по модулю - - - - Random - Випадково - - - - Random smooth - Випадкове зглажування - - - - MonstroView - - - Operators view - Операторский вид - - - - Matrix view - Матричний вигляд - - - - - - Volume - Гучність - - - - - - Panning - Баланс - - - - - - Coarse detune - Грубе підстроювання - - - - - - semitones - півтон(а,ів) - - - - - Fine tune left - - - - - - - - cents - відсотків - - - - - Fine tune right - - - - - - - Stereo phase offset - Зміщення стерео-фази - - - - - - - - deg - град - - - - Pulse width - Довжина імпульсу - - - - Send sync on pulse rise - Відправляти синхронізацію на підйомі імпульсу - - - - Send sync on pulse fall - Відправити синхронізацію на падінні пульсу - - - - Hard sync oscillator 2 - Жорстка синхронізація осциллятора 2 - - - - Reverse sync oscillator 2 - Верерс синхронізація осциллятора 2 - - - - Sub-osc mix - Мікс суб-осциляторів - - - - Hard sync oscillator 3 - Жорстка синхронізація осциллятора 3 - - - - Reverse sync oscillator 3 - Верерс синхронізація осциллятора 3 - - - - - - - Attack - Вступ - - - - - Rate - Частота вибірки - - - - - Phase - Фаза - - - - - Pre-delay - Передзатримка - - - - - Hold - Утримання - - - - - Decay - Згасання - - - - - Sustain - Витримка - - - - - Release - Зменшення - - - - - Slope - Нахил - - - - Mix osc 2 with osc 3 - - - - - Modulate amplitude of osc 3 by osc 2 - - - - - Modulate frequency of osc 3 by osc 2 - - - - - Modulate phase of osc 3 by osc 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Modulation amount - Глибина модуляції - - - - MultitapEchoControlDialog - - - Length - Довжина - - - - Step length: - Довжина кроку: - - - - Dry - Сухий - - - - Dry gain: - - - - - Stages - Етапи - - - - Low-pass stages: - - - - - Swap inputs - Обмін входами - - - - Swap left and right input channels for reflections - - - - - NesInstrument - - - Channel 1 coarse detune - - - - - Channel 1 volume - Гучність першого каналу - - - - Channel 1 envelope length - - - - - Channel 1 duty cycle - - - - - Channel 1 sweep amount - - - - - Channel 1 sweep rate - - - - - Channel 2 Coarse detune - Грубе підстроювання 2 каналу - - - - Channel 2 Volume - Гучність 2 каналу - - - - Channel 2 envelope length - - - - - Channel 2 duty cycle - - - - - Channel 2 sweep amount - - - - - Channel 2 sweep rate - - - - - Channel 3 coarse detune - - - - - Channel 3 volume - Гучність третього каналу - - - - Channel 4 volume - Гучність четвертого каналу - - - - Channel 4 envelope length - - - - - Channel 4 noise frequency - - - - - Channel 4 noise frequency sweep - - - - - Master volume - Основна гучність - - - - Vibrato - Вібрато - - - - NesInstrumentView - - - - - - Volume - Гучність - - - - - - Coarse detune - Грубе підстроювання - - - - - - Envelope length - Довжина обвідної - - - - Enable channel 1 - Увімкнути канал 1 - - - - Enable envelope 1 - Увімкнути обвідну 1 - - - - Enable envelope 1 loop - Увімкнти повтор обвідної 1 - - - - Enable sweep 1 - Увімкнути розгортку 1 - - - - - Sweep amount - Кількість розгортки - - - - - Sweep rate - Темп розгортки - - - - - 12.5% Duty cycle - 12.5% Робочого циклу - - - - - 25% Duty cycle - 25% Робочого циклу - - - - - 50% Duty cycle - 50% Робочого циклу - - - - - 75% Duty cycle - 75% Робочого циклу - - - - Enable channel 2 - Увімкнути канал 2 - - - - Enable envelope 2 - Увімкнути обвідну 2 - - - - Enable envelope 2 loop - Увімкнти повтор обвідної 2 - - - - Enable sweep 2 - Увімкнути розгортку 2 - - - - Enable channel 3 - Увімкнути канал 3 - - - - Noise Frequency - Частота шуму - - - - Frequency sweep - Частота темпу - - - - Enable channel 4 - Увімкнути канал 4 - - - - Enable envelope 4 - Увімкнути обвідну 4 - - - - Enable envelope 4 loop - Увімкнти повтор обвідної 4 - - - - Quantize noise frequency when using note frequency - Квантування частоту шуму при використанні частоти ноти - - - - Use note frequency for noise - Використовувати частоту ноти для шуму - - - - Noise mode - Форма шуму - - - - Master volume - Основна гучність - - - - Vibrato - Вібрато - - - - OpulenzInstrument - - - Patch - Патч - - - - Op 1 attack - - - - - Op 1 decay - - - - - Op 1 sustain - - - - - Op 1 release - - - - - Op 1 level - - - - - Op 1 level scaling - - - - - Op 1 frequency multiplier - - - - - Op 1 feedback - - - - - Op 1 key scaling rate - - - - - Op 1 percussive envelope - - - - - Op 1 tremolo - - - - - Op 1 vibrato - - - - - Op 1 waveform - - - - - Op 2 attack - - - - - Op 2 decay - - - - - Op 2 sustain - - - - - Op 2 release - - - - - Op 2 level - - - - - Op 2 level scaling - - - - - Op 2 frequency multiplier - - - - - Op 2 key scaling rate - - - - - Op 2 percussive envelope - - - - - Op 2 tremolo - - - - - Op 2 vibrato - - - - - Op 2 waveform - - - - - FM - FM - - - - Vibrato depth - - - - - Tremolo depth - - - - - OpulenzInstrumentView - - - - Attack - Вступ - - - - - Decay - Згасання - - - - - Release - Зменшення - - - - - Frequency multiplier - Множник частоти - - - - OscillatorObject - - - Osc %1 waveform - Форма сигналу осциллятора %1 - - - - Osc %1 harmonic - Осц %1 гармонійний - - - - - Osc %1 volume - Гучність осциллятора %1 - - - - - Osc %1 panning - Стереобаланс для осциллятора %1 - - - - - Osc %1 fine detuning left - Точне підстроювання лівого каналу осциллятора %1 - - - - Osc %1 coarse detuning - Підстроювання осциллятора %1 грубе - - - - Osc %1 fine detuning right - Підстроювання правого каналу осциллятора %1 тонка - - - - Osc %1 phase-offset - Зміщення фази осциллятора %1 - - - - Osc %1 stereo phase-detuning - Підстроювання стерео-фази осциллятора %1 - - - - Osc %1 wave shape - Гладкість сигналу осциллятора %1 - - - - Modulation type %1 - Тип модуляції %1 - - - - Oscilloscope - - - Oscilloscope - - - - - Click to enable - Натисніть для включення - - PatchesDialog + Qsynth: Channel Preset Q-Синтезатор: Канал передустановлено + Bank selector Селектор банку + Bank Банк + Program selector Селектор програм + Patch Патч + Name І'мя + OK ОК + Cancel Скасувати - - PatmanView - - - Open patch - - - - - Loop - Повтор - - - - Loop mode - Режим повтору - - - - Tune - Підлаштувати - - - - Tune mode - Тип підстроювання - - - - No file selected - Файл не вибрано - - - - Open patch file - Відкрити патч-файл - - - - Patch-Files (*.pat) - Патч-файли (*.pat) - - - - MidiClipView - - - Open in piano-roll - Відкрити в редакторі нот - - - - Set as ghost in piano-roll - - - - - Clear all notes - Очистити всі ноти - - - - Reset name - Скинути назву - - - - Change name - Перейменувати - - - - Add steps - Додати такти - - - - Remove steps - Видалити такти - - - - Clone Steps - Клонувати такти - - - - PeakController - - - Peak Controller - Контролер вершин - - - - Peak Controller Bug - Контролер вершин з багом - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - Через помилку в старій версії LMMS контролери вершин не можуть правильно підключатися. Будь-ласка переконайтеся, що контролери вершин правильно приєднані і перезбережіть цей файл, вибачте, за заподіяні незручності. - - - - PeakControllerDialog - - - PEAK - ПІК - - - - LFO Controller - Контролер LFO - - - - PeakControllerEffectControlDialog - - - BASE - БАЗА - - - - Base: - - - - - AMNT - ГЛИБ - - - - Modulation amount: - Глибина модуляції: - - - - MULT - МНОЖ - - - - Amount multiplicator: - - - - - ATCK - ВСТУП - - - - Attack: - Вступ: - - - - DCAY - ЗГАС - - - - Release: - Зменшення: - - - - TRSH - TRSH - - - - Treshold: - Поріг: - - - - Mute output - Заглушити вивід - - - - Absolute value - - - - - PeakControllerEffectControls - - - Base value - Опорне значення - - - - Modulation amount - Глибина модуляції - - - - Attack - Вступ - - - - Release - Зменшення - - - - Treshold - Поріг - - - - Mute output - Заглушити вивід - - - - Absolute value - - - - - Amount multiplicator - - - - - PianoRoll - - - Note Velocity - Гучність нот - - - - Note Panning - Стереофонія нот - - - - Mark/unmark current semitone - Відмітити/Зняти відмітку з поточного півтону - - - - Mark/unmark all corresponding octave semitones - Відмітити/Зняти всі відповідні півтони октави - - - - Mark current scale - Відмітити поточний підйом - - - - Mark current chord - Відмітити поточний акорд - - - - Unmark all - Зняти виділення - - - - Select all notes on this key - Вибрати всі ноти на цій тональності - - - - Note lock - Фіксація нот - - - - Last note - По останій ноті - - - - No key - - - - - No scale - Без підйому - - - - No chord - Прибрати акорди - - - - Nudge - - - - - Snap - - - - - Velocity: %1% - Гучність %1% - - - - Panning: %1% left - Баланс %1% лівий - - - - Panning: %1% right - Баланс %1% правий - - - - Panning: center - Баланс: по середині - - - - Glue notes failed - - - - - Please select notes to glue first. - - - - - Please open a clip by double-clicking on it! - Відкрийте шаблон за допомогою подвійного клацання мишею! - - - - - Please enter a new value between %1 and %2: - Введіть нове значення від %1 до %2: - - - - PianoRollWindow - - - Play/pause current clip (Space) - Гра/Пауза поточної мелодії (Пробіл) - - - - Record notes from MIDI-device/channel-piano - Записати ноти з цифрового музичного інструмента (MIDI) - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - Записати ноти з цифрового музичного інструменту (MIDI) під час відтворення пісні або доріжки Ритм-Басу - - - - Record notes from MIDI-device/channel-piano, one step at the time - - - - - Stop playing of current clip (Space) - Зупинити програвання поточної мелодії (Пробіл) - - - - Edit actions - Зміна - - - - Draw mode (Shift+D) - Режим малювання (Shift + D) - - - - Erase mode (Shift+E) - Режим стирання (Shift+E) - - - - Select mode (Shift+S) - Режим вибору нот (Shift+S) - - - - Pitch Bend mode (Shift+T) - Режим Pitch Bend (Shift+T) - - - - Quantize - Квантовать - - - - Quantize positions - - - - - Quantize lengths - - - - - File actions - - - - - Import clip - - - - - - Export clip - - - - - Copy paste controls - Управління копіюванням та вставкою - - - - Cut (%1+X) - - - - - Copy (%1+C) - - - - - Paste (%1+V) - - - - - Timeline controls - Управління хронологією - - - - Glue - - - - - Knife - - - - - Fill - - - - - Cut overlaps - - - - - Min length as last - - - - - Max length as last - - - - - Zoom and note controls - Управління масштабом і нотами - - - - Horizontal zooming - - - - - Vertical zooming - - - - - Quantization - Квантування - - - - Note length - - - - - Key - - - - - Scale - - - - - Chord - - - - - Snap mode - - - - - Clear ghost notes - - - - - - Piano-Roll - %1 - Нотний редактор - %1 - - - - - Piano-Roll - no clip - Нотний редактор - без шаблону - - - - - XML clip file (*.xpt *.xptz) - - - - - Export clip success - - - - - Clip saved to %1 - - - - - Import clip. - - - - - You are about to import a clip, this will overwrite your current clip. Do you want to continue? - - - - - Open clip - - - - - Import clip success - - - - - Imported clip %1! - - - - - PianoView - - - Base note - Опорна нота - - - - First note - - - - - Last note - По останій ноті - - - - Plugin - - - Plugin not found - Модуль не знайдено - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - Модуль «%1» відсутній чи не може бути завантажений! -Причина: «%2» - - - - Error while loading plugin - Помилка завантаження модуля - - - - Failed to load plugin "%1"! - Не вдалося завантажити модуль «%1»! - - PluginBrowser - - Instrument Plugins - Модулі інструментів - - - - Instrument browser - Огляд інструментів - - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - Ви можете переносити потрібні вам інструменти з цієї панелі в музичний, ритм-бас редактор або в існуючу доріжку інструменту. - - - + no description опис відсутній - + A native amplifier plugin Рідний плагін підсилення - + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track Простий семплер з різними налаштуваннями для використання записів (наприклад, ударні) в інструментальному трекі - + Boost your bass the fast and simple way Накачай свій бас швидко і просто - + Customizable wavetable synthesizer Налаштовуваний синтезатор звукозаписів (wavetable) - + An oversampling bitcrusher Перевибірка малого дробдення - + Carla Patchbay Instrument Carla Комутаційний інструмент - + Carla Rack Instrument Carla підставочний інструмент - + A dynamic range compressor. - + A 4-band Crossover Equalizer 4-смуговий еквалайзер Кросовер - + A native delay plugin Рідний плагін затримки - + A Dual filter plugin Плагін подвійного фільтру - + plugin for processing dynamics in a flexible way плагін для обробки динаміки гнучким методом - + A native eq plugin Рідний eq плагін - + A native flanger plugin Рідний фланжер плагін - + Emulation of GameBoy (TM) APU Емуляція GameBoy (ТМ) - + Player for GIG files Програвач GIG файлів - + Filter for importing Hydrogen files into LMMS Фільтр для імпорту Hydrogen файлів в LMMS - + Versatile drum synthesizer Універсальний барабанний синтезатор - + List installed LADSPA plugins Показати встановлені модулі LADSPA - + plugin for using arbitrary LADSPA-effects inside LMMS. Модуль, що дозволяє використовувати в LMMS будь які ефекти LADSPA. - + Incomplete monophonic imitation TB-303 - Незавершена монофонічна імітація TB-303 + - + plugin for using arbitrary LV2-effects inside LMMS. - + plugin for using arbitrary LV2 instruments inside LMMS. - + Filter for exporting MIDI-files from LMMS Фільтри для експорту MIDI-файлів з LMMS - + Filter for importing MIDI-files into LMMS Фільтр для включення файлу MIDI в проект ЛММС - + Monstrous 3-oscillator synth with modulation matrix Монстро 3-осцилляторний синт з матрицею модуляції - + A multitap echo delay plugin Плагін багаторазової послідовної затримки відлуння - + A NES-like synthesizer NES-подібний синтезатор - + 2-operator FM Synth 2-режимний синт модуляції частот (FM synth) - + Additive Synthesizer for organ-like sounds Синтезатор звуків нашталт органу - + GUS-compatible patch instrument Патч-інструмент, сумісний з GUS - + Plugin for controlling knobs with sound peaks Модуль для встановлення значень регуляторів на піках гучності - + Reverb algorithm by Sean Costello Алгоритм реверберації Шона Костелло - + Player for SoundFont files Програвач файлів SoundFont - + LMMS port of sfxr LMMS порт SFXR - + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Емуляція MOS6581 і MOS8580. Використовувалося на комп'ютері Commodore 64. - + A graphical spectrum analyzer. - + Plugin for enhancing stereo separation of a stereo input file Модуль, що підсилює різницю між каналами стереозапису - + Plugin for freely manipulating stereo output Модуль для довільного управління стереовиходом - + Tuneful things to bang on Мелодійні ударні - + Three powerful oscillators you can modulate in several ways Три потужних генераторів можна модулювати декількома способами - + A stereo field visualizer. - + VST-host for using VST(i)-plugins within LMMS VST - хост для підтримки модулів VST(i) в LMMS - + Vibrating string modeler Емуляція вібруючих струн - + plugin for using arbitrary VST effects inside LMMS. плагін для використання довільних VST ефектів всередині LMMS. - + 4-oscillator modulatable wavetable synth 4-генераторний модулюючий синтезатор звукозаписів - + plugin for waveshaping плагін формування сигналу - + Mathematical expression parser - + Embedded ZynAddSubFX Вбудований ZynAddSubFX - - - PluginDatabaseW - - Carla - Add New + + An all-pass filter allowing for extremely high orders. - - Format + + Granular pitch shifter - - Internal + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. - - LADSPA + + Basic Slicer - - DSSI - - - - - LV2 - - - - - VST2 - - - - - VST3 - - - - - AU - - - - - Sound Kits - - - - - Type - Тип - - - - Effects - Ефекти - - - - Instruments - Інструменти - - - - MIDI Plugins - - - - - Other/Misc - - - - - Architecture - - - - - Native - - - - - Bridged - - - - - Bridged (Wine) - - - - - Requirements - - - - - With Custom GUI - - - - - With CV Ports - - - - - Real-time safe only - - - - - Stereo only - - - - - With Inline Display - - - - - Favorites only - - - - - (Number of Plugins go here) - - - - - &Add Plugin - - - - - Cancel - Скасувати - - - - Refresh - - - - - Reset filters - - - - - - - - - - - - - - - - - - - - TextLabel - - - - - Format: - - - - - Architecture: - - - - - Type: - Тип: - - - - MIDI Ins: - - - - - Audio Ins: - - - - - CV Outs: - - - - - MIDI Outs: - - - - - Parameter Ins: - - - - - Parameter Outs: - - - - - Audio Outs: - - - - - CV Ins: - - - - - UniqueID: - - - - - Has Inline Display: - - - - - Has Custom GUI: - - - - - Is Synth: - - - - - Is Bridged: - - - - - Information - - - - - Name - І'мя - - - - Label/URI - - - - - Maker - - - - - Binary/Filename - - - - - Focus Text Search - - - - - Ctrl+F + + Tap to the beat @@ -10820,93 +3458,98 @@ This chip was used in the Commodore 64 computer. - Send Bank/Program Changes + Send Notes - Send Control Changes + Send Bank/Program Changes - Send Channel Pressure + Send Control Changes - Send Note Aftertouch + Send Channel Pressure - Send Pitchbend + Send Note Aftertouch + Send Pitchbend + + + + Send All Sound/Notes Off - + Plugin Name - + Program: - + MIDI Program: - + Save State - + Load State - + Information - + Label/URI: - + Name: - + Type: Тип: - + Maker: - + Copyright: - + Unique ID: @@ -10914,16 +3557,457 @@ Plugin Name PluginFactory - + Plugin not found. Модуль не знайдено. - + LMMS plugin %1 does not have a plugin descriptor named %2! LMMS плагін %1 не має опису плагіна з ім'ям %2! + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + PluginParameter @@ -10938,157 +4022,61 @@ Plugin Name + TextLabel + + + + ... - PluginRefreshW + PluginRefreshDialog - - Carla - Refresh + + Plugin Refresh - - Search for new... + + Search for: - - LADSPA + + All plugins, ignoring cache - - DSSI + + Updated plugins only - - LV2 + + Check previously invalid plugins - - VST2 - - - - - VST3 - - - - - AU - - - - - SF2/3 - - - - - SFZ - - - - - Native - - - - - POSIX 32bit - - - - - POSIX 64bit - - - - - Windows 32bit - - - - - Windows 64bit - - - - - Available tools: - - - - - python3-rdflib (LADSPA-RDF support) - - - - - carla-discovery-win64 - - - - - carla-discovery-native - - - - - carla-discovery-posix32 - - - - - carla-discovery-posix64 - - - - - carla-discovery-win32 - - - - - Options: - - - - - Carla will run small processing checks when scanning the plugins (to make sure they won't crash). -You can disable these checks to get a faster scanning time (at your own risk). - - - - - Run processing checks while scanning - - - - + Press 'Scan' to begin the search - + Scan - + >> Skip - + Close - Закрити + @@ -11103,50 +4091,50 @@ You can disable these checks to get a faster scanning time (at your own risk). - + Enable - + On/Off Увімк/Вимк - + - + PluginName - + MIDI MIDI - + AUDIO IN - + AUDIO OUT - + GUI - + Edit - + Remove @@ -11161,2286 +4149,13561 @@ You can disable these checks to get a faster scanning time (at your own risk). - - ProjectNotes - - - Project Notes - Примітки проекту - - - - Enter project notes here - Напишіть примітки до проекту тут - - - - Edit Actions - Зміна - - - - &Undo - &U Скасувати - - - - %1+Z - %1+Z - - - - &Redo - &R Повторити - - - - %1+Y - %1+Y - - - - &Copy - &C Копіювати - - - - %1+C - %1+C - - - - Cu&t - &t Вирізати - - - - %1+X - %1+X - - - - &Paste - &P Вставити - - - - %1+V - %1+V - - - - Format Actions - Форматування - - - - &Bold - Напів&жирний - - - - %1+B - %1+B - - - - &Italic - &Курсив - - - - %1+I - %1+I - - - - &Underline - &Підкреслити - - - - %1+U - %1+U - - - - &Left - По &лівому краю - - - - %1+L - %1+L - - - - C&enter - По &центрі - - - - %1+E - %1+E - - - - &Right - По &правому краю - - - - %1+R - %1+R - - - - &Justify - По &ширині - - - - %1+J - %1+J - - - - &Color... - &C Колір... - - ProjectRenderer - + WAV (*.wav) - + FLAC (*.flac) - + OGG (*.ogg) - + MP3 (*.mp3) + + QGroupBox + + + + Settings for %1 + + + QObject - + Reload Plugin - + Show GUI Показати інтерфейс - + Help Довідка + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + QWidget - - - - + + Name: І'мя: - - URI: - - - - - - + Maker: Розробник: - - - + Copyright: Авторське право: - - + Requires Real Time: Потрібна обробка в реальному часі: - - - - - - + + + Yes Так - - - - - - + + + No Ні - - + Real Time Capable: Робота в реальному часі: - - + In Place Broken: Замість зламаного: - - + Channels In: Канали в: - - + Channels Out: Канали з: - + File: %1 Файл: %1 - + File: Файл: - RecentProjectsMenu + XYControllerW - - &Recently Opened Projects - &Нещодавно відкриті проекти + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + - RenameDialog + lmms::AmplifierControls - - Rename... - Перейменувати ... + + Volume + + + + + Panning + + + + + Left gain + + + + + Right gain + - ReverbSCControlDialog + lmms::AudioFileProcessor - - Input - Ввід + + Amplify + - - Input gain: - Вхідне підсилення: + + Start of sample + - - Size - Розмір + + End of sample + - - Size: - Розмір: + + Loopback point + - - Color - Колір + + Reverse sample + - - Color: - Колір: + + Loop mode + - - Output - Вивід + + Stutter + - - Output gain: - Вихідне підсилення: + + Interpolation mode + + + + + None + + + + + Linear + + + + + Sinc + + + + + Sample not found + - ReverbSCControls + lmms::AudioJack - + + JACK client restarted + + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + + + + + Client name + + + + + Channels + + + + + lmms::AudioOss + + + Device + + + + + Channels + + + + + lmms::AudioPortAudio::setupWidget + + + Backend + + + + + Device + + + + + lmms::AudioPulseAudio + + + Device + + + + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + + + + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + + Gain + + + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + Input gain - Вхідне підсилення + - - Size - Розмір + + Input noise + - - Color - Колір + + Output gain + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + + + + + Output gain + + + + + Attack time + + + + + Release time + + + + + Stereo mode + + + + + lmms::Effect + + + Effect enabled + + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + + + + + Denominator + + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + Input gain + + + + + Size + + + + + Color + + + + Output gain - Вихідне підсилення + - SaControls + lmms::SaControls - + Pause - + Reference freeze - + Waterfall - + Averaging - - - Stereo - Стерео - - - - Peak hold - - - Logarithmic frequency + Stereo - Logarithmic amplitude + Peak hold + + + + + Logarithmic frequency - Frequency range - - - - - Amplitude range - - - - - FFT block size + Logarithmic amplitude - FFT window type + Frequency range + + + + + Amplitude range + + + + + FFT block size - Peak envelope resolution - - - - - Spectrum display resolution - - - - - Peak decay multiplier + FFT window type - Averaging weight + Peak envelope resolution - Waterfall history size + Spectrum display resolution - Waterfall gamma correction + Peak decay multiplier - FFT window overlap + Averaging weight + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + FFT zero padding - - + + Full (auto) - - + + Audible - + Bass - Бас + - + Mids - + High - + Extended - + Loud - + Silent - + (High time res.) - + (High freq. res.) - + Rectangular (Off) - + Blackman-Harris (Default) - + Hamming - + Hanning - SaControlsDialog + lmms::SampleClip - - Pause - - - - - Pause data acquisition - - - - - Reference freeze - - - - - Freeze current input as a reference / disable falloff in peak-hold mode. - - - - - Waterfall - - - - - Display real-time spectrogram - - - - - Averaging - - - - - Enable exponential moving average - - - - - Stereo - Стерео - - - - Display stereo channels separately - - - - - Peak hold - - - - - Display envelope of peak values - - - - - Logarithmic frequency - - - - - Switch between logarithmic and linear frequency scale - - - - - - Frequency range - - - - - Logarithmic amplitude - - - - - Switch between logarithmic and linear amplitude scale - - - - - - Amplitude range - - - - - Envelope res. - - - - - Increase envelope resolution for better details, decrease for better GUI performance. - - - - - - Draw at most - - - - - envelope points per pixel - - - - - Spectrum res. - - - - - Increase spectrum resolution for better details, decrease for better GUI performance. - - - - - spectrum points per pixel - - - - - Falloff factor - - - - - Decrease to make peaks fall faster. - - - - - Multiply buffered value by - - - - - Averaging weight - - - - - Decrease to make averaging slower and smoother. - - - - - New sample contributes - - - - - Waterfall height - - - - - Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. - - - - - Keep - - - - - lines - - - - - Waterfall gamma - - - - - Decrease to see very weak signals, increase to get better contrast. - - - - - Gamma value: - - - - - Window overlap - - - - - Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. - - - - - Each sample processed - - - - - times - - - - - Zero padding - - - - - Increase to get smoother-looking spectrum. Warning: high CPU usage. - - - - - Processing buffer is - - - - - steps larger than input block - - - - - Advanced settings - - - - - Access advanced settings - - - - - - FFT block size - - - - - - FFT window type + + Sample not found - SampleBuffer + lmms::SampleTrack - - Fail to open file - Не вдається відкрити файл - - - - Audio files are limited to %1 MB in size and %2 minutes of playing time - Аудіофайли обмежено розміром в %1 МБ і %2 хвилин(и) програвання - - - - Open audio file - Відкрити звуковий файл - - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - Всі Аудіо-файли (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - - Wave-Files (*.wav) - Файли Wave (*.wav) - - - - OGG-Files (*.ogg) - Файли OGG (*.ogg) - - - - DrumSynth-Files (*.ds) - Файли DrumSynth (*.ds) - - - - FLAC-Files (*.flac) - Файли FLAC (*.flac) - - - - SPEEX-Files (*.spx) - Файли SPEEX (*.spx) - - - - VOC-Files (*.voc) - Файли VOC (*.voc) - - - - AIFF-Files (*.aif *.aiff) - Файли AIFF (*.aif *.aiff) - - - - AU-Files (*.au) - Файли AU (*.au) - - - - RAW-Files (*.raw) - Файли RAW (*.raw) - - - - SampleClipView - - - Double-click to open sample - - - - - Delete (middle mousebutton) - Видалити (середня кнопка мишки) - - - - Delete selection (middle mousebutton) - - - - - Cut - Вирізати - - - - Cut selection - - - - - Copy - Копіювати - - - - Copy selection - - - - - Paste - Вставити - - - - Mute/unmute (<%1> + middle click) - Заглушити/включити (<%1> + середня кнопка миші) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Reverse sample - Перевернути запис - - - - Set clip color - - - - - Use track color - - - - - SampleTrack - - + Volume - Гучність + - + Panning - Баланс + - + Mixer channel - Канал ЕФ + - - + + Sample track - Доріжка запису - - - - SampleTrackView - - - Track volume - Гучність доріжки - - - - Channel volume: - Гучність каналу: - - - - VOL - ГУЧН - - - - Panning - Баланс - - - - Panning: - Баланс: - - - - PAN - БАЛ - - - - Channel %1: %2 - ЕФ %1: %2 - - - - SampleTrackWindow - - - GENERAL SETTINGS - ОСНОВНІ НАЛАШТУВАННЯ - - - - Sample volume - - - - - Volume: - Гучність: - - - - VOL - ГУЧН - - - - Panning - Баланс - - - - Panning: - Баланс: - - - - PAN - БАЛ - - - - Mixer channel - Канал ЕФ - - - - CHANNEL - ЕФ - - - - SaveOptionsWidget - - - Discard MIDI connections - - - - - Save As Project Bundle (with resources) - SetupDialog + lmms::Scale - - Reset to default value + + empty - - - Use built-in NaN handler - Використовувати вбудований обробник NaN - - - - Settings - Параметри - - - - - General - - - - - Graphical user interface (GUI) - - - - - Display volume as dBFS - Відображати гучність в децибелах - - - - Enable tooltips - Включити підказки - - - - Enable master oscilloscope by default - - - - - Enable all note labels in piano roll - - - - - Enable compact track buttons - - - - - Enable one instrument-track-window mode - - - - - Show sidebar on the right-hand side - - - - - Let sample previews continue when mouse is released - - - - - Mute automation tracks during solo - - - - - Show warning when deleting tracks - - - - - Projects - - - - - Compress project files by default - - - - - Create a backup file when saving a project - - - - - Reopen last project on startup - - - - - Language - - - - - - Performance - - - - - Autosave - - - - - Enable autosave - - - - - Allow autosave while playing - - - - - User interface (UI) effects vs. performance - - - - - Smooth scroll in song editor - - - - - Display playback cursor in AudioFileProcessor - - - - - Plugins - Модулі - - - - VST plugins embedding: - - - - - No embedding - Не встановлено - - - - Embed using Qt API - Встановлення використовуючи Qt API - - - - Embed using native Win32 API - Встановлення використовуючи рідний Win32 API - - - - Embed using XEmbed protocol - Встановлення використовуючи протокол XEmbed - - - - Keep plugin windows on top when not embedded - Тримати вікна плагінів наверху, коли вони від'єднані - - - - Sync VST plugins to host playback - Синхронізувати VST плагіни з хостом відтворення - - - - Keep effects running even without input - Продовжувати роботу ефектів навіть без вхідного сигналу - - - - - Audio - Аудіо - - - - Audio interface - - - - - HQ mode for output audio device - - - - - Buffer size - - - - - - MIDI - MIDI - - - - MIDI interface - - - - - Automatically assign MIDI controller to selected track - - - - - LMMS working directory - Робочий каталог LMMS - - - - VST plugins directory - - - - - LADSPA plugins directories - - - - - SF2 directory - Каталог SF2 - - - - Default SF2 - - - - - GIG directory - Каталог GIG - - - - Theme directory - - - - - Background artwork - Фонове зображення - - - - Some changes require restarting. - - - - - Autosave interval: %1 - - - - - Choose the LMMS working directory - - - - - Choose your VST plugins directory - - - - - Choose your LADSPA plugins directory - - - - - Choose your default SF2 - - - - - Choose your theme directory - - - - - Choose your background picture - - - - - - Paths - Шляхи - - - - OK - ОК - - - - Cancel - Скасувати - - - - Frames: %1 -Latency: %2 ms - Фрагментів: %1 -Затримка: %2 мс - - - - Choose your GIG directory - Виберіть каталог GIG - - - - Choose your SF2 directory - Виберіть каталог SF2 - - - - minutes - хвилин - - - - minute - хвилина - - - - Disabled - Вимкнено - - SidInstrument + lmms::Sf2Instrument - + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + Cutoff frequency - Зріз частоти + - + Resonance - Резонанс + + + + + Filter type + - Filter type - Тип фільтру - - - Voice 3 off - Голос 3 відкл + - + Volume - Гучність + - + Chip model - Модель чіпа - - - - SidInstrumentView - - - Volume: - Гучність: - - - - Resonance: - Підсилення: - - - - - Cutoff frequency: - Частота зрізу: - - - - High-pass filter - - - - - Band-pass filter - - - - - Low-pass filter - - - - - Voice 3 off - - - - - MOS6581 SID - MOS6581 SID - - - - MOS8580 SID - MOS8580 SID - - - - - Attack: - Вступ: - - - - - Decay: - Згасання: - - - - Sustain: - Витримка: - - - - - Release: - Зменшення: - - - - Pulse Width: - Довжина імпульсу: - - - - Coarse: - Грубість: - - - - Pulse wave - - - - - Triangle wave - Трикутник - - - - Saw wave - Зигзаг - - - - Noise - Шум - - - - Sync - Синхро - - - - Ring modulation - - - - - Filtered - Відфільтрований - - - - Test - Тест - - - - Pulse width: - SideBarWidget + lmms::SlicerT - - Close - Закрити + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + - Song + lmms::Song - + Tempo - Темп + - + Master volume - Основна гучність + - + Master pitch - Основна тональність - - - - Aborting project load + Aborting project load + + + + Project file contains local paths to plugins, which could be used to run malicious code. - + Can't load project: Project file contains local paths to plugins. - + LMMS Error report - Повідомлення про помилку в LMMS + - + (repeated %1 times) - + The following errors occurred while loading: - SongEditor + lmms::StereoEnhancerControls - - Could not open file - Не можу відкрити файл - - - - Could not open file %1. You probably have no permissions to read this file. - Please make sure to have at least read permissions to the file and try again. - Неможливо відкрити файл %1, ймовірно, немає дозволу на його читання. -Будь-ласка переконайтеся, що є принаймні права на читання цього файлу і спробуйте ще раз. - - - - Operation denied + + Width - - - A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. - - - - - - - Error - Помилка - - - - Couldn't create bundle folder. - - - - - Couldn't create resources folder. - - - - - Failed to copy resources. - - - - - Could not write file - Не можу записати файл - - - - Could not open %1 for writing. You probably are not permitted towrite to this file. Please make sure you have write-access to the file and try again. - - - - - This %1 was created with LMMS %2 - - - - - Error in file - Помилка у файлі - - - - The file %1 seems to contain errors and therefore can't be loaded. - Файл %1 можливо містить помилки через які не може завантажитися. - - - - Version difference - Різниця версій - - - - template - шаблон - - - - project - проект - - - - Tempo - Темп - - - - TEMPO - - - - - Tempo in BPM - - - - - High quality mode - Висока якість - - - - - - Master volume - Основна гучність - - - - - - Master pitch - Основна тональність - - - - Value: %1% - Значення: %1% - - - - Value: %1 semitones - Значення: %1 півтон(у/ів) - - SongEditorWindow + lmms::StereoMatrixControls - - Song-Editor - Музичний редактор + + Left to Left + - - Play song (Space) - Почати відтворення (Пробіл) + + Left to Right + - - Record samples from Audio-device - Записати семпл зі звукового пристрою + + Right to Left + - - Record samples from Audio-device while playing song or BB track - Записати семпл з аудіо-пристрої під час відтворення в музичному чи ритм/бас редакторі + + Right to Right + + + + + lmms::Track + + + Mute + - - Stop song (Space) - Зупинити відтворення (Пробіл) + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + - - Track actions - Стежити + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + - - Add beat/bassline - Додати ритм/бас + + Couldn't open file + - - Add sample-track - Додати доріжку запису + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + - - Add automation-track - Додати доріжку автоматизації + + Loading project... + - + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + Edit actions - Зміна - - - - Draw mode - Режим малювання - - - - Knife mode (split sample clips) - - Edit mode (select and move) - Правка (виділення/переміщення) - - - - Timeline controls - Управління хронологією - - - - Bar insert controls + + Draw mode (Shift+D) - - Insert bar + + Erase mode (Shift+E) - - Remove bar + + Draw outValues mode (Shift+C) - + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + Zoom controls - Управління масштабом + - + Horizontal zooming - + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + + + + + Draw mode + + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + + + + + + Zoom + + + + Snap controls - - + + Clip snapping size - + Toggle proportional snap on/off - + Base snapping size - StepRecorderWidget + lmms::gui::StepRecorderWidget - + Hint - Підказка + - + Move recording curser using <Left/Right> arrows - SubWindow + lmms::gui::StereoEnhancerControlDialog - + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + Close - Закрити + - + Maximize - Розгорнути + - + Restore - Відновити + - TabWidget + lmms::gui::TapTempoView - - - Settings for %1 - Налаштування для %1 + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + - TemplatesMenu + lmms::gui::TemplatesMenu - + New from template - Новий проект по шаблону + - TempoSyncKnob + lmms::gui::TempoSyncBarModelEditor - - + + Tempo Sync - Синхронізація темпу + - + No Sync - Синхронізації немає + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + No Sync + + + + Eight beats - Вісім ударів (дві ноти) + - + Whole note - Ціла нота + - + Half note - Півнота + - + Quarter note - Чверть ноти + - + 8th note - Восьма ноти - - - - 16th note - 1/16 ноти + + 16th note + + + + 32nd note - 1/32 ноти + - + Custom... - Своя... + - + Custom - Своя - - - - Synced to Eight Beats - Синхро по 8 ударам + - Synced to Whole Note - Синхро по цілій ноті + Synced to Eight Beats + - Synced to Half Note - Синхро по половині ноти + Synced to Whole Note + - Synced to Quarter Note - Синхро по чверті ноти + Synced to Half Note + - Synced to 8th Note - Синхро по 1/8 ноти + Synced to Quarter Note + - Synced to 16th Note - Синхро по 1/16 ноти + Synced to 8th Note + + Synced to 16th Note + + + + Synced to 32nd Note - Синхро по 1/32 ноти + - TimeDisplayWidget + lmms::gui::TimeDisplayWidget - + Time units - - - MIN - ХВ - - SEC - С + MIN + - MSEC - МС + SEC + - - BAR - БАР + + MSEC + - BEAT - БІТ + BAR + + BEAT + + + + TICK - ТІК + - TimeLineWidget + lmms::gui::TimeLineWidget - + Auto scrolling - + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + Loop points - + After stopping go back to beginning - + After stopping go back to position at which playing was started - Після зупинки переходити до місця, з якого почалося відтворення + - + After stopping keep position - Залишатися на місці зупинки + - + Hint - Підказка + - + Press <%1> to disable magnetic loop points. - Натисніть <%1>, щоб прибрати прилипання точок циклу. - - - - Track - - - Mute - Тиша - - - - Solo - Соло - - - - TrackContainer - - - Couldn't import file - Не можу імпортувати файл - - - - Couldn't find a filter for importing file %1. -You should convert this file into a format supported by LMMS using another software. - Не можу знайти фільтр для імпорту файла %1. -Для підключення цього файлу перетворіть його в формат, підтримуваний LMMS. - - - - Couldn't open file - Не можу відкрити файл - - - - Couldn't open file %1 for reading. -Please make sure you have read-permission to the file and the directory containing the file and try again! - Не можу відкрити файл %1 для запису. -Перевірте, чи володієте ви правами на запис в обраний файл і каталог що його містить і спробуйте знову! - - - - Loading project... - Завантаження проекту ... - - - - - Cancel - Скасувати - - - - - Please wait... - Зачекайте будь-ласка ... - - - - Loading cancelled - Завантаження скасовано - - - - Project loading was cancelled. - Завантаження проекту скасовано. - - - - Loading Track %1 (%2/Total %3) - Завантаження треку %1 (%2/з %3) - - - - Importing MIDI-file... - Імпортую файл MIDI... - - - - Clip - - - Mute - Тиша - - - - ClipView - - - Current position - Позиція - - - - Current length - Тривалість - - - - - %1:%2 (%3:%4 to %5:%6) - %1:%2 (від %3:%4 до %5:%6) - - - - Press <%1> and drag to make a copy. - Натисніть <%1> і перетягніть, щоб створити копію. - - - - Press <%1> for free resizing. - Для вільної зміни розміру натисніть <%1>. - - - - Hint - Підказка - - - - Delete (middle mousebutton) - Видалити (середня кнопка мишки) - - - - Delete selection (middle mousebutton) - - Cut - Вирізати - - - - Cut selection + + Set loop begin here - - Merge Selection + + Set loop end here - - Copy - Копіювати - - - - Copy selection + + Loop edit mode (hold shift) - + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + Paste - Вставити - - - - Mute/unmute (<%1> + middle click) - Заглушити/включити (<%1> + середня кнопка миші) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Set clip color - - - - - Use track color - TrackContentWidget + lmms::gui::TrackOperationsWidget - - Paste - Вставити - - - - TrackOperationsWidget - - + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. @@ -13453,257 +17716,249 @@ Please make sure you have read-permission to the file and the directory containi Mute - Тиша + Solo - Соло + - + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? - + Confirm removal - + Don't ask again - + Clone this track - Клонувати доріжку - - - - Remove this track - Видалити доріжку - - - - Clear this track - Очистити цю доріжку - - - - Channel %1: %2 - ЕФ %1: %2 - - - - Assign to new mixer Channel - Призначити до нового каналу ефекту - - - - Turn all recording on - Включити все на запис - - - - Turn all recording off - Вимкнути всі записи - - - - Change color - Змінити колір - - - - Reset color to default - Відновити колір за замовчуванням - - - - Set random color - - Clear clip colors + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors - TripleOscillatorView + lmms::gui::TripleOscillatorView - + Modulate phase of oscillator 1 by oscillator 2 - + Modulate amplitude of oscillator 1 by oscillator 2 - + Mix output of oscillators 1 & 2 - + Synchronize oscillator 1 with oscillator 2 - Синхронізувати 1 осциллятор по 2 - - - - Modulate frequency of oscillator 1 by oscillator 2 + Modulate frequency of oscillator 1 by oscillator 2 + + + + Modulate phase of oscillator 2 by oscillator 3 - + Modulate amplitude of oscillator 2 by oscillator 3 - + Mix output of oscillators 2 & 3 - + Synchronize oscillator 2 with oscillator 3 - Синхронізувати осциллятор 2 і 3 + - + Modulate frequency of oscillator 2 by oscillator 3 - + Osc %1 volume: - Гучність осциллятора %1: + - + Osc %1 panning: - Баланс для осциллятора %1: + - - Osc %1 coarse detuning: - Грубе підстроювання осциллятора %1: - - - - semitones - півтон(а,ів) - - - - Osc %1 fine detuning left: - Точне підстроювання лівого каналу осциллятора %1: - - - + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + cents - Відсотки + - + Osc %1 fine detuning right: - Точна підстройка правого канала осциллятора %1: + - + Osc %1 phase-offset: - Зміщення фази осциллятора %1: + - - + + degrees - градуси + - + Osc %1 stereo phase-detuning: - Підстроювання стерео фази осциллятора %1: + - + Sine wave - Синусоїда + - + Triangle wave - Трикутник + - + Saw wave - Зигзаг + - + Square wave - Квадратна хвиля + - + Moog-like saw wave - + Exponential wave - Експоненціальна хвиля + - + White noise - Білий шум + - + User-defined wave - - - VecControls - - Display persistence amount - - - - - Logarithmic scale - - - - - High quality + + Use alias-free wavetable oscillators. - VecControlsDialog + lmms::gui::VecControlsDialog - + HQ - + Double the resolution and simulate continuous analog-like trace. @@ -13718,2618 +17973,782 @@ Please make sure you have read-permission to the file and the directory containi - + Persist. - + Trace persistence: higher amount means the trace will stay bright for longer time. - + Trace persistence - VersionedSaveDialog - - - Increment version number - Збільшуючийся номер версії - + lmms::gui::VersionedSaveDialog - Decrement version number - Зменшуючийся номер версії + Increment version number + - + + Decrement version number + + + + Save Options - + already exists. Do you want to replace it? - вже існує. Замінити його? + - VestigeInstrumentView + lmms::gui::VestigeInstrumentView - - + + Open VST plugin - + Control VST plugin from LMMS host - + Open VST plugin preset - + Previous (-) - Попередній <-> + - + Save preset - Зберегти передустановку + - + Next (+) - Наступний <+> + - + Show/hide GUI - Показати / приховати інтерфейс + - + Turn off all notes - Вимкнути всі ноти + - + DLL-files (*.dll) - Бібліотеки DLL (*.dll) + - + EXE-files (*.exe) - Програми EXE (*.exe) + - + + SO-files (*.so) + + + + No VST plugin loaded - + Preset - Передустановка + - + by - від + - + - VST plugin control - - Управління VST плагіном + - VstEffectControlDialog + lmms::gui::VibedView - - Show/hide - Показати/Сховати + + Enable waveform + - + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + + + + Control VST plugin from LMMS host - + Open VST plugin preset - + Previous (-) - Попередній <-> + - + Next (+) - Наступний <+> + - + Save preset - Зберегти налаштування + - - + + Effect by: - Ефекти по: + - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + - VstPlugin + lmms::gui::WatsynView - - - The VST plugin %1 could not be loaded. - VST плагін %1 не може бути завантажено. + + + + + Volume + - - Open Preset - Відкрити предустановку - - - - - Vst Plugin Preset (*.fxp *.fxb) - Передустановка VST плагіна (*.fxp, *.fxb) - - - - : default - : основні - - - - Save Preset - Зберегти предустановку - - - - .fxp - .fxp - - - - .FXP - .FXP - - - - .FXB - .FXB - - - - .fxb - .fxb - - - - Loading plugin - Завантаження модуля - - - - Please wait while loading VST plugin... - Будь ласка, зачекайте доки завантажується VST плагін ... - - - - WatsynInstrument - - - Volume A1 - Гучність A1 - - - - Volume A2 - Гучність A2 - - - - Volume B1 - Гучність B1 - - - - Volume B2 - Гучність B2 - - - - Panning A1 - Баланс A1 - - - - Panning A2 - Баланс A2 - - - - Panning B1 - Баланс B1 - - - - Panning B2 - Баланс B2 - - - - Freq. multiplier A1 - Множник частоти A1 - - - - Freq. multiplier A2 - Множник частоти A2 - - - - Freq. multiplier B1 - Множник частоти B1 - - - - Freq. multiplier B2 - Множник частоти B2 - - - - Left detune A1 - Ліве підстроювання A1 - - - - Left detune A2 - Ліве підстроювання A2 - - - - Left detune B1 - Ліве підстроювання B1 - - - - Left detune B2 - Ліве підстроювання B2 - - - - Right detune A1 - Праве підстроювання A1 - - - - Right detune A2 - Праве підстроювання A2 - - - - Right detune B1 - Праве підстроювання B1 - - - - Right detune B2 - Праве підстроювання B2 - - - - A-B Mix - A-B Мікс - - - - A-B Mix envelope amount - A-B Мікс кіл. обвідної - - - - A-B Mix envelope attack - A-B Мікс атаки обвідної - - - - A-B Mix envelope hold - A-B Мікс утримання обвідної - - - - A-B Mix envelope decay - A-B Мікс згасання обвідної - - - - A1-B2 Crosstalk - Перехресні перешкоди A1-B2 - - - - A2-A1 modulation - Модуляція A2-A1 - - - - B2-B1 modulation - Модуляція B2-B1 - - - - Selected graph - Обраний графік - - - - WatsynView - + + - - - Volume - Гучність + Panning + + + - - - Panning - Баланс + Freq. multiplier + + + - - - Freq. multiplier - Множник частоти - - - - - - Left detune - Ліве підстроювання + + + + + + + - - - - - - cents - відсотків + + + + + + + + Right detune + + + + + A-B Mix + - - - - Right detune - Праве підстроювання - - - - A-B Mix - A-B Мікс - - - Mix envelope amount - Мікс кількості обвідної + - + Mix envelope attack - A-B Мікс вступу обвідної + - + Mix envelope hold - A-B Мікс утримання обвідної + - + Mix envelope decay - A-B Мікс згасання обвідної + - + Crosstalk - Перехід + - + Select oscillator A1 - Виберіть генератор A1 + - + Select oscillator A2 - Виберіть генератор A2 + - + Select oscillator B1 - Виберіть генератор B1 + - + Select oscillator B2 - Виберіть генератор B2 + - + Mix output of A2 to A1 - Змішати виходи A2 до A1 + - + Modulate amplitude of A1 by output of A2 - + Ring modulate A1 and A2 - + Modulate phase of A1 by output of A2 - + Mix output of B2 to B1 - Змішати виходи В2 до В1 + - + Modulate amplitude of B1 by output of B2 - + Ring modulate B1 and B2 - + Modulate phase of B1 by output of B2 - - - - + + + + Draw your own waveform here by dragging your mouse on this graph. - Тут ви можете малювати власний сигнал. + - + Load waveform - Завантаження форми звуку + - + Load a waveform from a sample file - + Phase left - Фаза зліва + - + Shift phase by -15 degrees - + Phase right - Фаза праворуч + - + Shift phase by +15 degrees + + + + Normalize + + - Normalize - Нормалізувати - - - - Invert - Інвертувати + - - + + Smooth - Згладити + - - + + Sine wave - Синусоїда + - - - + + + Triangle wave - Трикутна хвиля + - + Saw wave - Зигзаг + - - + + Square wave - Квадратна хвиля - - - - Xpressive - - - Selected graph - Обраний графік - - - - A1 - - - - - A2 - - - - - A3 - - - - - W1 smoothing - - - - - W2 smoothing - - - - - W3 smoothing - - - - - Panning 1 - - - - - Panning 2 - - - - - Rel trans - XpressiveView + lmms::gui::WaveShaperControlDialog - - Draw your own waveform here by dragging your mouse on this graph. - Тут ви можете малювати власний сигнал. - - - - Select oscillator W1 - - - - - Select oscillator W2 - - - - - Select oscillator W3 - - - - - Select output O1 - - - - - Select output O2 - - - - - Open help window - - - - - - Sine wave - Синусоїда - - - - - Moog-saw wave - - - - - - Exponential wave - Експоненціальна хвиля - - - - - Saw wave - Зигзаг - - - - - User-defined wave - - - - - - Triangle wave - Трикутник - - - - - Square wave - Квадратна хвиля - - - - - White noise - Білий шум - - - - WaveInterpolate - - - - - ExpressionValid - - - - - General purpose 1: - - - - - General purpose 2: - - - - - General purpose 3: - - - - - O1 panning: - - - - - O2 panning: - - - - - Release transition: - - - - - Smoothness - - - - - ZynAddSubFxInstrument - - - Portamento - Портаменто - - - - Filter frequency - - - - - Filter resonance - - - - - Bandwidth - Ширина смуги - - - - FM gain - - - - - Resonance center frequency - - - - - Resonance bandwidth - - - - - Forward MIDI control change events - - - - - ZynAddSubFxView - - - Portamento: - Портаменто: - - - - PORT - PORT - - - - Filter frequency: - - - - - FREQ - FREQ - - - - Filter resonance: - - - - - RES - RES - - - - Bandwidth: - Смуга пропускання: - - - - BW - BW - - - - FM gain: - - - - - FM GAIN - FM GAIN - - - - Resonance center frequency: - Частота центру резонансу: - - - - RES CF - RES CF - - - - Resonance bandwidth: - Ширина смуги резонансу: - - - - RES BW - RES BW - - - - Forward MIDI control changes - - - - - Show GUI - Показати інтерфейс - - - - AudioFileProcessor - - - Amplify - Підсилення - - - - Start of sample - Початок запису - - - - End of sample - Кінець запису - - - - Loopback point - Точка повернення з повтору - - - - Reverse sample - Перевернути запис - - - - Loop mode - Режим повтору - - - - Stutter - Заїкання - - - - Interpolation mode - Режим Інтерполяції - - - - None - Нічого - - - - Linear - Лінійний - - - - Sinc - Синхронізований - - - - Sample not found: %1 - Запис не знайдено: %1 - - - - BitInvader - - - Sample length - - - - - BitInvaderView - - - Sample length - - - - - Draw your own waveform here by dragging your mouse on this graph. - Тут ви можете малювати власний сигнал. - - - - - Sine wave - Синусоїда - - - - - Triangle wave - Трикутник - - - - - Saw wave - Зигзаг - - - - - Square wave - Квадрат - - - - - White noise - Білий шум - - - - - User-defined wave - - - - - - Smooth waveform - Згладжений сигнал - - - - Interpolation - Інтерполяція - - - - Normalize - Нормалізувати - - - - DynProcControlDialog - - + INPUT - ВХІД + - + Input gain: - Вхідне підсилення: + - + OUTPUT - ВИХІД - - - - Output gain: - Вихідне підсилення: - - - - ATTACK - ВСТУП - - - - Peak attack time: - Час пікової атаки: - - - - RELEASE - ЗМЕНШЕННЯ - - - - Peak release time: - Час відпуску піку: - - - - - Reset wavegraph - - - - Smooth wavegraph - - - - - - Increase wavegraph amplitude by 1 dB - - - - - - Decrease wavegraph amplitude by 1 dB - - - - - Stereo mode: maximum - - - - - Process based on the maximum of both stereo channels - Процес заснований на максимумі від обох каналів - - - - Stereo mode: average - - - - - Process based on the average of both stereo channels - Процес заснований на середньому обох каналів - - - - Stereo mode: unlinked - - - - - Process each stereo channel independently - Обробляє кожен стерео канал незалежно - - - - DynProcControls - - - Input gain - Вхідне підсилення - - - - Output gain - Вихідне підсилення - - - - Attack time - Час вступу - - - - Release time - Час зменшення - - - - Stereo mode - Стерео режим - - - - graphModel - - - Graph - Графік - - - - KickerInstrument - - - Start frequency - Початкова частота - - - - End frequency - Кінцева частота - - - - Length - Довжина - - - - Start distortion - - - - - End distortion - - - - - Gain - Підсилення - - - - Envelope slope - - - - - Noise - Шум - - - - Click - Натисніть - - - - Frequency slope - - - - - Start from note - Почати з замітки - - - - End to note - Закінчити заміткою - - - - KickerInstrumentView - - - Start frequency: - Початкова частота: - - - - End frequency: - Кінцева частота: - - - - Frequency slope: - - - - - Gain: - Підсилення: - - - - Envelope length: - - - - - Envelope slope: - - - - - Click: - Натиснення: - - - - Noise: - Шум: - - - - Start distortion: - - - - - End distortion: - - - - - LadspaBrowserView - - - - Available Effects - Доступні ефекти - - - - - Unavailable Effects - Недоступні ефекти - - - - - Instruments - Інструменти - - - - - Analysis Tools - Аналізатори - - - - - Don't know - Невідомі - - - - Type: - Тип: - - - - LadspaDescription - - - Plugins - Модулі - - - - Description - Опис - - - - LadspaPortDialog - - - Ports - Порти - - - - Name - І'мя - - - - Rate - Частота вибірки - - - - Direction - Напрямок - - - - Type - Тип - - - - Min < Default < Max - Менше < Стандарт <Більше - - - - Logarithmic - Логарифмічний - - - - SR Dependent - Залежність від SR - - - - Audio - Аудіо - - - - Control - Управління - - - - Input - Ввід - - - - Output - Вивід - - - - Toggled - Увімкнено - - - - Integer - Ціле - - - - Float - Дробове - - - - - Yes - Так - - - - Lb302Synth - - - VCF Cutoff Frequency - Частота зрізу VCF - - - - VCF Resonance - Посилення VCF - - - - VCF Envelope Mod - Модуляція обвідної VCF - - - - VCF Envelope Decay - Спад обвідної VCF - - - - Distortion - Спотворення - - - - Waveform - Форма хвилі - - - - Slide Decay - Зміщення згасання - - - - Slide - Зміщення - - - - Accent - Акцент - - - - Dead - Глухо - - - - 24dB/oct Filter - 24дБ/окт фільтр - - - - Lb302SynthView - - - Cutoff Freq: - Частота зрізу: - - - - Resonance: - Резонанс: - - - - Env Mod: - Мод Обвідної: - - - - Decay: - Згасання: - - - - 303-es-que, 24dB/octave, 3 pole filter - 303-ій, 24дБ/октаву, 3-польний фільтр - - - - Slide Decay: - Зміщення згасання: - - - - DIST: - СПОТ: - - - - Saw wave - Зигзаг - - - - Click here for a saw-wave. - Згенерувати зигзаг. - - - - Triangle wave - Трикутна хвиля - - - - Click here for a triangle-wave. - Згенерувати трикутний сигнал. - - - - Square wave - Квадрат - - - - Click here for a square-wave. - Згенерувати квадратний сигнал. - - - - Rounded square wave - Хвиля округленого квадрату - - - - Click here for a square-wave with a rounded end. - Створити квадратну хвилю закруглену в кінці. - - - - Moog wave - Муг хвиля - - - - Click here for a moog-like wave. - Згенерувати хвилю схожу на муг. - - - - Sine wave - Синусоїда - - - - Click for a sine-wave. - Генерувати гармонійний (синусоїдальний) сигнал. - - - - - White noise wave - Білий шум - - - - Click here for an exponential wave. - Генерувати експонентний сигнал. - - - - Click here for white-noise. - Згенерувати білий шум. - - - - Bandlimited saw wave - Зигзаг хвиля з обмеженою смугою - - - - Click here for bandlimited saw wave. - Натисніть тут для пилкоподібної хвилі з обмеженою смугою. - - - - Bandlimited square wave - Квадратна хвиля з обмеженою смугою - - - - Click here for bandlimited square wave. - Натисніть тут для квадратної хвилі з обмеженою смугою. - - - - Bandlimited triangle wave - Трикутна хвиля з обмеженою смугою - - - - Click here for bandlimited triangle wave. - Натисніть тут для трикутної хвилі з обмеженою смугою. - - - - Bandlimited moog saw wave - Муг-зигзаг хвиля з обмеженою смугою - - - - Click here for bandlimited moog saw wave. - Натисніть тут для муг-зигзаг хвилі з обмеженою смугою. - - - - MalletsInstrument - - - Hardness - Жорсткість - - - - Position - Положення - - - - Vibrato gain - - - - - Vibrato frequency - - - - - Stick mix - - - - - Modulator - Модулятор - - - - Crossfade - Перехід - - - - LFO speed - Швидкість LFO - - - - LFO depth - - - - - ADSR - ADSR - - - - Pressure - Тиск - - - - Motion - Рух - - - - Speed - Швидкість - - - - Bowed - Нахил - - - - Spread - Розкид - - - - Marimba - Марімба - - - - Vibraphone - Віброфон - - - - Agogo - Дискотека - - - - Wood 1 - - - - - Reso - Ресо - - - - Wood 2 - - - - - Beats - Удари - - - - Two fixed - - - - - Clump - Важка хода - - - - Tubular bells - - - - - Uniform bar - - - - - Tuned bar - - - - - Glass - Скло - - - - Tibetan bowl - - - - - MalletsInstrumentView - - - Instrument - Інструмент - - - - Spread - Розкид - - - - Spread: - Розкид: - - - - Missing files - Відсутні файли - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - Схоже, що встановлені не всі пакети Stk. Вам слід це перевірити! - - - - Hardness - Жорсткість - - - - Hardness: - Жорсткість: - - - - Position - Положення - - - - Position: - Положення: - - - - Vibrato gain - - - - - Vibrato gain: - - - - - Vibrato frequency - - - - - Vibrato frequency: - - - - - Stick mix - - - - - Stick mix: - - - - - Modulator - Модулятор - - - - Modulator: - Модулятор: - - - - Crossfade - Перехід - - - - Crossfade: - Перехід: - - - - LFO speed - Швидкість LFO - - - - LFO speed: - Швидкість LFO: - - - - LFO depth - - - - - LFO depth: - - - - - ADSR - ADSR - - - - ADSR: - ADSR: - - - - Pressure - Тиск - - - - Pressure: - Тиск: - - - - Speed - Швидкість - - - - Speed: - Швидкість: - - - - ManageVSTEffectView - - - - VST parameter control - Управление VST параметрами - - - - VST sync - - - - - - Automated - Автоматизовано - - - - Close - Закрити - - - - ManageVestigeInstrumentView - - - - - VST plugin control - Управління VST плагіном - - - - VST Sync - VST синхронізація - - - - - Automated - Автоматизовано - - - - Close - Закрити - - - - OrganicInstrument - - - Distortion - Спотворення - - - - Volume - Гучність - - - - OrganicInstrumentView - - - Distortion: - Спотворення: - - - - Volume: - Гучність: - - - - Randomise - Випадково - - - - - Osc %1 waveform: - Форма сигналу осциллятора %1: - - - - Osc %1 volume: - Гучність осциллятора %1: - - - - Osc %1 panning: - Баланс для осциллятора %1: - - - - Osc %1 stereo detuning - Осц %1 стерео расстройка - - - - cents - соті - - - - Osc %1 harmonic: - Осц %1 гармоніка: - - - - PatchesDialog - - - Qsynth: Channel Preset - Q-Синтезатор: Канал передустановлено - - - - Bank selector - Селектор банку - - - - Bank - Банк - - - - Program selector - Селектор програм - - - - Patch - Патч - - - - Name - І'мя - - - - OK - ОК - - - - Cancel - Скасувати - - - - Sf2Instrument - - - Bank - Банк - - - - Patch - Патч - - - - Gain - Посилення - - - - Reverb - Луна - - - - Reverb room size - - - - - Reverb damping - - - - - Reverb width - - - - - Reverb level - - - - - Chorus - Хор (Приспів) - - - - Chorus voices - - - - - Chorus level - - - - - Chorus speed - - - - - Chorus depth - - - - - A soundfont %1 could not be loaded. - soundfont %1 не вдається завантажити. - - - - Sf2InstrumentView - - - - Open SoundFont file - Відкрити файл SoundFront - - - - Choose patch - - - - - Gain: - Підсилення: - - - - Apply reverb (if supported) - Створити відлуння (якщо підтримується) - - - - Room size: - - - - - Damping: - - - - - Width: - Ширина: - - - - - Level: - - - - - Apply chorus (if supported) - Створити ефект хору (якщо підтримується) - - - - Voices: - - - - - Speed: - Швидкість: - - - - Depth: - Глибина: - - - - SoundFont Files (*.sf2 *.sf3) - - - - - SfxrInstrument - - - Wave - - - - - StereoEnhancerControlDialog - - - WIDTH - - - - - Width: - Ширина: - - - - StereoEnhancerControls - - - Width - Ширина - - - - StereoMatrixControlDialog - - - Left to Left Vol: - Від лівого на лівий: - - - - Left to Right Vol: - Від лівого на правий: - - - - Right to Left Vol: - Від правого на лівий: - - - - Right to Right Vol: - Від правого на правий: - - - - StereoMatrixControls - - - Left to Left - Від лівого на лівий - - - - Left to Right - Від лівого на правий - - - - Right to Left - Від правого на лівий - - - - Right to Right - Від правого на правий - - - - VestigeInstrument - - - Loading plugin - Завантаження модуля - - - - Please wait while loading the VST plugin... - - - - - Vibed - - - String %1 volume - Гучність %1-й струни - - - - String %1 stiffness - Жорсткість %1-й струни - - - - Pick %1 position - Лад %1 - - - - Pickup %1 position - Положення %1-го звукознімача - - - - String %1 panning - - - - - String %1 detune - - - - - String %1 fuzziness - - - - - String %1 length - - - - - Impulse %1 - Імпульс %1 - - - - String %1 - - - - - VibedView - - - String volume: - - - - - String stiffness: - Жорсткість: - - - - Pick position: - Ударна позиція: - - - - Pickup position: - Положення звукознімача: - - - - String panning: - - - - - String detune: - - - - - String fuzziness: - - - - - String length: - - - - - Impulse - - - - - Octave - Октава - - - - Impulse Editor - Редактор сигналу - - - - Enable waveform - Включити сигнал - - - - Enable/disable string - - - - - String - Струна - - - - - Sine wave - Синусоїда - - - - - Triangle wave - Трикутник - - - - - Saw wave - Зигзаг - - - - - Square wave - Квадратна хвиля - - - - - White noise - Білий шум - - - - - User-defined wave - - - - - - Smooth waveform - Згладжений сигнал - - - - - Normalize waveform - - - - - VoiceObject - - - Voice %1 pulse width - Голос %1 довжина сигналу - - - - Voice %1 attack - Вступ %1-го голосу - - - - Voice %1 decay - Згасання %1-го голосу - - - - Voice %1 sustain - Витримка для %1-го голосу - - - - Voice %1 release - Зменшення %1-го голосу - - - - Voice %1 coarse detuning - Підналаштування %1-голосу (грубо) - - - - Voice %1 wave shape - Форма сигналу для %1-го голосу - - - - Voice %1 sync - Синхронізація %1-го голосу - - - - Voice %1 ring modulate - Голос %1 кільцевий модулятор - - - - Voice %1 filtered - Фільтрований %1-й голос - - - - Voice %1 test - Голос %1 тест - - - - WaveShaperControlDialog - - - INPUT - ВХІД - - - - Input gain: - Вхідне підсилення: - - - - OUTPUT - ВИХІД - - - - Output gain: - Вихідне підсилення: - - + Output gain: + + + + + Reset wavegraph - - + + Smooth wavegraph - - + + Increase wavegraph amplitude by 1 dB - - + + Decrease wavegraph amplitude by 1 dB - + Clip input - Зрізати вхідний сигнал + - + Clip input signal to 0 dB - WaveShaperControls + lmms::gui::XpressiveView - - Input gain - Вхідне підсилення + + Draw your own waveform here by dragging your mouse on this graph. + - - Output gain - Вихідне підсилення + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + - + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + + + + \ No newline at end of file diff --git a/data/locale/zh_CN.ts b/data/locale/zh_CN.ts index 57c080341..fe16e0c0c 100644 --- a/data/locale/zh_CN.ts +++ b/data/locale/zh_CN.ts @@ -1,4 +1,4 @@ - + AboutDialog @@ -78,819 +78,57 @@ Zixing Liu <liushuyu at aosc.xyz> - AmplifierControlDialog + AboutJuceDialog - - VOL - 音量 + + About JUCE + 关于 JUCE - - Volume: - 音量: + + <b>About JUCE</b> + <b>关于 JUCE</b> - - PAN - 声相 + + This program uses JUCE version 3.x.x. + 本程序使用 JUCE 3.x.x 版本。 - - Panning: - 声相: + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + JUCE 是一个开源的跨平台 C++ 应用程序框架,用于创建高质量的桌面和移动应用程序。 + +JUCE 的核心模块(juce_audio_basics、juce_audio_devices、juce_core 和 juce_events)采用 ISC 许可证的许可条款。 +其他模块采用 GNU GPL 3.0 许可证。 + +版权所有 (C) 2022 Raw Material Software Limited. - - LEFT - - - - - Left gain: - 左增益: - - - - RIGHT - - - - - Right gain: - 右增益: + + This program uses JUCE version + 本程序使用的JUCE版本为 - AmplifierControls + AudioDeviceSetupWidget - - Volume - 音量 - - - - Panning - 声相 - - - - Left gain - 左增益 - - - - Right gain - 右增益 - - - - AudioAlsaSetupWidget - - - DEVICE - 设备 - - - - CHANNELS - 声道数 - - - - AudioFileProcessorView - - - Open sample - 打开采样文件 - - - - Reverse sample - 反转采样 - - - - Disable loop - 禁用循环 - - - - Enable loop - 开启循环 - - - - Enable ping-pong loop - 启用往复循环 - - - - Continue sample playback across notes - 跨音符继续播放采样 - - - - Amplify: - 放大: - - - - Start point: - 循环起点 - - - - End point: - 循环结束点 - - - - Loopback point: - 循环点: - - - - AudioFileProcessorWaveView - - - Sample length: - 采样长度: - - - - AudioJack - - - JACK client restarted - JACK客户端已重启 - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS由于某些原因与JACK断开连接,这可能是因为LMMS的JACK后端重启导致的,你需要手动重新连接。 - - - - JACK server down - JACK服务崩溃 - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - JACK服务好像崩溃了而且未能正常启动,LMMS不能正常工作,你需要保存你的工作然后重启JACK和LMMS。 - - - - Client name - 客户端名称 - - - - Channels - 通道 - - - - AudioOss - - - Device - 设备 - - - - Channels - 通道 - - - - AudioPortAudio::setupWidget - - - Backend - 后端 - - - - Device - 设备 - - - - AudioPulseAudio - - - Device - 设备 - - - - Channels - 通道 - - - - AudioSdl::setupWidget - - - Device - 设备 - - - - AudioSndio - - - Device - 设备 - - - - Channels - 通道 - - - - AudioSoundIo::setupWidget - - - Backend - 后端 - - - - Device - 设备 - - - - AutomatableModel - - - &Reset (%1%2) - 重置(%1%2)(&R) - - - - &Copy value (%1%2) - 复制值(%1%2)(&C) - - - - &Paste value (%1%2) - 粘贴值(%1%2)(&P) - - - - &Paste value - 粘贴值 (&P) - - - - Edit song-global automation - 编辑歌曲全局自动控制 - - - - Remove song-global automation - 删除歌曲全局自动控制 - - - - Remove all linked controls - 删除所有已连接的控制器 - - - - Connected to %1 - 连接到%1 - - - - Connected to controller - 连接到控制器 - - - - Edit connection... - 编辑连接... - - - - Remove connection - 删除连接 - - - - Connect to controller... - 连接到控制器... - - - - AutomationEditor - - - Edit Value + + [System Default] - - - New outValue - - - - - New inValue - - - - - Please open an automation clip with the context menu of a control! - 请使用控制的上下文菜单打开一个自动控制样式! - - - - AutomationEditorWindow - - - Play/pause current clip (Space) - 播放/暂停当前片段(空格) - - - - Stop playing of current clip (Space) - 停止当前片段(空格) - - - - Edit actions - 编辑功能 - - - - Draw mode (Shift+D) - 绘制模式 (Shift+D) - - - - Erase mode (Shift+E) - 擦除模式 (Shift+E) - - - - Draw outValues mode (Shift+C) - - - - - Flip vertically - 垂直翻转 - - - - Flip horizontally - 水平翻转 - - - - Interpolation controls - 补间控制 - - - - Discrete progression - 离散步进 - - - - Linear progression - 线性步进 - - - - Cubic Hermite progression - 立方 Hermite 步进 - - - - Tension value for spline - 样条函数的张力值 - - - - Tension: - 张力: - - - - Zoom controls - 缩放控制 - - - - Horizontal zooming - 水平缩放 - - - - Vertical zooming - 垂直缩放 - - - - Quantization controls - 量化控制 - - - - Quantization - 量化控制 - - - - - Automation Editor - no clip - 自动控制编辑器 - 没有片段 - - - - - Automation Editor - %1 - 自动控制编辑器 - %1 - - - - Model is already connected to this clip. - 模型已连接到此片段。 - - - - AutomationClip - - - Drag a control while pressing <%1> - 按住<%1>拖动控制器 - - - - AutomationClipView - - - Open in Automation editor - 在自动编辑器(Automation editor)中打开 - - - - Clear - 清除 - - - - Reset name - 重置名称 - - - - Change name - 修改名称 - - - - Set/clear record - 设置/清除录制 - - - - Flip Vertically (Visible) - 垂直翻转 (可见) - - - - Flip Horizontally (Visible) - 水平翻转 (可见) - - - - %1 Connections - %1个连接 - - - - Disconnect "%1" - 断开“%1”的连接 - - - - Model is already connected to this clip. - 模型已连接到此片段。 - - - - AutomationTrack - - - Automation track - 自动控制轨道 - - - - PatternEditor - - - Beat+Bassline Editor - 节拍+低音线编辑器 - - - - Play/pause current beat/bassline (Space) - 播放/暂停当前节拍/低音线(空格) - - - - Stop playback of current beat/bassline (Space) - 停止播放当前节拍/低音线(空格) - - - - Beat selector - 节拍选择器 - - - - Track and step actions - 音轨和音阶动作 - - - - Add beat/bassline - 添加节拍/低音线 - - - - Clone beat/bassline clip - - - - - Add sample-track - 添加采样轨道 - - - - Add automation-track - 添加自动控制轨道 - - - - Remove steps - 移除音阶 - - - - Add steps - 添加音阶 - - - - Clone Steps - 克隆音阶 - - - - PatternClipView - - - Open in Beat+Bassline-Editor - 在节拍+Bassline编辑器中打开 - - - - Reset name - 重置名称 - - - - Change name - 修改名称 - - - - PatternTrack - - - Beat/Bassline %1 - 节拍/Bassline %1 - - - - Clone of %1 - %1 的副本 - - - - BassBoosterControlDialog - - - FREQ - 频率 - - - - Frequency: - 频率: - - - - GAIN - 增益 - - - - Gain: - 增益: - - - - RATIO - 比率 - - - - Ratio: - 比率: - - - - BassBoosterControls - - - Frequency - 频率 - - - - Gain - 增益 - - - - Ratio - 比率 - - - - BitcrushControlDialog - - - IN - 输入 - - - - OUT - 输出 - - - - - GAIN - 增益 - - - - Input gain: - 输入增益: - - - - NOISE - 噪音 - - - - Input noise: - 输入噪音 - - - - Output gain: - 输出增益: - - - - CLIP - 压限 - - - - Output clip: - 输出截幅 - - - - Rate enabled - 采样率缩减至 - - - - Enable sample-rate crushing - 启用采样率缩减 - - - - Depth enabled - 位深缩减至 - - - - Enable bit-depth crushing - 启用位深缩减 - - - - FREQ - 频率 - - - - Sample rate: - 采样率: - - - - STEREO - 立体效果 - - - - Stereo difference: - 双声道差异: - - - - QUANT - 数量 - - - - Levels: - 级别: - - - - BitcrushControls - - - Input gain - 输入增益 - - - - Input noise - 输入噪音 - - - - Output gain - 输出增益 - - - - Output clip - 输出截辐 - - - - Sample rate - 采样率 - - - - Stereo difference - 左右声道差异 - - - - Levels - 级别 - - - - Rate enabled - 采样率缩减至 - - - - Depth enabled - 位深缩减至 - CarlaAboutW About Carla - 关于Carla + 关于 Carla @@ -908,124 +146,124 @@ Zixing Liu <liushuyu at aosc.xyz> 使用许可补充 - + Artwork - + 美工 - + Using KDE Oxygen icon set, designed by Oxygen Team. - + 使用由 Oxygen 团队设计的 KDE Oxygen 图标集。 - + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. - + 包含 Calf Studio Gear、OpenAV 和 OpenOctave 项目中的一些旋钮、背景和其他小型艺术品。 - + VST is a trademark of Steinberg Media Technologies GmbH. - + VST 是 Steinberg Media Technologies GmbH 的商标。 - + Special thanks to António Saraiva for a few extra icons and artwork! - + 特别感谢 António Saraiva 提供了一些额外的图标和美工设计! - + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. - + LV2 徽标由 Thorsten Wilms 根据 Peter Shorthose 的概念设计而成。 - + MIDI Keyboard designed by Thorsten Wilms. - - - - - Carla, Carla-Control and Patchbay icons designed by DoosC. - + MIDI 键盘由 Thorsten Wilms 设计。 + Carla, Carla-Control and Patchbay icons designed by DoosC. + Carla、Carla-Control 和 Patchbay 图标由 DoosC 设计。 + + + Features - + 特性 - + AU/AudioUnit: - + AU/AudioUnit: - + LADSPA: - + LADSPA: - - - - - - - - + + + + + + + + TextLabel - + 文本标签 - + VST2: - + VST2: - + DSSI: - + DSSI: - + LV2: - + LV2: - + VST3: - - - - - OSC - - - - - Host URLs: - - - - - Valid commands: - + VST3: + OSC + 远程控制 + + + + Host URLs: + 主机 URL: + + + + Valid commands: + 可用命令: + + + valid osc commands here - + 可用的远程控制命令在这里 - + Example: - + 例如: - + License 许可证 - + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -1307,55 +545,335 @@ POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS - + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + - + OSC Bridge Version - + Plugin Version - + 插件版本 - + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> - - + + (Engine not running) - + (引擎未运行) - + Everything! (Including LRDF) - + Everything! (Including CustomData/Chunks) - + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - - - + + + Using Juce host - + 使用 Juce 宿主 - + About 85% complete (missing vst bank/presets and some minor stuff) - + 大约完成 85% (缺少 VST 库/预设以及一些小东西) @@ -1363,12 +881,12 @@ POSSIBILITY OF SUCH DAMAGES. MainWindow - + 主窗口 Rack - + 机架 @@ -1378,567 +896,606 @@ POSSIBILITY OF SUCH DAMAGES. Logs - + 日志 Loading... + 载入中... + + + + Save + 保存 + + + + Clear + 清除 + + + + Ctrl+L + Ctrl+L + + + + Auto-Scroll - + Buffer Size: - - - - - Sample Rate: - - - - - ? Xruns - - - - - DSP Load: %p% - - - - - &File - 文件(&F) - - - - &Engine - - - - - &Plugin - - - - - Macros (all plugins) - - - - - &Canvas - + 缓冲区大小: + Sample Rate: + 采样率: + + + + ? Xruns + ? Xruns + + + + DSP Load: %p% + DSP 负载:%p% + + + + &File + 文件 (&F) + + + + &Engine + 引擎 (&E) + + + + &Plugin + 插件 (&P) + + + + Macros (all plugins) + 宏 (所有插件) + + + + &Canvas + 画布 (&C) + + + Zoom - + 缩放 - + &Settings - + 设置 (&S) - + &Help - 帮助(&H) + 帮助 (&H) - - toolBar - + + Tool Bar + 工具栏 - + Disk - + 磁盘 - - + + Home Home - + Transport - + 走带 - + Playback Controls - + 回放控制 - + Time Information - + 时间信息 - + Frame: - + 帧: - + 000'000'000 - + 000'000'000 - + Time: 时间: - + 00:00:00 - + 00:00:00 - + BBT: - + BBT: - + 000|00|0000 - + 000|00|0000 - + Settings 设置 - + BPM - + BPM - + Use JACK Transport - + 使用 JACK 走带 - + Use Ableton Link - + 使用 Ableton 连接 - + &New - 新建(&N) + 新建 (&N) - + Ctrl+N - + Ctrl+N - + &Open... - 打开(&O)... + 打开 (&O)... - - + + Open... - + 打开... - + Ctrl+O - + Ctrl+O - + &Save - 保存(&S) + 保存 (&S) - + Ctrl+S - + Ctrl+S - + Save &As... - 另存为(&A)... + 另存为 (&A)... - - + + Save As... - + 另存为... - + Ctrl+Shift+S - + Ctrl+Shift+S - + &Quit - 退出(&Q) + 退出 (&Q) - + Ctrl+Q - + Ctrl+Q - + &Start - + 启动 (&S) - + F5 - + F5 - + St&op - + 停止 (&O) - + F6 - + F6 - + &Add Plugin... - + 新增插件 (&A)... - + Ctrl+A - + Ctrl+A - + &Remove All - + 删除全部 (&R) - + Enable - + 启用 - + Disable - + 禁用 - + 0% Wet (Bypass) - + 100% Wet - + 0% Volume (Mute) - + 0% 音量 (静音) - + 100% Volume - + 100% 音量 - + Center Balance - + &Play - + 播放 (&P) - + Ctrl+Shift+P - + Ctrl+Shift+P - + &Stop - + 停止 (&S) - + Ctrl+Shift+X - + Ctrl+Shift+X - + &Backwards - + 倒带 (&B) - + Ctrl+Shift+B - + Ctrl+Shift+B - - &Forwards - - - - - Ctrl+Shift+F - - - - - &Arrange - - - - - Ctrl+G - - - - + &Forwards + 快进 (&F) + + + + Ctrl+Shift+F + Ctrl+Shift+F + + + + &Arrange + 编排 (&A) + + + + Ctrl+G + Ctrl+G + + + + &Refresh - + 刷新 (&R) - + Ctrl+R - + Ctrl+R - + Save &Image... - + 保存图像 (&I)... - + Auto-Fit - + 自动调整 - + Zoom In - + 放大 - + Ctrl++ - + Ctrl++ - + Zoom Out - + 缩小 - + Ctrl+- - + Ctrl+- - + Zoom 100% - + 100% 缩放 - + Ctrl+1 - + Ctrl+1 - + Show &Toolbar - + 显示工具栏 (&T) - + &Configure Carla - + 配置 Carla (&C) - + &About - + 关于 (&A) - + About &JUCE - + 关于 JUCE (&J) - + About &Qt - + 关于 Qt (&Q) - + Show Canvas &Meters - + Show Canvas &Keyboard - + Show Internal - + Show External - + Show Time Panel - + 显示时间面板 - + Show &Side Panel - + 显示侧边面板 (&S) - + + Ctrl+P + Ctrl+P + + + &Connect... - + 连接 (&C)... - + Compact Slots - + Expand Slots - + Perform secret 1 - + Perform secret 2 - + Perform secret 3 - + Perform secret 4 - + Perform secret 5 - + Add &JACK Application... - + 添加 JACK 应用程序 (&J)... - + &Configure driver... - + 配置驱动程序 (&C)... - + Panic - + 恐慌 - + Open custom driver panel... - + 打开自定义驱动面板... + + + + Save Image... (2x zoom) + 保存图像... (2 倍缩放) + + + + Save Image... (4x zoom) + 保存图像... (4 倍缩放) + + + + Copy as Image to Clipboard + 复制图像到剪贴板 + + + + Ctrl+Shift+C + Ctrl+Shift+C CarlaHostWindow - + Export as... - + 导出为... - - - - + + + + Error 错误 - + Failed to load project - + 无法加载工程 - + Failed to save project - + 无法保存工程 - + Quit 退出 - + Are you sure you want to quit Carla? - + 你确定要退出 Carla 吗? - + Could not connect to Audio backend '%1', possible reasons: %2 - + 无法连接到音频后端 “%1”,可能的原因是: +%2 - + Could not connect to Audio backend '%1' - + 无法连接到音频后端 “%1” - + Warning 警告 - + There are still some plugins loaded, you need to remove them to stop the engine. Do you want to do this now? - - - - - CarlaInstrumentView - - - Show GUI - 显示图形界面 + 现在仍有已加载插件,要停止引擎需要移除它们。 +要这样做吗? @@ -1951,1564 +1508,667 @@ Do you want to do this now? main - + 主要 canvas - + 画布 engine - + 引擎 osc - + 远程控制 file-paths - + 文件路径 plugin-paths - + 插件路径 wine - + Wine experimental - + 实验性 Widget - + 小组件 - + Main - + 主要 - + Canvas - + 画布 - + Engine - + 引擎 File Paths - + 文件路径 Plugin Paths - + 插件路径 Wine - + Wine - + Experimental - + 实验性 - + <b>Main</b> - + <b>主要 </b> - + Paths 路径 - + Default project folder: - + 默认工程目录: - + Interface - + + Use "Classic" as default rack skin + 使用“经典”作为机架默认皮肤 + + + Interface refresh interval: - - + + ms - + 毫秒 - + Show console output in Logs tab (needs engine restart) - + Show a confirmation dialog before quitting - - + + Theme 主题 - + Use Carla "PRO" theme (needs restart) - + 使用 Carla “专业版”主题 (需要重启) - + Color scheme: - + 颜色方案: - + Black - + 黑色 - + System - + 系统 - + Enable experimental features - + 启用实验性特性 - + <b>Canvas</b> - + <b>画布</b> - + Bezier Lines - + Theme: - + 主题: - + Size: - + 大小: - + 775x600 - + 775x600 - + 1550x1200 - - - - - 3100x2400 - - - - - 4650x3600 - - - - - 6200x4800 - + 1550x1200 - Options - + 3100x2400 + 3100x2400 - + + 4650x3600 + 4650x3600 + + + + 6200x4800 + 6200x4800 + + + + 12400x9600 + 12400x9600 + + + + Options + 选项 + + + Auto-hide groups with no ports - + Auto-select items on hover - + Basic eye-candy (group shadows) - + Render Hints - + 渲染提示 - + Anti-Aliasing - + 抗锯齿 - + Full canvas repaints (slower, but prevents drawing issues) - + 全画布重绘 (更慢,但可解决绘制问题) - + <b>Engine</b> - + <b>引擎</b> - - + + Core - + 核心 - + Single Client - + 单客户端 - + Multiple Clients - + 多客户端 - - + + Continuous Rack - - + + Patchbay - + Audio driver: - + 音频驱动: - + Process mode: - + 处理模式: - - - - + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog - + 在内置“编辑”对话框中允许的最大参数数量 - + Max Parameters: - + 最大参数: - + ... - + ... - + Reset Xrun counter after project load - + 工程加载后重置 Xrun 计数器 - + Plugin UIs - + 插件 UI - - + + How much time to wait for OSC GUIs to ping back the host - + UI Bridge Timeout: - + Use OSC-GUI bridges when possible, this way separating the UI from DSP code - + Use UI bridges instead of direct handling when possible - + Make plugin UIs always-on-top - + 使插件 UI 总在最上方 - + Make plugin UIs appear on top of Carla (needs restart) - + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS - - + + Restart the engine to load the new settings - + 重启引擎以载入新设置 - + <b>OSC</b> - + <b>远程控制 </b> - + Enable OSC - + 启用远程控制 - + Enable TCP port - + 启用 TCP 端口 - - + + Use specific port: - + 使用指定端口: - + Overridden by CARLA_OSC_TCP_PORT env var - + 被环境变量 CARLA_OSC_TCP_PORT 覆写 - - + + Use randomly assigned port - + 使用随机分配端口 - + Enable UDP port - + 启用 UDP 端口 - + Overridden by CARLA_OSC_UDP_PORT env var - + 被环境变量 CARLA_OSC_UDP_PORT 覆写 - + DSSI UIs require OSC UDP port enabled - + DSSI UI 需要远程控制 UDP 端口已启用 - + <b>File Paths</b> - + <b>文件路径</b> - + Audio 音频 - + MIDI MIDI - + Used for the "audiofile" plugin - + 用于“音频文件”插件 - + Used for the "midifile" plugin - + 用于“MIDI 文件”插件 - - + + Add... - 添加... + 新增... - - + + Remove 移除 - - + + Change... - + 变更... - + <b>Plugin Paths</b> - + <b>插件路径</b> - + LADSPA - + LADSPA - + DSSI - + DSSI - + LV2 - + LV2 - + VST2 - + VST2 - + VST3 - + VST3 - + SF2/3 - + SF2/3 - + SFZ - + SFZ - + + JSFX + JSFX + + + + CLAP + CLAP + + + Restart Carla to find new plugins - + 重启 Carla 以查找新插件 - + <b>Wine</b> - + <b>Wine</b> - + Executable - + Path to 'wine' binary: - + Prefix - + Auto-detect Wine prefix based on plugin filename - + Fallback: - + Note: WINEPREFIX env var is preferred over this fallback - + Realtime Priority - + 实时优先级 - + Base priority: - + WineServer priority: - + These options are not available for Carla as plugin - + <b>Experimental</b> - + <b>实验性</b> - + Experimental options! Likely to be unstable! - + 实验性选项!大概率不稳定! - + Enable plugin bridges - + 启用插件桥接 - + Enable Wine bridges - + 启用 Wine 桥接 - + Enable jack applications - + 启用 JACK 应用程序 - + Export single plugins to LV2 - + 导出单个插件至 LV2 - + + Use system/desktop-theme icons (needs restart) + 使用系统/桌面主题图标 (需要重启) + + + Load Carla backend in global namespace (NOT RECOMMENDED) - + 在全局命名空间加载 Carla 后端 (不推荐) - + Fancy eye-candy (fade-in/out groups, glow connections) - + Use OpenGL for rendering (needs restart) - + 使用 OpenGL 渲染 (需要重启) - + High Quality Anti-Aliasing (OpenGL only) - + 高质量抗锯齿 (仅限 OpenGL) - + Render Ardour-style "Inline Displays" - + 渲染 Ardour 样式的“内联显示” - + Force mono plugins as stereo by running 2 instances at the same time. This mode is not available for VST plugins. - + 强制单声道插件同时运行 2 个实例实现双声道。 +对 VST 插件无效。 - + Force mono plugins as stereo + 强制单声道插件以双声道模式运行 + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. - - Prevent plugins from doing bad stuff (needs restart) + + Prevent unsafe calls from plugins (needs restart) + 阻止插件不安全调用 (需要重启) + + + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. - - Whenever possible, run the plugins in bridge mode. - - - - + Run plugins in bridge mode when possible - - - - + + + + Add Path - - - - - CompressorControlDialog - - - Threshold: - - - - - Volume at which the compression begins to take place - - - - - Ratio: - 比率: - - - - How far the compressor must turn the volume down after crossing the threshold - - - - - Attack: - 打击声: - - - - Speed at which the compressor starts to compress the audio - - - - - Release: - 释音: - - - - Speed at which the compressor ceases to compress the audio - - - - - Knee: - - - - - Smooth out the gain reduction curve around the threshold - - - - - Range: - - - - - Maximum gain reduction - - - - - Lookahead Length: - - - - - How long the compressor has to react to the sidechain signal ahead of time - - - - - Hold: - 持续: - - - - Delay between attack and release stages - - - - - RMS Size: - - - - - Size of the RMS buffer - - - - - Input Balance: - - - - - Bias the input audio to the left/right or mid/side - - - - - Output Balance: - - - - - Bias the output audio to the left/right or mid/side - - - - - Stereo Balance: - - - - - Bias the sidechain signal to the left/right or mid/side - - - - - Stereo Link Blend: - - - - - Blend between unlinked/maximum/average/minimum stereo linking modes - - - - - Tilt Gain: - - - - - Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. - - - - - Tilt Frequency: - - - - - Center frequency of sidechain tilt filter - - - - - Mix: - - - - - Balance between wet and dry signals - - - - - Auto Attack: - - - - - Automatically control attack value depending on crest factor - - - - - Auto Release: - - - - - Automatically control release value depending on crest factor - - - - - Output gain - 输出增益 - - - - - Gain - 增益 - - - - Output volume - - - - - Input gain - 输入增益 - - - - Input volume - - - - - Root Mean Square - - - - - Use RMS of the input - - - - - Peak - - - - - Use absolute value of the input - - - - - Left/Right - - - - - Compress left and right audio - - - - - Mid/Side - - - - - Compress mid and side audio - - - - - Compressor - - - - - Compress the audio - - - - - Limiter - - - - - Set Ratio to infinity (is not guaranteed to limit audio volume) - - - - - Unlinked - - - - - Compress each channel separately - - - - - Maximum - - - - - Compress based on the loudest channel - - - - - Average - - - - - Compress based on the averaged channel volume - - - - - Minimum - - - - - Compress based on the quietest channel - - - - - Blend - - - - - Blend between stereo linking modes - - - - - Auto Makeup Gain - - - - - Automatically change makeup gain depending on threshold, knee, and ratio settings - - - - - - Soft Clip - - - - - Play the delta signal - - - - - Use the compressor's output as the sidechain input - - - - - Lookahead Enabled - - - - - Enable Lookahead, which introduces 20 milliseconds of latency - - - - - CompressorControls - - - Threshold - - - - - Ratio - 比率 - - - - Attack - 打击声 - - - - Release - 释放 - - - - Knee - - - - - Hold - 保持 - - - - Range - - - - - RMS Size - - - - - Mid/Side - - - - - Peak Mode - - - - - Lookahead Length - - - - - Input Balance - - - - - Output Balance - - - - - Limiter - - - - - Output Gain - - - - - Input Gain - - - - - Blend - - - - - Stereo Balance - - - - - Auto Makeup Gain - - - - - Audition - - - - - Feedback - 反馈 - - - - Auto Attack - - - - - Auto Release - - - - - Lookahead - - - - - Tilt - - - - - Tilt Frequency - - - - - Stereo Link - - - - - Mix - 混合 - - - - Controller - - - Controller %1 - 控制器%1 - - - - ControllerConnectionDialog - - - Connection Settings - 连接设置 - - - - MIDI CONTROLLER - MIDI控制器 - - - - Input channel - 输入通道 - - - - CHANNEL - 通道 - - - - Input controller - 输入控制器 - - - - CONTROLLER - 控制器 - - - - - Auto Detect - 自动检测 - - - - MIDI-devices to receive MIDI-events from - 用来接收 MIDI 事件的MIDI 设备 - - - - USER CONTROLLER - 用户控制器 - - - - MAPPING FUNCTION - 映射函数 - - - - OK - 确定 - - - - Cancel - 取消 - - - - LMMS - LMMS - - - - Cycle Detected. - 检测到环路。 - - - - ControllerRackView - - - Controller Rack - 控制器机架 - - - - Add - 增加 - - - - Confirm Delete - 删除前确认 - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - 确定要删除吗?此控制器仍处于被连接状态。此操作不可撤销。 - - - - ControllerView - - - Controls - 控制器 - - - - Rename controller - 重命名控制器 - - - - Enter the new name for this controller - 输入这个控制器的新名称 - - - - LFO - LFO - - - - &Remove this controller - 删除此控制器(&R) - - - - Re&name this controller - 重命名控制器(&N) - - - - CrossoverEQControlDialog - - - Band 1/2 crossover: - - - - - Band 2/3 crossover: - - - - - Band 3/4 crossover: - - - - - Band 1 gain - - - - - Band 1 gain: - - - - - Band 2 gain - - - - - Band 2 gain: - - - - - Band 3 gain - - - - - Band 3 gain: - - - - - Band 4 gain - - - - - Band 4 gain: - - - - - Band 1 mute - - - - - Mute band 1 - - - - - Band 2 mute - - - - - Mute band 2 - - - - - Band 3 mute - - - - - Mute band 3 - - - - - Band 4 mute - - - - - Mute band 4 - - - - - DelayControls - - - Delay samples - - - - - Feedback - 反馈 - - - - LFO frequency - - - - - LFO amount - - - - - Output gain - 输出增益 - - - - DelayControlsDialog - - - DELAY - 延迟 - - - - Delay time - - - - - FDBK - 反馈 - - - - Feedback amount - - - - - RATE - - - - - LFO frequency - - - - - AMNT - 数量 - - - - LFO amount - - - - - Out gain - - - - - Gain - 增益 + 新增路径 Dialog - - - Add JACK Application - - - - - Note: Features not implemented yet are greyed out - - - - - Application - - - - - Name: - - - - - Application: - - - - - From template - - - - - Custom - - - - - Template: - - - - - Command: - - - - - Setup - 设置 - - - - Session Manager: - - - - - None - - - - - Audio inputs: - 音频输入: - - - - MIDI inputs: - MIDI输入: - - - - Audio outputs: - 音频输出: - - - - MIDI outputs: - MIDI输出: - - - - Take control of main application window - - - - - Workarounds - - - - - Wait for external application start (Advanced, for Debug only) - - - - - Capture only the first X11 Window - - - - - Use previous client output buffer as input for the next client - - - - - Simulate 16 JACK MIDI outputs, with MIDI channel as port index - - - - - Error here - - Carla Control - Connect @@ -3517,43 +2177,22 @@ This mode is not available for VST plugins. Remote setup - + 远程设置 UDP Port: - + UDP 端口: Remote host: - + 远程主机: TCP Port: - - - - - Reported host - - - - - Automatic - - - - - Custom: - - - - - In some networks (like USB connections), the remote system cannot reach the local network. You can specify here which hostname or IP to make the remote Carla connect to. -If you are unsure, leave it as 'Automatic'. - + TCP 端口: @@ -3563,7 +2202,7 @@ If you are unsure, leave it as 'Automatic'. TextLabel - + 文本标签 @@ -3576,17 +2215,17 @@ If you are unsure, leave it as 'Automatic'. Driver Settings - + 驱动设置 Device: - + 设备: Buffer size: - + 缓冲区大小: @@ -3596,959 +2235,17 @@ If you are unsure, leave it as 'Automatic'. Triple buffer - + 三重缓冲区 Show Driver Control Panel - + 显示驱动控制面板 Restart the engine to load the new settings - - - - - DualFilterControlDialog - - - - FREQ - 频率 - - - - - Cutoff frequency - 切除频率 - - - - - RESO - 共鸣 - - - - - Resonance - 共鸣 - - - - - GAIN - 增益 - - - - - Gain - 增益 - - - - MIX - 混音 - - - - Mix - 混合 - - - - Filter 1 enabled - 已启用过滤器 1 - - - - Filter 2 enabled - 已启用过滤器 2 - - - - Enable/disable filter 1 - - - - - Enable/disable filter 2 - - - - - DualFilterControls - - - Filter 1 enabled - 过滤器1 已启用 - - - - Filter 1 type - 过滤器 1 类型 - - - - Cutoff frequency 1 - - - - - Q/Resonance 1 - 滤波器 1 Q值 - - - - Gain 1 - 增益 1 - - - - Mix - 混合 - - - - Filter 2 enabled - 已启用过滤器 2 - - - - Filter 2 type - 过滤器 1 类型 {2 ?} - - - - Cutoff frequency 2 - - - - - Q/Resonance 2 - 滤波器 2 Q值 - - - - Gain 2 - 增益 2 - - - - - Low-pass - - - - - - Hi-pass - - - - - - Band-pass csg - - - - - - Band-pass czpg - - - - - - Notch - 凹口滤波器 - - - - - All-pass - - - - - - Moog - Moog - - - - - 2x Low-pass - - - - - - RC Low-pass 12 dB/oct - - - - - - RC Band-pass 12 dB/oct - - - - - - RC High-pass 12 dB/oct - - - - - - RC Low-pass 24 dB/oct - - - - - - RC Band-pass 24 dB/oct - - - - - - RC High-pass 24 dB/oct - - - - - - Vocal Formant - - - - - - 2x Moog - 2x Moog - - - - - SV Low-pass - - - - - - SV Band-pass - - - - - - SV High-pass - - - - - - SV Notch - SV Notch - - - - - Fast Formant - 快速共振峰(Formant) - - - - - Tripole - Tripole - - - - Editor - - - Transport controls - 传输控制 - - - - Play (Space) - 播放(空格) - - - - Stop (Space) - 停止(空格) - - - - Record - 录音 - - - - Record while playing - 播放时录音 - - - - Toggle Step Recording - - - - - Effect - - - Effect enabled - 启用效果器 - - - - Wet/Dry mix - 干/湿混合 - - - - Gate - 门限 - - - - Decay - 衰减 - - - - EffectChain - - - Effects enabled - 启用效果器 - - - - EffectRackView - - - EFFECTS CHAIN - 效果器链 - - - - Add effect - 增加效果器 - - - - EffectSelectDialog - - - Add effect - 增加效果器 - - - - - Name - 名称 - - - - Type - 类型 - - - - Description - 描述 - - - - Author - 作者 - - - - EffectView - - - On/Off - 开/关 - - - - W/D - W/D - - - - Wet Level: - 效果度: - - - - DECAY - 衰减 - - - - Time: - 时间: - - - - GATE - 门限 - - - - Gate: - 门限: - - - - Controls - 控制 - - - - Move &up - 向上移(&U) - - - - Move &down - 向下移(&D) - - - - &Remove this plugin - 移除此插件(&R) - - - - EnvelopeAndLfoParameters - - - Env pre-delay - - - - - Env attack - - - - - Env hold - - - - - Env decay - - - - - Env sustain - - - - - Env release - - - - - Env mod amount - - - - - LFO pre-delay - - - - - LFO attack - - - - - LFO frequency - - - - - LFO mod amount - - - - - LFO wave shape - - - - - LFO frequency x 100 - - - - - Modulate env amount - - - - - EnvelopeAndLfoView - - - - DEL - DEL - - - - - Pre-delay: - - - - - - ATT - 打击 - - - - - Attack: - 打击声: - - - - HOLD - 持续 - - - - Hold: - 持续: - - - - DEC - 衰减 - - - - Decay: - 衰减: - - - - SUST - 持续 - - - - Sustain: - 持续: - - - - REL - 释音 - - - - Release: - 释音: - - - - - AMT - 数量 - - - - - Modulation amount: - 调制量: - - - - SPD - 速度 - - - - Frequency: - 频率: - - - - FREQ x 100 - 频率 x 100 - - - - Multiply LFO frequency by 100 - - - - - MODULATE ENV AMOUNT - - - - - Control envelope amount by this LFO - - - - - ms/LFO: - ms/LFO: - - - - Hint - 提示 - - - - Drag and drop a sample into this window. - - - - - EqControls - - - Input gain - 输入增益 - - - - Output gain - 输出增益 - - - - Low-shelf gain - - - - - Peak 1 gain - 峰值1增幅 - - - - Peak 2 gain - 峰值2增幅 - - - - Peak 3 gain - 峰值3增幅 - - - - Peak 4 gain - 峰值4增幅 - - - - High-shelf gain - - - - - HP res - 高通谐振 - - - - Low-shelf res - - - - - Peak 1 BW - - - - - Peak 2 BW - - - - - Peak 3 BW - - - - - Peak 4 BW - - - - - High-shelf res - - - - - LP res - 低通谐振 - - - - HP freq - 高通截频 - - - - Low-shelf freq - - - - - Peak 1 freq - 峰值1频率 - - - - Peak 2 freq - 峰值2频率 - - - - Peak 3 freq - 峰值3频率 - - - - Peak 4 freq - 峰值4频率 - - - - High-shelf freq - - - - - LP freq - 低通截频 - - - - HP active - 高通启用 - - - - Low-shelf active - - - - - Peak 1 active - 峰值1启用 - - - - Peak 2 active - 峰值2启用 - - - - Peak 3 active - 峰值3启用 - - - - Peak 4 active - 峰值4启用 - - - - High-shelf active - - - - - LP active - 低通启用 - - - - LP 12 - 低通12dB - - - - LP 24 - 低通24dB - - - - LP 48 - 低通48dB - - - - HP 12 - 高通12dB - - - - HP 24 - 高通24dB - - - - HP 48 - 高通48dB - - - - Low-pass type - - - - - High-pass type - - - - - Analyse IN - 分析输入 - - - - Analyse OUT - 分析输出 - - - - EqControlsDialog - - - HP - 高通 - - - - Low-shelf - - - - - Peak 1 - 峰值1 - - - - Peak 2 - 峰值2 - - - - Peak 3 - 峰值3 - - - - Peak 4 - 峰值4 - - - - High-shelf - - - - - LP - 低通 - - - - Input gain - 输入增益 - - - - - - Gain - 增益 - - - - Output gain - 输出增益 - - - - Bandwidth: - 带宽: - - - - Octave - - - - - Resonance : - 共鸣: - - - - Frequency: - 频率: - - - - LP group - - - - - HP group - - - - - EqHandle - - - Reso: - 共鸣: - - - - BW: - - - - - - Freq: - 频率: + 重启引擎以载入新设置 @@ -4561,17 +2258,17 @@ If you are unsure, leave it as 'Automatic'. Export as loop (remove extra bar) - 导出为回环loop(移除结尾的静音) + 导出为循环 (移除结尾的静音) Export between loop markers - 只导出回环标记中间的部分 + 只导出循环标记中间的部分 Render Looped Section: - + 渲染循环节: @@ -4591,7 +2288,7 @@ If you are unsure, leave it as 'Automatic'. Sampling rate: - 采样率: + 采样率: @@ -4621,7 +2318,7 @@ If you are unsure, leave it as 'Automatic'. Bit depth: - 位深: + 位深: @@ -4641,7 +2338,7 @@ If you are unsure, leave it as 'Automatic'. Stereo mode: - 双声道模式: + 双声道模式: @@ -4656,12 +2353,12 @@ If you are unsure, leave it as 'Automatic'. Joint stereo - 联合立体声 + 联合双声道 Compression level: - 压缩级别: + 压缩级别: @@ -4711,7 +2408,7 @@ If you are unsure, leave it as 'Automatic'. Interpolation: - 补间: + 补间: @@ -4731,2129 +2428,655 @@ If you are unsure, leave it as 'Automatic'. Sinc best (slowest) - 最佳 Sinc 补间 (很慢!) + 最佳 Sinc 补间 (最慢!) - - Oversampling: - 过采样: - - - - 1x (None) - 1x (无) - - - - 2x - 2x - - - - 4x - 4x - - - - 8x - 8x - - - + Start 开始 - + Cancel 取消 - - - Could not open file - 无法打开文件 - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - 无法写入文件 %1 -请确保您有对该文件以及包含该文件目录的写入权限! - - - - Export project to %1 - 导出项目到 %1 - - - - ( Fastest - biggest ) - - - - - ( Slowest - smallest ) - - - - - Error - 错误 - - - - Error while determining file-encoder device. Please try to choose a different output format. - 寻找文件编码设备时出错。请使用另外一种输出格式。 - - - - Rendering: %1% - 渲染中:%1% - - - - Fader - - - Set value - 设置值 - - - - Please enter a new value between %1 and %2: - 请输入一个介于%1和%2之间的数值: - - - - FileBrowser - - - User content - - - - - Factory content - - - - - Browser - 浏览器 - - - - Search - 搜索 - - - - Refresh list - 刷新列表 - - - - FileBrowserTreeWidget - - - Send to active instrument-track - 发送到活跃的乐器轨道 - - - - Open containing folder - - - - - Song Editor - 显示/隐藏歌曲编辑器 - - - - BB Editor - - - - - Send to new AudioFileProcessor instance - - - - - Send to new instrument track - - - - - (%2Enter) - - - - - Send to new sample track (Shift + Enter) - - - - - Loading sample - 加载采样中 - - - - Please wait, loading sample for preview... - 请稍候,加载采样中... - - - - Error - 错误 - - - - %1 does not appear to be a valid %2 file - - - - - --- Factory files --- - ---软件自带文件--- - - - - FlangerControls - - - Delay samples - - - - - LFO frequency - - - - - Seconds - - - - - Stereo phase - - - - - Regen - 重生成 - - - - Noise - 噪音 - - - - Invert - 反转 - - - - FlangerControlsDialog - - - DELAY - 延迟 - - - - Delay time: - - - - - RATE - - - - - Period: - - - - - AMNT - 数量 - - - - Amount: - 数量: - - - - PHASE - - - - - Phase: - - - - - FDBK - 反馈 - - - - Feedback amount: - - - - - NOISE - 噪音 - - - - White noise amount: - - - - - Invert - 反转 - - - - FreeBoyInstrument - - - Sweep time - - - - - Sweep direction - - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle - - - - - Channel 1 volume - - - - - - - Volume sweep direction - - - - - - - Length of each step in sweep - - - - - Channel 2 volume - - - - - Channel 3 volume - - - - - Channel 4 volume - - - - - Shift Register width - - - - - Right output level - - - - - Left output level - - - - - Channel 1 to SO2 (Left) - - - - - Channel 2 to SO2 (Left) - - - - - Channel 3 to SO2 (Left) - - - - - Channel 4 to SO2 (Left) - - - - - Channel 1 to SO1 (Right) - - - - - Channel 2 to SO1 (Right) - - - - - Channel 3 to SO1 (Right) - - - - - Channel 4 to SO1 (Right) - - - - - Treble - 高音 - - - - Bass - 低音 - - - - FreeBoyInstrumentView - - - Sweep time: - - - - - Sweep time - - - - - Sweep rate shift amount: - - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle: - - - - - - Wave pattern duty cycle - - - - - Square channel 1 volume: - - - - - Square channel 1 volume - - - - - - - Length of each step in sweep: - - - - - - - Length of each step in sweep - - - - - Square channel 2 volume: - - - - - Square channel 2 volume - - - - - Wave pattern channel volume: - - - - - Wave pattern channel volume - - - - - Noise channel volume: - - - - - Noise channel volume - - - - - SO1 volume (Right): - - - - - SO1 volume (Right) - - - - - SO2 volume (Left): - - - - - SO2 volume (Left) - - - - - Treble: - 高音: - - - - Treble - 高音 - - - - Bass: - 低音: - - - - Bass - 低音 - - - - Sweep direction - - - - - - - - - Volume sweep direction - - - - - Shift register width - - - - - Channel 1 to SO1 (Right) - - - - - Channel 2 to SO1 (Right) - - - - - Channel 3 to SO1 (Right) - - - - - Channel 4 to SO1 (Right) - - - - - Channel 1 to SO2 (Left) - - - - - Channel 2 to SO2 (Left) - - - - - Channel 3 to SO2 (Left) - - - - - Channel 4 to SO2 (Left) - - - - - Wave pattern graph - - - - - MixerChannelView - - - Channel send amount - 通道发送的数量 - - - - Move &left - 向左移(&L) - - - - Move &right - 向右移(&R) - - - - Rename &channel - 重命名通道(&C) - - - - R&emove channel - 删除通道(&E) - - - - Remove &unused channels - 移除所有未用通道(&U) - - - - Set channel color - - - - - Remove channel color - - - - - Pick random channel color - - - - - MixerChannelLcdSpinBox - - - Assign to: - 分配给: - - - - New mixer Channel - 新的效果通道 - - - - Mixer - - - Master - 主控 - - - - - - Channel %1 - FX %1 - - - - Volume - 音量 - - - - Mute - 静音 - - - - Solo - 独奏 - - - - MixerView - - - Mixer - 效果混合器 - - - - Fader %1 - FX 衰减器 %1 - - - - Mute - 静音 - - - - Mute this mixer channel - 静音此效果通道 - - - - Solo - 独奏 - - - - Solo mixer channel - 独奏效果通道 - - - - MixerRoute - - - - Amount to send from channel %1 to channel %2 - 从通道 %1 发送到通道 %2 的量 - - - - GigInstrument - - - Bank - - - - - Patch - 音色 - - - - Gain - 增益 - - - - GigInstrumentView - - - - Open GIG file - 打开 GIG 文件 - - - - Choose patch - - - - - Gain: - 增益: - - - - GIG Files (*.gig) - GIG 文件 (*.gig) - - - - GuiApplication - - - Working directory - 工作目录 - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - LMMS工作目录%1不存在,现在新建一个吗?你可以稍后在 编辑 -> 设置 中更改此设置。 - - - - Preparing UI - 正在准备界面 - - - - Preparing song editor - 正在准备歌曲编辑器 - - - - Preparing mixer - 正在准备混音器 - - - - Preparing controller rack - 正在准备控制机架 - - - - Preparing project notes - 正在准备工程注释 - - - - Preparing beat/bassline editor - 正在准备节拍/低音线编辑器 - - - - Preparing piano roll - 正在准备钢琴窗 - - - - Preparing automation editor - 正在准备自动编辑器 - - - - InstrumentFunctionArpeggio - - - Arpeggio - 琶音 - - - - Arpeggio type - 琶音类型 - - - - Arpeggio range - 琶音范围 - - - - Note repeats - - - - - Cycle steps - - - - - Skip rate - 跳过率 - - - - Miss rate - 丢失率 - - - - Arpeggio time - 琶音时间 - - - - Arpeggio gate - 琶音门限 - - - - Arpeggio direction - 琶音方向 - - - - Arpeggio mode - 琶音模式 - - - - Up - 向上 - - - - Down - 向下 - - - - Up and down - 上和下 - - - - Down and up - 下和上 - - - - Random - 随机 - - - - Free - 自由 - - - - Sort - 排序 - - - - Sync - 同步 - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - 琶音 - - - - RANGE - 范围 - - - - Arpeggio range: - 琶音范围: - - - - octave(s) - 八度音 - - - - REP - - - - - Note repeats: - - - - - time(s) - - - - - CYCLE - 循环 - - - - Cycle notes: - 循环音符: - - - - note(s) - 音符 - - - - SKIP - 跳过 - - - - Skip rate: - 跳过率: - - - - - - % - % - - - - MISS - 丢失 - - - - Miss rate: - 丢失率: - - - - TIME - 时长 - - - - Arpeggio time: - 琶音时间: - - - - ms - 毫秒 - - - - GATE - 门限 - - - - Arpeggio gate: - 琶音门限: - - - - Chord: - 和弦: - - - - Direction: - 方向: - - - - Mode: - 模式: - InstrumentFunctionNoteStacking - + octave octave - - + + Major Major - + Majb5 Majb5 - + minor minor - + minb5 minb5 - + sus2 sus2 - + sus4 sus4 - + aug aug - + augsus4 augsus4 - + tri tri - + 6 6 - + 6sus4 6sus4 - + 6add9 6add9 - + m6 m6 - + m6add9 m6add9 - + 7 7 - + 7sus4 7sus4 - + 7#5 7#5 - + 7b5 7b5 - + 7#9 7#9 - + 7b9 7b9 - + 7#5#9 7#5#9 - + 7#5b9 7#5b9 - + 7b5b9 7b5b9 - + 7add11 7add11 - + 7add13 7add13 - + 7#11 7#11 - + Maj7 Maj7 - + Maj7b5 Maj7b5 - + Maj7#5 Maj7#5 - + Maj7#11 Maj7#11 - + Maj7add13 Maj7add13 - + m7 m7 - + m7b5 m7b5 - + m7b9 m7b9 - + m7add11 m7add11 - + m7add13 m7add13 - + m-Maj7 m-Maj7 - + m-Maj7add11 m-Maj7add11 - + m-Maj7add13 m-Maj7add13 - + 9 9 - + 9sus4 9sus4 - + add9 add9 - + 9#5 9#5 - + 9b5 9b5 - + 9#11 9#11 - + 9b13 9b13 - + Maj9 Maj9 - + Maj9sus4 Maj9sus4 - + Maj9#5 Maj9#5 - + Maj9#11 Maj9#11 - + m9 m9 - + madd9 madd9 - + m9b5 m9b5 - + m9-Maj7 m9-Maj7 - + 11 11 - + 11b9 11b9 - + Maj11 Maj11 - + m11 m11 - + m-Maj11 m-Maj11 - + 13 13 - + 13#9 13#9 - + 13b9 13b9 - + 13b5b9 13b5b9 - + Maj13 Maj13 - + m13 m13 - + m-Maj13 m-Maj13 - + Harmonic minor - Harmonic minor + 和声小调 - + Melodic minor - Melodic minor + 旋律小调 - + Whole tone 全音符 - - - Diminished - Diminished - - - - Major pentatonic - Major pentatonic - - - - Minor pentatonic - Minor pentatonic - - - - Jap in sen - Jap in sen - - - - Major bebop - Major bebop - - - - Dominant bebop - Dominant bebop - - - - Blues - Blues - - Arabic - Arabic + Diminished + 减音程 - Enigmatic - Enigmatic + Major pentatonic + 大调五声 - Neopolitan - Neopolitan + Minor pentatonic + 小调五声 - Neopolitan minor - Neopolitan minor + Jap in sen + 日本阴旋 - Hungarian minor - Hungarian minor + Major bebop + 大调比波普 - Dorian - Dorian + Dominant bebop + 属比波普 - Phrygian - + Blues + 布鲁斯 - Lydian - Lydian + Arabic + 阿拉伯音阶 - Mixolydian - Mixolydian + Enigmatic + 神秘音阶 - Aeolian - Aeolian + Neopolitan + 拿坡里音阶 - Locrian - Locrian + Neopolitan minor + 拿坡里小调 - Minor - Minor + Hungarian minor + 匈牙利小调 - Chromatic - Chromatic + Dorian + 多利安 + Phrygian + 弗里几亚 + + + + Lydian + 利底亚 + + + + Mixolydian + 米索利底亚 + + + + Aeolian + 爱欧利安 + + + + Locrian + 罗克里安 + + + + Minor + 小调 + + + + Chromatic + 半音 + + + Half-Whole Diminished 半-全减音程 - + 5 5 - + Phrygian dominant - + 弗里几亚属音阶 - + Persian - - - - - Chords - Chords - - - - Chord type - Chord type - - - - Chord range - Chord range - - - - InstrumentFunctionNoteStackingView - - - STACKING - 堆叠 - - - - Chord: - 和弦: - - - - RANGE - 范围 - - - - Chord range: - 和弦范围: - - - - octave(s) - 八度音 - - - - InstrumentMidiIOView - - - ENABLE MIDI INPUT - 启用MIDI输入 - - - - ENABLE MIDI OUTPUT - 启用MIDI输出 - - - - - CHAN - This string must be be short, its width must be less than * width of LCD spin-box of two digits - - - - - - VELOC - This string must be be short, its width must be less than * width of LCD spin-box of three digits - - - - - PROG - This string must be be short, its width must be less than the * width of LCD spin-box of three digits - - - - - NOTE - This string must be be short, its width must be less than * width of LCD spin-box of three digits - 音符 - - - - MIDI devices to receive MIDI events from - 用于接收 MIDI 事件的 MIDI 设备 - - - - MIDI devices to send MIDI events to - 用于发送 MIDI 事件的 MIDI 设备 - - - - CUSTOM BASE VELOCITY - 自定义基准力度 - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. - - - - - BASE VELOCITY - 基准力度 - - - - InstrumentTuningView - - - MASTER PITCH - 主音高 - - - - Enables the use of master pitch - + 波斯 InstrumentSoundShaping - + VOLUME 音量 - + Volume 音量 - + CUTOFF 切除 - - + Cutoff frequency 切除频率 - + RESO 共鸣 - + Resonance 共鸣 - - - Envelopes/LFOs - 压限/低频振荡 - - - - Filter type - 过滤器类型 - - - - Q/Resonance - 滤波器Q值 - - - - Low-pass - - - - - Hi-pass - - - - - Band-pass csg - - - - - Band-pass czpg - - - - - Notch - 凹口滤波器 - - - - All-pass - - - - - Moog - Moog - - - - 2x Low-pass - - - - - RC Low-pass 12 dB/oct - - - - - RC Band-pass 12 dB/oct - - - - - RC High-pass 12 dB/oct - - - - - RC Low-pass 24 dB/oct - - - - - RC Band-pass 24 dB/oct - - - - - RC High-pass 24 dB/oct - - - - - Vocal Formant - - - - - 2x Moog - 2x Moog - - - - SV Low-pass - - - - - SV Band-pass - - - - - SV High-pass - - - - - SV Notch - SV Notch - - - - Fast Formant - 快速共振峰(Formant) - - - - Tripole - Tripole - - InstrumentSoundShapingView + JackAppDialog - - TARGET - 目标 + + Add JACK Application + 添加 JACK 应用程序 - - FILTER - 过滤器 + + Note: Features not implemented yet are greyed out + 注意:未实现的特性已标灰 - - FREQ - 频率 + + Application + 应用程序 - - Cutoff frequency: - 频谱刀频率: + + Name: + 名称: - - Hz - Hz + + Application: + 应用程序: - - Q/RESO + + From template + 来自模板 + + + + Custom + 自定义 + + + + Template: + 模板: + + + + Command: + 命令: + + + + Setup + 设置 + + + + Session Manager: + 会话管理: + + + + None + + + + + Audio inputs: + 音频输入: + + + + MIDI inputs: + MIDI 输入: + + + + Audio outputs: + 音频输出: + + + + MIDI outputs: + MIDI 输出: + + + + Take control of main application window + 控制主应用容器 + + + + Workarounds + 解决方案 + + + + Wait for external application start (Advanced, for Debug only) - - Q/Resonance: + + Capture only the first X11 Window + 仅捕获第一个 X11 窗口 + + + + Use previous client output buffer as input for the next client + 使用前一个客户端的输出缓冲区作为下一个客户端输入 + + + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index - - Envelopes, LFOs and filters are not supported by the current instrument. - 包络和低频振荡 (LFO) 不被当前乐器支持。 - - - - InstrumentTrack - - - - unnamed_track - 未命名轨道 + + Error here + 这里出错了 - - Base note - 基本音 - - - - First note - - - - - Last note - 上一个音符 - - - - Volume - 音量 - - - - Panning - 声相 - - - - Pitch - 音高 - - - - Pitch range - 音域范围 - - - - Mixer channel - 效果通道 - - - - Master pitch - 主音高 - - - - Enable/Disable MIDI CC - - - - - CC Controller %1 - - - - - - Default preset - 预置 - - - - InstrumentTrackView - - - Volume - 音量 - - - - Volume: - 音量: - - - - VOL - 音量 - - - - Panning - 声相 - - - - Panning: - 声相: - - - - PAN - 声相 - - - - MIDI - MIDI - - - - Input - 输入 - - - - Output - 输出 - - - - Open/Close MIDI CC Rack - - - - - Channel %1: %2 - 效果 %1: %2 - - - - InstrumentTrackWindow - - - GENERAL SETTINGS - 常规设置 - - - - Volume - 音量 - - - - Volume: - 音量: - - - - VOL - 音量 - - - - Panning - 声相 - - - - Panning: - 声相: - - - - PAN - 声相 - - - - Pitch - 音高 - - - - Pitch: - 音高: - - - - cents - 音分 cents - - - - PITCH - 音调 - - - - Pitch range (semitones) - 音域范围(半音) - - - - RANGE - 范围 - - - - Mixer channel - 效果通道 - - - - CHANNEL - 效果 - - - - Save current instrument track settings in a preset file - 保存当前乐器轨道设置到预设文件 - - - - SAVE - 保存 - - - - Envelope, filter & LFO - - - - - Chord stacking & arpeggio - - - - - Effects - 效果 - - - - MIDI - MIDI - - - - Miscellaneous - 杂项 - - - - Save preset - 保存预置 - - - - XML preset file (*.xpf) - XML 预设文件 (*.xpf) - - - - Plugin - 插件 - - - - JackApplicationW - - + NSM applications cannot use abstract or absolute paths - + NSM applications cannot use CLI arguments - + You need to save the current Carla project before NSM can be used @@ -6861,946 +3084,9 @@ Please make sure you have write permission to the file and the directory contain JuceAboutW - - About JUCE - - - - - <b>About JUCE</b> - - - - - This program uses JUCE version 3.x.x. - - - - - JUCE (Jules' Utility Class Extensions) is an all-encompassing C++ class library for developing cross-platform software. - -It contains pretty much everything you're likely to need to create most applications, and is particularly well-suited for building highly-customised GUIs, and for handling graphics and sound. - -JUCE is licensed under the GNU Public Licence version 2.0. -One module (juce_core) is permissively licensed under the ISC. - -Copyright (C) 2017 ROLI Ltd. - - - - + This program uses JUCE version %1. - - - - - Knob - - - Set linear - 设置为线性 - - - - Set logarithmic - 设置为对数 - - - - - Set value - 设置值 - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - 请输入介于 -96.0 dBFS 和 6.0 dBFS之间的值: - - - - Please enter a new value between %1 and %2: - 请输入一个介于%1和%2之间的数值: - - - - LadspaControl - - - Link channels - 关联通道 - - - - LadspaControlDialog - - - Link Channels - 连接通道 - - - - Channel - 通道 - - - - LadspaControlView - - - Link channels - 连接通道 - - - - Value: - 值: - - - - LadspaEffect - - - Unknown LADSPA plugin %1 requested. - 已请求未知 LADSPA 插件 %1. - - - - LcdFloatSpinBox - - - Set value - 设置值 - - - - Please enter a new value between %1 and %2: - 请输入一个介于 %1 和 %2 的值: - - - - LcdSpinBox - - - Set value - 设置值 - - - - Please enter a new value between %1 and %2: - 请输入一个介于%1和%2之间的数值: - - - - LeftRightNav - - - - - Previous - 上个 - - - - - - Next - 下个 - - - - Previous (%1) - 上 (%1) - - - - Next (%1) - 下 (%1) - - - - LfoController - - - LFO Controller - LFO 控制器 - - - - Base value - 基准值 - - - - Oscillator speed - 振动速度 - - - - Oscillator amount - 振动数量 - - - - Oscillator phase - 振动相位 - - - - Oscillator waveform - 振动波形 - - - - Frequency Multiplier - 频率加倍器 - - - - LfoControllerDialog - - - LFO - LFO - - - - BASE - 基准 - - - - Base: - 基准值: - - - - FREQ - 频率 - - - - LFO frequency: - LFO频率 - - - - AMNT - 数量 - - - - Modulation amount: - 调制量: - - - - PHS - 相位 - - - - Phase offset: - 相位差: - - - - degrees - 角度 - - - - Sine wave - 正弦波 - - - - Triangle wave - 三角波 - - - - Saw wave - 锯齿波 - - - - Square wave - 方波 - - - - Moog saw wave - Moog 锯齿波 - - - - Exponential wave - 指数爆炸波形 - - - - White noise - 白噪音 - - - - User-defined shape. -Double click to pick a file. - 自定义波形 -双击选择波形文件 - - - - Mutliply modulation frequency by 1 - 调制频率乘以1 - - - - Mutliply modulation frequency by 100 - 调制评论乘以100 - - - - Divide modulation frequency by 100 - 调制评论除以100 - - - - Engine - - - Generating wavetables - 正在生成波形表 - - - - Initializing data structures - 正在初始化数据结构 - - - - Opening audio and midi devices - 正在启动音频和 MIDI 设备 - - - - Launching mixer threads - 生在启动混音器线程 - - - - MainWindow - - - Configuration file - 配置文件 - - - - Error while parsing configuration file at line %1:%2: %3 - 解析配置文件发生错误(行%1:%2:%3) - - - - Could not open file - 无法打开文件 - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - 无法写入文件 %1 -请确保您有对该文件以及包含该文件目录的写入权限! - - - - Project recovery - 工程恢复 - - - - There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - 发现了一个恢复文件。看上去上个会话没有正常结束或者其他的 LMMS 进程已经运行。你想要恢复这个项目吗? - - - - - Recover - 恢复 - - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - 恢复文件。请不要在恢复文件时运行多个 LMMS 程序。 - - - - - Discard - 丢弃 - - - - Launch a default session and delete the restored files. This is not reversible. - 运行一个新的默认会话并且删除恢复文件。此操作无法撤销。 - - - - Version %1 - 版本 %1 - - - - Preparing plugin browser - 正在准备插件浏览器 - - - - Preparing file browsers - 正在准备文件浏览器 - - - - My Projects - 我的工程 - - - - My Samples - 我的采样 - - - - My Presets - 我的预设 - - - - My Home - 我的主目录 - - - - Root directory - 根目录 - - - - Volumes - 音量 - - - - My Computer - 我的电脑 - - - - &File - 文件(&F) - - - - &New - 新建(&N) - - - - &Open... - 打开(&O)... - - - - Loading background picture - 正在加载背景图片 - - - - &Save - 保存(&S) - - - - Save &As... - 另存为(&A)... - - - - Save as New &Version - 保存为新版本(&V) - - - - Save as default template - 保存为默认模板 - - - - Import... - 导入... - - - - E&xport... - 导出(&E)... - - - - E&xport Tracks... - 导出音轨(&X)... - - - - Export &MIDI... - 导出 MIDI (&M)... - - - - &Quit - 退出(&Q) - - - - &Edit - 编辑(&E) - - - - Undo - 撤销 - - - - Redo - 重做 - - - - Settings - 设置 - - - - &View - 视图 (&V) - - - - &Tools - 工具(&T) - - - - &Help - 帮助(&H) - - - - Online Help - 在线帮助 - - - - Help - 帮助 - - - - About - 关于 - - - - Create new project - 新建工程 - - - - Create new project from template - 从模版新建工程 - - - - Open existing project - 打开已有工程 - - - - Recently opened projects - 最近打开的工程 - - - - Save current project - 保存当前工程 - - - - Export current project - 导出当前工程 - - - - Metronome - 节拍器 - - - - - Song Editor - 显示/隐藏歌曲编辑器 - - - - - Beat+Bassline Editor - 显示/隐藏节拍+旋律编辑器 - - - - - Piano Roll - 显示/隐藏钢琴窗 - - - - - Automation Editor - 显示/隐藏自动控制编辑器 - - - - - Mixer - 显示/隐藏混音器 - - - - Show/hide controller rack - 显示/隐藏控制器机架 - - - - Show/hide project notes - 显示/隐藏工程注释 - - - - Untitled - 未标题 - - - - Recover session. Please save your work! - 恢复会话。请保存你的工作! - - - - LMMS %1 - LMMS %1 - - - - Recovered project not saved - 恢复的工程没有保存 - - - - This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? - 这个工程已从上一个会话中恢复。它现在没有被保存, 并且如果你不保存, 它将会丢失。你现在想保存它吗? - - - - Project not saved - 工程未保存 - - - - The current project was modified since last saving. Do you want to save it now? - 此工程自上次保存后有了修改,你想保存吗? - - - - Open Project - 打开工程 - - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - - Save Project - 保存工程 - - - - LMMS Project - LMMS 工程 - - - - LMMS Project Template - LMMS 工程模板 - - - - Save project template - 保存工程模板 - - - - Overwrite default template? - 覆盖默认的模板? - - - - This will overwrite your current default template. - 这将会覆盖你的当前默认模板。 - - - - Help not available - 帮助不可用 - - - - Currently there's no help available in LMMS. -Please visit http://lmms.sf.net/wiki for documentation on LMMS. - LMMS现在没有可用的帮助 -请访问 http://lmms.sf.net/wiki 了解LMMS的相关文档。 - - - - Controller Rack - 显示/隐藏控制器机架 - - - - Project Notes - 显示/隐藏工程注释 - - - - Fullscreen - - - - - Volume as dBFS - 以 dBFS 为单位显示音量 - - - - Smooth scroll - 平滑滚动 - - - - Enable note labels in piano roll - 在钢琴窗中显示音号 - - - - MIDI File (*.mid) - MIDI 文件 (*.mid) - - - - - untitled - 未标题 - - - - - Select file for project-export... - 为工程导出选择文件... - - - - Select directory for writing exported tracks... - 选择写入导出音轨的目录... - - - - Save project - 保存工程 - - - - Project saved - 工程已保存 - - - - The project %1 is now saved. - 工程 %1 已保存。 - - - - Project NOT saved. - 工程 **没有** 保存。 - - - - The project %1 was not saved! - 工程%1没有保存! - - - - Import file - 导入文件 - - - - MIDI sequences - MIDI 音序器 - - - - Hydrogen projects - Hydrogen工程 - - - - All file types - 所有类型 - - - - MeterDialog - - - - Meter Numerator - 分子数值 - - - - Meter numerator - - - - - - Meter Denominator - 分母数值 - - - - Meter denominator - - - - - TIME SIG - 拍子记号 - - - - MeterModel - - - Numerator - 分子 - - - - Denominator - 分母 - - - - MidiCCRackView - - - - MIDI CC Rack - %1 - - - - - MIDI CC Knobs: - - - - - CC %1 - - - - - MidiController - - - MIDI Controller - MIDI控制器 - - - - unnamed_midi_controller - 未命名的 MIDI 控制器 - - - - MidiImport - - - - Setup incomplete - 设置不完整 - - - - You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. - - - - - You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - 你在编译 LMMS 时没有加入 SoundFont2 播放器支持, 此播放器默认用于添加导入的 MIDI 文件。因此在 MIDI 文件导入后, 将没有声音。 - - - - MIDI Time Signature Numerator - - - - - MIDI Time Signature Denominator - - - - - Numerator - 分子 - - - - Denominator - 分母 - - - - Track - 轨道 - - - - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - JACK服务崩溃 - - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - JACK 音频服务器似乎已经关闭 + 本程序使用 JUCE %1 版本。 @@ -7808,7 +3094,7 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MIDI Pattern - + MIDI 片段 @@ -7937,7 +3223,7 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Default Length: - 默认长度 + 默认长度: @@ -7990,2749 +3276,388 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Quantize: - + 量化: &File - 文件(&F) + 文件 (&F) &Edit - 编辑(&E) + 编辑 (&E) &Quit - 退出(&Q) + 退出 (&Q) - - &Insert Mode - + + Esc + Esc - F - + &Insert Mode + 插入模式 (&I) - - &Velocity Mode - + + F + F + &Velocity Mode + 力度模式 (&V) + + + D D - + Select All 全选 - + A A - - MidiPort - - - Input channel - 输入通道 - - - - Output channel - 输出通道 - - - - Input controller - 输入控制器 - - - - Output controller - 输出控制器 - - - - Fixed input velocity - 固定输入力度 - - - - Fixed output velocity - 固定输出力度 - - - - Fixed output note - 固定输出音符 - - - - Output MIDI program - MIDI 输出程序 - - - - Base velocity - 基准力度 - - - - Receive MIDI-events - 接受 MIDI 事件 - - - - Send MIDI-events - 发送 MIDI 事件 - - - - MidiSetupWidget - - - Device - 设备 - - - - MonstroInstrument - - - Osc 1 volume - 振荡器1音量 - - - - Osc 1 panning - 振荡器1声相 - - - - Osc 1 coarse detune - 振荡器1声调粗调 - - - - Osc 1 fine detune left - 振荡器1左声道微调 - - - - Osc 1 fine detune right - 振荡器1右声道微调 - - - - Osc 1 stereo phase offset - 振荡器1立体声相位差 - - - - Osc 1 pulse width - 振荡器1脉冲宽度 - - - - Osc 1 sync send on rise - 振荡器1起音时发送同步 - - - - Osc 1 sync send on fall - 振荡器1收音时发送同步 - - - - Osc 2 volume - 振荡器2音量 - - - - Osc 2 panning - 振荡器2声相 - - - - Osc 2 coarse detune - 振荡器2音调粗调 - - - - Osc 2 fine detune left - 振荡器2左声道微调 - - - - Osc 2 fine detune right - 振荡器2右声道微调 - - - - Osc 2 stereo phase offset - 振荡器2立体声相位差 - - - - Osc 2 waveform - 振荡器2波形 - - - - Osc 2 sync hard - 振荡器2硬同步 - - - - Osc 2 sync reverse - 振荡器2反向同步 - - - - Osc 3 volume - 振荡器3音量 - - - - Osc 3 panning - 振荡器3声相 - - - - Osc 3 coarse detune - 振荡器3音调粗调 - - - - Osc 3 Stereo phase offset - 振荡器3立体声相位差 - - - - Osc 3 sub-oscillator mix - 振荡器3分震荡器混合 - - - - Osc 3 waveform 1 - 振荡器3波形1 - - - - Osc 3 waveform 2 - 振荡器3波形2 - - - - Osc 3 sync hard - 振荡器3硬同步 - - - - Osc 3 Sync reverse - 振荡器3反向同步 - - - - LFO 1 waveform - LFO1 波形 - - - - LFO 1 attack - LFO1 打进 - - - - LFO 1 rate - LFO1 频率 - - - - LFO 1 phase - LFO1 相位 - - - - LFO 2 waveform - LFO2 波形 - - - - LFO 2 attack - LFO 2 打进 - - - - LFO 2 rate - LFO 2 频率 - - - - LFO 2 phase - LFO 2 相位 - - - - Env 1 pre-delay - 包络 1 预延迟 - - - - Env 1 attack - 包络 1 打进 - - - - Env 1 hold - 包络 1 持续 - - - - Env 1 decay - 包络 1 衰减 - - - - Env 1 sustain - 包络 1 延音 - - - - Env 1 release - 包络 1 释放 - - - - Env 1 slope - 包络 1 坡度 - - - - Env 2 pre-delay - 包络 2 预延迟 - - - - Env 2 attack - 包络 2 打进 - - - - Env 2 hold - 包络 2 持续 - - - - Env 2 decay - 包络 2 衰减 - - - - Env 2 sustain - 包络 2 延音 - - - - Env 2 release - 包络 2 释放 - - - - Env 2 slope - 包络 2 坡度 - - - - Osc 2+3 modulation - 振荡器2+3 调制 - - - - Selected view - 选定的视图 - - - - Osc 1 - Vol env 1 - 振荡器 1 音量包络 1 - - - - Osc 1 - Vol env 2 - 振荡器 1 音量包络2 - - - - Osc 1 - Vol LFO 1 - 振荡器 1 音量LFO 1 - - - - Osc 1 - Vol LFO 2 - 振荡器 1 音量LFO 2 - - - - Osc 2 - Vol env 1 - 振荡器 2 音量包络 1 - - - - Osc 2 - Vol env 2 - 振荡器 2 音量包络2 - - - - Osc 2 - Vol LFO 1 - 振荡器 2 音量LFO 1 - - - - Osc 2 - Vol LFO 2 - 振荡器 2 音量LFO 2 - - - - Osc 3 - Vol env 1 - 振荡器 3 音量包络 1 - - - - Osc 3 - Vol env 2 - 振荡器 3 音量包络 2 - - - - Osc 3 - Vol LFO 1 - 振荡器 3 音量LFO 1 - - - - Osc 3 - Vol LFO 2 - 振荡器 3 音量LFO 2 - - - - Osc 1 - Phs env 1 - 振荡器 1 相位包络 1 - - - - Osc 1 - Phs env 2 - 振荡器 1 相位包络 2 - - - - Osc 1 - Phs LFO 1 - 振荡器 1 相位LFO 1 - - - - Osc 1 - Phs LFO 2 - 振荡器 1 相位LFO 2 - - - - Osc 2 - Phs env 1 - 振荡器 2 相位包络 1 - - - - Osc 2 - Phs env 2 - 振荡器 2 相位包络 2 - - - - Osc 2 - Phs LFO 1 - 振荡器 2 相位LFO 1 - - - - Osc 2 - Phs LFO 2 - 振荡器 2 相位LFO 2 - - - - Osc 3 - Phs env 1 - 振荡器 3 相位包络 1 - - - - Osc 3 - Phs env 2 - 振荡器 3 相位包络 2 - - - - Osc 3 - Phs LFO 1 - 振荡器 3 相位LFO 1 - - - - Osc 3 - Phs LFO 2 - 振荡器 3 相位LFO 2 - - - - Osc 1 - Pit env 1 - 振荡器 1 音调包络 1 - - - - Osc 1 - Pit env 2 - 振荡器 1 音调包络 2 - - - - Osc 1 - Pit LFO 1 - 振荡器 1 音调LFO 1 - - - - Osc 1 - Pit LFO 2 - 振荡器 1 音调LFO 2 - - - - Osc 2 - Pit env 1 - 振荡器 2 音调包络 1 - - - - Osc 2 - Pit env 2 - 振荡器 2 音调包络 2 - - - - Osc 2 - Pit LFO 1 - 振荡器 2 音调LFO 1 - - - - Osc 2 - Pit LFO 2 - 振荡器 2 音调LFO 2 - - - - Osc 3 - Pit env 1 - 振荡器 3 音调包络 1 - - - - Osc 3 - Pit env 2 - 振荡器 3 音调包络 2 - - - - Osc 3 - Pit LFO 1 - 振荡器 3 音调LFO 1 - - - - Osc 3 - Pit LFO 2 - 振荡器 3 音调LFO 2 - - - - Osc 1 - PW env 1 - 振荡器 1 脉冲包络 1 - - - - Osc 1 - PW env 2 - 振荡器 1 脉冲包络 2 - - - - Osc 1 - PW LFO 1 - 振荡器 1 脉冲LFO 1 - - - - Osc 1 - PW LFO 2 - 振荡器 1 脉冲LFO 2 - - - - Osc 3 - Sub env 1 - 振荡器 3 分支包络 1 - - - - Osc 3 - Sub env 2 - 振荡器 3 分支包络 2 - - - - Osc 3 - Sub LFO 1 - 振荡器 3 分支LFO 1 - - - - Osc 3 - Sub LFO 2 - 振荡器 3 分支LFO 2 - - - - - Sine wave - 正弦波 - - - - Bandlimited Triangle wave - 限频段的三角波 - - - - Bandlimited Saw wave - 限频段的锯齿波 - - - - Bandlimited Ramp wave - 限频段的倾斜波 - - - - Bandlimited Square wave - 限频段的方波 - - - - Bandlimited Moog saw wave - 限频段的Moog锯齿波 - - - - - Soft square wave - 软方波 - - - - Absolute sine wave - 绝对正弦波 - - - - - Exponential wave - 指数爆炸波形 - - - - White noise - 白噪音 - - - - Digital Triangle wave - 数码三角波 - - - - Digital Saw wave - 数码锯齿波 - - - - Digital Ramp wave - 数码倾斜波 - - - - Digital Square wave - 数码方波 - - - - Digital Moog saw wave - 数码Moog锯齿波 - - - - Triangle wave - 三角波 - - - - Saw wave - 锯齿波 - - - - Ramp wave - 斜坡波 - - - - Square wave - 方波 - - - - Moog saw wave - Moog 锯齿波 - - - - Abs. sine wave - 绝对值正弦波 - - - - Random - 随机 - - - - Random smooth - 随机平滑 - - - - MonstroView - - - Operators view - 操作视图 - - - - Matrix view - 矩阵视图 - - - - - - Volume - 音量 - - - - - - Panning - 声相 - - - - - - Coarse detune - 音高粗调 - - - - - - semitones - 半音 - - - - - Fine tune left - 左声道微调 - - - - - - - cents - 音分 - - - - - Fine tune right - 右声道微调 - - - - - - Stereo phase offset - 立体声相位差 - - - - - - - - deg - 角度 - - - - Pulse width - 脉冲宽度 - - - - Send sync on pulse rise - 脉冲起时发送同步 - - - - Send sync on pulse fall - 脉冲结束发送同步 - - - - Hard sync oscillator 2 - 硬同步震荡器 2 - - - - Reverse sync oscillator 2 - 反向同步震荡器 2 - - - - Sub-osc mix - - - - - Hard sync oscillator 3 - - - - - Reverse sync oscillator 3 - - - - - - - - Attack - 打进声 - - - - - Rate - 比特率 - - - - - Phase - - - - - - Pre-delay - 预延迟 - - - - - Hold - 保持 - - - - - Decay - 衰减 - - - - - Sustain - 持续 - - - - - Release - 释放 - - - - - Slope - - - - - Mix osc 2 with osc 3 - - - - - Modulate amplitude of osc 3 by osc 2 - - - - - Modulate frequency of osc 3 by osc 2 - - - - - Modulate phase of osc 3 by osc 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Modulation amount - 调制量 - - - - MultitapEchoControlDialog - - - Length - 长度 - - - - Step length: - 步进长度: - - - - Dry - 干声 - - - - Dry gain: - 干声增益: - - - - Stages - 低通层数 - - - - Low-pass stages: - - - - - Swap inputs - 互换输入 - - - - Swap left and right input channels for reflections - - - - - NesInstrument - - - Channel 1 coarse detune - - - - - Channel 1 volume - - - - - Channel 1 envelope length - - - - - Channel 1 duty cycle - - - - - Channel 1 sweep amount - - - - - Channel 1 sweep rate - - - - - Channel 2 Coarse detune - 通道2音调粗调 - - - - Channel 2 Volume - 通道 2 音量 - - - - Channel 2 envelope length - - - - - Channel 2 duty cycle - - - - - Channel 2 sweep amount - - - - - Channel 2 sweep rate - - - - - Channel 3 coarse detune - - - - - Channel 3 volume - - - - - Channel 4 volume - - - - - Channel 4 envelope length - - - - - Channel 4 noise frequency - - - - - Channel 4 noise frequency sweep - - - - - Master volume - 主音量 - - - - Vibrato - 颤音 - - - - NesInstrumentView - - - - - - Volume - 音量 - - - - - - Coarse detune - 音高粗调 - - - - - - Envelope length - 包络线长度 - - - - Enable channel 1 - 启用通道 1 - - - - Enable envelope 1 - 启用包络 1 - - - - Enable envelope 1 loop - 启用包络 1 循环 - - - - Enable sweep 1 - - - - - - Sweep amount - - - - - - Sweep rate - - - - - - 12.5% Duty cycle - 12.5% 占空比 - - - - - 25% Duty cycle - 25% 占空比 - - - - - 50% Duty cycle - 50% 占空比 - - - - - 75% Duty cycle - 75% 占空比 - - - - Enable channel 2 - 启用通道 2 - - - - Enable envelope 2 - 启用包络 2 - - - - Enable envelope 2 loop - 启用包络 2 循环 - - - - Enable sweep 2 - - - - - Enable channel 3 - 启用通道 3 - - - - Noise Frequency - 噪音频率 - - - - Frequency sweep - - - - - Enable channel 4 - 启用通道 4 - - - - Enable envelope 4 - 启用包络 4 - - - - Enable envelope 4 loop - 启用包络 4 循环 - - - - Quantize noise frequency when using note frequency - 在使用音符频率时,量化噪音频率 - - - - Use note frequency for noise - 对噪音使用音符频率 - - - - Noise mode - 噪音模式 - - - - Master volume - 主音量 - - - - Vibrato - 颤音 - - - - OpulenzInstrument - - - Patch - 音色 - - - - Op 1 attack - - - - - Op 1 decay - - - - - Op 1 sustain - - - - - Op 1 release - - - - - Op 1 level - - - - - Op 1 level scaling - - - - - Op 1 frequency multiplier - - - - - Op 1 feedback - - - - - Op 1 key scaling rate - - - - - Op 1 percussive envelope - - - - - Op 1 tremolo - - - - - Op 1 vibrato - - - - - Op 1 waveform - - - - - Op 2 attack - - - - - Op 2 decay - - - - - Op 2 sustain - - - - - Op 2 release - - - - - Op 2 level - - - - - Op 2 level scaling - - - - - Op 2 frequency multiplier - - - - - Op 2 key scaling rate - - - - - Op 2 percussive envelope - - - - - Op 2 tremolo - - - - - Op 2 vibrato - - - - - Op 2 waveform - - - - - FM - FM - - - - Vibrato depth - - - - - Tremolo depth - - - - - OpulenzInstrumentView - - - - Attack - 打击声 - - - - - Decay - 衰减 - - - - - Release - 释放 - - - - - Frequency multiplier - 频率加倍器 - - - - OscillatorObject - - - Osc %1 waveform - Osc %1 波形 - - - - Osc %1 harmonic - Osc %1 泛音 - - - - - Osc %1 volume - Osc %1 音量 - - - - - Osc %1 panning - Osc %1 声像 - - - - - Osc %1 fine detuning left - 振荡器%1左声道微调 - - - - Osc %1 coarse detuning - 振荡器%1音调粗调 - - - - Osc %1 fine detuning right - 振荡器%1右声道微调 - - - - Osc %1 phase-offset - 振荡器%1相位偏移 - - - - Osc %1 stereo phase-detuning - 振荡器%1立体相位偏移 - - - - Osc %1 wave shape - 振荡器%1波形 - - - - Modulation type %1 - 调制类型 %1 - - - - Oscilloscope - - - Oscilloscope - - - - - Click to enable - 点击启用 - - PatchesDialog + Qsynth: Channel Preset - Qsynth: 通道预设 + Qsynth:通道预设 + Bank selector 音色选择器 + Bank + Program selector 乐器选择器 + Patch 音色 + Name 名称 + OK 确定 + Cancel 取消 - - PatmanView - - - Open patch - - - - - Loop - 循环 - - - - Loop mode - 循环模式 - - - - Tune - 调音 - - - - Tune mode - 调音模式 - - - - No file selected - 未选择文件 - - - - Open patch file - 打开音色文件 - - - - Patch-Files (*.pat) - 音色文件 (*.pat) - - - - MidiClipView - - - Open in piano-roll - 在钢琴窗中打开 - - - - Set as ghost in piano-roll - - - - - Clear all notes - 清除所有音符 - - - - Reset name - 重置名称 - - - - Change name - 修改名称 - - - - Add steps - 添加音阶 - - - - Remove steps - 移除音阶 - - - - Clone Steps - 复制音阶 - - - - PeakController - - - Peak Controller - 峰值控制器 - - - - Peak Controller Bug - 峰值控制器 Bug - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - 在老版本的 LMMS 中, 峰值控制器因为有 bug 而可能没有正确连接。请确保峰值控制器正常连接后再次保存次文件。我们对给你造成的不便深表歉意。 - - - - PeakControllerDialog - - - PEAK - 峰值 - - - - LFO Controller - LFO 控制器 - - - - PeakControllerEffectControlDialog - - - BASE - 基准 - - - - Base: - 基准值: - - - - AMNT - 数量 - - - - Modulation amount: - 调制量: - - - - MULT - 增幅 - - - - Amount multiplicator: - - - - - ATCK - 打击 - - - - Attack: - 打击声: - - - - DCAY - 衰减 - - - - Release: - 释音: - - - - TRSH - - - - - Treshold: - 阀值: - - - - Mute output - 输出静音 - - - - Absolute value - - - - - PeakControllerEffectControls - - - Base value - 基准值 - - - - Modulation amount - 调制量 - - - - Attack - 打进声 - - - - Release - 释放 - - - - Treshold - 阀值 - - - - Mute output - 输出静音 - - - - Absolute value - - - - - Amount multiplicator - - - - - PianoRoll - - - Note Velocity - 音符音量 - - - - Note Panning - 音符声相偏移 - - - - Mark/unmark current semitone - 标记/取消标记当前半音 - - - - Mark/unmark all corresponding octave semitones - 标记/取消标记所有对应的八度音的半音 - - - - Mark current scale - 标记当前音阶 - - - - Mark current chord - 标记当前和弦 - - - - Unmark all - 取消标记所有 - - - - Select all notes on this key - 选中所有相同音调的音符 - - - - Note lock - 音符锁定 - - - - Last note - 上一个音符 - - - - No key - - - - - No scale - 无音阶 - - - - No chord - 没有和弦 - - - - Nudge - - - - - Snap - - - - - Velocity: %1% - 音量:%1% - - - - Panning: %1% left - 声相:%1% 偏左 - - - - Panning: %1% right - 声相:%1% 偏右 - - - - Panning: center - 声相:居中 - - - - Glue notes failed - - - - - Please select notes to glue first. - - - - - Please open a clip by double-clicking on it! - 双击打开片段! - - - - - Please enter a new value between %1 and %2: - 请输入一个介于 %1 和 %2 的值: - - - - PianoRollWindow - - - Play/pause current clip (Space) - 播放/暂停当前片段(空格) - - - - Record notes from MIDI-device/channel-piano - 从 MIDI 设备/通道钢琴(channel-piano) 录制音符 - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - 一边从 MIDI 设备/通道钢琴(channel-piano) 录制音符一边播放 - - - - Record notes from MIDI-device/channel-piano, one step at the time - - - - - Stop playing of current clip (Space) - 停止当前片段(空格) - - - - Edit actions - 编辑功能 - - - - Draw mode (Shift+D) - 绘制模式 (Shift+D) - - - - Erase mode (Shift+E) - 擦除模式 (Shift+E) - - - - Select mode (Shift+S) - 选择模式 (Shift+S) - - - - Pitch Bend mode (Shift+T) - - - - - Quantize - 量化 - - - - Quantize positions - - - - - Quantize lengths - - - - - File actions - - - - - Import clip - - - - - - Export clip - - - - - Copy paste controls - 复制粘贴控制 - - - - Cut (%1+X) - - - - - Copy (%1+C) - - - - - Paste (%1+V) - - - - - Timeline controls - 时间线控制 - - - - Glue - - - - - Knife - - - - - Fill - - - - - Cut overlaps - - - - - Min length as last - - - - - Max length as last - - - - - Zoom and note controls - 缩放和音符控制 - - - - Horizontal zooming - 水平缩放 - - - - Vertical zooming - 垂直缩放 - - - - Quantization - 量化控制 - - - - Note length - - - - - Key - - - - - Scale - - - - - Chord - - - - - Snap mode - - - - - Clear ghost notes - - - - - - Piano-Roll - %1 - 钢琴窗 - %1 - - - - - Piano-Roll - no clip - 钢琴窗 - 没有片段 - - - - - XML clip file (*.xpt *.xptz) - - - - - Export clip success - - - - - Clip saved to %1 - - - - - Import clip. - - - - - You are about to import a clip, this will overwrite your current clip. Do you want to continue? - - - - - Open clip - - - - - Import clip success - - - - - Imported clip %1! - - - - - PianoView - - - Base note - 基本音 - - - - First note - - - - - Last note - 上一个音符 - - - - Plugin - - - Plugin not found - 未找到插件 - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - 插件“%1”无法找到或无法载入! -原因:%2 - - - - Error while loading plugin - 载入插件时发生错误 - - - - Failed to load plugin "%1"! - 载入插件“%1”失败! - - PluginBrowser - - Instrument Plugins - - - - - Instrument browser - 乐器浏览器 - - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - 将乐器插件拖入歌曲编辑器, 节拍低音线编辑器, 或者现有的乐器轨道。 - - - + no description 没有描述 - + A native amplifier plugin 原生增益插件 - + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track - 简单地在乐器栏使用采样(比如鼓音源), 同时也提供多种设置 + 简单地在乐器栏使用采样 (比如鼓音源),同时也提供多种设置 - + Boost your bass the fast and simple way - + 以快速且简单的方式增强你的低音 - + Customizable wavetable synthesizer 可自定制的波表合成器 - + An oversampling bitcrusher - + Carla Patchbay Instrument Carla Patchbay 乐器 - + Carla Rack Instrument Carla Rack 乐器 - + A dynamic range compressor. - + 一个动态范围压缩器 - + A 4-band Crossover Equalizer - 一种 四波段交叉均衡器 + 一个四波段交叉均衡器 - + A native delay plugin 原生的衰减插件 - + A Dual filter plugin - + 双滤波器插件 - + plugin for processing dynamics in a flexible way - + A native eq plugin 原生的 EQ 插件 - + A native flanger plugin 一个原生的 镶边 (Flanger) 插件 - + Emulation of GameBoy (TM) APU GameBoy (TM) APU 模拟器 - + Player for GIG files 播放 GIG 文件的播放器 - + Filter for importing Hydrogen files into LMMS 导入 Hydrogen 工程文件到 LMMS 的解析器 - + Versatile drum synthesizer 多功能鼓合成器 - + List installed LADSPA plugins 列出已安装的 LADSPA 插件 - + plugin for using arbitrary LADSPA-effects inside LMMS. 在 LMMS 中使用任意 LADSPA 效果的插件。 - + Incomplete monophonic imitation TB-303 - 对单音 TB-303 的不完整的模拟器 + - + plugin for using arbitrary LV2-effects inside LMMS. - + 在 LMMS 中使用任意 LV2 效果的插件。 - + plugin for using arbitrary LV2 instruments inside LMMS. - + 在 LMMS 中使用任意 LV2 乐器的插件。 - + Filter for exporting MIDI-files from LMMS 从 LMMS 导出 MIDI 文件的生成器 - + Filter for importing MIDI-files into LMMS 导入 MIDI 文件到 LMMS 的解析器 - + Monstrous 3-oscillator synth with modulation matrix 带 3 个振荡器和调制矩阵的能发出像怪兽一样声音的合成器 - + A multitap echo delay plugin - + A NES-like synthesizer 类似于 NES 的合成器 - + 2-operator FM Synth - + Additive Synthesizer for organ-like sounds - + GUS-compatible patch instrument GUS 兼容音色的乐器 - + Plugin for controlling knobs with sound peaks - + 根据声音峰值控制旋钮的插件 - + Reverb algorithm by Sean Costello Sean Costello 发明的混响算法 - + Player for SoundFont files - 在工程中使用SoundFont + 在工程中使用 SoundFont - + LMMS port of sfxr sfxr 的 LMMS 移植版本 - + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. 模拟 MOS6581 和 MOS8580 SID 的模拟器 这些芯片曾在 Commodore 64 电脑上用过。 - + A graphical spectrum analyzer. - + 一款图形频谱分析器 - + Plugin for enhancing stereo separation of a stereo input file - + Plugin for freely manipulating stereo output - + Tuneful things to bang on - + Three powerful oscillators you can modulate in several ways 三个可以任你调制的强大振荡器 - + A stereo field visualizer. - + 一款立体声场可视化工具 - + VST-host for using VST(i)-plugins within LMMS LMMS的VST(i)插件宿主 - + Vibrating string modeler - + plugin for using arbitrary VST effects inside LMMS. 在 LMMS 中使用任意 VST 效果的插件。 - + 4-oscillator modulatable wavetable synth 有四个振荡器的可调制波表合成器 - + plugin for waveshaping - + Mathematical expression parser - + Embedded ZynAddSubFX 内置的 ZynAddSubFX - - - PluginDatabaseW - - Carla - Add New + + An all-pass filter allowing for extremely high orders. - - Format + + Granular pitch shifter - - Internal + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. - - LADSPA + + Basic Slicer - - DSSI - - - - - LV2 - - - - - VST2 - - - - - VST3 - - - - - AU - - - - - Sound Kits - - - - - Type - 类型 - - - - Effects - 效果 - - - - Instruments - 乐器插件 - - - - MIDI Plugins - - - - - Other/Misc - - - - - Architecture - - - - - Native - - - - - Bridged - - - - - Bridged (Wine) - - - - - Requirements - - - - - With Custom GUI - - - - - With CV Ports - - - - - Real-time safe only - - - - - Stereo only - - - - - With Inline Display - - - - - Favorites only - - - - - (Number of Plugins go here) - - - - - &Add Plugin - - - - - Cancel - 取消 - - - - Refresh - - - - - Reset filters - - - - - - - - - - - - - - - - - - - - TextLabel - - - - - Format: - - - - - Architecture: - - - - - Type: - 类型: - - - - MIDI Ins: - - - - - Audio Ins: - - - - - CV Outs: - - - - - MIDI Outs: - - - - - Parameter Ins: - - - - - Parameter Outs: - - - - - Audio Outs: - - - - - CV Ins: - - - - - UniqueID: - - - - - Has Inline Display: - - - - - Has Custom GUI: - - - - - Is Synth: - - - - - Is Bridged: - - - - - Information - - - - - Name - 名称 - - - - Label/URI - - - - - Maker - - - - - Binary/Filename - - - - - Focus Text Search - - - - - Ctrl+F - + + Tap to the beat + 跟着节拍敲击 @@ -10740,7 +3665,7 @@ This chip was used in the Commodore 64 computer. Plugin Editor - + 插件编辑器 @@ -10755,7 +3680,7 @@ This chip was used in the Commodore 64 computer. MIDI Control Channel: - + MIDI 控制通道: @@ -10806,7 +3731,7 @@ This chip was used in the Commodore 64 computer. Audio: - + 音频: @@ -10821,7 +3746,7 @@ This chip was used in the Commodore 64 computer. MIDI: - + MIDI: @@ -10830,110 +3755,558 @@ This chip was used in the Commodore 64 computer. - Send Bank/Program Changes - + Send Notes + 发送音符 - Send Control Changes - + Send Bank/Program Changes + 发送音色改变 + Send Control Changes + 发送控制器改变 + + + Send Channel Pressure - - - Send Note Aftertouch - - - Send Pitchbend - + Send Note Aftertouch + 发送音符触后 - Send All Sound/Notes Off - + Send Pitchbend + 发送弯音 - + + Send All Sound/Notes Off + 发送关闭所有声音 + + + Plugin Name - + +插件名称 + - + Program: 工程 - + MIDI Program: - + MIDI 音色: - + Save State - + 保存状态 - + Load State - + 加载状态 - + Information - + 信息 - + Label/URI: - + 标签/URI: - + Name: - + 名称: - + Type: 类型: - + Maker: - + 制作者: - + Copyright: - + 版权: - + Unique ID: - + 唯一 ID: PluginFactory - + Plugin not found. 未找到插件。 - + LMMS plugin %1 does not have a plugin descriptor named %2! LMMS插件 %1 没有一个插件描述符命名为 %2 + + PluginListDialog + + + Carla - Add New + Carla - 新增 + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + 仅显示已收藏 + + + + (Number of Plugins go here) + (插件数量在这里) + + + + &Add Plugin + 新增插件 (&A) + + + + Cancel + 取消 + + + + Refresh + 刷新 + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + 文本标签 + + + + Format: + 格式: + + + + Architecture: + 架构: + + + + Type: + 类型: + + + + MIDI Ins: + MIDI 输入: + + + + Audio Ins: + 音频输入: + + + + CV Outs: + CV 输出: + + + + MIDI Outs: + MIDI 输出: + + + + Parameter Ins: + 参数输入: + + + + Parameter Outs: + 参数输出: + + + + Audio Outs: + 音频输出: + + + + CV Ins: + CV 输入: + + + + UniqueID: + 唯一 ID: + + + + Has Inline Display: + 内置显示: + + + + Has Custom GUI: + 自定义界面 + + + + Is Synth: + 是否为合成器: + + + + Is Bridged: + 是否桥接: + + + + Information + 信息 + + + + Name + 名称 + + + + Label/Id/URI + 标签/ID/URI + + + + Maker + 制作者 + + + + Binary/Filename + 二进制/文件名 + + + + Format + 格式 + + + + Internal + 内置 + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + VST2 + VST2 + + + + VST3 + VST3 + + + + CLAP + CLAP + + + + AU + AU + + + + JSFX + JSFX + + + + Sound Kits + 声音套件 + + + + Type + 类型 + + + + Effects + 效果 + + + + Instruments + 乐器 + + + + MIDI Plugins + MIDI 插件 + + + + Other/Misc + 其他/杂项 + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + 其他 + + + + Architecture + + + + + + Native + 原生 + + + + Bridged + 桥接 + + + + Bridged (Wine) + 桥接 (Wine) + + + + Focus Text Search + + + + + Ctrl+F + Ctrl+F + + + + Bridged (32bit) + 桥接 (32 位) + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + 未知 + + + + + + + Yes + + + + + + + + No + + + PluginParameter @@ -10944,159 +4317,63 @@ Plugin Name Parameter Name - + 参数名称 + TextLabel + 文本标签 + + + ... - + ... - PluginRefreshW + PluginRefreshDialog - - Carla - Refresh + + Plugin Refresh + 插件刷新 + + + + Search for: - - Search for new... + + All plugins, ignoring cache - - LADSPA + + Updated plugins only - - DSSI + + Check previously invalid plugins - - LV2 - - - - - VST2 - - - - - VST3 - - - - - AU - - - - - SF2/3 - - - - - SFZ - - - - - Native - - - - - POSIX 32bit - - - - - POSIX 64bit - - - - - Windows 32bit - - - - - Windows 64bit - - - - - Available tools: - - - - - python3-rdflib (LADSPA-RDF support) - - - - - carla-discovery-win64 - - - - - carla-discovery-native - - - - - carla-discovery-posix32 - - - - - carla-discovery-posix64 - - - - - carla-discovery-win32 - - - - - Options: - - - - - Carla will run small processing checks when scanning the plugins (to make sure they won't crash). -You can disable these checks to get a faster scanning time (at your own risk). - - - - - Run processing checks while scanning - - - - + Press 'Scan' to begin the search - + Scan - + 扫描 - + >> Skip - + >> 跳过 - + Close 关闭 @@ -11113,2344 +4390,13619 @@ You can disable these checks to get a faster scanning time (at your own risk). - + Enable - + 启用 - + On/Off 开/关 - + - + PluginName - + 插件名称 - + MIDI MIDI - + AUDIO IN - + 音频输入 - + AUDIO OUT - + 音频输出 - + GUI - + 图形界面 - + Edit 编辑 - + Remove 移除 Plugin Name - + 插件名称 Preset: - - - - - ProjectNotes - - - Project Notes - 显示/隐藏工程注释 - - - - Enter project notes here - - - - - Edit Actions - 编辑功能 - - - - &Undo - 撤销(&U) - - - - %1+Z - %1+Z - - - - &Redo - 重做(&R) - - - - %1+Y - %1+Y - - - - &Copy - 复制(&C) - - - - %1+C - %1+C - - - - Cu&t - 剪切(&T) - - - - %1+X - %1+X - - - - &Paste - 粘贴(&P) - - - - %1+V - %1+V - - - - Format Actions - 格式功能 - - - - &Bold - 加粗(&B) - - - - %1+B - %1+B - - - - &Italic - 斜体(&I) - - - - %1+I - %1+I - - - - &Underline - 下划线(&U) - - - - %1+U - %1+U - - - - &Left - 左对齐(&L) - - - - %1+L - %1+L - - - - C&enter - 居中(&E) - - - - %1+E - %1+E - - - - &Right - 右对齐(&R) - - - - %1+R - %1+R - - - - &Justify - 匀齐(&J) - - - - %1+J - %1+J - - - - &Color... - 颜色(&C)... + 预置: ProjectRenderer - + WAV (*.wav) - + WAV (*.wav) - + FLAC (*.flac) - + FLAC (*.flac) - + OGG (*.ogg) - + OGG (*.ogg) - + MP3 (*.mp3) + MP3 (*.mp3) + + + + QGroupBox + + + + Settings for %1 QObject - + Reload Plugin - + 重新载入插件 - + Show GUI 显示图形界面 - + Help 帮助 + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + 打开音频文件 + + + + Error loading sample + 采样加载错误 + + + + %1 (unsupported) + %1 (不支持) + QWidget - - - - + + Name: 名称: - - URI: - - - - - - + Maker: 制作者: - - - + Copyright: 版权: - - + Requires Real Time: 要求实时: - - - - - - + + + Yes - - - - - - + + + No - - + Real Time Capable: 是否支持实时: - - + In Place Broken: 被损坏: - - + Channels In: 输入通道: - - + Channels Out: 输出通道: - + File: %1 文件:%1 - + File: 文件: - RecentProjectsMenu + XYControllerW - - &Recently Opened Projects - 最近打开的工程(&R) + + XY Controller + XY 控制器 + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + 设置 (&S) + + + + Channels + 通道 + + + + &File + 文件 (&F) + + + + Show MIDI &Keyboard + 显示 MIDI 键盘 (&K) + + + + (All) + (全部) + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + 退出 (&Q) + + + + Esc + Esc + + + + (None) + (无) - RenameDialog + lmms::AmplifierControls - - Rename... - 重命名... + + Volume + 音量 + + + + Panning + 声相 + + + + Left gain + 左增益 + + + + Right gain + 右增益 - ReverbSCControlDialog + lmms::AudioFileProcessor - - Input - 输入 - - - - Input gain: - 输入增益: - - - - Size + + Amplify - - Size: - + + Start of sample + 采样起始 - - Color - + + End of sample + 采样结尾 - - Color: - + + Loopback point + 循环点 - - Output - 输出 + + Reverse sample + 反转采样 - - Output gain: - 输出增益: + + Loop mode + 循环模式 + + + + Stutter + 重复 + + + + Interpolation mode + 补间模式 + + + + None + + + + + Linear + 线性 + + + + Sinc + Sinc + + + + Sample not found + 未找到采样 - ReverbSCControls + lmms::AudioJack - + + JACK client restarted + JACK 客户端已重启 + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + LMMS 由于某些原因与 JACK 断开连接,这可能是因为 LMMS 的 JACK 后端重启导致的,你需要手动重新连接。 + + + + JACK server down + JACK 服务崩溃 + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + JACK 服务好像崩溃了而且未能正常启动,LMMS 无法正常工作,你需要保存你的工程然后重启 JACK 和LMMS。 + + + + Client name + 客户端名称 + + + + Channels + 通道 + + + + lmms::AudioOss + + + Device + 设备 + + + + Channels + 通道 + + + + lmms::AudioPortAudio::setupWidget + + + Backend + 后端 + + + + Device + 设备 + + + + lmms::AudioPulseAudio + + + Device + 设备 + + + + Channels + 通道 + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + 设备 + + + + Channels + 通道 + + + + lmms::AudioSoundIo::setupWidget + + + Backend + 后端 + + + + Device + 设备 + + + + lmms::AutomatableModel + + + &Reset (%1%2) + 重置 (%1%2) (&R) + + + + &Copy value (%1%2) + 复制值 (%1%2) (&C) + + + + &Paste value (%1%2) + 粘贴值 (%1%2) (&P) + + + + &Paste value + 粘贴值 (&P) + + + + Edit song-global automation + 编辑歌曲全局自动控制 + + + + Remove song-global automation + 删除歌曲全局自动控制 + + + + Remove all linked controls + 删除所有已连接的控制器 + + + + Connected to %1 + 连接到 %1 + + + + Connected to controller + 连接到控制器 + + + + Edit connection... + 编辑连接... + + + + Remove connection + 删除连接 + + + + Connect to controller... + 连接到控制器... + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + 按住 <%1> 拖动控制器 + + + + lmms::AutomationTrack + + + Automation track + 自动控制轨道 + + + + lmms::BassBoosterControls + + + Frequency + 频率 + + + + Gain + 增益 + + + + Ratio + 比率 + + + + lmms::BitInvader + + + Sample length + 采样长度 + + + + Interpolation + 补间 + + + + Normalize + 标准化 + + + + lmms::BitcrushControls + + Input gain 输入增益 - - Size + + Input noise + 输入噪音 + + + + Output gain + 输出增益 + + + + Output clip + 输出截辐 + + + + Sample rate + 采样率 + + + + Stereo difference + 双声道差异 + + + + Levels + 级别 + + + + Rate enabled - - Color + + Depth enabled + + + + + lmms::Clip + + + Mute + 静音 + + + + lmms::CompressorControls + + + Threshold + 阈值 + + + + Ratio + 比率 + + + + Attack + 起音 + + + + Release + 释音 + + + + Knee - + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + 输出增益 + + + + Input Gain + 输入增益 + + + + Blend + + + + + Stereo Balance + 双声道平衡 + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + LFO 频率 + + + + LFO amount + LFO 数量 + + + Output gain 输出增益 - SaControls + lmms::DispersionControls - + + Amount + 数量 + + + + Frequency + 频率 + + + + Resonance + 共鸣 + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + 滤波器 1 已启用 + + + + Filter 1 type + 滤波器 1 类型 + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + Q/共鸣 1 + + + + Gain 1 + 增益 1 + + + + Mix + + + + + Filter 2 enabled + 滤波器 2 已启用 + + + + Filter 2 type + 滤波器 2 类型 + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + Q/共鸣 2 + + + + Gain 2 + 增益 2 + + + + + Low-pass + 低通 + + + + + Hi-pass + 高通 + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + 全通 + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + 人声共振峰 + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + 快速共振峰 + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + 输入增益 + + + + Output gain + 输出增益 + + + + Attack time + 起音时间 + + + + Release time + 释音时间 + + + + Stereo mode + 双声道模式 + + + + lmms::Effect + + + Effect enabled + 效果器已启用 + + + + Wet/Dry mix + 干/湿混合 + + + + Gate + 门限 + + + + Decay + 衰减 + + + + lmms::EffectChain + + + Effects enabled + 效果器已启用 + + + + lmms::Engine + + + Generating wavetables + 正在生成波表 + + + + Initializing data structures + 正在初始化数据结构 + + + + Opening audio and midi devices + 正在启动音频和 MIDI 设备 + + + + Launching audio engine threads + 生在启动音频引擎线程 + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + 包络预延迟 + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + LFO 预延迟 + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + LFO 频率 x 100 + + + + Modulate env amount + + + + + Sample not found + 未找到采样 + + + + lmms::EqControls + + + Input gain + 输入增益 + + + + Output gain + 输出增益 + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + 高通谐振 + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + 低通谐振 + + + + HP freq + 高通截频 + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + 低通截频 + + + + HP active + 高通启用 + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + 低通启用 + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + 低通类型 + + + + High-pass type + 高通类型 + + + + Analyse IN + 分析输入 + + + + Analyse OUT + 分析输出 + + + + lmms::FlangerControls + + + Delay samples + 延迟采样 + + + + LFO frequency + LFO 频率 + + + + Amount + 数量 + + + + Stereo phase + + + + + Feedback + + + + + Noise + 噪音 + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + 通道 1 音量 + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + 高音 + + + + Bass + 低音 + + + + lmms::GigInstrument + + + Bank + + + + + Patch + 音色 + + + + Gain + 增益 + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + 琶音 + + + + Arpeggio type + 琶音类型 + + + + Arpeggio range + 琶音范围 + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + 跳过率 + + + + Miss rate + 丢失率 + + + + Arpeggio time + 琶音时间 + + + + Arpeggio gate + 琶音门限 + + + + Arpeggio direction + 琶音方向 + + + + Arpeggio mode + 琶音模式 + + + + Up + 向上 + + + + Down + 向下 + + + + Up and down + 先上后下 + + + + Down and up + 先下后上 + + + + Random + 随机 + + + + Free + 自由 + + + + Sort + 排序 + + + + Sync + 同步 + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + 低通 + + + + Hi-pass + 高通 + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + 全通 + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + 未命名轨道 + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + 音量 + + + + Panning + 声相 + + + + Pitch + 音高 + + + + Pitch range + 音域范围 + + + + Mixer channel + 混音器通道 + + + + Master pitch + 主音高 + + + + Enable/Disable MIDI CC + 启用/禁用 MIDI 控制器 + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + 起始频率 + + + + End frequency + 结束频率 + + + + Length + 长度 + + + + Start distortion + + + + + End distortion + + + + + Gain + 增益 + + + + Envelope slope + 包络线倾斜度 + + + + Noise + 噪音 + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + 输入音量 + + + + Output Volume + 输出音量 + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + + + + + Denominator + + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain + + + + + Size + + + + + Color + + + + + Output gain + + + + + lmms::SaControls + + Pause - + Reference freeze - + Waterfall - + Averaging - - - Stereo - 双声道 - - - - Peak hold - - - Logarithmic frequency + Stereo - Logarithmic amplitude + Peak hold + + + + + Logarithmic frequency - Frequency range - - - - - Amplitude range - - - - - FFT block size + Logarithmic amplitude - FFT window type + Frequency range + + + + + Amplitude range + + + + + FFT block size - Peak envelope resolution - - - - - Spectrum display resolution - - - - - Peak decay multiplier + FFT window type - Averaging weight + Peak envelope resolution - Waterfall history size + Spectrum display resolution - Waterfall gamma correction + Peak decay multiplier - FFT window overlap + Averaging weight + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + FFT zero padding - - + + Full (auto) - - + + Audible - + Bass - 低音 + - + Mids - + High - + Extended - + Loud - + Silent - + (High time res.) - + (High freq. res.) - + Rectangular (Off) - + Blackman-Harris (Default) - + Hamming - + Hanning - SaControlsDialog + lmms::SampleClip - - Pause - - - - - Pause data acquisition - - - - - Reference freeze - - - - - Freeze current input as a reference / disable falloff in peak-hold mode. - - - - - Waterfall - - - - - Display real-time spectrogram - - - - - Averaging - - - - - Enable exponential moving average - - - - - Stereo - 双声道 - - - - Display stereo channels separately - - - - - Peak hold - - - - - Display envelope of peak values - - - - - Logarithmic frequency - - - - - Switch between logarithmic and linear frequency scale - - - - - - Frequency range - - - - - Logarithmic amplitude - - - - - Switch between logarithmic and linear amplitude scale - - - - - - Amplitude range - - - - - Envelope res. - - - - - Increase envelope resolution for better details, decrease for better GUI performance. - - - - - - Draw at most - - - - - envelope points per pixel - - - - - Spectrum res. - - - - - Increase spectrum resolution for better details, decrease for better GUI performance. - - - - - spectrum points per pixel - - - - - Falloff factor - - - - - Decrease to make peaks fall faster. - - - - - Multiply buffered value by - - - - - Averaging weight - - - - - Decrease to make averaging slower and smoother. - - - - - New sample contributes - - - - - Waterfall height - - - - - Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. - - - - - Keep - - - - - lines - - - - - Waterfall gamma - - - - - Decrease to see very weak signals, increase to get better contrast. - - - - - Gamma value: - - - - - Window overlap - - - - - Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. - - - - - Each sample processed - - - - - times - - - - - Zero padding - - - - - Increase to get smoother-looking spectrum. Warning: high CPU usage. - - - - - Processing buffer is - - - - - steps larger than input block - - - - - Advanced settings - - - - - Access advanced settings - - - - - - FFT block size - - - - - - FFT window type + + Sample not found - SampleBuffer + lmms::SampleTrack - - Fail to open file - - - - - Audio files are limited to %1 MB in size and %2 minutes of playing time - - - - - Open audio file - 打开音频文件 - - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - 所有音频文件 (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - - Wave-Files (*.wav) - Wave波形文件 (*.wav) - - - - OGG-Files (*.ogg) - OGG-文件 (*.ogg) - - - - DrumSynth-Files (*.ds) - DrumSynth-文件 (*.ds) - - - - FLAC-Files (*.flac) - FLAC-文件 (*.flac) - - - - SPEEX-Files (*.spx) - SPEEX-文件 (*.spx) - - - - VOC-Files (*.voc) - VOC-文件 (*.voc) - - - - AIFF-Files (*.aif *.aiff) - AIFF-文件 (*.aif *.aiff) - - - - AU-Files (*.au) - AU-文件 (*.au) - - - - RAW-Files (*.raw) - RAW-文件 (*.raw) - - - - SampleClipView - - - Double-click to open sample - - - - - Delete (middle mousebutton) - 删除 (鼠标中键) - - - - Delete selection (middle mousebutton) - - - - - Cut - 剪切 - - - - Cut selection - - - - - Copy - 复制 - - - - Copy selection - - - - - Paste - 粘贴 - - - - Mute/unmute (<%1> + middle click) - 静音/取消静音 (<%1> + 鼠标中键) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Reverse sample - 反转采样 - - - - Set clip color - - - - - Use track color - - - - - SampleTrack - - + Volume - 音量 + - + Panning - 声相 + - + Mixer channel - 效果通道 + - - + + Sample track - 采样轨道 - - - - SampleTrackView - - - Track volume - 轨道音量 - - - - Channel volume: - 通道音量: - - - - VOL - 音量 - - - - Panning - 声相 - - - - Panning: - 声相: - - - - PAN - 声相 - - - - Channel %1: %2 - 效果 %1: %2 - - - - SampleTrackWindow - - - GENERAL SETTINGS - 常规设置 - - - - Sample volume - - - - - Volume: - 音量: - - - - VOL - 音量 - - - - Panning - 声相 - - - - Panning: - 声相: - - - - PAN - 声相 - - - - Mixer channel - 效果通道 - - - - CHANNEL - 效果 - - - - SaveOptionsWidget - - - Discard MIDI connections - - - - - Save As Project Bundle (with resources) - SetupDialog + lmms::Scale - - Reset to default value - - - - - Use built-in NaN handler - - - - - Settings - 设置 - - - - - General - - - - - Graphical user interface (GUI) - - - - - Display volume as dBFS - 以 dBFS 为单位显示音量 - - - - Enable tooltips - 启用工具提示 - - - - Enable master oscilloscope by default - - - - - Enable all note labels in piano roll - - - - - Enable compact track buttons - - - - - Enable one instrument-track-window mode - - - - - Show sidebar on the right-hand side - - - - - Let sample previews continue when mouse is released - - - - - Mute automation tracks during solo - - - - - Show warning when deleting tracks - - - - - Projects - 项目 - - - - Compress project files by default - - - - - Create a backup file when saving a project - - - - - Reopen last project on startup - - - - - Language - 语言 - - - - - Performance - - - - - Autosave - - - - - Enable autosave - - - - - Allow autosave while playing - - - - - User interface (UI) effects vs. performance - - - - - Smooth scroll in song editor - - - - - Display playback cursor in AudioFileProcessor - - - - - Plugins - 插件 - - - - VST plugins embedding: - - - - - No embedding - 单独窗口 - - - - Embed using Qt API - 使用 Qt API - - - - Embed using native Win32 API - 使用原生 Win32 API - - - - Embed using XEmbed protocol - 使用 XEmbed 协议 - - - - Keep plugin windows on top when not embedded - - - - - Sync VST plugins to host playback - 同步 VST 插件和主机回放 - - - - Keep effects running even without input - 在没有输入时也运行音频效果 - - - - - Audio - 音频 - - - - Audio interface - - - - - HQ mode for output audio device - - - - - Buffer size - - - - - - MIDI - MIDI - - - - MIDI interface - - - - - Automatically assign MIDI controller to selected track - - - - - LMMS working directory - LMMS工作目录 - - - - VST plugins directory - - - - - LADSPA plugins directories - - - - - SF2 directory - SF2 目录 - - - - Default SF2 - - - - - GIG directory - GIG 目录 - - - - Theme directory - - - - - Background artwork - 背景图片 - - - - Some changes require restarting. - - - - - Autosave interval: %1 - - - - - Choose the LMMS working directory - - - - - Choose your VST plugins directory - - - - - Choose your LADSPA plugins directory - - - - - Choose your default SF2 - - - - - Choose your theme directory - - - - - Choose your background picture - - - - - - Paths - 路径 - - - - OK - 确定 - - - - Cancel - 取消 - - - - Frames: %1 -Latency: %2 ms - 帧数: %1 -延迟: %2 毫秒 - - - - Choose your GIG directory - 选择 GIG 目录 - - - - Choose your SF2 directory - 选择 SF2 目录 - - - - minutes - 分钟 - - - - minute - 分钟 - - - - Disabled + + empty - SidInstrument + lmms::Sf2Instrument - + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + Cutoff frequency - 切除频率 + - + Resonance - 共鸣 + + + + + Filter type + - Filter type - 过滤器类型 - - - Voice 3 off - 声音 3 关 + - + Volume - 音量 + - + Chip model - 芯片型号 - - - - SidInstrumentView - - - Volume: - 音量: - - - - Resonance: - 共鸣: - - - - - Cutoff frequency: - 频谱刀频率: - - - - High-pass filter - - - - - Band-pass filter - - - - - Low-pass filter - - - - - Voice 3 off - - - - - MOS6581 SID - MOS6581 SID - - - - MOS8580 SID - MOS8580 SID - - - - - Attack: - 打击声: - - - - - Decay: - 衰减: - - - - Sustain: - 振幅持平: - - - - - Release: - 释音: - - - - Pulse Width: - - - - - Coarse: - - - - - Pulse wave - - - - - Triangle wave - 三角波 - - - - Saw wave - 锯齿波 - - - - Noise - 噪音 - - - - Sync - 同步 - - - - Ring modulation - - - - - Filtered - - - - - Test - 测试 - - - - Pulse width: - SideBarWidget + lmms::SlicerT - - Close - 关闭 + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + - Song + lmms::Song - + Tempo - 节奏 + - + Master volume - 主音量 + - + Master pitch - 主音高 - - - - Aborting project load + Aborting project load + + + + Project file contains local paths to plugins, which could be used to run malicious code. - + Can't load project: Project file contains local paths to plugins. - + LMMS Error report - LMMS 错误报告 + - + (repeated %1 times) - + The following errors occurred while loading: - SongEditor + lmms::StereoEnhancerControls - - Could not open file - 无法打开文件 - - - - Could not open file %1. You probably have no permissions to read this file. - Please make sure to have at least read permissions to the file and try again. - 无法打开 %1 。或许没有权限读此文件。 -请确保您拥有对此文件的读权限,然后重试。 - - - - Operation denied + + Width - - - A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. - - - - - - - Error - 错误 - - - - Couldn't create bundle folder. - - - - - Couldn't create resources folder. - - - - - Failed to copy resources. - - - - - Could not write file - 无法写入文件 - - - - Could not open %1 for writing. You probably are not permitted towrite to this file. Please make sure you have write-access to the file and try again. - - - - - This %1 was created with LMMS %2 - - - - - Error in file - 文件错误 - - - - The file %1 seems to contain errors and therefore can't be loaded. - 文件 %1 似乎包含错误,无法被加载。 - - - - Version difference - 版本差异 - - - - template - 模板 - - - - project - 工程文件 - - - - Tempo - 节奏 - - - - TEMPO - - - - - Tempo in BPM - - - - - High quality mode - 高质量模式 - - - - - - Master volume - 主音量 - - - - - - Master pitch - 主音高 - - - - Value: %1% - 值: %1% - - - - Value: %1 semitones - 值: %1 半音程 - - SongEditorWindow + lmms::StereoMatrixControls - - Song-Editor - 歌曲编辑器 + + Left to Left + - - Play song (Space) - 播放歌曲(空格) + + Left to Right + - - Record samples from Audio-device - 从音频设备录制样本 + + Right to Left + - - Record samples from Audio-device while playing song or BB track - 在播放歌曲或BB轨道时从音频设备录入样本 + + Right to Right + + + + + lmms::Track + + + Mute + - - Stop song (Space) - 停止歌曲(空格) + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + - - Track actions - 轨道动作 + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + - - Add beat/bassline - 添加节拍/Bassline + + Couldn't open file + - - Add sample-track - 添加采样轨道 + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + - - Add automation-track - 添加自动控制轨道 + + Loading project... + - + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + 音量 + + + + Volume: + 音量: + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + 设备 + + + + Channels + 通道 + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + Edit actions - 编辑动作 - - - - Draw mode - 绘制模式 - - - - Knife mode (split sample clips) - - Edit mode (select and move) - 编辑模式(选定和移动) - - - - Timeline controls - 时间线控制 - - - - Bar insert controls + + Draw mode (Shift+D) - - Insert bar + + Erase mode (Shift+E) - - Remove bar + + Draw outValues mode (Shift+C) - + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + Zoom controls 缩放控制 - + Horizontal zooming 水平缩放 - + + Vertical zooming + 垂直缩放 + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + 打开片断 + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + 基本音 + + + + First note + 第一个音符 + + + + Last note + 最后一个音符 + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + 乐器插件 + + + + Instrument browser + 乐器浏览器 + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + 搜索 + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + 发送到新的乐器轨道 + + + + lmms::gui::ProjectNotes + + + Project Notes + 工程注释 + + + + Enter project notes here + 在这里写下你的工程注释。 + + + + Edit Actions + 编辑功能 + + + + &Undo + 撤销 (&U) + + + + %1+Z + %1+Z + + + + &Redo + 重做 (&R) + + + + %1+Y + %1+Y + + + + &Copy + 复制 (&C) + + + + %1+C + %1+C + + + + Cu&t + 剪切 (&T) + + + + %1+X + %1+X + + + + &Paste + 粘贴 (&P) + + + + %1+V + %1+V + + + + Format Actions + 格式功能 + + + + &Bold + 加粗 (&B) + + + + %1+B + %1+B + + + + &Italic + 斜体 (&I) + + + + %1+I + %1+I + + + + &Underline + 下划线 (&U) + + + + %1+U + %1+U + + + + &Left + 左对齐 (&L) + + + + %1+L + %1+L + + + + C&enter + 居中 (&E) + + + + %1+E + %1+E + + + + &Right + 右对齐 (&R) + + + + %1+R + %1+R + + + + &Justify + 匀齐 (&J) + + + + %1+J + %1+J + + + + &Color... + 颜色 (&C)... + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + 最近打开的工程 (&R) + + + + lmms::gui::RenameDialog + + + Rename... + 重命名... + + + + lmms::gui::ReverbSCControlDialog + + + Input + 输入 + + + + Input gain: + 输入增益: + + + + Size + 大小 + + + + Size: + 大小: + + + + Color + 颜色 + + + + Color: + 颜色: + + + + Output + 输出 + + + + Output gain: + 输出增益: + + + + lmms::gui::SaControlsDialog + + + Pause + 暂停 + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + 双声道 + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + 伽马值: + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + 双击打开采样 + + + + Reverse sample + 反转采样 + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + 混音器通道 + + + + Track volume + 轨道音量 + + + + Channel volume: + 通道音量: + + + + VOL + 音量 + + + + Panning + 声相 + + + + Panning: + 声相: + + + + PAN + 声相 + + + + %1: %2 + %1:%2 + + + + lmms::gui::SampleTrackWindow + + + Sample volume + 采样音量 + + + + Volume: + 音量: + + + + VOL + 音量 + + + + Panning + 声相 + + + + Panning: + 声相: + + + + PAN + 声相 + + + + Mixer channel + + + + + CHANNEL + 通道 + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + 设置 + + + + + General + + + + + Graphical user interface (GUI) + 图形用户界面 (GUI) + + + + Display volume as dBFS + 以 dBFS 为单位显示音量 + + + + Enable tooltips + 启用工具提示 + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + 语言 + + + + + Performance + 性能 + + + + Autosave + 自动保存 + + + + Enable autosave + 启用自动保存 + + + + Allow autosave while playing + 允许在播放时自动保存 + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + 插件 + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + 音频 + + + + Audio interface + 音频接口 + + + + Buffer size + 缓冲区大小 + + + + Reset to default value + 重置为默认值 + + + + + MIDI + MIDI + + + + MIDI interface + MIDI 接口 + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + 录制时的行为 + + + + Auto-quantize notes in Piano Roll + 在钢琴卷帘中自动量化音符 + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + 路径 + + + + LMMS working directory + LMMS工作目录 + + + + VST plugins directory + VST插件目录 + + + + LADSPA plugins directories + LADSPA 插件目录 + + + + SF2 directory + SF2 目录 + + + + Default SF2 + 默认 SF2 + + + + GIG directory + GIG 目录 + + + + Theme directory + 主题文件目录 + + + + Background artwork + 背景图片 + + + + Some changes require restarting. + + + + + OK + 确定 + + + + Cancel + 取消 + + + + minutes + 分钟 + + + + minute + 分钟 + + + + Disabled + 已禁用 + + + + Autosave interval: %1 + 自动保存间隔:%1 + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + 选择 LMMS 工作目录 + + + + Choose your VST plugins directory + 选择 VST 插件目录 + + + + Choose your LADSPA plugins directory + 选择 LADSPA 插件目录 + + + + Choose your SF2 directory + 选择 SF2 目录 + + + + Choose your default SF2 + 选择默认 SF2 + + + + Choose your GIG directory + 选择 GIG 目录 + + + + Choose your theme directory + 选择主题目录 + + + + Choose your background picture + 选择背景图片 + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + 打开 SoundFont 文件 + + + + Choose patch + + + + + Gain: + 增益: + + + + Apply reverb (if supported) + 应用混响(如果支持) + + + + Room size: + 房间大小: + + + + Damping: + 阻尼: + + + + Width: + 宽度: + + + + + Level: + 级别: + + + + Apply chorus (if supported) + 应用和声 (如果支持) + + + + Voices: + 复音数: + + + + Speed: + 速度: + + + + Depth: + 深度: + + + + SoundFont Files (*.sf2 *.sf3) + SoundFont 文件 (*.sf2 *.sf3) + + + + lmms::gui::SidInstrumentView + + + Volume: + 音量: + + + + Resonance: + 共鸣: + + + + + Cutoff frequency: + + + + + High-pass filter + 高通滤波器 + + + + Band-pass filter + 带通滤波器 + + + + Low-pass filter + 低通滤波器 + + + + Voice 3 off + + + + + MOS6581 SID + MOS6581 SID + + + + MOS8580 SID + MOS8580 SID + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + 脉冲波 + + + + Triangle wave + 三角波 + + + + Saw wave + 锯齿波 + + + + Noise + 噪音 + + + + Sync + 同步 + + + + Ring modulation + + + + + Filtered + + + + + Test + 测试 + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + 关闭 + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + 复制 MIDI 片段到剪贴板 + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + 阈值 + + + + Fade Out + 淡出 + + + + Reset + 重置 + + + + Midi + MIDI + + + + BPM + BPM + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + 点击加载采样 + + + + lmms::gui::SongEditor + + + Could not open file + 无法打开文件 + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + 错误 + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + 无法写入文件 + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + 模板 + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + 缩放 + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + 主音量 + + + + + + Global transposition + + + + + 1/%1 Bar + 1/%1 小节 + + + + %1 Bars + %1 小节 + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + 歌曲编辑器 + + + + Play song (Space) + 播放歌曲(空格) + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + 停止歌曲(空格) + + + + Track actions + 轨道动作 + + + + Add pattern-track + + + + + Add sample-track + 添加采样轨道 + + + + Add automation-track + 添加自动控制轨道 + + + + Edit actions + 编辑动作 + + + + Draw mode + 绘制模式 + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + 插入小节 + + + + Remove bar + 删除小节 + + + + Zoom controls + 缩放控制 + + + + + Zoom + 缩放 + + + Snap controls - - + + Clip snapping size - + Toggle proportional snap on/off - + Base snapping size - StepRecorderWidget + lmms::gui::StepRecorderWidget - + Hint 提示 - + Move recording curser using <Left/Right> arrows - SubWindow + lmms::gui::StereoEnhancerControlDialog - + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + Close 关闭 - + Maximize 最大化 - + Restore 还原 - TabWidget + lmms::gui::TapTempoView - - - Settings for %1 - %1 的设定 + + 0 + 0 + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + 静音 + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + 重置 + + + + Reset counter and sidebar information + + + + + Sync + 同步 + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + - TemplatesMenu + lmms::gui::TemplatesMenu - + New from template - 从模版新建工程 + 从模板新建工程 - TempoSyncKnob + lmms::gui::TempoSyncBarModelEditor - - + + Tempo Sync 节奏同步 - + No Sync 无同步 - + Eight beats 八拍 - + Whole note 全音符 - + Half note 二分音符 - + Quarter note 四分音符 - + 8th note 八分音符 - + 16th note 16 分音符 - + 32nd note 32 分音符 - + Custom... 自定义... - + Custom 自定义 - + Synced to Eight Beats 同步为八拍 - + Synced to Whole Note 同步为全音符 - + Synced to Half Note 同步为二分音符 - + Synced to Quarter Note 同步为四分音符 - + Synced to 8th Note 同步为八分音符 - + Synced to 16th Note - 同步为16分音符 + 同步为 16 分音符 - + Synced to 32nd Note - 同步为32分音符 + 同步为 32 分音符 - TimeDisplayWidget + lmms::gui::TempoSyncKnob - - Time units + + + Tempo Sync + 节奏同步 + + + + No Sync + 无同步 + + + + Eight beats + 八拍 + + + + Whole note + 全音符 + + + + Half note + 二分音符 + + + + Quarter note + 四分音符 + + + + 8th note + 八分音符 + + + + 16th note + 16 分音符 + + + + 32nd note + 32 分音符 + + + + Custom... + 自定义 + + + + Custom + 自定义 + + + + Synced to Eight Beats - - MIN - 分钟 + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + 时间单位 + MIN + + + + SEC - + MSEC 毫秒 - + BAR 小节 - + BEAT - + TICK - + 嘀嗒 - TimeLineWidget + lmms::gui::TimeLineWidget - + Auto scrolling - - Loop points + + Stepped auto scrolling - + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + 循环点 + + + After stopping go back to beginning - + After stopping go back to position at which playing was started - 停止后前往播放开始的地方 + - + After stopping keep position - 停止后保持位置不变 + - + Hint 提示 - + Press <%1> to disable magnetic loop points. - 按住 <%1> 禁用磁性吸附。 - - - - Track - - - Mute - 静音 - - - - Solo - 独奏 - - - - TrackContainer - - - Couldn't import file - 无法导入文件 - - - - Couldn't find a filter for importing file %1. -You should convert this file into a format supported by LMMS using another software. - 无法找到导入文件 %1 的导入器 -你需要使用其他软件将此文件转换成 LMMS 支持的格式。 - - - - Couldn't open file - 无法打开文件 - - - - Couldn't open file %1 for reading. -Please make sure you have read-permission to the file and the directory containing the file and try again! - 无法读取文件 %1 -请确认你有对该文件及其目录的读取权限后再试! - - - - Loading project... - 正在加载工程... - - - - - Cancel - 取消 - - - - - Please wait... - 请稍等... - - - - Loading cancelled - - Project loading was cancelled. + + Set loop begin here - - Loading Track %1 (%2/Total %3) - 正在加载轨道 %1 (第 %2 个/共 %3 个) - - - - Importing MIDI-file... - 正在导入 MIDI-文件... - - - - Clip - - - Mute - 静音 - - - - ClipView - - - Current position - 当前位置 - - - - Current length - 当前长度 - - - - - %1:%2 (%3:%4 to %5:%6) - %1:%2 (%3:%4 到 %5:%6) - - - - Press <%1> and drag to make a copy. - 按住 <%1> 并拖动以创建副本。 - - - - Press <%1> for free resizing. - 按住 <%1> 自由调整大小。 - - - - Hint - 提示 - - - - Delete (middle mousebutton) - 删除 (鼠标中键) - - - - Delete selection (middle mousebutton) + + Set loop end here - - Cut - 剪切 - - - - Cut selection + + Loop edit mode (hold shift) - - Merge Selection + + Dual-button - - Copy - 复制 - - - - Copy selection + + Grab closest - - Paste - 粘贴 - - - - Mute/unmute (<%1> + middle click) - 静音/取消静音 (<%1> + 鼠标中键) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Set clip color - - - - - Use track color + + Handles - TrackContentWidget + lmms::gui::TrackContentWidget - + Paste 粘贴 - TrackOperationsWidget + lmms::gui::TrackOperationsWidget - + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. @@ -13472,248 +18024,240 @@ Please make sure you have read-permission to the file and the directory containi 独奏 - + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? - + Confirm removal - + Don't ask again - + 不再询问 - + Clone this track 克隆此轨道 - + Remove this track 移除此轨道 - + Clear this track 清除此轨道 - + Channel %1: %2 - 效果 %1: %2 - - - - Assign to new mixer Channel - 分配到新的效果通道 - - - - Turn all recording on - 打开所有录制 - - - - Turn all recording off - 关闭所有录制 - - - - Change color - 改变颜色 - - - - Reset color to default - 重置颜色 - - - - Set random color - - Clear clip colors + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + 轨道颜色 + + + + Change + 更改 + + + + Reset + 重置 + + + + Pick random + + + + + Reset clip colors - TripleOscillatorView + lmms::gui::TripleOscillatorView - + Modulate phase of oscillator 1 by oscillator 2 - + Modulate amplitude of oscillator 1 by oscillator 2 - + Mix output of oscillators 1 & 2 - + Synchronize oscillator 1 with oscillator 2 - 同步振荡器 1 和振荡器 2 - - - - Modulate frequency of oscillator 1 by oscillator 2 + Modulate frequency of oscillator 1 by oscillator 2 + + + + Modulate phase of oscillator 2 by oscillator 3 - + Modulate amplitude of oscillator 2 by oscillator 3 - + Mix output of oscillators 2 & 3 - + Synchronize oscillator 2 with oscillator 3 - 同步振荡器 2 和振荡器 3 + - + Modulate frequency of oscillator 2 by oscillator 3 - + Osc %1 volume: - 振荡器%1音量 + - + Osc %1 panning: - 振荡器%1声相 + - + Osc %1 coarse detuning: - 振荡器%1音调粗调 + - + semitones 半音 - + Osc %1 fine detuning left: - 振荡器%1左声道微调 + - - + + cents - 音分 cents + 音分 - + Osc %1 fine detuning right: - 振荡器%1右声道微调 + - + Osc %1 phase-offset: - 振荡器%1相位偏移 + - - + + degrees - + - + Osc %1 stereo phase-detuning: - 振荡器%1立体相位偏移 + - + Sine wave 正弦波 - + Triangle wave 三角波 - + Saw wave 锯齿波 - + Square wave 方波 - + Moog-like saw wave - + Exponential wave - 指数爆炸波形 + - + White noise 白噪音 - + User-defined wave + 用户自定义波形 + + + + Use alias-free wavetable oscillators. - VecControls + lmms::gui::VecControlsDialog - - Display persistence amount - - - - - Logarithmic scale - - - - - High quality - - - - - VecControlsDialog - - + HQ - + Double the resolution and simulate continuous analog-like trace. @@ -13728,2618 +18272,782 @@ Please make sure you have read-permission to the file and the directory containi - + Persist. - + Trace persistence: higher amount means the trace will stay bright for longer time. - + Trace persistence - VersionedSaveDialog - - - Increment version number - 递增版本号 - + lmms::gui::VersionedSaveDialog + Increment version number + + + + Decrement version number - 递减版本号 + - + Save Options - + 保存选项 - + already exists. Do you want to replace it? - + 已存在,要替换吗? - VestigeInstrumentView + lmms::gui::VestigeInstrumentView - - + + Open VST plugin - + 打开 VST 插件 - + Control VST plugin from LMMS host - + 从 LMMS 宿主控制 VST 插件 - + Open VST plugin preset - + 打开 VST 插件预设 - + Previous (-) 上一个 (-) - + Save preset - 保存预置 + 保存预设 - + Next (+) 下一个 (+) - + Show/hide GUI 显示/隐藏界面 - + Turn off all notes - 全部静音 - - - - DLL-files (*.dll) - DLL-文件 (*.dll) - - - - EXE-files (*.exe) - EXE-文件 (*.exe) - - - - No VST plugin loaded - + + DLL-files (*.dll) + DLL 文件 (*.dll) + + + + EXE-files (*.exe) + EXE 文件 (*.exe) + + + + SO-files (*.so) + SO 文件 (*.so) + + + + No VST plugin loaded + 未载入 VST 插件 + + + Preset - 预置 + 预设 - + by - 制造商 + - + - VST plugin control - - VST插件控制 + - VST 插件控制 - VstEffectControlDialog + lmms::gui::VibedView - + + Enable waveform + 启用波形 + + + + + Smooth waveform + 平滑波形 + + + + + Normalize waveform + + + + + + Sine wave + 正弦波 + + + + + Triangle wave + 三角波 + + + + + Saw wave + 锯齿波 + + + + + Square wave + 方波 + + + + + White noise + 白噪音 + + + + + User-defined wave + 用户自定义波形 + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + Show/hide 显示/隐藏 - + Control VST plugin from LMMS host - + 从 LMMS 宿主控制 VST 插件 - + Open VST plugin preset - + 打开 VST 插件预设 - + Previous (-) 上一个 (-) - + Next (+) 下一个 (+) - + Save preset - 保存预置 + - - + + Effect by: - 音效制作: + - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - VstPlugin + lmms::gui::WatsynView - - - The VST plugin %1 could not be loaded. - 无法载入VST插件 %1。 - - - - Open Preset - 打开预置 - - - - - Vst Plugin Preset (*.fxp *.fxb) - VST插件预置文件(*.fxp *.fxb) - - - - : default - : 默认 - - - - Save Preset - 保存预置 - - - - .fxp - .fxp - - - - .FXP - .FXP - - - - .FXB - .FXB - - - - .fxb - .fxb - - - - Loading plugin - 载入插件 - - - - Please wait while loading VST plugin... - 正在载入VST插件,请稍候…… - - - - WatsynInstrument - - - Volume A1 - 音量 A1 - - - - Volume A2 - 音量 A2 - - - - Volume B1 - 音量 B1 - - - - Volume B2 - 音量 B2 - - - - Panning A1 - 声相 A1 - - - - Panning A2 - 声相 A2 - - - - Panning B1 - 声相 B1 - - - - Panning B2 - 声相 B2 - - - - Freq. multiplier A1 - 频率加倍器 A1 - - - - Freq. multiplier A2 - 频率加倍器 A2 - - - - Freq. multiplier B1 - 频率加倍器 B1 - - - - Freq. multiplier B2 - 频率加倍器 B2 - - - - Left detune A1 - 左失谐 A1 - - - - Left detune A2 - 左失谐 A2 - - - - Left detune B1 - 左失谐 B1 - - - - Left detune B2 - 左失谐 B2 - - - - Right detune A1 - 右失谐 A1 - - - - Right detune A2 - 右失谐 A2 - - - - Right detune B1 - 右失谐 B1 - - - - Right detune B2 - 右失谐 B2 - - - - A-B Mix - A-B混合值 - - - - A-B Mix envelope amount - A-B混合包络值 - - - - A-B Mix envelope attack - A-B混合包络起音 - - - - A-B Mix envelope hold - A-B混合包络持续 - - - - A-B Mix envelope decay - A-B混合包络衰减 - - - - A1-B2 Crosstalk - - - - - A2-A1 modulation - - - - - B2-B1 modulation - - - - - Selected graph - 选定的图像 - - - - WatsynView - - - - - + + + + Volume 音量 - - - - + + + + Panning 声相 + + + + + Freq. multiplier + + + + + - - - Freq. multiplier - 频率加倍器 - - - - - - Left detune - + 左失谐 + + + + + + - - - - - - cents - 音分 + 音分 + + + + + + + Right detune + 右失谐 + + + + A-B Mix + A-B 混合值 - - - - Right detune - - - - - A-B Mix - A-B混合值 - - - Mix envelope amount - + Mix envelope attack - + Mix envelope hold - + Mix envelope decay - + Crosstalk - + Select oscillator A1 选择振荡器 A1 - + Select oscillator A2 选择振荡器 A2 - + Select oscillator B1 选择振荡器 B1 - + Select oscillator B2 选择振荡器 B2 - + Mix output of A2 to A1 - + Modulate amplitude of A1 by output of A2 - + Ring modulate A1 and A2 - + Modulate phase of A1 by output of A2 - + Mix output of B2 to B1 - + Modulate amplitude of B1 by output of B2 - + Ring modulate B1 and B2 - + Modulate phase of B1 by output of B2 - - - - + + + + Draw your own waveform here by dragging your mouse on this graph. 使用鼠标在此图像上绘制你自己的波形。 - + Load waveform 加载波形 - + Load a waveform from a sample file - + Phase left - + Shift phase by -15 degrees - + Phase right - + Shift phase by +15 degrees - - + + Normalize 标准化 - - + + Invert 反转 - - + + Smooth 平滑 - - + + Sine wave 正弦波 - - - + + + Triangle wave 三角波 - + Saw wave 锯齿波 - - + + Square wave 方波 - Xpressive + lmms::gui::WaveShaperControlDialog - - Selected graph - 选定的图像 + + INPUT + 输入 - - A1 - + + Input gain: + 输入增益: - - A2 - + + OUTPUT + 输出 - - A3 - + + Output gain: + 输出增益: - - W1 smoothing - + + + Reset wavegraph + 重置波形 - - W2 smoothing - + + + Smooth wavegraph + 平滑波形 - - W3 smoothing - + + + Increase wavegraph amplitude by 1 dB + 波形增益值增加 1dB - - Panning 1 - + + + Decrease wavegraph amplitude by 1 dB + 波形增益值减少 1dB - - Panning 2 - + + Clip input + 输入压限 - - Rel trans - + + Clip input signal to 0 dB + 将输入信号限制到 0dB - XpressiveView + lmms::gui::XpressiveView - + Draw your own waveform here by dragging your mouse on this graph. 使用鼠标在此图像上绘制你自己的波形。 - + Select oscillator W1 - + Select oscillator W2 - + Select oscillator W3 - + Select output O1 - + Select output O2 - + Open help window - + 打开帮助窗口 - - + + Sine wave 正弦波 - - + + Moog-saw wave - + Moog 锯齿波 - - + + Exponential wave 指数爆炸波形 - - + + Saw wave 锯齿波 - - + + User-defined wave - + 用户自定义波形 - - + + Triangle wave 三角波 - - + + Square wave 方波 - - + + White noise 白噪音 - + WaveInterpolate - + ExpressionValid - + General purpose 1: - + General purpose 2: - + General purpose 3: - + O1 panning: - + O2 panning: - + Release transition: - + Smoothness - ZynAddSubFxInstrument - - - Portamento - 滑音 - - - - Filter frequency - - - - - Filter resonance - - - - - Bandwidth - 带宽 - - - - FM gain - - - - - Resonance center frequency - - - - - Resonance bandwidth - - - - - Forward MIDI control change events - - - - - ZynAddSubFxView - - - Portamento: - 滑音: - + lmms::gui::ZynAddSubFxView - PORT - 端口 + Portamento: + - - Filter frequency: + + PORT - FREQ - 频率 + Filter frequency: + - - Filter resonance: + + FREQ + Filter resonance: + + + + RES - + Bandwidth: - 带宽: + - + BW - + FM gain: - + FM GAIN - + Resonance center frequency: - + RES CF - + Resonance bandwidth: - + RES BW - + Forward MIDI control changes - + Show GUI 显示图形界面 - - AudioFileProcessor - - - Amplify - 增益 - - - - Start of sample - 采样起始 - - - - End of sample - 采样结尾 - - - - Loopback point - 循环点 - - - - Reverse sample - 反转采样 - - - - Loop mode - 循环模式 - - - - Stutter - - - - - Interpolation mode - 补间方式 - - - - None - - - - - Linear - 线性插补 - - - - Sinc - 辛格(Sinc)插补 - - - - Sample not found: %1 - 采样未找到: %1 - - - - BitInvader - - - Sample length - - - - - BitInvaderView - - - Sample length - - - - - Draw your own waveform here by dragging your mouse on this graph. - 使用鼠标在此图像上绘制你自己的波形。 - - - - - Sine wave - 正弦波 - - - - - Triangle wave - 三角波 - - - - - Saw wave - 锯齿波 - - - - - Square wave - 方波 - - - - - White noise - 白噪音 - - - - - User-defined wave - - - - - - Smooth waveform - 平滑波形 - - - - Interpolation - 补间 - - - - Normalize - 标准化 - - - - DynProcControlDialog - - - INPUT - 输入 - - - - Input gain: - 输入增益: - - - - OUTPUT - 输出 - - - - Output gain: - 输出增益: - - - - ATTACK - 打击声 - - - - Peak attack time: - - - - - RELEASE - 释放 - - - - Peak release time: - - - - - - Reset wavegraph - - - - - - Smooth wavegraph - - - - - - Increase wavegraph amplitude by 1 dB - - - - - - Decrease wavegraph amplitude by 1 dB - - - - - Stereo mode: maximum - - - - - Process based on the maximum of both stereo channels - - - - - Stereo mode: average - - - - - Process based on the average of both stereo channels - - - - - Stereo mode: unlinked - - - - - Process each stereo channel independently - - - - - DynProcControls - - - Input gain - 输入增益 - - - - Output gain - 输出增益 - - - - Attack time - 打击时间 - - - - Release time - 释放时间 - - - - Stereo mode - 双声道模式 - - - - graphModel - - - Graph - 图形 - - - - KickerInstrument - - - Start frequency - 起始频率 - - - - End frequency - 结束频率 - - - - Length - 长度 - - - - Start distortion - - - - - End distortion - - - - - Gain - 增益 - - - - Envelope slope - - - - - Noise - 噪音 - - - - Click - 力度 - - - - Frequency slope - - - - - Start from note - 从哪个音符开始 - - - - End to note - 到哪个音符结束 - - - - KickerInstrumentView - - - Start frequency: - 起始频率: - - - - End frequency: - 结束频率: - - - - Frequency slope: - - - - - Gain: - 增益: - - - - Envelope length: - - - - - Envelope slope: - - - - - Click: - 力度: - - - - Noise: - 噪音: - - - - Start distortion: - - - - - End distortion: - - - - - LadspaBrowserView - - - - Available Effects - 可用效果器 - - - - - Unavailable Effects - 不可用效果器 - - - - - Instruments - 乐器插件 - - - - - Analysis Tools - 分析工具 - - - - - Don't know - 未知 - - - - Type: - 类型: - - - - LadspaDescription - - - Plugins - 插件 - - - - Description - 描述 - - - - LadspaPortDialog - - - Ports - 端口 - - - - Name - 名称 - - - - Rate - 比特率 - - - - Direction - 方向 - - - - Type - 类型 - - - - Min < Default < Max - 最小 < 默认 < 最大 - - - - Logarithmic - 对数 - - - - SR Dependent - 依赖 SR - - - - Audio - 音频 - - - - Control - 控制 - - - - Input - 输入 - - - - Output - 输出 - - - - Toggled - 启用 - - - - Integer - 整型 - - - - Float - 浮点 - - - - - Yes - - - - - Lb302Synth - - - VCF Cutoff Frequency - - - - - VCF Resonance - - - - - VCF Envelope Mod - - - - - VCF Envelope Decay - - - - - Distortion - 失真 - - - - Waveform - 波形 - - - - Slide Decay - - - - - Slide - - - - - Accent - - - - - Dead - - - - - 24dB/oct Filter - - - - - Lb302SynthView - - - Cutoff Freq: - - - - - Resonance: - 共鸣: - - - - Env Mod: - - - - - Decay: - 衰减: - - - - 303-es-que, 24dB/octave, 3 pole filter - - - - - Slide Decay: - - - - - DIST: - - - - - Saw wave - 锯齿波 - - - - Click here for a saw-wave. - 点击这里使用锯齿波。 - - - - Triangle wave - 三角波 - - - - Click here for a triangle-wave. - 点击这里使用三角波。 - - - - Square wave - 方波 - - - - Click here for a square-wave. - 点击这里使用方波。 - - - - Rounded square wave - 圆角方波 - - - - Click here for a square-wave with a rounded end. - 点击这里使用圆角方波。 - - - - Moog wave - - - - - Click here for a moog-like wave. - - - - - Sine wave - 正弦波 - - - - Click for a sine-wave. - 点击这里使用正弦波。 - - - - - White noise wave - 白噪音 - - - - Click here for an exponential wave. - 点击这里使用指数爆炸波形。 - - - - Click here for white-noise. - 点击这里使用白噪音。 - - - - Bandlimited saw wave - - - - - Click here for bandlimited saw wave. - - - - - Bandlimited square wave - - - - - Click here for bandlimited square wave. - - - - - Bandlimited triangle wave - - - - - Click here for bandlimited triangle wave. - - - - - Bandlimited moog saw wave - - - - - Click here for bandlimited moog saw wave. - - - - - MalletsInstrument - - - Hardness - - - - - Position - 位置 - - - - Vibrato gain - - - - - Vibrato frequency - - - - - Stick mix - - - - - Modulator - 调制器 - - - - Crossfade - - - - - LFO speed - LFO 速度 - - - - LFO depth - - - - - ADSR - - - - - Pressure - 压力 - - - - Motion - - - - - Speed - 速度 - - - - Bowed - - - - - Spread - - - - - Marimba - - - - - Vibraphone - - - - - Agogo - - - - - Wood 1 - - - - - Reso - - - - - Wood 2 - - - - - Beats - - - - - Two fixed - - - - - Clump - - - - - Tubular bells - - - - - Uniform bar - - - - - Tuned bar - - - - - Glass - 玻璃 - - - - Tibetan bowl - - - - - MalletsInstrumentView - - - Instrument - 乐器 - - - - Spread - - - - - Spread: - - - - - Missing files - 文件缺失 - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - 你的 Stk 程序似乎不是完整的。请确保你在使用此乐器前完整地安装了 Stk 软件包! - - - - Hardness - - - - - Hardness: - - - - - Position - 位置 - - - - Position: - 位置: - - - - Vibrato gain - - - - - Vibrato gain: - - - - - Vibrato frequency - - - - - Vibrato frequency: - - - - - Stick mix - - - - - Stick mix: - - - - - Modulator - 调制器 - - - - Modulator: - 调制器: - - - - Crossfade - - - - - Crossfade: - - - - - LFO speed - LFO 速度 - - - - LFO speed: - LFO 速度: - - - - LFO depth - - - - - LFO depth: - - - - - ADSR - - - - - ADSR: - - - - - Pressure - 压力 - - - - Pressure: - 压力: - - - - Speed - 速度 - - - - Speed: - 速度: - - - - ManageVSTEffectView - - - - VST parameter control - - VST 参数控制 - - - - VST sync - - - - - - Automated - 自动 - - - - Close - 关闭 - - - - ManageVestigeInstrumentView - - - - - VST plugin control - - VST插件控制 - - - - VST Sync - VST 同步 - - - - - Automated - 自动 - - - - Close - 关闭 - - - - OrganicInstrument - - - Distortion - 失真 - - - - Volume - 音量 - - - - OrganicInstrumentView - - - Distortion: - 失真: - - - - Volume: - 音量: - - - - Randomise - 随机 - - - - - Osc %1 waveform: - - - - - Osc %1 volume: - 振荡器%1音量 - - - - Osc %1 panning: - 振荡器%1声相 - - - - Osc %1 stereo detuning - - - - - cents - 音分 cents - - - - Osc %1 harmonic: - - - - - PatchesDialog - - - Qsynth: Channel Preset - Qsynth: 通道预设 - - - - Bank selector - 音色选择器 - - - - Bank - - - - - Program selector - 程序节选择器 - - - - Patch - 音色 - - - - Name - 名称 - - - - OK - 确定 - - - - Cancel - 取消 - - - - Sf2Instrument - - - Bank - - - - - Patch - 音色 - - - - Gain - 增益 - - - - Reverb - 混响 - - - - Reverb room size - - - - - Reverb damping - - - - - Reverb width - - - - - Reverb level - - - - - Chorus - 合唱 - - - - Chorus voices - - - - - Chorus level - - - - - Chorus speed - - - - - Chorus depth - - - - - A soundfont %1 could not be loaded. - 无法载入Soundfont %1。 - - - - Sf2InstrumentView - - - - Open SoundFont file - 打开SoundFont文件 - - - - Choose patch - - - - - Gain: - 增益: - - - - Apply reverb (if supported) - 应用混响(如果支持) - - - - Room size: - - - - - Damping: - - - - - Width: - 宽度: - - - - - Level: - - - - - Apply chorus (if supported) - 应用合唱 (如果支持) - - - - Voices: - - - - - Speed: - 速度: - - - - Depth: - 位深: - - - - SoundFont Files (*.sf2 *.sf3) - - - - - SfxrInstrument - - - Wave - - - - - StereoEnhancerControlDialog - - - WIDTH - - - - - Width: - 宽度: - - - - StereoEnhancerControls - - - Width - 宽度 - - - - StereoMatrixControlDialog - - - Left to Left Vol: - 从左到左音量: - - - - Left to Right Vol: - 从左到右音量: - - - - Right to Left Vol: - 从右到左音量: - - - - Right to Right Vol: - 从右到右音量: - - - - StereoMatrixControls - - - Left to Left - 从左到左 - - - - Left to Right - 从左到右 - - - - Right to Left - 从右到左 - - - - Right to Right - 从右到右 - - - - VestigeInstrument - - - Loading plugin - 载入插件 - - - - Please wait while loading the VST plugin... - - - - - Vibed - - - String %1 volume - - - - - String %1 stiffness - - - - - Pick %1 position - - - - - Pickup %1 position - - - - - String %1 panning - - - - - String %1 detune - - - - - String %1 fuzziness - - - - - String %1 length - - - - - Impulse %1 - - - - - String %1 - - - - - VibedView - - - String volume: - - - - - String stiffness: - - - - - Pick position: - - - - - Pickup position: - - - - - String panning: - - - - - String detune: - - - - - String fuzziness: - - - - - String length: - - - - - Impulse - - - - - Octave - - - - - Impulse Editor - - - - - Enable waveform - 启用波形 - - - - Enable/disable string - - - - - String - - - - - - Sine wave - 正弦波 - - - - - Triangle wave - 三角波 - - - - - Saw wave - 锯齿波 - - - - - Square wave - 方波 - - - - - White noise - 白噪音 - - - - - User-defined wave - - - - - - Smooth waveform - 平滑波形 - - - - - Normalize waveform - - - - - VoiceObject - - - Voice %1 pulse width - - - - - Voice %1 attack - - - - - Voice %1 decay - - - - - Voice %1 sustain - - - - - Voice %1 release - - - - - Voice %1 coarse detuning - - - - - Voice %1 wave shape - 声音 %1 波形形状 - - - - Voice %1 sync - 声音 %1 同步 - - - - Voice %1 ring modulate - - - - - Voice %1 filtered - - - - - Voice %1 test - 声音 %1 测试 - - - - WaveShaperControlDialog - - - INPUT - 输入 - - - - Input gain: - 输入增益: - - - - OUTPUT - 输出 - - - - Output gain: - 输出增益: - - - - - Reset wavegraph - - - - - - Smooth wavegraph - - - - - - Increase wavegraph amplitude by 1 dB - - - - - - Decrease wavegraph amplitude by 1 dB - - - - - Clip input - 输入压限 - - - - Clip input signal to 0 dB - - - - - WaveShaperControls - - - Input gain - 输入增益 - - - - Output gain - 输出增益 - - - + \ No newline at end of file diff --git a/data/locale/zh_TW.ts b/data/locale/zh_TW.ts index 9348dfb32..7a4f5ce9c 100644 --- a/data/locale/zh_TW.ts +++ b/data/locale/zh_TW.ts @@ -1,4 +1,4 @@ - + AboutDialog @@ -69,810 +69,43 @@ If you're interested in translating LMMS in another language or want to imp - AmplifierControlDialog + AboutJuceDialog - - VOL - VOL - - - - Volume: - 音量: - - - - PAN - PAN - - - - Panning: - 聲相: - - - - LEFT - - - - - Left gain: - 左增益: - - - - RIGHT - - - - - Right gain: - 右增益: - - - - AmplifierControls - - - Volume - 音量 - - - - Panning - 聲相 - - - - Left gain - 左增益 - - - - Right gain - 右增益 - - - - AudioAlsaSetupWidget - - - DEVICE - 裝置 - - - - CHANNELS - 聲道數 - - - - AudioFileProcessorView - - - Open sample + + About JUCE - - Reverse sample - 反轉取樣 - - - - Disable loop - 停用循環 - - - - Enable loop - 啟用循環 - - - - Enable ping-pong loop + + <b>About JUCE</b> - - Continue sample playback across notes - 跨音符繼續播放採樣 - - - - Amplify: - 放大: - - - - Start point: + + This program uses JUCE version 3.x.x. - - End point: + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. - - Loopback point: - 循環點: - - - - AudioFileProcessorWaveView - - - Sample length: - 採樣長度: - - - - AudioJack - - - JACK client restarted - JACK 客戶端已重啓 - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS 由於某些原因與 JACK 中斷連線,因此 LMMS 的 JACK 後端已重新啟動,您必須手動重新連線。 - - - - JACK server down - JACK 伺服器發生問題 - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - JACK 伺服器似乎發生問題,而且無法重新啟動,因此 LMMS 無法繼續執行。請儲存專案,然後重新啟動 JACK 和 LMMS。 - - - - Client name - - - - - Channels + + This program uses JUCE version - AudioOss + AudioDeviceSetupWidget - - Device - - - - - Channels - - - - - AudioPortAudio::setupWidget - - - Backend - - - - - Device - - - - - AudioPulseAudio - - - Device - - - - - Channels - - - - - AudioSdl::setupWidget - - - Device - - - - - AudioSndio - - - Device - - - - - Channels - - - - - AudioSoundIo::setupWidget - - - Backend - - - - - Device - - - - - AutomatableModel - - - &Reset (%1%2) - 重設(%1%2)(&R) - - - - &Copy value (%1%2) - 複製值(%1%2)(&C) - - - - &Paste value (%1%2) - 貼上值(%1%2)(&P) - - - - &Paste value - 貼上值 (&P) - - - - Edit song-global automation - 編輯歌曲全局的自動控制裝置 - - - - Remove song-global automation - 移除歌曲全域自動控制裝置 - - - - Remove all linked controls - 移除所有已連線的控制器 - - - - Connected to %1 - 已連線至 %1 - - - - Connected to controller - 連線至控制器 - - - - Edit connection... - 編輯連線… - - - - Remove connection - 移除連線 - - - - Connect to controller... - 連線至控制器… - - - - AutomationEditor - - - Edit Value - - - - - New outValue - - - - - New inValue - - - - - Please open an automation clip with the context menu of a control! - 請透過控制的右鍵選單開啟自動控制模式! - - - - AutomationEditorWindow - - - Play/pause current clip (Space) - 播放/暫停當前片段(空格) - - - - Stop playing of current clip (Space) - 停止當前片段(空格) - - - - Edit actions - 編輯功能 - - - - Draw mode (Shift+D) - 繪製模式 (Shift+D) - - - - Erase mode (Shift+E) - 擦除模式 (Shift+E) - - - - Draw outValues mode (Shift+C) - - - - - Flip vertically - 垂直翻轉 - - - - Flip horizontally - 水平翻轉 - - - - Interpolation controls - 補間控制 - - - - Discrete progression - 區間進程 (Discrete progression) - - - - Linear progression - 線性進程 (Linear progression) - - - - Cubic Hermite progression - - - - - Tension value for spline - - - - - Tension: - - - - - Zoom controls - 縮放控制 - - - - Horizontal zooming - 橫向縮放 - - - - Vertical zooming - 垂直縮放 - - - - Quantization controls - 量化控制 - - - - Quantization - 量化 - - - - - Automation Editor - no clip - 自動控制編輯器 - 沒有片段 - - - - - Automation Editor - %1 - 自動控制編輯器 - %1 - - - - Model is already connected to this clip. - 模型已連接到此片段。 - - - - AutomationClip - - - Drag a control while pressing <%1> - 按住<%1>拖動控制器 - - - - AutomationClipView - - - Open in Automation editor - 在自動編輯器(Automation editor)中打開 - - - - Clear - 清除 - - - - Reset name - 重置名稱 - - - - Change name - 修改名稱 - - - - Set/clear record - 設置/清除錄製 - - - - Flip Vertically (Visible) - 垂直翻轉 (可見) - - - - Flip Horizontally (Visible) - 水平翻轉 (可見) - - - - %1 Connections - %1個連接 - - - - Disconnect "%1" - 斷開“%1”的連接 - - - - Model is already connected to this clip. - 模型已連接到此片段。 - - - - AutomationTrack - - - Automation track - 自動控制軌道 - - - - PatternEditor - - - Beat+Bassline Editor - 節拍+低音線編輯器 - - - - Play/pause current beat/bassline (Space) - 播放/暫停當前節拍/低音線(空格) - - - - Stop playback of current beat/bassline (Space) - 停止播放當前節拍/低音線(空格) - - - - Beat selector - 節拍選擇器 - - - - Track and step actions - - - - - Add beat/bassline - 添加節拍/低音線 - - - - Clone beat/bassline clip - - - - - Add sample-track - 新增採樣音軌 - - - - Add automation-track - 添加自動控制軌道 - - - - Remove steps - 移除音階 - - - - Add steps - 添加音階 - - - - Clone Steps - - - - - PatternClipView - - - Open in Beat+Bassline-Editor - 在節拍+Bassline編輯器中打開 - - - - Reset name - 重置名稱 - - - - Change name - 修改名稱 - - - - PatternTrack - - - Beat/Bassline %1 - 節拍/Bassline %1 - - - - Clone of %1 - %1 的副本 - - - - BassBoosterControlDialog - - - FREQ - 頻率 - - - - Frequency: - 頻率: - - - - GAIN - 增益 - - - - Gain: - 增益: - - - - RATIO - 比率 - - - - Ratio: - 比率: - - - - BassBoosterControls - - - Frequency - 頻率 - - - - Gain - 增益 - - - - Ratio - 比率 - - - - BitcrushControlDialog - - - IN - 輸入 - - - - OUT - 輸出 - - - - - GAIN - 增益 - - - - Input gain: - 輸入增益: - - - - NOISE - - - - - Input noise: - - - - - Output gain: - 輸出增益: - - - - CLIP - 壓限 - - - - Output clip: - - - - - Rate enabled - - - - - Enable sample-rate crushing - - - - - Depth enabled - - - - - Enable bit-depth crushing - - - - - FREQ - 頻率 - - - - Sample rate: - 採樣率: - - - - STEREO - - - - - Stereo difference: - 雙聲道差異: - - - - QUANT - - - - - Levels: - 級別: - - - - BitcrushControls - - - Input gain - 輸入增益 - - - - Input noise - - - - - Output gain - 輸出增益 - - - - Output clip - - - - - Sample rate - - - - - Stereo difference - - - - - Levels - 級別 - - - - Rate enabled - - - - - Depth enabled + + [System Default] @@ -899,124 +132,124 @@ If you're interested in translating LMMS in another language or want to imp - + Artwork - + Using KDE Oxygen icon set, designed by Oxygen Team. - + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. - + VST is a trademark of Steinberg Media Technologies GmbH. - + Special thanks to António Saraiva for a few extra icons and artwork! - + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. - + MIDI Keyboard designed by Thorsten Wilms. - + Carla, Carla-Control and Patchbay icons designed by DoosC. - + Features - + AU/AudioUnit: - + LADSPA: - - - - - - - - + + + + + + + + TextLabel - + VST2: - + DSSI: - + LV2: - + VST3: - + OSC - + Host URLs: - + Valid commands: - + valid osc commands here - + Example: - + License 授權協議 - + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -1301,50 +534,50 @@ POSSIBILITY OF SUCH DAMAGES. - + OSC Bridge Version - + Plugin Version - + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> - - + + (Engine not running) - + Everything! (Including LRDF) - + Everything! (Including CustomData/Chunks) - + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> - - - + + + Using Juce host - + About 85% complete (missing vst bank/presets and some minor stuff) @@ -1377,561 +610,598 @@ POSSIBILITY OF SUCH DAMAGES. - + + Save + + + + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + Buffer Size: - + Sample Rate: - + ? Xruns - + DSP Load: %p% - + &File 檔案(&F) - + &Engine - + &Plugin - + Macros (all plugins) - + &Canvas - + Zoom - + &Settings - + &Help 幫助(&H) - - toolBar + + Tool Bar - + Disk - - + + Home - + Transport - + Playback Controls - + Time Information - + Frame: - + 000'000'000 - + Time: 時間: - + 00:00:00 - + BBT: - + 000|00|0000 - + Settings 設置 - + BPM - + Use JACK Transport - + Use Ableton Link - + &New 新建(&N) - + Ctrl+N - + &Open... 打開(&O)... - - + + Open... - + Ctrl+O - + &Save 保存(&S) - + Ctrl+S - + Save &As... 另存爲(&A)... - - + + Save As... - + Ctrl+Shift+S - + &Quit 退出(&Q) - + Ctrl+Q - + &Start - + F5 - + St&op - + F6 - + &Add Plugin... - + Ctrl+A - + &Remove All - + Enable - + Disable - + 0% Wet (Bypass) - + 100% Wet - + 0% Volume (Mute) - + 100% Volume - + Center Balance - + &Play - + Ctrl+Shift+P - + &Stop - + Ctrl+Shift+X - + &Backwards - + Ctrl+Shift+B - + &Forwards - + Ctrl+Shift+F - + &Arrange - + Ctrl+G - - + + &Refresh - + Ctrl+R - + Save &Image... - + Auto-Fit - + Zoom In - + Ctrl++ - + Zoom Out - + Ctrl+- - + Zoom 100% - + Ctrl+1 - + Show &Toolbar - + &Configure Carla - + &About - + About &JUCE - + About &Qt - + Show Canvas &Meters - + Show Canvas &Keyboard - + Show Internal - + Show External - + Show Time Panel - + Show &Side Panel - + + Ctrl+P + + + + &Connect... - + Compact Slots - + Expand Slots - + Perform secret 1 - + Perform secret 2 - + Perform secret 3 - + Perform secret 4 - + Perform secret 5 - + Add &JACK Application... - + &Configure driver... - + Panic - + Open custom driver panel... + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + + CarlaHostWindow - + Export as... - - - - + + + + Error 錯誤 - + Failed to load project - + Failed to save project - + Quit 退出 - + Are you sure you want to quit Carla? - + Could not connect to Audio backend '%1', possible reasons: %2 - + Could not connect to Audio backend '%1' - + Warning - + There are still some plugins loaded, you need to remove them to stop the engine. Do you want to do this now? - - CarlaInstrumentView - - - Show GUI - 顯示圖形界面 - - CarlaSettingsW @@ -1986,19 +1256,19 @@ Do you want to do this now? - + Main - + Canvas - + Engine @@ -2019,1487 +1289,589 @@ Do you want to do this now? - + Experimental - + <b>Main</b> - + Paths 路徑 - + Default project folder: - + Interface - + + Use "Classic" as default rack skin + + + + Interface refresh interval: - - + + ms - + Show console output in Logs tab (needs engine restart) - + Show a confirmation dialog before quitting - - + + Theme - + Use Carla "PRO" theme (needs restart) - + Color scheme: - + Black - + System - + Enable experimental features - + <b>Canvas</b> - + Bezier Lines - + Theme: - + Size: - + 775x600 - + 1550x1200 - + 3100x2400 - + 4650x3600 - + 6200x4800 - + + 12400x9600 + + + + Options - + Auto-hide groups with no ports - + Auto-select items on hover - + Basic eye-candy (group shadows) - + Render Hints - + Anti-Aliasing - + Full canvas repaints (slower, but prevents drawing issues) - + <b>Engine</b> - - + + Core - + Single Client - + Multiple Clients - - + + Continuous Rack - - + + Patchbay - + Audio driver: - + Process mode: - - - - + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog - + Max Parameters: - + ... - + Reset Xrun counter after project load - + Plugin UIs - - + + How much time to wait for OSC GUIs to ping back the host - + UI Bridge Timeout: - + Use OSC-GUI bridges when possible, this way separating the UI from DSP code - + Use UI bridges instead of direct handling when possible - + Make plugin UIs always-on-top - + Make plugin UIs appear on top of Carla (needs restart) - + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS - - + + Restart the engine to load the new settings - + <b>OSC</b> - + Enable OSC - + Enable TCP port - - + + Use specific port: - + Overridden by CARLA_OSC_TCP_PORT env var - - + + Use randomly assigned port - + Enable UDP port - + Overridden by CARLA_OSC_UDP_PORT env var - + DSSI UIs require OSC UDP port enabled - + <b>File Paths</b> - + Audio 音頻 - + MIDI MIDI - + Used for the "audiofile" plugin - + Used for the "midifile" plugin - - + + Add... - - + + Remove - - + + Change... - + <b>Plugin Paths</b> - + LADSPA - + DSSI - + LV2 - + VST2 - + VST3 - + SF2/3 - + SFZ - + + JSFX + + + + + CLAP + + + + Restart Carla to find new plugins - + <b>Wine</b> - + Executable - + Path to 'wine' binary: - + Prefix - + Auto-detect Wine prefix based on plugin filename - + Fallback: - + Note: WINEPREFIX env var is preferred over this fallback - + Realtime Priority - + Base priority: - + WineServer priority: - + These options are not available for Carla as plugin - + <b>Experimental</b> - + Experimental options! Likely to be unstable! - + Enable plugin bridges - + Enable Wine bridges - + Enable jack applications - + Export single plugins to LV2 - + + Use system/desktop-theme icons (needs restart) + + + + Load Carla backend in global namespace (NOT RECOMMENDED) - + Fancy eye-candy (fade-in/out groups, glow connections) - + Use OpenGL for rendering (needs restart) - + High Quality Anti-Aliasing (OpenGL only) - + Render Ardour-style "Inline Displays" - + Force mono plugins as stereo by running 2 instances at the same time. This mode is not available for VST plugins. - + Force mono plugins as stereo - - Prevent plugins from doing bad stuff (needs restart) + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. - - Whenever possible, run the plugins in bridge mode. + + Prevent unsafe calls from plugins (needs restart) - + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + Run plugins in bridge mode when possible - - - - + + + + Add Path - - CompressorControlDialog - - - Threshold: - - - - - Volume at which the compression begins to take place - - - - - Ratio: - 比率: - - - - How far the compressor must turn the volume down after crossing the threshold - - - - - Attack: - 打進聲: - - - - Speed at which the compressor starts to compress the audio - - - - - Release: - 釋音: - - - - Speed at which the compressor ceases to compress the audio - - - - - Knee: - - - - - Smooth out the gain reduction curve around the threshold - - - - - Range: - - - - - Maximum gain reduction - - - - - Lookahead Length: - - - - - How long the compressor has to react to the sidechain signal ahead of time - - - - - Hold: - 持續: - - - - Delay between attack and release stages - - - - - RMS Size: - - - - - Size of the RMS buffer - - - - - Input Balance: - - - - - Bias the input audio to the left/right or mid/side - - - - - Output Balance: - - - - - Bias the output audio to the left/right or mid/side - - - - - Stereo Balance: - - - - - Bias the sidechain signal to the left/right or mid/side - - - - - Stereo Link Blend: - - - - - Blend between unlinked/maximum/average/minimum stereo linking modes - - - - - Tilt Gain: - - - - - Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. - - - - - Tilt Frequency: - - - - - Center frequency of sidechain tilt filter - - - - - Mix: - - - - - Balance between wet and dry signals - - - - - Auto Attack: - - - - - Automatically control attack value depending on crest factor - - - - - Auto Release: - - - - - Automatically control release value depending on crest factor - - - - - Output gain - 輸出增益 - - - - - Gain - 增益 - - - - Output volume - - - - - Input gain - 輸入增益 - - - - Input volume - - - - - Root Mean Square - - - - - Use RMS of the input - - - - - Peak - - - - - Use absolute value of the input - - - - - Left/Right - - - - - Compress left and right audio - - - - - Mid/Side - - - - - Compress mid and side audio - - - - - Compressor - - - - - Compress the audio - - - - - Limiter - - - - - Set Ratio to infinity (is not guaranteed to limit audio volume) - - - - - Unlinked - - - - - Compress each channel separately - - - - - Maximum - - - - - Compress based on the loudest channel - - - - - Average - - - - - Compress based on the averaged channel volume - - - - - Minimum - - - - - Compress based on the quietest channel - - - - - Blend - - - - - Blend between stereo linking modes - - - - - Auto Makeup Gain - - - - - Automatically change makeup gain depending on threshold, knee, and ratio settings - - - - - - Soft Clip - - - - - Play the delta signal - - - - - Use the compressor's output as the sidechain input - - - - - Lookahead Enabled - - - - - Enable Lookahead, which introduces 20 milliseconds of latency - - - - - CompressorControls - - - Threshold - - - - - Ratio - 比率 - - - - Attack - 打進聲 - - - - Release - 釋放 - - - - Knee - - - - - Hold - 保持 - - - - Range - - - - - RMS Size - - - - - Mid/Side - - - - - Peak Mode - - - - - Lookahead Length - - - - - Input Balance - - - - - Output Balance - - - - - Limiter - - - - - Output Gain - - - - - Input Gain - - - - - Blend - - - - - Stereo Balance - - - - - Auto Makeup Gain - - - - - Audition - - - - - Feedback - - - - - Auto Attack - - - - - Auto Release - - - - - Lookahead - - - - - Tilt - - - - - Tilt Frequency - - - - - Stereo Link - - - - - Mix - 混合 - - - - Controller - - - Controller %1 - 控制器%1 - - - - ControllerConnectionDialog - - - Connection Settings - 連接設置 - - - - MIDI CONTROLLER - MIDI控制器 - - - - Input channel - 輸入通道 - - - - CHANNEL - 通道 - - - - Input controller - 輸入控制器 - - - - CONTROLLER - 控制器 - - - - - Auto Detect - 自動檢測 - - - - MIDI-devices to receive MIDI-events from - 用來接收 MIDI 事件的MIDI 設備 - - - - USER CONTROLLER - 用戶控制器 - - - - MAPPING FUNCTION - 映射函數 - - - - OK - 確定 - - - - Cancel - 取消 - - - - LMMS - LMMS - - - - Cycle Detected. - 檢測到環路。 - - - - ControllerRackView - - - Controller Rack - 控制器機架 - - - - Add - 增加 - - - - Confirm Delete - 刪除前確認 - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - 確定要刪除嗎?此控制器仍處於被連接狀態。此操作不可撤銷。 - - - - ControllerView - - - Controls - 控制器 - - - - Rename controller - 重命名控制器 - - - - Enter the new name for this controller - 輸入這個控制器的新名稱 - - - - LFO - - - - - &Remove this controller - - - - - Re&name this controller - - - - - CrossoverEQControlDialog - - - Band 1/2 crossover: - - - - - Band 2/3 crossover: - - - - - Band 3/4 crossover: - - - - - Band 1 gain - - - - - Band 1 gain: - - - - - Band 2 gain - - - - - Band 2 gain: - - - - - Band 3 gain - - - - - Band 3 gain: - - - - - Band 4 gain - - - - - Band 4 gain: - - - - - Band 1 mute - - - - - Mute band 1 - - - - - Band 2 mute - - - - - Mute band 2 - - - - - Band 3 mute - - - - - Mute band 3 - - - - - Band 4 mute - - - - - Mute band 4 - - - - - DelayControls - - - Delay samples - - - - - Feedback - - - - - LFO frequency - - - - - LFO amount - - - - - Output gain - 輸出增益 - - - - DelayControlsDialog - - - DELAY - - - - - Delay time - - - - - FDBK - - - - - Feedback amount - - - - - RATE - - - - - LFO frequency - - - - - AMNT - - - - - LFO amount - - - - - Out gain - - - - - Gain - 增益 - - Dialog - - - Add JACK Application - - - - - Note: Features not implemented yet are greyed out - - - - - Application - - - - - Name: - - - - - Application: - - - - - From template - - - - - Custom - - - - - Template: - - - - - Command: - - - - - Setup - - - - - Session Manager: - - - - - None - - - - - Audio inputs: - - - - - MIDI inputs: - - - - - Audio outputs: - - - - - MIDI outputs: - - - - - Take control of main application window - - - - - Workarounds - - - - - Wait for external application start (Advanced, for Debug only) - - - - - Capture only the first X11 Window - - - - - Use previous client output buffer as input for the next client - - - - - Simulate 16 JACK MIDI outputs, with MIDI channel as port index - - - - - Error here - - Carla Control - Connect @@ -3525,27 +1897,6 @@ This mode is not available for VST plugins. TCP Port: - - - Reported host - - - - - Automatic - - - - - Custom: - - - - - In some networks (like USB connections), the remote system cannot reach the local network. You can specify here which hostname or IP to make the remote Carla connect to. -If you are unsure, leave it as 'Automatic'. - - Set value @@ -3600,948 +1951,6 @@ If you are unsure, leave it as 'Automatic'. - - DualFilterControlDialog - - - - FREQ - 頻率 - - - - - Cutoff frequency - 切除頻率 - - - - - RESO - - - - - - Resonance - 共鳴 - - - - - GAIN - 增益 - - - - - Gain - 增益 - - - - MIX - - - - - Mix - 混合 - - - - Filter 1 enabled - 已啓用過濾器 1 - - - - Filter 2 enabled - 已啓用過濾器 2 - - - - Enable/disable filter 1 - - - - - Enable/disable filter 2 - - - - - DualFilterControls - - - Filter 1 enabled - 過濾器1 已啓用 - - - - Filter 1 type - 過濾器 1 類型 - - - - Cutoff frequency 1 - - - - - Q/Resonance 1 - 濾波器 1 Q值 - - - - Gain 1 - 增益 1 - - - - Mix - 混合 - - - - Filter 2 enabled - 已啓用過濾器 2 - - - - Filter 2 type - 過濾器 1 類型 {2 ?} - - - - Cutoff frequency 2 - - - - - Q/Resonance 2 - 濾波器 2 Q值 - - - - Gain 2 - 增益 2 - - - - - Low-pass - - - - - - Hi-pass - - - - - - Band-pass csg - - - - - - Band-pass czpg - - - - - - Notch - 凹口濾波器 - - - - - All-pass - - - - - - Moog - Moog - - - - - 2x Low-pass - - - - - - RC Low-pass 12 dB/oct - - - - - - RC Band-pass 12 dB/oct - - - - - - RC High-pass 12 dB/oct - - - - - - RC Low-pass 24 dB/oct - - - - - - RC Band-pass 24 dB/oct - - - - - - RC High-pass 24 dB/oct - - - - - - Vocal Formant - - - - - - 2x Moog - - - - - - SV Low-pass - - - - - - SV Band-pass - - - - - - SV High-pass - - - - - - SV Notch - - - - - - Fast Formant - - - - - - Tripole - - - - - Editor - - - Transport controls - - - - - Play (Space) - 播放(空格) - - - - Stop (Space) - 停止(空格) - - - - Record - 錄音 - - - - Record while playing - 播放時錄音 - - - - Toggle Step Recording - - - - - Effect - - - Effect enabled - 啓用效果器 - - - - Wet/Dry mix - 幹/溼混合 - - - - Gate - 門限 - - - - Decay - 衰減 - - - - EffectChain - - - Effects enabled - 啓用效果器 - - - - EffectRackView - - - EFFECTS CHAIN - 效果器鏈 - - - - Add effect - 增加效果器 - - - - EffectSelectDialog - - - Add effect - 增加效果器 - - - - - Name - 名稱 - - - - Type - 類型 - - - - Description - 描述 - - - - Author - - - - - EffectView - - - On/Off - 開/關 - - - - W/D - W/D - - - - Wet Level: - 效果度: - - - - DECAY - 衰減 - - - - Time: - 時間: - - - - GATE - 門限 - - - - Gate: - 門限: - - - - Controls - 控制 - - - - Move &up - 向上移(&U) - - - - Move &down - 向下移(&D) - - - - &Remove this plugin - 移除此插件(&R) - - - - EnvelopeAndLfoParameters - - - Env pre-delay - - - - - Env attack - - - - - Env hold - - - - - Env decay - - - - - Env sustain - - - - - Env release - - - - - Env mod amount - - - - - LFO pre-delay - - - - - LFO attack - - - - - LFO frequency - - - - - LFO mod amount - - - - - LFO wave shape - - - - - LFO frequency x 100 - - - - - Modulate env amount - - - - - EnvelopeAndLfoView - - - - DEL - DEL - - - - - Pre-delay: - - - - - - ATT - ATT - - - - - Attack: - 打進聲: - - - - HOLD - 持續 - - - - Hold: - 持續: - - - - DEC - 衰減 - - - - Decay: - 衰減: - - - - SUST - 持續 - - - - Sustain: - 持續: - - - - REL - 釋音 - - - - Release: - 釋音: - - - - - AMT - - - - - - Modulation amount: - 調製量: - - - - SPD - - - - - Frequency: - 頻率: - - - - FREQ x 100 - 頻率 x 100 - - - - Multiply LFO frequency by 100 - - - - - MODULATE ENV AMOUNT - - - - - Control envelope amount by this LFO - - - - - ms/LFO: - - - - - Hint - 提示 - - - - Drag and drop a sample into this window. - - - - - EqControls - - - Input gain - 輸入增益 - - - - Output gain - 輸出增益 - - - - Low-shelf gain - - - - - Peak 1 gain - - - - - Peak 2 gain - - - - - Peak 3 gain - - - - - Peak 4 gain - - - - - High-shelf gain - - - - - HP res - - - - - Low-shelf res - - - - - Peak 1 BW - - - - - Peak 2 BW - - - - - Peak 3 BW - - - - - Peak 4 BW - - - - - High-shelf res - - - - - LP res - - - - - HP freq - - - - - Low-shelf freq - - - - - Peak 1 freq - - - - - Peak 2 freq - - - - - Peak 3 freq - - - - - Peak 4 freq - - - - - High-shelf freq - - - - - LP freq - - - - - HP active - - - - - Low-shelf active - - - - - Peak 1 active - - - - - Peak 2 active - - - - - Peak 3 active - - - - - Peak 4 active - - - - - High-shelf active - - - - - LP active - - - - - LP 12 - - - - - LP 24 - - - - - LP 48 - - - - - HP 12 - - - - - HP 24 - - - - - HP 48 - - - - - Low-pass type - - - - - High-pass type - - - - - Analyse IN - - - - - Analyse OUT - - - - - EqControlsDialog - - - HP - - - - - Low-shelf - - - - - Peak 1 - - - - - Peak 2 - - - - - Peak 3 - - - - - Peak 4 - - - - - High-shelf - - - - - LP - - - - - Input gain - 輸入增益 - - - - - - Gain - 增益 - - - - Output gain - 輸出增益 - - - - Bandwidth: - - - - - Octave - - - - - Resonance : - - - - - Frequency: - 頻率: - - - - LP group - - - - - HP group - - - - - EqHandle - - - Reso: - - - - - BW: - - - - - - Freq: - - - ExportProjectDialog @@ -4725,2126 +2134,652 @@ If you are unsure, leave it as 'Automatic'. - - Oversampling: - - - - - 1x (None) - 1x (無) - - - - 2x - 2x - - - - 4x - 4x - - - - 8x - 8x - - - + Start 開始 - + Cancel 取消 - - - Could not open file - 無法開啟檔案 - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - 無法開啟 %1 以進行寫入。 -請確認您有權限存取此檔案,以及包含此檔案的目錄後再試一次。 - - - - Export project to %1 - 導出項目到 %1 - - - - ( Fastest - biggest ) - - - - - ( Slowest - smallest ) - - - - - Error - 錯誤 - - - - Error while determining file-encoder device. Please try to choose a different output format. - 偵測檔案編碼裝置時發生錯誤。請嘗試使用其他輸出格式。 - - - - Rendering: %1% - 渲染中:%1% - - - - Fader - - - Set value - - - - - Please enter a new value between %1 and %2: - 請輸入一個介於%1和%2之間的數值: - - - - FileBrowser - - - User content - - - - - Factory content - - - - - Browser - 瀏覽器 - - - - Search - - - - - Refresh list - - - - - FileBrowserTreeWidget - - - Send to active instrument-track - 發送到活躍的樂器軌道 - - - - Open containing folder - - - - - Song Editor - 顯示/隱藏歌曲編輯器 - - - - BB Editor - - - - - Send to new AudioFileProcessor instance - - - - - Send to new instrument track - - - - - (%2Enter) - - - - - Send to new sample track (Shift + Enter) - - - - - Loading sample - 加載採樣中 - - - - Please wait, loading sample for preview... - 請稍候,加載採樣中... - - - - Error - 錯誤 - - - - %1 does not appear to be a valid %2 file - - - - - --- Factory files --- - --- 內建檔案 --- - - - - FlangerControls - - - Delay samples - - - - - LFO frequency - - - - - Seconds - - - - - Stereo phase - - - - - Regen - - - - - Noise - 噪音 - - - - Invert - 反轉 - - - - FlangerControlsDialog - - - DELAY - - - - - Delay time: - - - - - RATE - - - - - Period: - - - - - AMNT - - - - - Amount: - - - - - PHASE - - - - - Phase: - - - - - FDBK - - - - - Feedback amount: - - - - - NOISE - - - - - White noise amount: - - - - - Invert - 反轉 - - - - FreeBoyInstrument - - - Sweep time - - - - - Sweep direction - - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle - - - - - Channel 1 volume - - - - - - - Volume sweep direction - - - - - - - Length of each step in sweep - - - - - Channel 2 volume - - - - - Channel 3 volume - - - - - Channel 4 volume - - - - - Shift Register width - - - - - Right output level - - - - - Left output level - - - - - Channel 1 to SO2 (Left) - - - - - Channel 2 to SO2 (Left) - - - - - Channel 3 to SO2 (Left) - - - - - Channel 4 to SO2 (Left) - - - - - Channel 1 to SO1 (Right) - - - - - Channel 2 to SO1 (Right) - - - - - Channel 3 to SO1 (Right) - - - - - Channel 4 to SO1 (Right) - - - - - Treble - - - - - Bass - 低音 - - - - FreeBoyInstrumentView - - - Sweep time: - - - - - Sweep time - - - - - Sweep rate shift amount: - - - - - Sweep rate shift amount - - - - - - Wave pattern duty cycle: - - - - - - Wave pattern duty cycle - - - - - Square channel 1 volume: - - - - - Square channel 1 volume - - - - - - - Length of each step in sweep: - - - - - - - Length of each step in sweep - - - - - Square channel 2 volume: - - - - - Square channel 2 volume - - - - - Wave pattern channel volume: - - - - - Wave pattern channel volume - - - - - Noise channel volume: - - - - - Noise channel volume - - - - - SO1 volume (Right): - - - - - SO1 volume (Right) - - - - - SO2 volume (Left): - - - - - SO2 volume (Left) - - - - - Treble: - - - - - Treble - - - - - Bass: - - - - - Bass - 低音 - - - - Sweep direction - - - - - - - - - Volume sweep direction - - - - - Shift register width - - - - - Channel 1 to SO1 (Right) - - - - - Channel 2 to SO1 (Right) - - - - - Channel 3 to SO1 (Right) - - - - - Channel 4 to SO1 (Right) - - - - - Channel 1 to SO2 (Left) - - - - - Channel 2 to SO2 (Left) - - - - - Channel 3 to SO2 (Left) - - - - - Channel 4 to SO2 (Left) - - - - - Wave pattern graph - - - - - MixerChannelView - - - Channel send amount - 通道發送的數量 - - - - Move &left - 向左移(&L) - - - - Move &right - 向右移(&R) - - - - Rename &channel - 重命名通道(&C) - - - - R&emove channel - 刪除通道(&E) - - - - Remove &unused channels - 移除所有未用通道(&U) - - - - Set channel color - - - - - Remove channel color - - - - - Pick random channel color - - - - - MixerChannelLcdSpinBox - - - Assign to: - 分配給: - - - - New mixer Channel - 新的效果通道 - - - - Mixer - - - Master - 主控 - - - - - - Channel %1 - FX %1 - - - - Volume - 音量 - - - - Mute - 靜音 - - - - Solo - 獨奏 - - - - MixerView - - - Mixer - 效果混合器 - - - - Fader %1 - FX 衰減器 %1 - - - - Mute - 靜音 - - - - Mute this mixer channel - 靜音此效果通道 - - - - Solo - 獨奏 - - - - Solo mixer channel - 獨奏效果通道 - - - - MixerRoute - - - - Amount to send from channel %1 to channel %2 - 從通道 %1 發送到通道 %2 的量 - - - - GigInstrument - - - Bank - - - - - Patch - 音色 - - - - Gain - 增益 - - - - GigInstrumentView - - - - Open GIG file - 開啟 GIG 檔案 - - - - Choose patch - - - - - Gain: - 增益: - - - - GIG Files (*.gig) - GIG 檔案 (*.gig) - - - - GuiApplication - - - Working directory - 工作目錄 - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - LMMS工作目錄%1不存在,現在新建一個嗎?你可以稍後在 編輯 -> 設置 中更改此設置。 - - - - Preparing UI - 正在準備界面 - - - - Preparing song editor - 正在準備歌曲編輯器 - - - - Preparing mixer - 正在準備混音器 - - - - Preparing controller rack - 正在準備控制機架 - - - - Preparing project notes - 正在準備專案音符 - - - - Preparing beat/bassline editor - 正在準備節拍/低音線編輯器 - - - - Preparing piano roll - 正在準備鋼琴捲簾 - - - - Preparing automation editor - 正在準備自動化控制編輯器 - - - - InstrumentFunctionArpeggio - - - Arpeggio - - - - - Arpeggio type - - - - - Arpeggio range - - - - - Note repeats - - - - - Cycle steps - - - - - Skip rate - - - - - Miss rate - - - - - Arpeggio time - - - - - Arpeggio gate - - - - - Arpeggio direction - - - - - Arpeggio mode - - - - - Up - 向上 - - - - Down - 向下 - - - - Up and down - 上和下 - - - - Down and up - 下和上 - - - - Random - 隨機 - - - - Free - 自由 - - - - Sort - 排序 - - - - Sync - 同步 - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - 琶音 - - - - RANGE - 範圍 - - - - Arpeggio range: - - - - - octave(s) - - - - - REP - - - - - Note repeats: - - - - - time(s) - - - - - CYCLE - - - - - Cycle notes: - - - - - note(s) - - - - - SKIP - - - - - Skip rate: - - - - - - - % - % - - - - MISS - - - - - Miss rate: - - - - - TIME - 時長 - - - - Arpeggio time: - - - - - ms - 毫秒 - - - - GATE - 門限 - - - - Arpeggio gate: - - - - - Chord: - 和絃: - - - - Direction: - 方向: - - - - Mode: - 模式: - InstrumentFunctionNoteStacking - + octave octave - - + + Major Major - + Majb5 Majb5 - + minor minor - + minb5 minb5 - + sus2 sus2 - + sus4 sus4 - + aug aug - + augsus4 augsus4 - + tri tri - + 6 6 - + 6sus4 6sus4 - + 6add9 6add9 - + m6 m6 - + m6add9 m6add9 - + 7 7 - + 7sus4 7sus4 - + 7#5 7#5 - + 7b5 7b5 - + 7#9 7#9 - + 7b9 7b9 - + 7#5#9 7#5#9 - + 7#5b9 7#5b9 - + 7b5b9 7b5b9 - + 7add11 7add11 - + 7add13 7add13 - + 7#11 7#11 - + Maj7 Maj7 - + Maj7b5 Maj7b5 - + Maj7#5 Maj7#5 - + Maj7#11 Maj7#11 - + Maj7add13 Maj7add13 - + m7 m7 - + m7b5 m7b5 - + m7b9 m7b9 - + m7add11 m7add11 - + m7add13 m7add13 - + m-Maj7 m-Maj7 - + m-Maj7add11 m-Maj7add11 - + m-Maj7add13 m-Maj7add13 - + 9 9 - + 9sus4 9sus4 - + add9 add9 - + 9#5 9#5 - + 9b5 9b5 - + 9#11 9#11 - + 9b13 9b13 - + Maj9 Maj9 - + Maj9sus4 Maj9sus4 - + Maj9#5 Maj9#5 - + Maj9#11 Maj9#11 - + m9 m9 - + madd9 madd9 - + m9b5 m9b5 - + m9-Maj7 m9-Maj7 - + 11 11 - + 11b9 11b9 - + Maj11 Maj11 - + m11 m11 - + m-Maj11 m-Maj11 - + 13 13 - + 13#9 13#9 - + 13b9 13b9 - + 13b5b9 13b5b9 - + Maj13 Maj13 - + m13 m13 - + m-Maj13 m-Maj13 - + Harmonic minor Harmonic minor - + Melodic minor Melodic minor - + Whole tone - + Diminished Diminished - + Major pentatonic Major pentatonic - + Minor pentatonic Minor pentatonic - + Jap in sen Jap in sen - + Major bebop Major bebop - + Dominant bebop Dominant bebop - + Blues Blues - + Arabic Arabic - + Enigmatic Enigmatic - + Neopolitan Neopolitan - + Neopolitan minor Neopolitan minor - + Hungarian minor Hungarian minor - + Dorian Dorian - + Phrygian - + Lydian Lydian - + Mixolydian Mixolydian - + Aeolian Aeolian - + Locrian Locrian - + Minor Minor - + Chromatic Chromatic - + Half-Whole Diminished - + 5 5 - + Phrygian dominant - + Persian - - - Chords - Chords - - - - Chord type - Chord type - - - - Chord range - Chord range - - - - InstrumentFunctionNoteStackingView - - - STACKING - 堆疊 - - - - Chord: - 和絃: - - - - RANGE - 範圍 - - - - Chord range: - 和絃範圍: - - - - octave(s) - - - - - InstrumentMidiIOView - - - ENABLE MIDI INPUT - 啓用MIDI輸入 - - - - ENABLE MIDI OUTPUT - 啓用MIDI輸出 - - - - - CHAN - This string must be be short, its width must be less than * width of LCD spin-box of two digits - - - - - - VELOC - This string must be be short, its width must be less than * width of LCD spin-box of three digits - - - - - PROG - This string must be be short, its width must be less than the * width of LCD spin-box of three digits - - - - - NOTE - This string must be be short, its width must be less than * width of LCD spin-box of three digits - 音符 - - - - MIDI devices to receive MIDI events from - 用於接收 MIDI 事件的 MIDI 設備 - - - - MIDI devices to send MIDI events to - 用於發送 MIDI 事件的 MIDI 設備 - - - - CUSTOM BASE VELOCITY - 自定義基準力度 - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. - - - - - BASE VELOCITY - 基準力度 - - - - InstrumentTuningView - - - MASTER PITCH - 主音高 - - - - Enables the use of master pitch - - InstrumentSoundShaping - + VOLUME 音量 - + Volume 音量 - + CUTOFF 切除 - - + Cutoff frequency 切除頻率 - + RESO - + Resonance 共鳴 - - - Envelopes/LFOs - 壓限/低頻振盪 - - - - Filter type - 過濾器類型 - - - - Q/Resonance - - - - - Low-pass - - - - - Hi-pass - - - - - Band-pass csg - - - - - Band-pass czpg - - - - - Notch - 凹口濾波器 - - - - All-pass - - - - - Moog - Moog - - - - 2x Low-pass - - - - - RC Low-pass 12 dB/oct - - - - - RC Band-pass 12 dB/oct - - - - - RC High-pass 12 dB/oct - - - - - RC Low-pass 24 dB/oct - - - - - RC Band-pass 24 dB/oct - - - - - RC High-pass 24 dB/oct - - - - - Vocal Formant - - - - - 2x Moog - - - - - SV Low-pass - - - - - SV Band-pass - - - - - SV High-pass - - - - - SV Notch - - - - - Fast Formant - - - - - Tripole - - - InstrumentSoundShapingView + JackAppDialog - - TARGET - 目標 - - - - FILTER + + Add JACK Application - - FREQ - 頻率 - - - - Cutoff frequency: - 頻譜刀頻率: - - - - Hz - Hz - - - - Q/RESO + + Note: Features not implemented yet are greyed out - - Q/Resonance: + + Application - - Envelopes, LFOs and filters are not supported by the current instrument. - 包絡和低頻振盪 (LFO) 不被當前樂器支持。 - - - - InstrumentTrack - - - - unnamed_track - 未命名軌道 - - - - Base note - 基本音 - - - - First note + + Name: - - Last note - 上一個音符 - - - - Volume - 音量 - - - - Panning - 聲相 - - - - Pitch - 音高 - - - - Pitch range - 音域範圍 - - - - Mixer channel - 效果通道 - - - - Master pitch - 主音高 - - - - Enable/Disable MIDI CC + + Application: - - CC Controller %1 + + From template - - - Default preset - 預置 - - - - InstrumentTrackView - - - Volume - 音量 - - - - Volume: - 音量: - - - - VOL - VOL - - - - Panning - 聲相 - - - - Panning: - 聲相: - - - - PAN - PAN - - - - MIDI - MIDI - - - - Input - 輸入 - - - - Output - 輸出 - - - - Open/Close MIDI CC Rack + + Custom - - Channel %1: %2 - 效果 %1: %2 - - - - InstrumentTrackWindow - - - GENERAL SETTINGS - 常規設置 - - - - Volume - 音量 - - - - Volume: - 音量: - - - - VOL - VOL - - - - Panning - 聲相 - - - - Panning: - 聲相: - - - - PAN - PAN - - - - Pitch - 音高 - - - - Pitch: - 音高: - - - - cents - 音分 cents - - - - PITCH + + Template: - - Pitch range (semitones) - 音域範圍(半音) - - - - RANGE - 範圍 - - - - Mixer channel - 效果通道 - - - - CHANNEL - 效果 - - - - Save current instrument track settings in a preset file - 儲存目前的樂器軌道設定為預設集檔案 - - - - SAVE - 保存 - - - - Envelope, filter & LFO + + Command: - - Chord stacking & arpeggio + + Setup - - Effects + + Session Manager: - - MIDI - MIDI - - - - Miscellaneous + + None - - Save preset - 保存預置 - - - - XML preset file (*.xpf) - XML 預設集檔案 (*.xpf) - - - - Plugin + + Audio inputs: - - - JackApplicationW - + + MIDI inputs: + + + + + Audio outputs: + + + + + MIDI outputs: + + + + + Take control of main application window + + + + + Workarounds + + + + + Wait for external application start (Advanced, for Debug only) + + + + + Capture only the first X11 Window + + + + + Use previous client output buffer as input for the next client + + + + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + + + + + Error here + + + + NSM applications cannot use abstract or absolute paths - + NSM applications cannot use CLI arguments - + You need to save the current Carla project before NSM can be used @@ -6852,947 +2787,11 @@ Please make sure you have write permission to the file and the directory contain JuceAboutW - - About JUCE - - - - - <b>About JUCE</b> - - - - - This program uses JUCE version 3.x.x. - - - - - JUCE (Jules' Utility Class Extensions) is an all-encompassing C++ class library for developing cross-platform software. - -It contains pretty much everything you're likely to need to create most applications, and is particularly well-suited for building highly-customised GUIs, and for handling graphics and sound. - -JUCE is licensed under the GNU Public Licence version 2.0. -One module (juce_core) is permissively licensed under the ISC. - -Copyright (C) 2017 ROLI Ltd. - - - - + This program uses JUCE version %1. - - Knob - - - Set linear - 設置爲線性 - - - - Set logarithmic - 設置爲對數 - - - - - Set value - - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - - - - - Please enter a new value between %1 and %2: - 請輸入一個介於%1和%2之間的數值: - - - - LadspaControl - - - Link channels - 關聯通道 - - - - LadspaControlDialog - - - Link Channels - 連接通道 - - - - Channel - 通道 - - - - LadspaControlView - - - Link channels - 連接通道 - - - - Value: - 值: - - - - LadspaEffect - - - Unknown LADSPA plugin %1 requested. - 已請求未知 LADSPA 插件 %1. - - - - LcdFloatSpinBox - - - Set value - - - - - Please enter a new value between %1 and %2: - 請輸入一個介於 %1 和 %2 的值: - - - - LcdSpinBox - - - Set value - - - - - Please enter a new value between %1 and %2: - 請輸入一個介於%1和%2之間的數值: - - - - LeftRightNav - - - - - Previous - 上個 - - - - - - Next - 下個 - - - - Previous (%1) - 上 (%1) - - - - Next (%1) - 下 (%1) - - - - LfoController - - - LFO Controller - LFO 控制器 - - - - Base value - 基準值 - - - - Oscillator speed - 振動速度 - - - - Oscillator amount - - - - - Oscillator phase - - - - - Oscillator waveform - 振動波形 - - - - Frequency Multiplier - - - - - LfoControllerDialog - - - LFO - - - - - BASE - 基準 - - - - Base: - - - - - FREQ - 頻率 - - - - LFO frequency: - - - - - AMNT - - - - - Modulation amount: - 調製量: - - - - PHS - - - - - Phase offset: - - - - - degrees - - - - - Sine wave - 正弦波 - - - - Triangle wave - 三角波 - - - - Saw wave - 鋸齒波 - - - - Square wave - 方波 - - - - Moog saw wave - - - - - Exponential wave - - - - - White noise - - - - - User-defined shape. -Double click to pick a file. - - - - - Mutliply modulation frequency by 1 - - - - - Mutliply modulation frequency by 100 - - - - - Divide modulation frequency by 100 - - - - - Engine - - - Generating wavetables - 正在生成波形表 - - - - Initializing data structures - 正在初始化數據結構 - - - - Opening audio and midi devices - 正在啓動音頻和 MIDI 設備 - - - - Launching mixer threads - 生在啓動混音器線程 - - - - MainWindow - - - Configuration file - 設定檔 - - - - Error while parsing configuration file at line %1:%2: %3 - 解析設定檔時發生錯誤(行 %1:%2:%3) - - - - Could not open file - 無法開啟檔案 - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - 無法開啟 %1 以進行寫入。 -請確認您有權限存取此檔案,以及包含此檔案的目錄後再試一次。 - - - - Project recovery - 工程恢復 - - - - There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - 發現復原檔案。可能是上一個工作階段未正常結束,或者另一個 LMMS 已在執行。您想要復原這個專案嗎? - - - - - Recover - 恢復 - - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - 復原檔案。請不要在復原檔案時同時開啟多個 LMMS 視窗。 - - - - - Discard - 丟棄 - - - - Launch a default session and delete the restored files. This is not reversible. - 開啟新的預設工作階段並刪除已復原的檔案。此操作無法復原。 - - - - Version %1 - 版本 %1 - - - - Preparing plugin browser - 正在準備插件瀏覽器 - - - - Preparing file browsers - 正在準備檔案瀏覽器 - - - - My Projects - 我的工程 - - - - My Samples - 我的採樣 - - - - My Presets - 我的預設 - - - - My Home - 我的主目錄 - - - - Root directory - 根目錄 - - - - Volumes - 音量 - - - - My Computer - 我的電腦 - - - - &File - 檔案(&F) - - - - &New - 新建(&N) - - - - &Open... - 打開(&O)... - - - - Loading background picture - - - - - &Save - 保存(&S) - - - - Save &As... - 另存爲(&A)... - - - - Save as New &Version - 保存爲新版本(&V) - - - - Save as default template - 保存爲默認模板 - - - - Import... - 導入... - - - - E&xport... - 導出(&E)... - - - - E&xport Tracks... - 導出音軌(&X)... - - - - Export &MIDI... - 導出 MIDI (&M)... - - - - &Quit - 退出(&Q) - - - - &Edit - 編輯(&E) - - - - Undo - 撤銷 - - - - Redo - 重做 - - - - Settings - 設置 - - - - &View - 視圖 (&V) - - - - &Tools - 工具(&T) - - - - &Help - 幫助(&H) - - - - Online Help - 在線幫助 - - - - Help - 幫助 - - - - About - 關於 - - - - Create new project - 新建工程 - - - - Create new project from template - 從模版新建工程 - - - - Open existing project - 打開已有工程 - - - - Recently opened projects - 最近打開的工程 - - - - Save current project - 保存當前工程 - - - - Export current project - 導出當前工程 - - - - Metronome - - - - - - Song Editor - 顯示/隱藏歌曲編輯器 - - - - - Beat+Bassline Editor - 顯示/隱藏節拍+旋律編輯器 - - - - - Piano Roll - 顯示/隱藏鋼琴窗 - - - - - Automation Editor - 顯示/隱藏自動控制編輯器 - - - - - Mixer - 顯示/隱藏混音器 - - - - Show/hide controller rack - 顯示/隱藏控制器機架 - - - - Show/hide project notes - 顯示/隱藏工程註釋 - - - - Untitled - 未命名 - - - - Recover session. Please save your work! - 恢復會話。請保存你的工作! - - - - LMMS %1 - LMMS %1 - - - - Recovered project not saved - 恢復的工程沒有保存 - - - - This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? - 這個工程已從上一個會話中恢復。它現在沒有被保存, 並且如果你不保存, 它將會丟失。你現在想保存它嗎? - - - - Project not saved - 工程未保存 - - - - The current project was modified since last saving. Do you want to save it now? - 此工程自上次保存後有了修改,你想保存嗎? - - - - Open Project - 打開工程 - - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - - Save Project - 保存工程 - - - - LMMS Project - LMMS 工程 - - - - LMMS Project Template - LMMS 工程模板 - - - - Save project template - - - - - Overwrite default template? - 覆蓋默認的模板? - - - - This will overwrite your current default template. - 這將會覆蓋你的當前默認模板。 - - - - Help not available - 幫助不可用 - - - - Currently there's no help available in LMMS. -Please visit http://lmms.sf.net/wiki for documentation on LMMS. - LMMS現在沒有可用的幫助 -請訪問 http://lmms.sf.net/wiki 瞭解LMMS的相關文檔。 - - - - Controller Rack - 顯示/隱藏控制器機架 - - - - Project Notes - 顯示/隱藏工程註釋 - - - - Fullscreen - - - - - Volume as dBFS - - - - - Smooth scroll - 平滑滾動 - - - - Enable note labels in piano roll - 在鋼琴窗中顯示音號 - - - - MIDI File (*.mid) - MIDI 檔案 (*.mid) - - - - - untitled - 未命名 - - - - - Select file for project-export... - 匯出專案至… - - - - Select directory for writing exported tracks... - 選擇寫入導出音軌的目錄... - - - - Save project - - - - - Project saved - 工程已保存 - - - - The project %1 is now saved. - 工程 %1 已保存。 - - - - Project NOT saved. - 工程 **沒有** 保存。 - - - - The project %1 was not saved! - 工程%1沒有保存! - - - - Import file - 匯入檔案 - - - - MIDI sequences - MIDI 音序器 - - - - Hydrogen projects - Hydrogen工程 - - - - All file types - 所有檔案類型 - - - - MeterDialog - - - - Meter Numerator - - - - - Meter numerator - - - - - - Meter Denominator - - - - - Meter denominator - - - - - TIME SIG - 拍子記號 - - - - MeterModel - - - Numerator - - - - - Denominator - - - - - MidiCCRackView - - - - MIDI CC Rack - %1 - - - - - MIDI CC Knobs: - - - - - CC %1 - - - - - MidiController - - - MIDI Controller - MIDI控制器 - - - - unnamed_midi_controller - - - - - MidiImport - - - - Setup incomplete - 設置不完整 - - - - You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. - - - - - You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - 您在編譯 LMMS 時未一併啟用 SoundFont2 播放器支援,此播放器用於為匯入的 MIDI 檔案加入預設聲音,因此在匯入此 MIDI 檔後不會有聲音。 - - - - MIDI Time Signature Numerator - - - - - MIDI Time Signature Denominator - - - - - Numerator - - - - - Denominator - - - - - Track - 軌道 - - - - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - JACK服務崩潰 - - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - - - MidiPatternW @@ -7998,2730 +2997,369 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. 退出(&Q) - - &Insert Mode + + Esc + &Insert Mode + + + + F - + &Velocity Mode - + D - + Select All - + A - - MidiPort - - - Input channel - 輸入通道 - - - - Output channel - 輸出通道 - - - - Input controller - 輸入控制器 - - - - Output controller - 輸出控制器 - - - - Fixed input velocity - - - - - Fixed output velocity - - - - - Fixed output note - - - - - Output MIDI program - - - - - Base velocity - 基準力度 - - - - Receive MIDI-events - 接受 MIDI 事件 - - - - Send MIDI-events - 發送 MIDI 事件 - - - - MidiSetupWidget - - - Device - - - - - MonstroInstrument - - - Osc 1 volume - - - - - Osc 1 panning - - - - - Osc 1 coarse detune - - - - - Osc 1 fine detune left - - - - - Osc 1 fine detune right - - - - - Osc 1 stereo phase offset - - - - - Osc 1 pulse width - - - - - Osc 1 sync send on rise - - - - - Osc 1 sync send on fall - - - - - Osc 2 volume - - - - - Osc 2 panning - - - - - Osc 2 coarse detune - - - - - Osc 2 fine detune left - - - - - Osc 2 fine detune right - - - - - Osc 2 stereo phase offset - - - - - Osc 2 waveform - - - - - Osc 2 sync hard - - - - - Osc 2 sync reverse - - - - - Osc 3 volume - - - - - Osc 3 panning - - - - - Osc 3 coarse detune - - - - - Osc 3 Stereo phase offset - - - - - Osc 3 sub-oscillator mix - - - - - Osc 3 waveform 1 - - - - - Osc 3 waveform 2 - - - - - Osc 3 sync hard - - - - - Osc 3 Sync reverse - - - - - LFO 1 waveform - - - - - LFO 1 attack - - - - - LFO 1 rate - - - - - LFO 1 phase - - - - - LFO 2 waveform - - - - - LFO 2 attack - - - - - LFO 2 rate - - - - - LFO 2 phase - - - - - Env 1 pre-delay - - - - - Env 1 attack - - - - - Env 1 hold - - - - - Env 1 decay - - - - - Env 1 sustain - - - - - Env 1 release - - - - - Env 1 slope - - - - - Env 2 pre-delay - - - - - Env 2 attack - - - - - Env 2 hold - - - - - Env 2 decay - - - - - Env 2 sustain - - - - - Env 2 release - - - - - Env 2 slope - - - - - Osc 2+3 modulation - - - - - Selected view - - - - - Osc 1 - Vol env 1 - - - - - Osc 1 - Vol env 2 - - - - - Osc 1 - Vol LFO 1 - - - - - Osc 1 - Vol LFO 2 - - - - - Osc 2 - Vol env 1 - - - - - Osc 2 - Vol env 2 - - - - - Osc 2 - Vol LFO 1 - - - - - Osc 2 - Vol LFO 2 - - - - - Osc 3 - Vol env 1 - - - - - Osc 3 - Vol env 2 - - - - - Osc 3 - Vol LFO 1 - - - - - Osc 3 - Vol LFO 2 - - - - - Osc 1 - Phs env 1 - - - - - Osc 1 - Phs env 2 - - - - - Osc 1 - Phs LFO 1 - - - - - Osc 1 - Phs LFO 2 - - - - - Osc 2 - Phs env 1 - - - - - Osc 2 - Phs env 2 - - - - - Osc 2 - Phs LFO 1 - - - - - Osc 2 - Phs LFO 2 - - - - - Osc 3 - Phs env 1 - - - - - Osc 3 - Phs env 2 - - - - - Osc 3 - Phs LFO 1 - - - - - Osc 3 - Phs LFO 2 - - - - - Osc 1 - Pit env 1 - - - - - Osc 1 - Pit env 2 - - - - - Osc 1 - Pit LFO 1 - - - - - Osc 1 - Pit LFO 2 - - - - - Osc 2 - Pit env 1 - - - - - Osc 2 - Pit env 2 - - - - - Osc 2 - Pit LFO 1 - - - - - Osc 2 - Pit LFO 2 - - - - - Osc 3 - Pit env 1 - - - - - Osc 3 - Pit env 2 - - - - - Osc 3 - Pit LFO 1 - - - - - Osc 3 - Pit LFO 2 - - - - - Osc 1 - PW env 1 - - - - - Osc 1 - PW env 2 - - - - - Osc 1 - PW LFO 1 - - - - - Osc 1 - PW LFO 2 - - - - - Osc 3 - Sub env 1 - - - - - Osc 3 - Sub env 2 - - - - - Osc 3 - Sub LFO 1 - - - - - Osc 3 - Sub LFO 2 - - - - - - Sine wave - 正弦波 - - - - Bandlimited Triangle wave - - - - - Bandlimited Saw wave - - - - - Bandlimited Ramp wave - - - - - Bandlimited Square wave - - - - - Bandlimited Moog saw wave - - - - - - Soft square wave - - - - - Absolute sine wave - - - - - - Exponential wave - - - - - White noise - - - - - Digital Triangle wave - - - - - Digital Saw wave - - - - - Digital Ramp wave - - - - - Digital Square wave - - - - - Digital Moog saw wave - - - - - Triangle wave - 三角波 - - - - Saw wave - 鋸齒波 - - - - Ramp wave - - - - - Square wave - 方波 - - - - Moog saw wave - - - - - Abs. sine wave - - - - - Random - 隨機 - - - - Random smooth - - - - - MonstroView - - - Operators view - - - - - Matrix view - 矩陣視圖 - - - - - - Volume - 音量 - - - - - - Panning - 聲相 - - - - - - Coarse detune - - - - - - - semitones - 半音 - - - - - Fine tune left - - - - - - - - cents - - - - - - Fine tune right - - - - - - - Stereo phase offset - - - - - - - - - deg - - - - - Pulse width - - - - - Send sync on pulse rise - - - - - Send sync on pulse fall - - - - - Hard sync oscillator 2 - - - - - Reverse sync oscillator 2 - - - - - Sub-osc mix - - - - - Hard sync oscillator 3 - - - - - Reverse sync oscillator 3 - - - - - - - - Attack - 打進聲 - - - - - Rate - - - - - - Phase - - - - - - Pre-delay - - - - - - Hold - 保持 - - - - - Decay - 衰減 - - - - - Sustain - 持續 - - - - - Release - 釋放 - - - - - Slope - - - - - Mix osc 2 with osc 3 - - - - - Modulate amplitude of osc 3 by osc 2 - - - - - Modulate frequency of osc 3 by osc 2 - - - - - Modulate phase of osc 3 by osc 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Modulation amount - 調製量 - - - - MultitapEchoControlDialog - - - Length - 長度 - - - - Step length: - 步進長度: - - - - Dry - 幹聲 - - - - Dry gain: - - - - - Stages - - - - - Low-pass stages: - - - - - Swap inputs - - - - - Swap left and right input channels for reflections - - - - - NesInstrument - - - Channel 1 coarse detune - - - - - Channel 1 volume - - - - - Channel 1 envelope length - - - - - Channel 1 duty cycle - - - - - Channel 1 sweep amount - - - - - Channel 1 sweep rate - - - - - Channel 2 Coarse detune - - - - - Channel 2 Volume - - - - - Channel 2 envelope length - - - - - Channel 2 duty cycle - - - - - Channel 2 sweep amount - - - - - Channel 2 sweep rate - - - - - Channel 3 coarse detune - - - - - Channel 3 volume - - - - - Channel 4 volume - - - - - Channel 4 envelope length - - - - - Channel 4 noise frequency - - - - - Channel 4 noise frequency sweep - - - - - Master volume - 主音量 - - - - Vibrato - - - - - NesInstrumentView - - - - - - Volume - 音量 - - - - - - Coarse detune - - - - - - - Envelope length - - - - - Enable channel 1 - - - - - Enable envelope 1 - - - - - Enable envelope 1 loop - - - - - Enable sweep 1 - - - - - - Sweep amount - - - - - - Sweep rate - - - - - - 12.5% Duty cycle - - - - - - 25% Duty cycle - - - - - - 50% Duty cycle - - - - - - 75% Duty cycle - - - - - Enable channel 2 - - - - - Enable envelope 2 - - - - - Enable envelope 2 loop - - - - - Enable sweep 2 - - - - - Enable channel 3 - - - - - Noise Frequency - - - - - Frequency sweep - - - - - Enable channel 4 - - - - - Enable envelope 4 - - - - - Enable envelope 4 loop - - - - - Quantize noise frequency when using note frequency - - - - - Use note frequency for noise - - - - - Noise mode - - - - - Master volume - 主音量 - - - - Vibrato - - - - - OpulenzInstrument - - - Patch - 音色 - - - - Op 1 attack - - - - - Op 1 decay - - - - - Op 1 sustain - - - - - Op 1 release - - - - - Op 1 level - - - - - Op 1 level scaling - - - - - Op 1 frequency multiplier - - - - - Op 1 feedback - - - - - Op 1 key scaling rate - - - - - Op 1 percussive envelope - - - - - Op 1 tremolo - - - - - Op 1 vibrato - - - - - Op 1 waveform - - - - - Op 2 attack - - - - - Op 2 decay - - - - - Op 2 sustain - - - - - Op 2 release - - - - - Op 2 level - - - - - Op 2 level scaling - - - - - Op 2 frequency multiplier - - - - - Op 2 key scaling rate - - - - - Op 2 percussive envelope - - - - - Op 2 tremolo - - - - - Op 2 vibrato - - - - - Op 2 waveform - - - - - FM - - - - - Vibrato depth - - - - - Tremolo depth - - - - - OpulenzInstrumentView - - - - Attack - 打進聲 - - - - - Decay - 衰減 - - - - - Release - 釋放 - - - - - Frequency multiplier - - - - - OscillatorObject - - - Osc %1 waveform - Osc %1 波形 - - - - Osc %1 harmonic - - - - - - Osc %1 volume - Osc %1 音量 - - - - - Osc %1 panning - Osc %1 聲像 - - - - - Osc %1 fine detuning left - - - - - Osc %1 coarse detuning - - - - - Osc %1 fine detuning right - - - - - Osc %1 phase-offset - - - - - Osc %1 stereo phase-detuning - - - - - Osc %1 wave shape - - - - - Modulation type %1 - - - - - Oscilloscope - - - Oscilloscope - - - - - Click to enable - 點擊啓用 - - PatchesDialog + Qsynth: Channel Preset Qsynth: 通道預設 + Bank selector 音色選擇器 + Bank + Program selector + Patch 音色 + Name 名稱 + OK 確定 + Cancel 取消 - - PatmanView - - - Open patch - - - - - Loop - 循環 - - - - Loop mode - 循環模式 - - - - Tune - 調音 - - - - Tune mode - 調音模式 - - - - No file selected - 未選擇檔案 - - - - Open patch file - 打開音色文件 - - - - Patch-Files (*.pat) - 音色文件 (*.pat) - - - - MidiClipView - - - Open in piano-roll - 在鋼琴窗中打開 - - - - Set as ghost in piano-roll - - - - - Clear all notes - 清除所有音符 - - - - Reset name - 重置名稱 - - - - Change name - 修改名稱 - - - - Add steps - 添加音階 - - - - Remove steps - 移除音階 - - - - Clone Steps - - - - - PeakController - - - Peak Controller - 峯值控制器 - - - - Peak Controller Bug - 峯值控制器 Bug - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - 由於在舊版 LMMS 中的錯誤,峰值控制器可能並未正確地連線。請確認峰值控制器正確地連線後再次儲存檔案。造成您的不便,深感抱歉。 - - - - PeakControllerDialog - - - PEAK - - - - - LFO Controller - LFO 控制器 - - - - PeakControllerEffectControlDialog - - - BASE - 基準 - - - - Base: - - - - - AMNT - - - - - Modulation amount: - 調製量: - - - - MULT - - - - - Amount multiplicator: - - - - - ATCK - 打擊 - - - - Attack: - 打擊聲: - - - - DCAY - - - - - Release: - 釋音: - - - - TRSH - - - - - Treshold: - - - - - Mute output - 輸出靜音 - - - - Absolute value - - - - - PeakControllerEffectControls - - - Base value - 基準值 - - - - Modulation amount - 調製量 - - - - Attack - 打進聲 - - - - Release - 釋放 - - - - Treshold - 閥值 - - - - Mute output - 輸出靜音 - - - - Absolute value - - - - - Amount multiplicator - - - - - PianoRoll - - - Note Velocity - 音符音量 - - - - Note Panning - 音符聲相偏移 - - - - Mark/unmark current semitone - 標記/取消標記當前半音 - - - - Mark/unmark all corresponding octave semitones - - - - - Mark current scale - - - - - Mark current chord - - - - - Unmark all - 取消標記所有 - - - - Select all notes on this key - 選中所有相同音調的音符 - - - - Note lock - 音符鎖定 - - - - Last note - 上一個音符 - - - - No key - - - - - No scale - - - - - No chord - - - - - Nudge - - - - - Snap - - - - - Velocity: %1% - 音量:%1% - - - - Panning: %1% left - 聲相:%1% 偏左 - - - - Panning: %1% right - 聲相:%1% 偏右 - - - - Panning: center - 聲相:居中 - - - - Glue notes failed - - - - - Please select notes to glue first. - - - - - Please open a clip by double-clicking on it! - 雙擊打開片段! - - - - - Please enter a new value between %1 and %2: - 請輸入一個介於 %1 和 %2 的值: - - - - PianoRollWindow - - - Play/pause current clip (Space) - 播放/暫停當前片段(空格) - - - - Record notes from MIDI-device/channel-piano - 從 MIDI 設備/通道鋼琴(channel-piano) 錄製音符 - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - - - - - Record notes from MIDI-device/channel-piano, one step at the time - - - - - Stop playing of current clip (Space) - 停止當前片段(空格) - - - - Edit actions - 編輯功能 - - - - Draw mode (Shift+D) - 繪製模式 (Shift+D) - - - - Erase mode (Shift+E) - 擦除模式 (Shift+E) - - - - Select mode (Shift+S) - 選擇模式 (Shift+S) - - - - Pitch Bend mode (Shift+T) - - - - - Quantize - - - - - Quantize positions - - - - - Quantize lengths - - - - - File actions - - - - - Import clip - - - - - - Export clip - - - - - Copy paste controls - - - - - Cut (%1+X) - - - - - Copy (%1+C) - - - - - Paste (%1+V) - - - - - Timeline controls - 時間線控制 - - - - Glue - - - - - Knife - - - - - Fill - - - - - Cut overlaps - - - - - Min length as last - - - - - Max length as last - - - - - Zoom and note controls - - - - - Horizontal zooming - 橫向縮放 - - - - Vertical zooming - 垂直縮放 - - - - Quantization - 量化 - - - - Note length - - - - - Key - - - - - Scale - - - - - Chord - - - - - Snap mode - - - - - Clear ghost notes - - - - - - Piano-Roll - %1 - 鋼琴窗 - %1 - - - - - Piano-Roll - no clip - 鋼琴窗 - 沒有片段 - - - - - XML clip file (*.xpt *.xptz) - - - - - Export clip success - - - - - Clip saved to %1 - - - - - Import clip. - - - - - You are about to import a clip, this will overwrite your current clip. Do you want to continue? - - - - - Open clip - - - - - Import clip success - - - - - Imported clip %1! - - - - - PianoView - - - Base note - 基本音 - - - - First note - - - - - Last note - 上一個音符 - - - - Plugin - - - Plugin not found - 未找到插件 - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - 插件“%1”無法找到或無法載入! -原因:%2 - - - - Error while loading plugin - 載入插件時發生錯誤 - - - - Failed to load plugin "%1"! - 載入插件“%1”失敗! - - PluginBrowser - - Instrument Plugins - - - - - Instrument browser - 樂器瀏覽器 - - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - 將樂器插件拖入歌曲編輯器, 節拍低音線編輯器, 或者現有的樂器軌道。 - - - + no description 沒有描述 - + A native amplifier plugin 原生增益插件 - + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track 簡單地在樂器欄使用採樣(比如鼓音源), 同時也提供多種設置 - + Boost your bass the fast and simple way - + Customizable wavetable synthesizer 可自定製的波表合成器 - + An oversampling bitcrusher - + Carla Patchbay Instrument Carla Patchbay 樂器 - + Carla Rack Instrument Carla Rack 樂器 - + A dynamic range compressor. - + A 4-band Crossover Equalizer - + A native delay plugin 原生的衰減插件 - + A Dual filter plugin - + plugin for processing dynamics in a flexible way - + A native eq plugin 原生的 EQ 插件 - + A native flanger plugin 一個原生的 鑲邊 (Flanger) 插件 - + Emulation of GameBoy (TM) APU GameBoy (TM) APU 模擬器 - + Player for GIG files 播放 GIG 檔案的播放器 - + Filter for importing Hydrogen files into LMMS 匯入 Hydrogen 專案檔至 LMMS 的解析器 - + Versatile drum synthesizer 多功能鼓合成器 - + List installed LADSPA plugins 列出已安裝的 LADSPA 插件 - + plugin for using arbitrary LADSPA-effects inside LMMS. 在 LMMS 中使用任意 LADSPA 效果的插件。 - + Incomplete monophonic imitation TB-303 - + plugin for using arbitrary LV2-effects inside LMMS. - + plugin for using arbitrary LV2 instruments inside LMMS. - + Filter for exporting MIDI-files from LMMS 從 LMMS 匯出 MIDI 檔的解析器 - + Filter for importing MIDI-files into LMMS 匯入 MIDI 檔至 LMMS 的解析器 - + Monstrous 3-oscillator synth with modulation matrix - + A multitap echo delay plugin - + A NES-like synthesizer 類似於 NES 的合成器 - + 2-operator FM Synth - + Additive Synthesizer for organ-like sounds - + GUS-compatible patch instrument GUS 兼容音色的樂器 - + Plugin for controlling knobs with sound peaks - + Reverb algorithm by Sean Costello - + Player for SoundFont files 播放 SoundFont 檔案的播放器 - + LMMS port of sfxr sfxr 的 LMMS 移植版本 - + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. 模擬 MOS6581 和 MOS8580 SID 的模擬器 這些芯片曾在 Commodore 64 電腦上用過。 - + A graphical spectrum analyzer. - + Plugin for enhancing stereo separation of a stereo input file 用以增強雙聲道輸入檔的聲道分離插件 - + Plugin for freely manipulating stereo output - + Tuneful things to bang on - + Three powerful oscillators you can modulate in several ways - + A stereo field visualizer. - + VST-host for using VST(i)-plugins within LMMS LMMS的VST(i)插件宿主 - + Vibrating string modeler - + plugin for using arbitrary VST effects inside LMMS. - + 4-oscillator modulatable wavetable synth - + plugin for waveshaping - + Mathematical expression parser - + Embedded ZynAddSubFX 內置的 ZynAddSubFX - - - PluginDatabaseW - - Carla - Add New + + An all-pass filter allowing for extremely high orders. - - Format + + Granular pitch shifter - - Internal + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. - - LADSPA + + Basic Slicer - - DSSI - - - - - LV2 - - - - - VST2 - - - - - VST3 - - - - - AU - - - - - Sound Kits - - - - - Type - 類型 - - - - Effects - - - - - Instruments - 樂器插件 - - - - MIDI Plugins - - - - - Other/Misc - - - - - Architecture - - - - - Native - - - - - Bridged - - - - - Bridged (Wine) - - - - - Requirements - - - - - With Custom GUI - - - - - With CV Ports - - - - - Real-time safe only - - - - - Stereo only - - - - - With Inline Display - - - - - Favorites only - - - - - (Number of Plugins go here) - - - - - &Add Plugin - - - - - Cancel - 取消 - - - - Refresh - - - - - Reset filters - - - - - - - - - - - - - - - - - - - - TextLabel - - - - - Format: - - - - - Architecture: - - - - - Type: - 類型: - - - - MIDI Ins: - - - - - Audio Ins: - - - - - CV Outs: - - - - - MIDI Outs: - - - - - Parameter Ins: - - - - - Parameter Outs: - - - - - Audio Outs: - - - - - CV Ins: - - - - - UniqueID: - - - - - Has Inline Display: - - - - - Has Custom GUI: - - - - - Is Synth: - - - - - Is Bridged: - - - - - Information - - - - - Name - 名稱 - - - - Label/URI - - - - - Maker - - - - - Binary/Filename - - - - - Focus Text Search - - - - - Ctrl+F + + Tap to the beat @@ -10820,93 +3458,98 @@ This chip was used in the Commodore 64 computer. - Send Bank/Program Changes + Send Notes - Send Control Changes + Send Bank/Program Changes - Send Channel Pressure + Send Control Changes - Send Note Aftertouch + Send Channel Pressure - Send Pitchbend + Send Note Aftertouch + Send Pitchbend + + + + Send All Sound/Notes Off - + Plugin Name - + Program: - + MIDI Program: - + Save State - + Load State - + Information - + Label/URI: - + Name: - + Type: 類型: - + Maker: - + Copyright: - + Unique ID: @@ -10914,16 +3557,457 @@ Plugin Name PluginFactory - + Plugin not found. 未找到插件。 - + LMMS plugin %1 does not have a plugin descriptor named %2! + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + PluginParameter @@ -10938,155 +4022,59 @@ Plugin Name + TextLabel + + + + ... - PluginRefreshW + PluginRefreshDialog - - Carla - Refresh + + Plugin Refresh - - Search for new... + + Search for: - - LADSPA + + All plugins, ignoring cache - - DSSI + + Updated plugins only - - LV2 + + Check previously invalid plugins - - VST2 - - - - - VST3 - - - - - AU - - - - - SF2/3 - - - - - SFZ - - - - - Native - - - - - POSIX 32bit - - - - - POSIX 64bit - - - - - Windows 32bit - - - - - Windows 64bit - - - - - Available tools: - - - - - python3-rdflib (LADSPA-RDF support) - - - - - carla-discovery-win64 - - - - - carla-discovery-native - - - - - carla-discovery-posix32 - - - - - carla-discovery-posix64 - - - - - carla-discovery-win32 - - - - - Options: - - - - - Carla will run small processing checks when scanning the plugins (to make sure they won't crash). -You can disable these checks to get a faster scanning time (at your own risk). - - - - - Run processing checks while scanning - - - - + Press 'Scan' to begin the search - + Scan - + >> Skip - + Close @@ -11103,50 +4091,50 @@ You can disable these checks to get a faster scanning time (at your own risk). - + Enable - + On/Off 開/關 - + - + PluginName - + MIDI MIDI - + AUDIO IN - + AUDIO OUT - + GUI - + Edit - + Remove @@ -11161,2286 +4149,13561 @@ You can disable these checks to get a faster scanning time (at your own risk). - - ProjectNotes - - - Project Notes - 顯示/隱藏工程註釋 - - - - Enter project notes here - - - - - Edit Actions - 編輯功能 - - - - &Undo - 撤銷(&U) - - - - %1+Z - %1+Z - - - - &Redo - 重做(&R) - - - - %1+Y - %1+Y - - - - &Copy - 複製(&C) - - - - %1+C - %1+C - - - - Cu&t - 剪切(&T) - - - - %1+X - %1+X - - - - &Paste - 粘貼(&P) - - - - %1+V - %1+V - - - - Format Actions - 格式功能 - - - - &Bold - 加粗(&B) - - - - %1+B - %1+B - - - - &Italic - 斜體(&I) - - - - %1+I - %1+I - - - - &Underline - 下劃線(&U) - - - - %1+U - %1+U - - - - &Left - 左對齊(&L) - - - - %1+L - %1+L - - - - C&enter - 居中(&E) - - - - %1+E - %1+E - - - - &Right - 右對齊(&R) - - - - %1+R - %1+R - - - - &Justify - 勻齊(&J) - - - - %1+J - %1+J - - - - &Color... - 顏色(&C)... - - ProjectRenderer - + WAV (*.wav) - + FLAC (*.flac) - + OGG (*.ogg) - + MP3 (*.mp3) + + QGroupBox + + + + Settings for %1 + + + QObject - + Reload Plugin - + Show GUI 顯示圖形界面 - + Help 幫助 + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + QWidget - - - - + + Name: 名稱: - - URI: - - - - - - + Maker: 製作者: - - - + Copyright: 版權: - - + Requires Real Time: 要求實時: - - - - - - + + + Yes - - - - - - + + + No - - + Real Time Capable: 是否支持實時: - - + In Place Broken: - - + Channels In: 輸入通道: - - + Channels Out: 輸出通道: - + File: %1 檔案:%1 - + File: 檔案: - RecentProjectsMenu + XYControllerW - - &Recently Opened Projects - 最近打開的工程(&R) + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + - RenameDialog + lmms::AmplifierControls - - Rename... - 重命名... + + Volume + + + + + Panning + + + + + Left gain + + + + + Right gain + - ReverbSCControlDialog + lmms::AudioFileProcessor - - Input - 輸入 - - - - Input gain: - 輸入增益: - - - - Size + + Amplify - - Size: + + Start of sample - - Color + + End of sample - - Color: + + Loopback point - - Output - 輸出 + + Reverse sample + - - Output gain: - 輸出增益: + + Loop mode + + + + + Stutter + + + + + Interpolation mode + + + + + None + + + + + Linear + + + + + Sinc + + + + + Sample not found + - ReverbSCControls + lmms::AudioJack - + + JACK client restarted + + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + + + + + Client name + + + + + Channels + + + + + lmms::AudioOss + + + Device + + + + + Channels + + + + + lmms::AudioPortAudio::setupWidget + + + Backend + + + + + Device + + + + + lmms::AudioPulseAudio + + + Device + + + + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + + + + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + + Gain + + + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + Input gain - 輸入增益 - - - - Size - - Color + + Input noise + + + Output gain + + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + + + + + Output gain + + + + + Attack time + + + + + Release time + + + + + Stereo mode + + + + + lmms::Effect + + + Effect enabled + + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + + + + + Denominator + + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + Input gain + + + + + Size + + + + + Color + + + + Output gain - 輸出增益 + - SaControls + lmms::SaControls - + Pause - + Reference freeze - + Waterfall - + Averaging - + Stereo - + Peak hold - + Logarithmic frequency - + Logarithmic amplitude - + Frequency range - + Amplitude range - + FFT block size - + FFT window type - + Peak envelope resolution - + Spectrum display resolution - + Peak decay multiplier - + Averaging weight - + Waterfall history size - + Waterfall gamma correction - + FFT window overlap - + FFT zero padding - - + + Full (auto) - - + + Audible - + Bass - 低音 + - + Mids - + High - + Extended - + Loud - + Silent - + (High time res.) - + (High freq. res.) - + Rectangular (Off) - + Blackman-Harris (Default) - + Hamming - + Hanning - SaControlsDialog + lmms::SampleClip - - Pause - - - - - Pause data acquisition - - - - - Reference freeze - - - - - Freeze current input as a reference / disable falloff in peak-hold mode. - - - - - Waterfall - - - - - Display real-time spectrogram - - - - - Averaging - - - - - Enable exponential moving average - - - - - Stereo - - - - - Display stereo channels separately - - - - - Peak hold - - - - - Display envelope of peak values - - - - - Logarithmic frequency - - - - - Switch between logarithmic and linear frequency scale - - - - - - Frequency range - - - - - Logarithmic amplitude - - - - - Switch between logarithmic and linear amplitude scale - - - - - - Amplitude range - - - - - Envelope res. - - - - - Increase envelope resolution for better details, decrease for better GUI performance. - - - - - - Draw at most - - - - - envelope points per pixel - - - - - Spectrum res. - - - - - Increase spectrum resolution for better details, decrease for better GUI performance. - - - - - spectrum points per pixel - - - - - Falloff factor - - - - - Decrease to make peaks fall faster. - - - - - Multiply buffered value by - - - - - Averaging weight - - - - - Decrease to make averaging slower and smoother. - - - - - New sample contributes - - - - - Waterfall height - - - - - Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. - - - - - Keep - - - - - lines - - - - - Waterfall gamma - - - - - Decrease to see very weak signals, increase to get better contrast. - - - - - Gamma value: - - - - - Window overlap - - - - - Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. - - - - - Each sample processed - - - - - times - - - - - Zero padding - - - - - Increase to get smoother-looking spectrum. Warning: high CPU usage. - - - - - Processing buffer is - - - - - steps larger than input block - - - - - Advanced settings - - - - - Access advanced settings - - - - - - FFT block size - - - - - - FFT window type + + Sample not found - SampleBuffer + lmms::SampleTrack - - Fail to open file - 無法開啟檔案 - - - - Audio files are limited to %1 MB in size and %2 minutes of playing time - 音訊檔案的檔案大小已限制為 %1 MB,播放時間已限制為 %2 分鐘。 - - - - Open audio file - 開啟音訊檔案 - - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - 所有音訊檔案 (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - - Wave-Files (*.wav) - Wave 波形檔案 (*.wav) - - - - OGG-Files (*.ogg) - OGG 檔案 (*.ogg) - - - - DrumSynth-Files (*.ds) - DrumSynth 檔案 (*.ds) - - - - FLAC-Files (*.flac) - FLAC 檔案 (*.flac) - - - - SPEEX-Files (*.spx) - SPEEX 檔案 (*.spx) - - - - VOC-Files (*.voc) - VOC 檔案 (*.voc) - - - - AIFF-Files (*.aif *.aiff) - AIFF 檔案 (*.aif *.aiff) - - - - AU-Files (*.au) - AU 檔案 (*.au) - - - - RAW-Files (*.raw) - RAW 檔案 (*.raw) - - - - SampleClipView - - - Double-click to open sample - - - - - Delete (middle mousebutton) - 刪除 (鼠標中鍵) - - - - Delete selection (middle mousebutton) - - - - - Cut - 剪切 - - - - Cut selection - - - - - Copy - 複製 - - - - Copy selection - - - - - Paste - 粘貼 - - - - Mute/unmute (<%1> + middle click) - 靜音/取消靜音 (<%1> + 鼠標中鍵) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Reverse sample - 反轉取樣 - - - - Set clip color - - - - - Use track color - - - - - SampleTrack - - + Volume - 音量 + - + Panning - 聲相 + - + Mixer channel - 效果通道 + - - + + Sample track - 採樣軌道 - - - - SampleTrackView - - - Track volume - 軌道音量 - - - - Channel volume: - 通道音量: - - - - VOL - VOL - - - - Panning - 聲相 - - - - Panning: - 聲相: - - - - PAN - PAN - - - - Channel %1: %2 - 效果 %1: %2 - - - - SampleTrackWindow - - - GENERAL SETTINGS - 常規設置 - - - - Sample volume - - - - - Volume: - 音量: - - - - VOL - VOL - - - - Panning - 聲相 - - - - Panning: - 聲相: - - - - PAN - PAN - - - - Mixer channel - 效果通道 - - - - CHANNEL - 效果 - - - - SaveOptionsWidget - - - Discard MIDI connections - - - - - Save As Project Bundle (with resources) - SetupDialog + lmms::Scale - - Reset to default value - - - - - Use built-in NaN handler - - - - - Settings - 設置 - - - - - General - - - - - Graphical user interface (GUI) - - - - - Display volume as dBFS - - - - - Enable tooltips - 啓用工具提示 - - - - Enable master oscilloscope by default - - - - - Enable all note labels in piano roll - - - - - Enable compact track buttons - - - - - Enable one instrument-track-window mode - - - - - Show sidebar on the right-hand side - - - - - Let sample previews continue when mouse is released - - - - - Mute automation tracks during solo - - - - - Show warning when deleting tracks - - - - - Projects - - - - - Compress project files by default - - - - - Create a backup file when saving a project - - - - - Reopen last project on startup - - - - - Language - - - - - - Performance - - - - - Autosave - - - - - Enable autosave - - - - - Allow autosave while playing - - - - - User interface (UI) effects vs. performance - - - - - Smooth scroll in song editor - - - - - Display playback cursor in AudioFileProcessor - - - - - Plugins - 插件 - - - - VST plugins embedding: - - - - - No embedding - - - - - Embed using Qt API - - - - - Embed using native Win32 API - - - - - Embed using XEmbed protocol - - - - - Keep plugin windows on top when not embedded - - - - - Sync VST plugins to host playback - 同步 VST 插件和主機回放 - - - - Keep effects running even without input - 在沒有輸入時也運行音頻效果 - - - - - Audio - 音頻 - - - - Audio interface - - - - - HQ mode for output audio device - - - - - Buffer size - - - - - - MIDI - MIDI - - - - MIDI interface - - - - - Automatically assign MIDI controller to selected track - - - - - LMMS working directory - LMMS工作目錄 - - - - VST plugins directory - - - - - LADSPA plugins directories - - - - - SF2 directory - SF2 目錄 - - - - Default SF2 - - - - - GIG directory - GIG 目錄 - - - - Theme directory - - - - - Background artwork - 背景圖片 - - - - Some changes require restarting. - - - - - Autosave interval: %1 - - - - - Choose the LMMS working directory - - - - - Choose your VST plugins directory - - - - - Choose your LADSPA plugins directory - - - - - Choose your default SF2 - - - - - Choose your theme directory - - - - - Choose your background picture - - - - - - Paths - 路徑 - - - - OK - 確定 - - - - Cancel - 取消 - - - - Frames: %1 -Latency: %2 ms - 幀數: %1 -延遲: %2 毫秒 - - - - Choose your GIG directory - 選擇 GIG 目錄 - - - - Choose your SF2 directory - 選擇 SF2 目錄 - - - - minutes - 分鐘 - - - - minute - 分鐘 - - - - Disabled + + empty - SidInstrument + lmms::Sf2Instrument - + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + Cutoff frequency - 切除頻率 + - + Resonance - 共鳴 + + + + + Filter type + - Filter type - 過濾器類型 - - - Voice 3 off - 聲音 3 關 + - + Volume - 音量 + - + Chip model - 芯片型號 - - - - SidInstrumentView - - - Volume: - 音量: - - - - Resonance: - 共鳴: - - - - - Cutoff frequency: - 頻譜刀頻率: - - - - High-pass filter - - - - - Band-pass filter - - - - - Low-pass filter - - - - - Voice 3 off - - - - - MOS6581 SID - MOS6581 SID - - - - MOS8580 SID - MOS8580 SID - - - - - Attack: - 打進聲: - - - - - Decay: - 衰減: - - - - Sustain: - 振幅持平: - - - - - Release: - 釋音: - - - - Pulse Width: - - - - - Coarse: - - - - - Pulse wave - - - - - Triangle wave - 三角波 - - - - Saw wave - 鋸齒波 - - - - Noise - 噪音 - - - - Sync - 同步 - - - - Ring modulation - - - - - Filtered - - - - - Test - 測試 - - - - Pulse width: - SideBarWidget + lmms::SlicerT - - Close + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 - Song + lmms::Song - + Tempo - 節奏 + - + Master volume - 主音量 + - + Master pitch - 主音高 - - - - Aborting project load + Aborting project load + + + + Project file contains local paths to plugins, which could be used to run malicious code. - + Can't load project: Project file contains local paths to plugins. - + LMMS Error report - LMMS錯誤報告 + - + (repeated %1 times) - + The following errors occurred while loading: - SongEditor + lmms::StereoEnhancerControls - - Could not open file - 無法開啟檔案 + + Width + + + + + lmms::StereoMatrixControls + + + Left to Left + - + + Left to Right + + + + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + + + + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. - 無法開啟 %1。 -請確認您至少有權限讀取此檔案後再試一次。 + - + Operation denied - + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. - - - + + + Error - 錯誤 + - + Couldn't create bundle folder. - + Couldn't create resources folder. - + Failed to copy resources. - + + Could not write file - 無法寫入檔案 - - - - Could not open %1 for writing. You probably are not permitted towrite to this file. Please make sure you have write-access to the file and try again. - - This %1 was created with LMMS %2 + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. - + + An unknown error has occurred and the file could not be saved. + + + + Error in file - 於檔案中發現錯誤 - - - - The file %1 seems to contain errors and therefore can't be loaded. - 檔案 %1 似乎包含錯誤,無法進行載入。 - - - - Version difference - + + The file %1 seems to contain errors and therefore can't be loaded. + + + + template - + project - - Tempo - 節奏 + + Version difference + - + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + TEMPO - + Tempo in BPM - - High quality mode - 高質量模式 - - - - - + + + Master volume - 主音量 + - - - - Master pitch - 主音高 + + + + Global transposition + - + + 1/%1 Bar + + + + + %1 Bars + + + + Value: %1% - 值: %1% + - - Value: %1 semitones - 值: %1 半音程 + + Value: %1 keys + - SongEditorWindow + lmms::gui::SongEditorWindow - + Song-Editor - 歌曲編輯器 + + + + + Play song (Space) + + + + + Record samples from Audio-device + - Play song (Space) - 播放歌曲(空格) + Record samples from Audio-device while playing song or pattern track + - Record samples from Audio-device - 從音頻設備錄製樣本 - - - - Record samples from Audio-device while playing song or BB track - 在播放歌曲或BB軌道時從音頻設備錄入樣本 - - - Stop song (Space) - 停止歌曲(空格) + - + Track actions - 軌道動作 + - - Add beat/bassline - 添加節拍/Bassline + + Add pattern-track + - + Add sample-track - 添加採樣軌道 + - + Add automation-track - 添加自動控制軌道 + - + Edit actions - 編輯動作 + - + Draw mode - 繪製模式 + - + Knife mode (split sample clips) - + Edit mode (select and move) - 編輯模式(選定和移動) + - + Timeline controls - 時間線控制 + - + Bar insert controls - + Insert bar - + Remove bar - + Zoom controls - 縮放控制 + + - Horizontal zooming - 橫向縮放 + Zoom + - + Snap controls - - + + Clip snapping size - + Toggle proportional snap on/off - + Base snapping size - StepRecorderWidget + lmms::gui::StepRecorderWidget - + Hint - 提示 + - + Move recording curser using <Left/Right> arrows - SubWindow + lmms::gui::StereoEnhancerControlDialog - + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + Close - + Maximize - + Restore - TabWidget + lmms::gui::TapTempoView - - - Settings for %1 - %1 的設定 + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + - TemplatesMenu + lmms::gui::TemplatesMenu - + New from template - 從模版新建工程 + - TempoSyncKnob + lmms::gui::TempoSyncBarModelEditor - - + + Tempo Sync - + No Sync - 無同步 + - + Eight beats - + Whole note - + Half note - + Quarter note - + 8th note - + 16th note - + 32nd note - + Custom... - + Custom - + Synced to Eight Beats - + Synced to Whole Note - + Synced to Half Note - + Synced to Quarter Note - + Synced to 8th Note - + Synced to 16th Note - + Synced to 32nd Note - TimeDisplayWidget + lmms::gui::TempoSyncKnob - + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + Time units - + MIN - + SEC - + MSEC - + BAR - + BEAT - + TICK - TimeLineWidget + lmms::gui::TimeLineWidget - + Auto scrolling - + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + Loop points - + After stopping go back to beginning - + After stopping go back to position at which playing was started - 停止後前往播放開始的地方 + - + After stopping keep position - 停止後保持位置不變 + - + Hint - 提示 + - + Press <%1> to disable magnetic loop points. - 按住 <%1> 禁用磁性吸附。 + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + - Track + lmms::gui::TrackContentWidget - - Mute - 靜音 - - - - Solo - 獨奏 - - - - TrackContainer - - - Couldn't import file - 無法匯入檔案 - - - - Couldn't find a filter for importing file %1. -You should convert this file into a format supported by LMMS using another software. - 不支援 %1 的檔案類型。 -請使用其他軟體將此檔案轉換成 LMMS 支援的格式。 - - - - Couldn't open file - 無法開啟檔案 - - - - Couldn't open file %1 for reading. -Please make sure you have read-permission to the file and the directory containing the file and try again! - 無法開啟 %1。 -請確認您有權限讀取此檔案,以及包含此檔案的目錄後再試一次。 - - - - Loading project... - 正在加載工程... - - - - - Cancel - 取消 - - - - - Please wait... - 請稍等... - - - - Loading cancelled - - - - - Project loading was cancelled. - - - - - Loading Track %1 (%2/Total %3) - - - - - Importing MIDI-file... - 正在匯入 MIDI 檔案… - - - - Clip - - - Mute - 靜音 - - - - ClipView - - - Current position - 當前位置 - - - - Current length - 當前長度 - - - - - %1:%2 (%3:%4 to %5:%6) - %1:%2 (%3:%4 到 %5:%6) - - - - Press <%1> and drag to make a copy. - 按住 <%1> 並拖動以創建副本。 - - - - Press <%1> for free resizing. - 按住 <%1> 自由調整大小。 - - - - Hint - 提示 - - - - Delete (middle mousebutton) - 刪除 (鼠標中鍵) - - - - Delete selection (middle mousebutton) - - - - - Cut - 剪切 - - - - Cut selection - - - - - Merge Selection - - - - - Copy - 複製 - - - - Copy selection - - - - + Paste - 粘貼 - - - - Mute/unmute (<%1> + middle click) - 靜音/取消靜音 (<%1> + 鼠標中鍵) - - - - Mute/unmute selection (<%1> + middle click) - - - - - Set clip color - - - - - Use track color - TrackContentWidget + lmms::gui::TrackOperationsWidget - - Paste - 粘貼 - - - - TrackOperationsWidget - - + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. @@ -13453,257 +17716,249 @@ Please make sure you have read-permission to the file and the directory containi Mute - 靜音 + Solo - 獨奏 + - + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? - + Confirm removal - + Don't ask again - + Clone this track - + Remove this track - + Clear this track - + Channel %1: %2 - 效果 %1: %2 - - - - Assign to new mixer Channel - + + Assign to new Mixer Channel + + + + Turn all recording on - + Turn all recording off - - Change color - 改變顏色 - - - - Reset color to default - 重置顏色 - - - - Set random color + + Track color - - Clear clip colors + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors - TripleOscillatorView + lmms::gui::TripleOscillatorView - + Modulate phase of oscillator 1 by oscillator 2 - + Modulate amplitude of oscillator 1 by oscillator 2 - + Mix output of oscillators 1 & 2 - + Synchronize oscillator 1 with oscillator 2 - + Modulate frequency of oscillator 1 by oscillator 2 - + Modulate phase of oscillator 2 by oscillator 3 - + Modulate amplitude of oscillator 2 by oscillator 3 - + Mix output of oscillators 2 & 3 - + Synchronize oscillator 2 with oscillator 3 - + Modulate frequency of oscillator 2 by oscillator 3 - + Osc %1 volume: - + Osc %1 panning: - + Osc %1 coarse detuning: - + semitones - + Osc %1 fine detuning left: - - + + cents - 音分 cents + - + Osc %1 fine detuning right: - + Osc %1 phase-offset: - - + + degrees - + Osc %1 stereo phase-detuning: - + Sine wave - 正弦波 + - + Triangle wave - 三角波 + - + Saw wave - 鋸齒波 + - + Square wave - 方波 + - + Moog-like saw wave - + Exponential wave - + White noise - + User-defined wave - - - VecControls - - Display persistence amount - - - - - Logarithmic scale - - - - - High quality + + Use alias-free wavetable oscillators. - VecControlsDialog + lmms::gui::VecControlsDialog - + HQ - + Double the resolution and simulate continuous analog-like trace. @@ -13718,2618 +17973,782 @@ Please make sure you have read-permission to the file and the directory containi - + Persist. - + Trace persistence: higher amount means the trace will stay bright for longer time. - + Trace persistence - VersionedSaveDialog - - - Increment version number - 遞增版本號 - + lmms::gui::VersionedSaveDialog - Decrement version number - 遞減版本號 + Increment version number + - + + Decrement version number + + + + Save Options - + already exists. Do you want to replace it? - VestigeInstrumentView + lmms::gui::VestigeInstrumentView - - + + Open VST plugin - + Control VST plugin from LMMS host - + Open VST plugin preset - + Previous (-) - 上一個 (-) + - + Save preset - 保存預置 + - + Next (+) - 下一個 (+) + - + Show/hide GUI - 顯示/隱藏界面 + - + Turn off all notes - 全部靜音 + - + DLL-files (*.dll) - DLL 檔案 (*.dll) + - + EXE-files (*.exe) - EXE 檔案 (*.exe) + - + + SO-files (*.so) + + + + No VST plugin loaded - + Preset - 預置 + - + by - + - VST plugin control - - VST插件控制 + - VstEffectControlDialog + lmms::gui::VibedView - - Show/hide - 顯示/隱藏 + + Enable waveform + - + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + + + + Control VST plugin from LMMS host - + Open VST plugin preset - + Previous (-) - 上一個 (-) + - + Next (+) - 下一個 (+) + - + Save preset - 保存預置 + - - + + Effect by: - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - VstPlugin + lmms::gui::WatsynView - - - The VST plugin %1 could not be loaded. - 無法載入VST插件 %1。 - - - - Open Preset - 打開預置 - - - - - Vst Plugin Preset (*.fxp *.fxb) - VST插件預置文件(*.fxp *.fxb) - - - - : default - : 默認 - - - - Save Preset - 保存預置 - - - - .fxp - .fxp - - - - .FXP - .FXP - - - - .FXB - .FXB - - - - .fxb - .fxb - - - - Loading plugin - 載入插件 - - - - Please wait while loading VST plugin... - 正在載入VST插件,請稍候…… - - - - WatsynInstrument - - - Volume A1 + + + + + Volume - - Volume A2 - - - - - Volume B1 - - - - - Volume B2 - - - - - Panning A1 - - - - - Panning A2 - - - - - Panning B1 - - - - - Panning B2 - - - - - Freq. multiplier A1 - - - - - Freq. multiplier A2 - - - - - Freq. multiplier B1 - - - - - Freq. multiplier B2 - - - - - Left detune A1 - - - - - Left detune A2 - - - - - Left detune B1 - - - - - Left detune B2 - - - - - Right detune A1 - - - - - Right detune A2 - - - - - Right detune B1 - - - - - Right detune B2 - - - - - A-B Mix - - - - - A-B Mix envelope amount - - - - - A-B Mix envelope attack - - - - - A-B Mix envelope hold - - - - - A-B Mix envelope decay - - - - - A1-B2 Crosstalk - - - - - A2-A1 modulation - - - - - B2-B1 modulation - - - - - Selected graph - - - - - WatsynView - + + - - - Volume - 音量 + Panning + + + - - - Panning - 聲相 - - - - - - Freq. multiplier - - - - + + + + Left detune + + + + + + - - - - - - cents - - - - + + + + Right detune - + A-B Mix - + Mix envelope amount - + Mix envelope attack - + Mix envelope hold - + Mix envelope decay - + Crosstalk - + Select oscillator A1 - + Select oscillator A2 - + Select oscillator B1 - + Select oscillator B2 - + Mix output of A2 to A1 - + Modulate amplitude of A1 by output of A2 - + Ring modulate A1 and A2 - + Modulate phase of A1 by output of A2 - + Mix output of B2 to B1 - + Modulate amplitude of B1 by output of B2 - + Ring modulate B1 and B2 - + Modulate phase of B1 by output of B2 - - - - + + + + Draw your own waveform here by dragging your mouse on this graph. - + Load waveform - 載入波形 + - + Load a waveform from a sample file - 從範例檔案中載入波型 + - + Phase left - + Shift phase by -15 degrees - + Phase right - + Shift phase by +15 degrees + + + + Normalize + + - Normalize - 標準化 - - - - Invert - 反轉 + - - + + Smooth - 平滑 + - - + + Sine wave - 正弦波 + - - - + + + Triangle wave - 三角波 + - + Saw wave - 鋸齒波 + - - + + Square wave - 方波 - - - - Xpressive - - - Selected graph - - - - - A1 - - - - - A2 - - - - - A3 - - - - - W1 smoothing - - - - - W2 smoothing - - - - - W3 smoothing - - - - - Panning 1 - - - - - Panning 2 - - - - - Rel trans - XpressiveView + lmms::gui::WaveShaperControlDialog - - Draw your own waveform here by dragging your mouse on this graph. - - - - - Select oscillator W1 - - - - - Select oscillator W2 - - - - - Select oscillator W3 - - - - - Select output O1 - - - - - Select output O2 - - - - - Open help window - - - - - - Sine wave - 正弦波 - - - - - Moog-saw wave - - - - - - Exponential wave - - - - - - Saw wave - 鋸齒波 - - - - - User-defined wave - - - - - - Triangle wave - 三角波 - - - - - Square wave - 方波 - - - - - White noise - - - - - WaveInterpolate - - - - - ExpressionValid - - - - - General purpose 1: - - - - - General purpose 2: - - - - - General purpose 3: - - - - - O1 panning: - - - - - O2 panning: - - - - - Release transition: - - - - - Smoothness - - - - - ZynAddSubFxInstrument - - - Portamento - - - - - Filter frequency - - - - - Filter resonance - - - - - Bandwidth - 帶寬 - - - - FM gain - - - - - Resonance center frequency - - - - - Resonance bandwidth - - - - - Forward MIDI control change events - - - - - ZynAddSubFxView - - - Portamento: - - - - - PORT - - - - - Filter frequency: - - - - - FREQ - 頻率 - - - - Filter resonance: - - - - - RES - - - - - Bandwidth: - 帶寬: - - - - BW - - - - - FM gain: - - - - - FM GAIN - - - - - Resonance center frequency: - - - - - RES CF - - - - - Resonance bandwidth: - - - - - RES BW - - - - - Forward MIDI control changes - - - - - Show GUI - 顯示圖形界面 - - - - AudioFileProcessor - - - Amplify - 增益 - - - - Start of sample - 採樣起始 - - - - End of sample - 採樣結尾 - - - - Loopback point - 循環點 - - - - Reverse sample - 反轉採樣 - - - - Loop mode - 循環模式 - - - - Stutter - - - - - Interpolation mode - 補間方式 - - - - None - - - - - Linear - 線性插補 - - - - Sinc - 辛格(Sinc)插補 - - - - Sample not found: %1 - 採樣未找到: %1 - - - - BitInvader - - - Sample length - - - - - BitInvaderView - - - Sample length - - - - - Draw your own waveform here by dragging your mouse on this graph. - - - - - - Sine wave - 正弦波 - - - - - Triangle wave - 三角波 - - - - - Saw wave - 鋸齒波 - - - - - Square wave - 方波 - - - - - White noise - - - - - - User-defined wave - - - - - - Smooth waveform - 平滑波形 - - - - Interpolation - - - - - Normalize - 標準化 - - - - DynProcControlDialog - - + INPUT - 輸入 + - + Input gain: - 輸入增益: + - + OUTPUT - 輸出 - - - - Output gain: - 輸出增益: - - - - ATTACK - - - Peak attack time: - - - - - RELEASE - - - - - Peak release time: - - - - - - Reset wavegraph - - - - - - Smooth wavegraph - - - - - - Increase wavegraph amplitude by 1 dB - - - - - - Decrease wavegraph amplitude by 1 dB - - - - - Stereo mode: maximum - - - - - Process based on the maximum of both stereo channels - - - - - Stereo mode: average - - - - - Process based on the average of both stereo channels - - - - - Stereo mode: unlinked - - - - - Process each stereo channel independently - - - - - DynProcControls - - - Input gain - 輸入增益 - - - - Output gain - 輸出增益 - - - - Attack time - - - - - Release time - - - - - Stereo mode - - - - - graphModel - - - Graph - 圖形 - - - - KickerInstrument - - - Start frequency - 起始頻率 - - - - End frequency - 結束頻率 - - - - Length - 長度 - - - - Start distortion - - - - - End distortion - - - - - Gain - 增益 - - - - Envelope slope - - - - - Noise - 噪音 - - - - Click - 力度 - - - - Frequency slope - - - - - Start from note - 從哪個音符開始 - - - - End to note - 到哪個音符結束 - - - - KickerInstrumentView - - - Start frequency: - 起始頻率: - - - - End frequency: - 結束頻率: - - - - Frequency slope: - - - - - Gain: - 增益: - - - - Envelope length: - - - - - Envelope slope: - - - - - Click: - 力度: - - - - Noise: - 噪音: - - - - Start distortion: - - - - - End distortion: - - - - - LadspaBrowserView - - - - Available Effects - 可用效果器 - - - - - Unavailable Effects - 不可用效果器 - - - - - Instruments - 樂器插件 - - - - - Analysis Tools - 分析工具 - - - - - Don't know - 未知 - - - - Type: - 類型: - - - - LadspaDescription - - - Plugins - 插件 - - - - Description - 描述 - - - - LadspaPortDialog - - - Ports - - - - - Name - 名稱 - - - - Rate - - - - - Direction - 方向 - - - - Type - 類型 - - - - Min < Default < Max - 最小 < 默認 < 最大 - - - - Logarithmic - 對數 - - - - SR Dependent - - - - - Audio - 音頻 - - - - Control - 控制 - - - - Input - 輸入 - - - - Output - 輸出 - - - - Toggled - - - - - Integer - 整型 - - - - Float - 浮點 - - - - - Yes - - - - - Lb302Synth - - - VCF Cutoff Frequency - - - - - VCF Resonance - - - - - VCF Envelope Mod - - - - - VCF Envelope Decay - - - - - Distortion - 失真 - - - - Waveform - 波形 - - - - Slide Decay - - - - - Slide - - - - - Accent - - - - - Dead - - - - - 24dB/oct Filter - - - - - Lb302SynthView - - - Cutoff Freq: - - - - - Resonance: - 共鳴: - - - - Env Mod: - - - - - Decay: - 衰減: - - - - 303-es-que, 24dB/octave, 3 pole filter - - - - - Slide Decay: - - - - - DIST: - - - - - Saw wave - 鋸齒波 - - - - Click here for a saw-wave. - - - - - Triangle wave - 三角波 - - - - Click here for a triangle-wave. - 點擊這裡使用三角波。 - - - - Square wave - 方波 - - - - Click here for a square-wave. - 點擊這裡使用方形波。 - - - - Rounded square wave - - - - - Click here for a square-wave with a rounded end. - - - - - Moog wave - - - - - Click here for a moog-like wave. - - - - - Sine wave - 正弦波 - - - - Click for a sine-wave. - - - - - - White noise wave - 白噪音 - - - - Click here for an exponential wave. - - - - - Click here for white-noise. - - - - - Bandlimited saw wave - - - - - Click here for bandlimited saw wave. - - - - - Bandlimited square wave - - - - - Click here for bandlimited square wave. - - - - - Bandlimited triangle wave - - - - - Click here for bandlimited triangle wave. - - - - - Bandlimited moog saw wave - - - - - Click here for bandlimited moog saw wave. - - - - - MalletsInstrument - - - Hardness - - - - - Position - - - - - Vibrato gain - - - - - Vibrato frequency - - - - - Stick mix - - - - - Modulator - - - - - Crossfade - - - - - LFO speed - LFO 速度 - - - - LFO depth - - - - - ADSR - - - - - Pressure - - - - - Motion - - - - - Speed - - - - - Bowed - - - - - Spread - - - - - Marimba - - - - - Vibraphone - - - - - Agogo - - - - - Wood 1 - - - - - Reso - - - - - Wood 2 - - - - - Beats - - - - - Two fixed - - - - - Clump - - - - - Tubular bells - - - - - Uniform bar - - - - - Tuned bar - - - - - Glass - - - - - Tibetan bowl - - - - - MalletsInstrumentView - - - Instrument - - - - - Spread - - - - - Spread: - - - - - Missing files - 檔案遺失 - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - - - - - Hardness - - - - - Hardness: - - - - - Position - - - - - Position: - - - - - Vibrato gain - - - - - Vibrato gain: - - - - - Vibrato frequency - - - - - Vibrato frequency: - - - - - Stick mix - - - - - Stick mix: - - - - - Modulator - - - - - Modulator: - - - - - Crossfade - - - - - Crossfade: - - - - - LFO speed - LFO 速度 - - - - LFO speed: - - - - - LFO depth - - - - - LFO depth: - - - - - ADSR - - - - - ADSR: - - - - - Pressure - - - - - Pressure: - - - - - Speed - - - - - Speed: - - - - - ManageVSTEffectView - - - - VST parameter control - - VST 參數控制 - - - - VST sync - - - - - - Automated - 自動 - - - - Close - 關閉 - - - - ManageVestigeInstrumentView - - - - - VST plugin control - - VST插件控制 - - - - VST Sync - VST 同步 - - - - - Automated - 自動 - - - - Close - 關閉 - - - - OrganicInstrument - - - Distortion - 失真 - - - - Volume - 音量 - - - - OrganicInstrumentView - - - Distortion: - 失真: - - - - Volume: - 音量: - - - - Randomise - 隨機 - - - - - Osc %1 waveform: - - - - - Osc %1 volume: - - - - - Osc %1 panning: - - - - - Osc %1 stereo detuning - - - - - cents - 音分 cents - - - - Osc %1 harmonic: - - - - - PatchesDialog - - - Qsynth: Channel Preset - Qsynth: 通道預設 - - - - Bank selector - 音色選擇器 - - - - Bank - - - - - Program selector - - - - - Patch - 音色 - - - - Name - 名稱 - - - - OK - 確定 - - - - Cancel - 取消 - - - - Sf2Instrument - - - Bank - - - - - Patch - 音色 - - - - Gain - 增益 - - - - Reverb - 混響 - - - - Reverb room size - - - - - Reverb damping - - - - - Reverb width - - - - - Reverb level - - - - - Chorus - 合唱 - - - - Chorus voices - - - - - Chorus level - - - - - Chorus speed - - - - - Chorus depth - - - - - A soundfont %1 could not be loaded. - 無法載入Soundfont %1。 - - - - Sf2InstrumentView - - - - Open SoundFont file - 開啟 SoundFont 檔案 - - - - Choose patch - - - - - Gain: - 增益: - - - - Apply reverb (if supported) - 應用混響(如果支持) - - - - Room size: - - - - - Damping: - - - - - Width: - 寬度: - - - - - Level: - - - - - Apply chorus (if supported) - 應用合唱 (如果支持) - - - - Voices: - - - - - Speed: - - - - - Depth: - 位深: - - - - SoundFont Files (*.sf2 *.sf3) - SoundFont 檔案 (*.sf2 *.sf3) - - - - SfxrInstrument - - - Wave - - - - - StereoEnhancerControlDialog - - - WIDTH - - - - - Width: - 寬度: - - - - StereoEnhancerControls - - - Width - 寬度 - - - - StereoMatrixControlDialog - - - Left to Left Vol: - 從左到左音量: - - - - Left to Right Vol: - 從左到右音量: - - - - Right to Left Vol: - 從右到左音量: - - - - Right to Right Vol: - 從右到右音量: - - - - StereoMatrixControls - - - Left to Left - 從左到左 - - - - Left to Right - 從左到右 - - - - Right to Left - 從右到左 - - - - Right to Right - 從右到右 - - - - VestigeInstrument - - - Loading plugin - 載入插件 - - - - Please wait while loading the VST plugin... - - - - - Vibed - - - String %1 volume - - - - - String %1 stiffness - - - - - Pick %1 position - - - - - Pickup %1 position - - - - - String %1 panning - - - - - String %1 detune - - - - - String %1 fuzziness - - - - - String %1 length - - - - - Impulse %1 - - - - - String %1 - - - - - VibedView - - - String volume: - - - - - String stiffness: - - - - - Pick position: - - - - - Pickup position: - - - - - String panning: - - - - - String detune: - - - - - String fuzziness: - - - - - String length: - - - - - Impulse - - - - - Octave - - - - - Impulse Editor - - - - - Enable waveform - 啓用波形 - - - - Enable/disable string - - - - - String - - - - - - Sine wave - 正弦波 - - - - - Triangle wave - 三角波 - - - - - Saw wave - 鋸齒波 - - - - - Square wave - 方波 - - - - - White noise - - - - - - User-defined wave - - - - - - Smooth waveform - 平滑波形 - - - - - Normalize waveform - - - - - VoiceObject - - - Voice %1 pulse width - - - - - Voice %1 attack - - - - - Voice %1 decay - - - - - Voice %1 sustain - - - - - Voice %1 release - - - - - Voice %1 coarse detuning - - - - - Voice %1 wave shape - 聲音 %1 波形形狀 - - - - Voice %1 sync - 聲音 %1 同步 - - - - Voice %1 ring modulate - - - - - Voice %1 filtered - - - - - Voice %1 test - 聲音 %1 測試 - - - - WaveShaperControlDialog - - - INPUT - 輸入 - - - - Input gain: - 輸入增益: - - - - OUTPUT - 輸出 - - - - Output gain: - 輸出增益: - - + Output gain: + + + + + Reset wavegraph - - + + Smooth wavegraph - - + + Increase wavegraph amplitude by 1 dB - - + + Decrease wavegraph amplitude by 1 dB - + Clip input - 輸入壓限 + - + Clip input signal to 0 dB - WaveShaperControls + lmms::gui::XpressiveView - - Input gain - 輸入增益 + + Draw your own waveform here by dragging your mouse on this graph. + - - Output gain - 輸出增益 + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + - + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + + + + \ No newline at end of file diff --git a/data/projects/templates/AcousticDrumset.mpt b/data/projects/templates/AcousticDrumset.mpt index b134cd9e6..8faca3d4b 100644 --- a/data/projects/templates/AcousticDrumset.mpt +++ b/data/projects/templates/AcousticDrumset.mpt @@ -96,24 +96,6 @@ - - - - - - - - - - - - - - - - - - diff --git a/data/projects/templates/CR8000.mpt b/data/projects/templates/CR8000.mpt index 7d7314b65..9f2b4bfc3 100644 --- a/data/projects/templates/CR8000.mpt +++ b/data/projects/templates/CR8000.mpt @@ -214,24 +214,6 @@ - - - - - - - - - - - - - - - - - - diff --git a/data/projects/templates/ClubMix.mpt b/data/projects/templates/ClubMix.mpt index 41779d493..0b973548c 100644 --- a/data/projects/templates/ClubMix.mpt +++ b/data/projects/templates/ClubMix.mpt @@ -113,24 +113,6 @@ - - - - - - - - - - - - - - - - - - diff --git a/data/projects/templates/Empty.mpt b/data/projects/templates/Empty.mpt index e558347dd..048bd4ee6 100644 --- a/data/projects/templates/Empty.mpt +++ b/data/projects/templates/Empty.mpt @@ -4,19 +4,6 @@ - - - - - - - - - - - - - diff --git a/data/projects/templates/TR808.mpt b/data/projects/templates/TR808.mpt index 08ad876ca..f0c1a23fd 100644 --- a/data/projects/templates/TR808.mpt +++ b/data/projects/templates/TR808.mpt @@ -282,24 +282,6 @@ - - - - - - - - - - - - - - - - - - diff --git a/data/projects/templates/default.mpt b/data/projects/templates/default.mpt index 299aaff2d..e15b6210a 100644 --- a/data/projects/templates/default.mpt +++ b/data/projects/templates/default.mpt @@ -52,24 +52,6 @@ - - - - - - - - - - - - - - - - - - diff --git a/data/projects/tutorials/editing_note_volumes.mmp b/data/projects/tutorials/editing_note_volumes.mmp index b54580618..6f7de11d3 100644 --- a/data/projects/tutorials/editing_note_volumes.mmp +++ b/data/projects/tutorials/editing_note_volumes.mmp @@ -50,23 +50,6 @@ - - - - - - - - - - - - - - diff --git a/data/themes/CMakeLists.txt b/data/themes/CMakeLists.txt index 10d8df727..e288329f3 100644 --- a/data/themes/CMakeLists.txt +++ b/data/themes/CMakeLists.txt @@ -1,4 +1,3 @@ INCLUDE(InstallHelpers) -INSTALL_DATA_SUBDIRS("themes" "*.png;*.css") - +INSTALL_DATA_SUBDIRS("themes" "*.png;*.svg;*.css") diff --git a/data/themes/classic/add.png b/data/themes/classic/add.png index 3e8ae42fb..84ca715ff 100644 Binary files a/data/themes/classic/add.png and b/data/themes/classic/add.png differ diff --git a/data/themes/classic/add_automation.png b/data/themes/classic/add_automation.png index 58f13909b..58b258299 100644 Binary files a/data/themes/classic/add_automation.png and b/data/themes/classic/add_automation.png differ diff --git a/data/themes/classic/add_folder.png b/data/themes/classic/add_folder.png index 710c7e80e..31b50c09c 100644 Binary files a/data/themes/classic/add_folder.png and b/data/themes/classic/add_folder.png differ diff --git a/data/themes/classic/add_pattern_track.png b/data/themes/classic/add_pattern_track.png index 3379a094b..58923ffc1 100644 Binary files a/data/themes/classic/add_pattern_track.png and b/data/themes/classic/add_pattern_track.png differ diff --git a/data/themes/classic/add_sample_track.png b/data/themes/classic/add_sample_track.png index 0c094b369..67f3c72fc 100644 Binary files a/data/themes/classic/add_sample_track.png and b/data/themes/classic/add_sample_track.png differ diff --git a/data/themes/classic/analysis.png b/data/themes/classic/analysis.png index dd6f48476..7ddb7a766 100644 Binary files a/data/themes/classic/analysis.png and b/data/themes/classic/analysis.png differ diff --git a/data/themes/classic/apply-selected.png b/data/themes/classic/apply-selected.png index f4e79fb4d..3206fa2b8 100644 Binary files a/data/themes/classic/apply-selected.png and b/data/themes/classic/apply-selected.png differ diff --git a/data/themes/classic/apply.png b/data/themes/classic/apply.png index 1ae48682e..b5c566085 100644 Binary files a/data/themes/classic/apply.png and b/data/themes/classic/apply.png differ diff --git a/data/themes/classic/arp_down.png b/data/themes/classic/arp_down.png index 85586f7da..8f1d71ba4 100644 Binary files a/data/themes/classic/arp_down.png and b/data/themes/classic/arp_down.png differ diff --git a/data/themes/classic/arp_free.png b/data/themes/classic/arp_free.png index 19ebc3a53..52cf7d834 100644 Binary files a/data/themes/classic/arp_free.png and b/data/themes/classic/arp_free.png differ diff --git a/data/themes/classic/arp_random.png b/data/themes/classic/arp_random.png index 608fc6df7..40ac8d0e9 100644 Binary files a/data/themes/classic/arp_random.png and b/data/themes/classic/arp_random.png differ diff --git a/data/themes/classic/arp_sort.png b/data/themes/classic/arp_sort.png index a89bf913b..a986db41d 100644 Binary files a/data/themes/classic/arp_sort.png and b/data/themes/classic/arp_sort.png differ diff --git a/data/themes/classic/arp_sync.png b/data/themes/classic/arp_sync.png index c9c44a9ba..7f5f49bbd 100644 Binary files a/data/themes/classic/arp_sync.png and b/data/themes/classic/arp_sync.png differ diff --git a/data/themes/classic/arp_up.png b/data/themes/classic/arp_up.png index 07a4ecc7e..fc92207e3 100644 Binary files a/data/themes/classic/arp_up.png and b/data/themes/classic/arp_up.png differ diff --git a/data/themes/classic/arp_up_and_down.png b/data/themes/classic/arp_up_and_down.png index 513331df7..ba6a90920 100644 Binary files a/data/themes/classic/arp_up_and_down.png and b/data/themes/classic/arp_up_and_down.png differ diff --git a/data/themes/classic/automation.png b/data/themes/classic/automation.png index d6193e4f6..fc451a709 100644 Binary files a/data/themes/classic/automation.png and b/data/themes/classic/automation.png differ diff --git a/data/themes/classic/automation_ghost_note.png b/data/themes/classic/automation_ghost_note.png index d14c047d7..d4b1416f5 100644 Binary files a/data/themes/classic/automation_ghost_note.png and b/data/themes/classic/automation_ghost_note.png differ diff --git a/data/themes/classic/automation_track.png b/data/themes/classic/automation_track.png index a7480fd70..fb580c89d 100644 Binary files a/data/themes/classic/automation_track.png and b/data/themes/classic/automation_track.png differ diff --git a/data/themes/classic/autoscroll_off.png b/data/themes/classic/autoscroll_off.png index 526e20bf8..c608c7a77 100644 Binary files a/data/themes/classic/autoscroll_off.png and b/data/themes/classic/autoscroll_off.png differ diff --git a/data/themes/classic/autoscroll_on.png b/data/themes/classic/autoscroll_on.png index d2567f253..26dd07106 100644 Binary files a/data/themes/classic/autoscroll_on.png and b/data/themes/classic/autoscroll_on.png differ diff --git a/data/themes/classic/back_to_start.png b/data/themes/classic/back_to_start.png index d8b8b73fe..6c679cd7b 100644 Binary files a/data/themes/classic/back_to_start.png and b/data/themes/classic/back_to_start.png differ diff --git a/data/themes/classic/back_to_zero.png b/data/themes/classic/back_to_zero.png index dfde88b4e..501bc1f0b 100644 Binary files a/data/themes/classic/back_to_zero.png and b/data/themes/classic/back_to_zero.png differ diff --git a/data/themes/classic/background_artwork.png b/data/themes/classic/background_artwork.png index 918fc27af..567e1e49a 100644 Binary files a/data/themes/classic/background_artwork.png and b/data/themes/classic/background_artwork.png differ diff --git a/data/themes/classic/black_key.png b/data/themes/classic/black_key.png index 93ea71bf7..ad4b01539 100644 Binary files a/data/themes/classic/black_key.png and b/data/themes/classic/black_key.png differ diff --git a/data/themes/classic/black_key_disabled.png b/data/themes/classic/black_key_disabled.png index 7b73b5557..41c7483cb 100644 Binary files a/data/themes/classic/black_key_disabled.png and b/data/themes/classic/black_key_disabled.png differ diff --git a/data/themes/classic/black_key_pressed.png b/data/themes/classic/black_key_pressed.png index a730bc9f7..1e51d14f5 100644 Binary files a/data/themes/classic/black_key_pressed.png and b/data/themes/classic/black_key_pressed.png differ diff --git a/data/themes/classic/cancel.png b/data/themes/classic/cancel.png index f4b6e78f6..26648c317 100644 Binary files a/data/themes/classic/cancel.png and b/data/themes/classic/cancel.png differ diff --git a/data/themes/classic/chord.png b/data/themes/classic/chord.png index 6dec8a971..6f25157de 100644 Binary files a/data/themes/classic/chord.png and b/data/themes/classic/chord.png differ diff --git a/data/themes/classic/clear_ghost_note.png b/data/themes/classic/clear_ghost_note.png index c9f85a2b4..a005b6034 100644 Binary files a/data/themes/classic/clear_ghost_note.png and b/data/themes/classic/clear_ghost_note.png differ diff --git a/data/themes/classic/clip_rec.png b/data/themes/classic/clip_rec.png index 5c0ed9455..0f8b75fdd 100644 Binary files a/data/themes/classic/clip_rec.png and b/data/themes/classic/clip_rec.png differ diff --git a/data/themes/classic/clock.png b/data/themes/classic/clock.png index 4cd3f082a..392e84331 100644 Binary files a/data/themes/classic/clock.png and b/data/themes/classic/clock.png differ diff --git a/data/themes/classic/clone_pattern_track_clip.png b/data/themes/classic/clone_pattern_track_clip.png index bf4b3669d..c84e7ab8a 100644 Binary files a/data/themes/classic/clone_pattern_track_clip.png and b/data/themes/classic/clone_pattern_track_clip.png differ diff --git a/data/themes/classic/close.png b/data/themes/classic/close.png index 0dc87670d..dd01cb989 100644 Binary files a/data/themes/classic/close.png and b/data/themes/classic/close.png differ diff --git a/data/themes/classic/colorize.png b/data/themes/classic/colorize.png index e31f00e9f..c4a86b9f3 100644 Binary files a/data/themes/classic/colorize.png and b/data/themes/classic/colorize.png differ diff --git a/data/themes/classic/combobox_arrow.png b/data/themes/classic/combobox_arrow.png index be9db40bc..b884d02a9 100644 Binary files a/data/themes/classic/combobox_arrow.png and b/data/themes/classic/combobox_arrow.png differ diff --git a/data/themes/classic/combobox_arrow_selected.png b/data/themes/classic/combobox_arrow_selected.png index d1345bd74..d302a2c17 100644 Binary files a/data/themes/classic/combobox_arrow_selected.png and b/data/themes/classic/combobox_arrow_selected.png differ diff --git a/data/themes/classic/combobox_bg.png b/data/themes/classic/combobox_bg.png index 83bdb4140..85fee7b2f 100644 Binary files a/data/themes/classic/combobox_bg.png and b/data/themes/classic/combobox_bg.png differ diff --git a/data/themes/classic/computer.png b/data/themes/classic/computer.png index f449ecb6b..221d80ab3 100644 Binary files a/data/themes/classic/computer.png and b/data/themes/classic/computer.png differ diff --git a/data/themes/classic/controller.png b/data/themes/classic/controller.png index 6bd108d22..3faf1776a 100644 Binary files a/data/themes/classic/controller.png and b/data/themes/classic/controller.png differ diff --git a/data/themes/classic/cpuload_bg.png b/data/themes/classic/cpuload_bg.png index f05db1a06..e2a32d22e 100644 Binary files a/data/themes/classic/cpuload_bg.png and b/data/themes/classic/cpuload_bg.png differ diff --git a/data/themes/classic/cpuload_leds.png b/data/themes/classic/cpuload_leds.png index 900cd5b46..7812a01dd 100644 Binary files a/data/themes/classic/cpuload_leds.png and b/data/themes/classic/cpuload_leds.png differ diff --git a/data/themes/classic/cursor_knife.png b/data/themes/classic/cursor_knife.png index 23dd3331b..591df2d62 100644 Binary files a/data/themes/classic/cursor_knife.png and b/data/themes/classic/cursor_knife.png differ diff --git a/data/themes/classic/cursor_select_left.png b/data/themes/classic/cursor_select_left.png index eaa80e0bb..e9fd3b933 100644 Binary files a/data/themes/classic/cursor_select_left.png and b/data/themes/classic/cursor_select_left.png differ diff --git a/data/themes/classic/cursor_select_right.png b/data/themes/classic/cursor_select_right.png index abd4aecfb..ae912206f 100644 Binary files a/data/themes/classic/cursor_select_right.png and b/data/themes/classic/cursor_select_right.png differ diff --git a/data/themes/classic/dont_know.png b/data/themes/classic/dont_know.png index db2126d93..7925a236a 100644 Binary files a/data/themes/classic/dont_know.png and b/data/themes/classic/dont_know.png differ diff --git a/data/themes/classic/drum.png b/data/themes/classic/drum.png index 45c785663..d1c1f5d3d 100644 Binary files a/data/themes/classic/drum.png and b/data/themes/classic/drum.png differ diff --git a/data/themes/classic/edit_copy.png b/data/themes/classic/edit_copy.png index bf4b3669d..c84e7ab8a 100644 Binary files a/data/themes/classic/edit_copy.png and b/data/themes/classic/edit_copy.png differ diff --git a/data/themes/classic/edit_cut.png b/data/themes/classic/edit_cut.png index fbc333368..271106b7f 100644 Binary files a/data/themes/classic/edit_cut.png and b/data/themes/classic/edit_cut.png differ diff --git a/data/themes/classic/edit_draw.png b/data/themes/classic/edit_draw.png index a0bb1db93..d75c2701c 100644 Binary files a/data/themes/classic/edit_draw.png and b/data/themes/classic/edit_draw.png differ diff --git a/data/themes/classic/edit_draw_outvalue.png b/data/themes/classic/edit_draw_outvalue.png index 1cfdbf45d..e85344648 100644 Binary files a/data/themes/classic/edit_draw_outvalue.png and b/data/themes/classic/edit_draw_outvalue.png differ diff --git a/data/themes/classic/edit_erase.png b/data/themes/classic/edit_erase.png index 143400a9b..900d13d46 100644 Binary files a/data/themes/classic/edit_erase.png and b/data/themes/classic/edit_erase.png differ diff --git a/data/themes/classic/edit_knife.png b/data/themes/classic/edit_knife.png index 70b15113d..b6b6bf934 100644 Binary files a/data/themes/classic/edit_knife.png and b/data/themes/classic/edit_knife.png differ diff --git a/data/themes/classic/edit_merge.png b/data/themes/classic/edit_merge.png index 3e8742b86..93addc528 100644 Binary files a/data/themes/classic/edit_merge.png and b/data/themes/classic/edit_merge.png differ diff --git a/data/themes/classic/edit_move.png b/data/themes/classic/edit_move.png index 28a634171..2cc71d05b 100644 Binary files a/data/themes/classic/edit_move.png and b/data/themes/classic/edit_move.png differ diff --git a/data/themes/classic/edit_paste.png b/data/themes/classic/edit_paste.png index 766e86325..3ec1cf37a 100644 Binary files a/data/themes/classic/edit_paste.png and b/data/themes/classic/edit_paste.png differ diff --git a/data/themes/classic/edit_redo.png b/data/themes/classic/edit_redo.png index 45f045028..43c2b5c53 100644 Binary files a/data/themes/classic/edit_redo.png and b/data/themes/classic/edit_redo.png differ diff --git a/data/themes/classic/edit_rename.png b/data/themes/classic/edit_rename.png index ea8872fea..c850aba51 100644 Binary files a/data/themes/classic/edit_rename.png and b/data/themes/classic/edit_rename.png differ diff --git a/data/themes/classic/edit_select.png b/data/themes/classic/edit_select.png index 842d690f1..5f242173d 100644 Binary files a/data/themes/classic/edit_select.png and b/data/themes/classic/edit_select.png differ diff --git a/data/themes/classic/edit_tangent.png b/data/themes/classic/edit_tangent.png index 438673b33..a353e5f1e 100644 Binary files a/data/themes/classic/edit_tangent.png and b/data/themes/classic/edit_tangent.png differ diff --git a/data/themes/classic/edit_undo.png b/data/themes/classic/edit_undo.png index 57abbe17d..e882ce2a0 100644 Binary files a/data/themes/classic/edit_undo.png and b/data/themes/classic/edit_undo.png differ diff --git a/data/themes/classic/effect_plugin.png b/data/themes/classic/effect_plugin.png index 6a759672f..fe826bbab 100644 Binary files a/data/themes/classic/effect_plugin.png and b/data/themes/classic/effect_plugin.png differ diff --git a/data/themes/classic/envelope_graph.png b/data/themes/classic/envelope_graph.png index c6f904103..ec5ad084a 100644 Binary files a/data/themes/classic/envelope_graph.png and b/data/themes/classic/envelope_graph.png differ diff --git a/data/themes/classic/error.png b/data/themes/classic/error.png index 5492295e7..ae603f129 100644 Binary files a/data/themes/classic/error.png and b/data/themes/classic/error.png differ diff --git a/data/themes/classic/exit.png b/data/themes/classic/exit.png index ed5f8b251..701635333 100644 Binary files a/data/themes/classic/exit.png and b/data/themes/classic/exit.png differ diff --git a/data/themes/classic/exp_wave_active.png b/data/themes/classic/exp_wave_active.png index 22682a150..fc289741f 100644 Binary files a/data/themes/classic/exp_wave_active.png and b/data/themes/classic/exp_wave_active.png differ diff --git a/data/themes/classic/exp_wave_inactive.png b/data/themes/classic/exp_wave_inactive.png index 132e6f7db..f26d3e586 100644 Binary files a/data/themes/classic/exp_wave_inactive.png and b/data/themes/classic/exp_wave_inactive.png differ diff --git a/data/themes/classic/factory_files.png b/data/themes/classic/factory_files.png index 995bb19d5..d69008357 100644 Binary files a/data/themes/classic/factory_files.png and b/data/themes/classic/factory_files.png differ diff --git a/data/themes/classic/fader_knob.png b/data/themes/classic/fader_knob.png index 93daf87fc..d7a3a1a14 100644 Binary files a/data/themes/classic/fader_knob.png and b/data/themes/classic/fader_knob.png differ diff --git a/data/themes/classic/filter_2lp.png b/data/themes/classic/filter_2lp.png index 3e98a3c37..9cbc05dfd 100644 Binary files a/data/themes/classic/filter_2lp.png and b/data/themes/classic/filter_2lp.png differ diff --git a/data/themes/classic/filter_ap.png b/data/themes/classic/filter_ap.png index b7c5230d5..d76fb263d 100644 Binary files a/data/themes/classic/filter_ap.png and b/data/themes/classic/filter_ap.png differ diff --git a/data/themes/classic/filter_bp.png b/data/themes/classic/filter_bp.png index f16c7d924..141c9ad0d 100644 Binary files a/data/themes/classic/filter_bp.png and b/data/themes/classic/filter_bp.png differ diff --git a/data/themes/classic/filter_hp.png b/data/themes/classic/filter_hp.png index 845573b30..19488eb51 100644 Binary files a/data/themes/classic/filter_hp.png and b/data/themes/classic/filter_hp.png differ diff --git a/data/themes/classic/filter_lp.png b/data/themes/classic/filter_lp.png index 4f657ac53..a73ab39e1 100644 Binary files a/data/themes/classic/filter_lp.png and b/data/themes/classic/filter_lp.png differ diff --git a/data/themes/classic/filter_notch.png b/data/themes/classic/filter_notch.png index 44e1d718b..97d1abd48 100644 Binary files a/data/themes/classic/filter_notch.png and b/data/themes/classic/filter_notch.png differ diff --git a/data/themes/classic/flip_x.png b/data/themes/classic/flip_x.png index 1f21ad5bb..209affb36 100644 Binary files a/data/themes/classic/flip_x.png and b/data/themes/classic/flip_x.png differ diff --git a/data/themes/classic/flip_y.png b/data/themes/classic/flip_y.png index dbc57a70f..ae6c15a58 100644 Binary files a/data/themes/classic/flip_y.png and b/data/themes/classic/flip_y.png differ diff --git a/data/themes/classic/folder.png b/data/themes/classic/folder.png index ec0cecdae..9c9a0c6c5 100644 Binary files a/data/themes/classic/folder.png and b/data/themes/classic/folder.png differ diff --git a/data/themes/classic/folder_locked.png b/data/themes/classic/folder_locked.png index d3e18e50b..3aabecdc1 100644 Binary files a/data/themes/classic/folder_locked.png and b/data/themes/classic/folder_locked.png differ diff --git a/data/themes/classic/folder_opened.png b/data/themes/classic/folder_opened.png index b7b03bb3c..a45b01bce 100644 Binary files a/data/themes/classic/folder_opened.png and b/data/themes/classic/folder_opened.png differ diff --git a/data/themes/classic/freeze.png b/data/themes/classic/freeze.png index e8f4882e2..e4398728a 100644 Binary files a/data/themes/classic/freeze.png and b/data/themes/classic/freeze.png differ diff --git a/data/themes/classic/frozen.png b/data/themes/classic/frozen.png index ef38723e8..8dd13040b 100644 Binary files a/data/themes/classic/frozen.png and b/data/themes/classic/frozen.png differ diff --git a/data/themes/classic/ghost_note.png b/data/themes/classic/ghost_note.png index 532245e11..2c3ace519 100644 Binary files a/data/themes/classic/ghost_note.png and b/data/themes/classic/ghost_note.png differ diff --git a/data/themes/classic/hand.png b/data/themes/classic/hand.png index 5fad2852d..561997193 100644 Binary files a/data/themes/classic/hand.png and b/data/themes/classic/hand.png differ diff --git a/data/themes/classic/help.png b/data/themes/classic/help.png index f38f9a76b..2a74431a7 100644 Binary files a/data/themes/classic/help.png and b/data/themes/classic/help.png differ diff --git a/data/themes/classic/hint.png b/data/themes/classic/hint.png index b9a171b70..7dddc2192 100644 Binary files a/data/themes/classic/hint.png and b/data/themes/classic/hint.png differ diff --git a/data/themes/classic/home.png b/data/themes/classic/home.png index 84051dbb6..4ca3798d5 100644 Binary files a/data/themes/classic/home.png and b/data/themes/classic/home.png differ diff --git a/data/themes/classic/horizontal_slider.png b/data/themes/classic/horizontal_slider.png index 49d16b9d8..d400a3fa7 100644 Binary files a/data/themes/classic/horizontal_slider.png and b/data/themes/classic/horizontal_slider.png differ diff --git a/data/themes/classic/hq_mode.png b/data/themes/classic/hq_mode.png index ced82b2ba..027c4ab03 100644 Binary files a/data/themes/classic/hq_mode.png and b/data/themes/classic/hq_mode.png differ diff --git a/data/themes/classic/icon.png b/data/themes/classic/icon.png index ae9fe6a2a..9f20d32a5 100644 Binary files a/data/themes/classic/icon.png and b/data/themes/classic/icon.png differ diff --git a/data/themes/classic/icon_small.png b/data/themes/classic/icon_small.png index 522290061..3b1b59b0c 100644 Binary files a/data/themes/classic/icon_small.png and b/data/themes/classic/icon_small.png differ diff --git a/data/themes/classic/instrument_track.png b/data/themes/classic/instrument_track.png index 39dcf115b..f31d57b98 100644 Binary files a/data/themes/classic/instrument_track.png and b/data/themes/classic/instrument_track.png differ diff --git a/data/themes/classic/keep_stop_position.png b/data/themes/classic/keep_stop_position.png index 561fead25..49c4b9d7e 100644 Binary files a/data/themes/classic/keep_stop_position.png and b/data/themes/classic/keep_stop_position.png differ diff --git a/data/themes/classic/knob01.png b/data/themes/classic/knob01.png index b19b2529c..2264d7a5f 100644 Binary files a/data/themes/classic/knob01.png and b/data/themes/classic/knob01.png differ diff --git a/data/themes/classic/knob02.png b/data/themes/classic/knob02.png index c4e84a314..7844ce80b 100644 Binary files a/data/themes/classic/knob02.png and b/data/themes/classic/knob02.png differ diff --git a/data/themes/classic/knob03.png b/data/themes/classic/knob03.png index d620272bf..71bf5e9b3 100644 Binary files a/data/themes/classic/knob03.png and b/data/themes/classic/knob03.png differ diff --git a/data/themes/classic/knob05.png b/data/themes/classic/knob05.png index 7b98f097d..7e2a57d95 100644 Binary files a/data/themes/classic/knob05.png and b/data/themes/classic/knob05.png differ diff --git a/data/themes/classic/lcd_11green.png b/data/themes/classic/lcd_11green.png index 32e923fe8..c46f15bb2 100644 Binary files a/data/themes/classic/lcd_11green.png and b/data/themes/classic/lcd_11green.png differ diff --git a/data/themes/classic/lcd_11green_dot.png b/data/themes/classic/lcd_11green_dot.png index 9f5a660d3..a8a031840 100644 Binary files a/data/themes/classic/lcd_11green_dot.png and b/data/themes/classic/lcd_11green_dot.png differ diff --git a/data/themes/classic/lcd_19green.png b/data/themes/classic/lcd_19green.png index a154f40e9..1140e4511 100644 Binary files a/data/themes/classic/lcd_19green.png and b/data/themes/classic/lcd_19green.png differ diff --git a/data/themes/classic/lcd_19green_dot.png b/data/themes/classic/lcd_19green_dot.png index 1459b7d9a..37a737e70 100644 Binary files a/data/themes/classic/lcd_19green_dot.png and b/data/themes/classic/lcd_19green_dot.png differ diff --git a/data/themes/classic/lcd_19pink_dot.png b/data/themes/classic/lcd_19pink_dot.png index aa167803a..9afb3e2db 100644 Binary files a/data/themes/classic/lcd_19pink_dot.png and b/data/themes/classic/lcd_19pink_dot.png differ diff --git a/data/themes/classic/lcd_19red.png b/data/themes/classic/lcd_19red.png index 3238cc3eb..cc31cec8c 100644 Binary files a/data/themes/classic/lcd_19red.png and b/data/themes/classic/lcd_19red.png differ diff --git a/data/themes/classic/lcd_19red_dot.png b/data/themes/classic/lcd_19red_dot.png index b9137754a..bdb0edec6 100644 Binary files a/data/themes/classic/lcd_19red_dot.png and b/data/themes/classic/lcd_19red_dot.png differ diff --git a/data/themes/classic/lcd_21pink.png b/data/themes/classic/lcd_21pink.png index 2f4c360da..1eff6e31e 100644 Binary files a/data/themes/classic/lcd_21pink.png and b/data/themes/classic/lcd_21pink.png differ diff --git a/data/themes/classic/led_green.png b/data/themes/classic/led_green.png index a326b2928..b8e5474a5 100644 Binary files a/data/themes/classic/led_green.png and b/data/themes/classic/led_green.png differ diff --git a/data/themes/classic/led_off.png b/data/themes/classic/led_off.png index 1b564c852..22d6eed15 100644 Binary files a/data/themes/classic/led_off.png and b/data/themes/classic/led_off.png differ diff --git a/data/themes/classic/led_red.png b/data/themes/classic/led_red.png index f48ac4850..1432d06ce 100644 Binary files a/data/themes/classic/led_red.png and b/data/themes/classic/led_red.png differ diff --git a/data/themes/classic/led_yellow.png b/data/themes/classic/led_yellow.png index 7fe385b42..bc5b46218 100644 Binary files a/data/themes/classic/led_yellow.png and b/data/themes/classic/led_yellow.png differ diff --git a/data/themes/classic/lfo_controller_artwork.png b/data/themes/classic/lfo_controller_artwork.png index f1ddacec0..a83227f66 100644 Binary files a/data/themes/classic/lfo_controller_artwork.png and b/data/themes/classic/lfo_controller_artwork.png differ diff --git a/data/themes/classic/lfo_d100_active.png b/data/themes/classic/lfo_d100_active.png index bb966c579..59767bb1e 100644 Binary files a/data/themes/classic/lfo_d100_active.png and b/data/themes/classic/lfo_d100_active.png differ diff --git a/data/themes/classic/lfo_d100_inactive.png b/data/themes/classic/lfo_d100_inactive.png index 239be1e00..0060736bf 100644 Binary files a/data/themes/classic/lfo_d100_inactive.png and b/data/themes/classic/lfo_d100_inactive.png differ diff --git a/data/themes/classic/lfo_graph.png b/data/themes/classic/lfo_graph.png index aa8faf5a0..0813881c1 100644 Binary files a/data/themes/classic/lfo_graph.png and b/data/themes/classic/lfo_graph.png differ diff --git a/data/themes/classic/lfo_x100_active.png b/data/themes/classic/lfo_x100_active.png index cb563f432..833cb6808 100644 Binary files a/data/themes/classic/lfo_x100_active.png and b/data/themes/classic/lfo_x100_active.png differ diff --git a/data/themes/classic/lfo_x100_inactive.png b/data/themes/classic/lfo_x100_inactive.png index e0058926e..bb37b46a5 100644 Binary files a/data/themes/classic/lfo_x100_inactive.png and b/data/themes/classic/lfo_x100_inactive.png differ diff --git a/data/themes/classic/lfo_x1_active.png b/data/themes/classic/lfo_x1_active.png index 2c54a6ab1..a1bf3eb49 100644 Binary files a/data/themes/classic/lfo_x1_active.png and b/data/themes/classic/lfo_x1_active.png differ diff --git a/data/themes/classic/lfo_x1_inactive.png b/data/themes/classic/lfo_x1_inactive.png index 1947a4c93..1bc5a1b24 100644 Binary files a/data/themes/classic/lfo_x1_inactive.png and b/data/themes/classic/lfo_x1_inactive.png differ diff --git a/data/themes/classic/loop_points_off.png b/data/themes/classic/loop_points_off.png index 924c487e8..e2b76cbfc 100644 Binary files a/data/themes/classic/loop_points_off.png and b/data/themes/classic/loop_points_off.png differ diff --git a/data/themes/classic/loop_points_on.png b/data/themes/classic/loop_points_on.png index 1bbacf260..d045bdaad 100644 Binary files a/data/themes/classic/loop_points_on.png and b/data/themes/classic/loop_points_on.png differ diff --git a/data/themes/classic/main_slider.png b/data/themes/classic/main_slider.png index 6f7b990a4..8065394e7 100644 Binary files a/data/themes/classic/main_slider.png and b/data/themes/classic/main_slider.png differ diff --git a/data/themes/classic/master_pitch.png b/data/themes/classic/master_pitch.png index 45e7ae107..6fa4b0575 100644 Binary files a/data/themes/classic/master_pitch.png and b/data/themes/classic/master_pitch.png differ diff --git a/data/themes/classic/master_volume.png b/data/themes/classic/master_volume.png index 9b486b290..d61a3f560 100644 Binary files a/data/themes/classic/master_volume.png and b/data/themes/classic/master_volume.png differ diff --git a/data/themes/classic/maximize.png b/data/themes/classic/maximize.png index fac7b46e9..4185b81c9 100644 Binary files a/data/themes/classic/maximize.png and b/data/themes/classic/maximize.png differ diff --git a/data/themes/classic/metronome.png b/data/themes/classic/metronome.png index e20815a21..c8786594a 100644 Binary files a/data/themes/classic/metronome.png and b/data/themes/classic/metronome.png differ diff --git a/data/themes/classic/microtuner.png b/data/themes/classic/microtuner.png index 7880394cb..b7c6863b6 100644 Binary files a/data/themes/classic/microtuner.png and b/data/themes/classic/microtuner.png differ diff --git a/data/themes/classic/midi_cc_rack.png b/data/themes/classic/midi_cc_rack.png index 1fe8bb9cb..e595816ba 100644 Binary files a/data/themes/classic/midi_cc_rack.png and b/data/themes/classic/midi_cc_rack.png differ diff --git a/data/themes/classic/midi_file.png b/data/themes/classic/midi_file.png index 910bdc750..838d83eae 100644 Binary files a/data/themes/classic/midi_file.png and b/data/themes/classic/midi_file.png differ diff --git a/data/themes/classic/mixer.png b/data/themes/classic/mixer.png index f26d53bd9..1a179cc99 100644 Binary files a/data/themes/classic/mixer.png and b/data/themes/classic/mixer.png differ diff --git a/data/themes/classic/mixer_send_off.png b/data/themes/classic/mixer_send_off.png index 3033c4962..4a10dd337 100644 Binary files a/data/themes/classic/mixer_send_off.png and b/data/themes/classic/mixer_send_off.png differ diff --git a/data/themes/classic/mixer_send_on.png b/data/themes/classic/mixer_send_on.png index 776398e9f..0b841e1a2 100644 Binary files a/data/themes/classic/mixer_send_on.png and b/data/themes/classic/mixer_send_on.png differ diff --git a/data/themes/classic/moog_saw_wave_active.png b/data/themes/classic/moog_saw_wave_active.png index f6230f6d4..ee28f235f 100644 Binary files a/data/themes/classic/moog_saw_wave_active.png and b/data/themes/classic/moog_saw_wave_active.png differ diff --git a/data/themes/classic/moog_saw_wave_inactive.png b/data/themes/classic/moog_saw_wave_inactive.png index c77d73a0e..c7ae2523e 100644 Binary files a/data/themes/classic/moog_saw_wave_inactive.png and b/data/themes/classic/moog_saw_wave_inactive.png differ diff --git a/data/themes/classic/muted.png b/data/themes/classic/muted.png index cedddf703..2b47dfbb1 100644 Binary files a/data/themes/classic/muted.png and b/data/themes/classic/muted.png differ diff --git a/data/themes/classic/new_channel.png b/data/themes/classic/new_channel.png index 8a27695df..8ca7bf13e 100644 Binary files a/data/themes/classic/new_channel.png and b/data/themes/classic/new_channel.png differ diff --git a/data/themes/classic/note.png b/data/themes/classic/note.png index a2f7a0262..a1ff3ee2c 100644 Binary files a/data/themes/classic/note.png and b/data/themes/classic/note.png differ diff --git a/data/themes/classic/note_double_whole.png b/data/themes/classic/note_double_whole.png index f55150f46..a67e70476 100644 Binary files a/data/themes/classic/note_double_whole.png and b/data/themes/classic/note_double_whole.png differ diff --git a/data/themes/classic/note_eighth.png b/data/themes/classic/note_eighth.png index 7d7b772bb..b1e9d3d49 100644 Binary files a/data/themes/classic/note_eighth.png and b/data/themes/classic/note_eighth.png differ diff --git a/data/themes/classic/note_half.png b/data/themes/classic/note_half.png index 46e9d461c..27dd7e8d2 100644 Binary files a/data/themes/classic/note_half.png and b/data/themes/classic/note_half.png differ diff --git a/data/themes/classic/note_none.png b/data/themes/classic/note_none.png index 8a82a4ae6..3418ee8f7 100644 Binary files a/data/themes/classic/note_none.png and b/data/themes/classic/note_none.png differ diff --git a/data/themes/classic/note_quarter.png b/data/themes/classic/note_quarter.png index 44fb49e6c..3976fc09e 100644 Binary files a/data/themes/classic/note_quarter.png and b/data/themes/classic/note_quarter.png differ diff --git a/data/themes/classic/note_sixteenth.png b/data/themes/classic/note_sixteenth.png index a41d39a18..5a33aeb1b 100644 Binary files a/data/themes/classic/note_sixteenth.png and b/data/themes/classic/note_sixteenth.png differ diff --git a/data/themes/classic/note_thirtysecond.png b/data/themes/classic/note_thirtysecond.png index 4b3e2e956..a6e5c5032 100644 Binary files a/data/themes/classic/note_thirtysecond.png and b/data/themes/classic/note_thirtysecond.png differ diff --git a/data/themes/classic/note_tripleteighth.png b/data/themes/classic/note_tripleteighth.png index 35ed0f616..293724507 100644 Binary files a/data/themes/classic/note_tripleteighth.png and b/data/themes/classic/note_tripleteighth.png differ diff --git a/data/themes/classic/note_triplethalf.png b/data/themes/classic/note_triplethalf.png index 73aa6e24b..9b10fc9dc 100644 Binary files a/data/themes/classic/note_triplethalf.png and b/data/themes/classic/note_triplethalf.png differ diff --git a/data/themes/classic/note_tripletquarter.png b/data/themes/classic/note_tripletquarter.png index 7ddc3e292..69726fd80 100644 Binary files a/data/themes/classic/note_tripletquarter.png and b/data/themes/classic/note_tripletquarter.png differ diff --git a/data/themes/classic/note_tripletsixteenth.png b/data/themes/classic/note_tripletsixteenth.png index 074805fc5..cc20c22a9 100644 Binary files a/data/themes/classic/note_tripletsixteenth.png and b/data/themes/classic/note_tripletsixteenth.png differ diff --git a/data/themes/classic/note_tripletthirtysecond.png b/data/themes/classic/note_tripletthirtysecond.png index aa89e6f7b..5ceff23d9 100644 Binary files a/data/themes/classic/note_tripletthirtysecond.png and b/data/themes/classic/note_tripletthirtysecond.png differ diff --git a/data/themes/classic/note_whole.png b/data/themes/classic/note_whole.png index a9b8af4a0..4c31b12f7 100644 Binary files a/data/themes/classic/note_whole.png and b/data/themes/classic/note_whole.png differ diff --git a/data/themes/classic/output_graph.png b/data/themes/classic/output_graph.png index 46ec86d44..9466e05c8 100644 Binary files a/data/themes/classic/output_graph.png and b/data/themes/classic/output_graph.png differ diff --git a/data/themes/classic/pattern_track.png b/data/themes/classic/pattern_track.png index 1c72caa39..336121a66 100644 Binary files a/data/themes/classic/pattern_track.png and b/data/themes/classic/pattern_track.png differ diff --git a/data/themes/classic/pattern_track_btn.png b/data/themes/classic/pattern_track_btn.png index f67714607..dd08693a7 100644 Binary files a/data/themes/classic/pattern_track_btn.png and b/data/themes/classic/pattern_track_btn.png differ diff --git a/data/themes/classic/pause.png b/data/themes/classic/pause.png index 719f67675..69f286515 100644 Binary files a/data/themes/classic/pause.png and b/data/themes/classic/pause.png differ diff --git a/data/themes/classic/piano.png b/data/themes/classic/piano.png index 22523893e..2d39ccebc 100644 Binary files a/data/themes/classic/piano.png and b/data/themes/classic/piano.png differ diff --git a/data/themes/classic/play.png b/data/themes/classic/play.png index 81d25ba4a..b16db0897 100644 Binary files a/data/themes/classic/play.png and b/data/themes/classic/play.png differ diff --git a/data/themes/classic/playpos_marker.png b/data/themes/classic/playpos_marker.png index fb4befbb0..6db3b27ea 100644 Binary files a/data/themes/classic/playpos_marker.png and b/data/themes/classic/playpos_marker.png differ diff --git a/data/themes/classic/plugins.png b/data/themes/classic/plugins.png index 5ba9bc3c9..ccd8e238b 100644 Binary files a/data/themes/classic/plugins.png and b/data/themes/classic/plugins.png differ diff --git a/data/themes/classic/ports.png b/data/themes/classic/ports.png index de9036262..b788a9e1a 100644 Binary files a/data/themes/classic/ports.png and b/data/themes/classic/ports.png differ diff --git a/data/themes/classic/pr_black_key.png b/data/themes/classic/pr_black_key.png index 7d9c6ea9d..7301f2ade 100644 Binary files a/data/themes/classic/pr_black_key.png and b/data/themes/classic/pr_black_key.png differ diff --git a/data/themes/classic/pr_black_key_pressed.png b/data/themes/classic/pr_black_key_pressed.png index afbf3c4d9..9ef72c4fc 100644 Binary files a/data/themes/classic/pr_black_key_pressed.png and b/data/themes/classic/pr_black_key_pressed.png differ diff --git a/data/themes/classic/pr_white_key_big.png b/data/themes/classic/pr_white_key_big.png index 724e82b26..9d4ff22c7 100644 Binary files a/data/themes/classic/pr_white_key_big.png and b/data/themes/classic/pr_white_key_big.png differ diff --git a/data/themes/classic/pr_white_key_big_pressed.png b/data/themes/classic/pr_white_key_big_pressed.png index 37d62e5fb..5061ad45d 100644 Binary files a/data/themes/classic/pr_white_key_big_pressed.png and b/data/themes/classic/pr_white_key_big_pressed.png differ diff --git a/data/themes/classic/pr_white_key_small.png b/data/themes/classic/pr_white_key_small.png index fa07d6a9d..3cd9626b1 100644 Binary files a/data/themes/classic/pr_white_key_small.png and b/data/themes/classic/pr_white_key_small.png differ diff --git a/data/themes/classic/pr_white_key_small_pressed.png b/data/themes/classic/pr_white_key_small_pressed.png index 93fe7ceb4..6dc865e72 100644 Binary files a/data/themes/classic/pr_white_key_small_pressed.png and b/data/themes/classic/pr_white_key_small_pressed.png differ diff --git a/data/themes/classic/preset_file.png b/data/themes/classic/preset_file.png index 53a0d1159..c9cbc2447 100644 Binary files a/data/themes/classic/preset_file.png and b/data/themes/classic/preset_file.png differ diff --git a/data/themes/classic/progression_cubic_hermite.png b/data/themes/classic/progression_cubic_hermite.png index 1010f8735..59e31cc7f 100644 Binary files a/data/themes/classic/progression_cubic_hermite.png and b/data/themes/classic/progression_cubic_hermite.png differ diff --git a/data/themes/classic/progression_discrete.png b/data/themes/classic/progression_discrete.png index 5faf0e4aa..b6a864345 100644 Binary files a/data/themes/classic/progression_discrete.png and b/data/themes/classic/progression_discrete.png differ diff --git a/data/themes/classic/progression_linear.png b/data/themes/classic/progression_linear.png index d6193e4f6..fc451a709 100644 Binary files a/data/themes/classic/progression_linear.png and b/data/themes/classic/progression_linear.png differ diff --git a/data/themes/classic/project_export.png b/data/themes/classic/project_export.png index 13c0b9d08..c479abfc3 100644 Binary files a/data/themes/classic/project_export.png and b/data/themes/classic/project_export.png differ diff --git a/data/themes/classic/project_file.png b/data/themes/classic/project_file.png index 724ab5cfb..89c8ccea9 100644 Binary files a/data/themes/classic/project_file.png and b/data/themes/classic/project_file.png differ diff --git a/data/themes/classic/project_import.png b/data/themes/classic/project_import.png index 6680f2416..a249646ab 100644 Binary files a/data/themes/classic/project_import.png and b/data/themes/classic/project_import.png differ diff --git a/data/themes/classic/project_new.png b/data/themes/classic/project_new.png index 489548b6b..e74f14df6 100644 Binary files a/data/themes/classic/project_new.png and b/data/themes/classic/project_new.png differ diff --git a/data/themes/classic/project_new_from_template.png b/data/themes/classic/project_new_from_template.png index 1353505b9..ef59238b6 100644 Binary files a/data/themes/classic/project_new_from_template.png and b/data/themes/classic/project_new_from_template.png differ diff --git a/data/themes/classic/project_notes.png b/data/themes/classic/project_notes.png index 6991b3a7e..130adddce 100644 Binary files a/data/themes/classic/project_notes.png and b/data/themes/classic/project_notes.png differ diff --git a/data/themes/classic/project_open.png b/data/themes/classic/project_open.png index 7188b3894..c42872df0 100644 Binary files a/data/themes/classic/project_open.png and b/data/themes/classic/project_open.png differ diff --git a/data/themes/classic/project_open_down.png b/data/themes/classic/project_open_down.png index 057c6269f..d1e17debb 100644 Binary files a/data/themes/classic/project_open_down.png and b/data/themes/classic/project_open_down.png differ diff --git a/data/themes/classic/project_open_recent.png b/data/themes/classic/project_open_recent.png index 4e57b3b82..bba9d4a80 100644 Binary files a/data/themes/classic/project_open_recent.png and b/data/themes/classic/project_open_recent.png differ diff --git a/data/themes/classic/project_save.png b/data/themes/classic/project_save.png index 83c7fd7bd..9d9859285 100644 Binary files a/data/themes/classic/project_save.png and b/data/themes/classic/project_save.png differ diff --git a/data/themes/classic/project_saveas.png b/data/themes/classic/project_saveas.png index 83c7fd7bd..9d9859285 100644 Binary files a/data/themes/classic/project_saveas.png and b/data/themes/classic/project_saveas.png differ diff --git a/data/themes/classic/proportional_snap.png b/data/themes/classic/proportional_snap.png index 66a0bb049..485ced02b 100644 Binary files a/data/themes/classic/proportional_snap.png and b/data/themes/classic/proportional_snap.png differ diff --git a/data/themes/classic/quantize.png b/data/themes/classic/quantize.png index aae2654ac..4c664f28f 100644 Binary files a/data/themes/classic/quantize.png and b/data/themes/classic/quantize.png differ diff --git a/data/themes/classic/random_wave_active.png b/data/themes/classic/random_wave_active.png index b65a9a0c3..e374bb793 100644 Binary files a/data/themes/classic/random_wave_active.png and b/data/themes/classic/random_wave_active.png differ diff --git a/data/themes/classic/random_wave_inactive.png b/data/themes/classic/random_wave_inactive.png index 47184549a..c90f0aaff 100644 Binary files a/data/themes/classic/random_wave_inactive.png and b/data/themes/classic/random_wave_inactive.png differ diff --git a/data/themes/classic/receive_bg_arrow.png b/data/themes/classic/receive_bg_arrow.png index f456176e0..8aaeae606 100644 Binary files a/data/themes/classic/receive_bg_arrow.png and b/data/themes/classic/receive_bg_arrow.png differ diff --git a/data/themes/classic/record.png b/data/themes/classic/record.png index 9c478745b..e6f550cbe 100644 Binary files a/data/themes/classic/record.png and b/data/themes/classic/record.png differ diff --git a/data/themes/classic/record_accompany.png b/data/themes/classic/record_accompany.png index 005a1c18c..7b21162e9 100644 Binary files a/data/themes/classic/record_accompany.png and b/data/themes/classic/record_accompany.png differ diff --git a/data/themes/classic/record_step_off.png b/data/themes/classic/record_step_off.png index 8da17a910..0b2b9b1b2 100644 Binary files a/data/themes/classic/record_step_off.png and b/data/themes/classic/record_step_off.png differ diff --git a/data/themes/classic/record_step_on.png b/data/themes/classic/record_step_on.png index 700ba97f3..d47253a0a 100644 Binary files a/data/themes/classic/record_step_on.png and b/data/themes/classic/record_step_on.png differ diff --git a/data/themes/classic/reload.png b/data/themes/classic/reload.png index c92882ecd..aae52236b 100644 Binary files a/data/themes/classic/reload.png and b/data/themes/classic/reload.png differ diff --git a/data/themes/classic/restore.png b/data/themes/classic/restore.png index 4492e17a6..bbba08701 100644 Binary files a/data/themes/classic/restore.png and b/data/themes/classic/restore.png differ diff --git a/data/themes/classic/round_square_wave_active.png b/data/themes/classic/round_square_wave_active.png index 0dfe2093a..a74444281 100644 Binary files a/data/themes/classic/round_square_wave_active.png and b/data/themes/classic/round_square_wave_active.png differ diff --git a/data/themes/classic/round_square_wave_inactive.png b/data/themes/classic/round_square_wave_inactive.png index 3e1f9c0b0..632e2a044 100644 Binary files a/data/themes/classic/round_square_wave_inactive.png and b/data/themes/classic/round_square_wave_inactive.png differ diff --git a/data/themes/classic/sample_file.png b/data/themes/classic/sample_file.png index f2ed8d46e..1e6bdec55 100644 Binary files a/data/themes/classic/sample_file.png and b/data/themes/classic/sample_file.png differ diff --git a/data/themes/classic/sample_track.png b/data/themes/classic/sample_track.png index d459e7fa5..9c2c9f67e 100644 Binary files a/data/themes/classic/sample_track.png and b/data/themes/classic/sample_track.png differ diff --git a/data/themes/classic/saw_wave_active.png b/data/themes/classic/saw_wave_active.png index 62bffcc33..40d808e9c 100644 Binary files a/data/themes/classic/saw_wave_active.png and b/data/themes/classic/saw_wave_active.png differ diff --git a/data/themes/classic/saw_wave_inactive.png b/data/themes/classic/saw_wave_inactive.png index 6fc3a816b..c7f7b8073 100644 Binary files a/data/themes/classic/saw_wave_inactive.png and b/data/themes/classic/saw_wave_inactive.png differ diff --git a/data/themes/classic/sbarrow_down.png b/data/themes/classic/sbarrow_down.png index 56fa504c1..38c681f03 100644 Binary files a/data/themes/classic/sbarrow_down.png and b/data/themes/classic/sbarrow_down.png differ diff --git a/data/themes/classic/sbarrow_down_d.png b/data/themes/classic/sbarrow_down_d.png index f8c54f32f..899fb1526 100644 Binary files a/data/themes/classic/sbarrow_down_d.png and b/data/themes/classic/sbarrow_down_d.png differ diff --git a/data/themes/classic/sbarrow_left.png b/data/themes/classic/sbarrow_left.png index d50031e30..38bd05d0a 100644 Binary files a/data/themes/classic/sbarrow_left.png and b/data/themes/classic/sbarrow_left.png differ diff --git a/data/themes/classic/sbarrow_left_d.png b/data/themes/classic/sbarrow_left_d.png index fe246df05..7496655f1 100644 Binary files a/data/themes/classic/sbarrow_left_d.png and b/data/themes/classic/sbarrow_left_d.png differ diff --git a/data/themes/classic/sbarrow_right.png b/data/themes/classic/sbarrow_right.png index 2112ec1da..28e65ab8c 100644 Binary files a/data/themes/classic/sbarrow_right.png and b/data/themes/classic/sbarrow_right.png differ diff --git a/data/themes/classic/sbarrow_right_d.png b/data/themes/classic/sbarrow_right_d.png index 39b0220cc..e49991c09 100644 Binary files a/data/themes/classic/sbarrow_right_d.png and b/data/themes/classic/sbarrow_right_d.png differ diff --git a/data/themes/classic/sbarrow_up.png b/data/themes/classic/sbarrow_up.png index 2b61c257c..b98132e14 100644 Binary files a/data/themes/classic/sbarrow_up.png and b/data/themes/classic/sbarrow_up.png differ diff --git a/data/themes/classic/sbarrow_up_d.png b/data/themes/classic/sbarrow_up_d.png index f80d6b39b..2fd977ffe 100644 Binary files a/data/themes/classic/sbarrow_up_d.png and b/data/themes/classic/sbarrow_up_d.png differ diff --git a/data/themes/classic/scale.png b/data/themes/classic/scale.png index cde26a701..675086bee 100644 Binary files a/data/themes/classic/scale.png and b/data/themes/classic/scale.png differ diff --git a/data/themes/classic/send_bg_arrow.png b/data/themes/classic/send_bg_arrow.png index 8c4bfcf93..cc29b8649 100644 Binary files a/data/themes/classic/send_bg_arrow.png and b/data/themes/classic/send_bg_arrow.png differ diff --git a/data/themes/classic/setup_audio.png b/data/themes/classic/setup_audio.png index c928c72ef..204c855ea 100644 Binary files a/data/themes/classic/setup_audio.png and b/data/themes/classic/setup_audio.png differ diff --git a/data/themes/classic/setup_directories.png b/data/themes/classic/setup_directories.png index 82a467fbd..5aa4b0661 100644 Binary files a/data/themes/classic/setup_directories.png and b/data/themes/classic/setup_directories.png differ diff --git a/data/themes/classic/setup_general.png b/data/themes/classic/setup_general.png index 43ae1b197..225f8f69b 100644 Binary files a/data/themes/classic/setup_general.png and b/data/themes/classic/setup_general.png differ diff --git a/data/themes/classic/setup_midi.png b/data/themes/classic/setup_midi.png index 80cb45e01..06b772958 100644 Binary files a/data/themes/classic/setup_midi.png and b/data/themes/classic/setup_midi.png differ diff --git a/data/themes/classic/setup_performance.png b/data/themes/classic/setup_performance.png index 6233e742e..abbd81d87 100644 Binary files a/data/themes/classic/setup_performance.png and b/data/themes/classic/setup_performance.png differ diff --git a/data/themes/classic/sin_wave_active.png b/data/themes/classic/sin_wave_active.png index ec7bf0a7d..fce884535 100644 Binary files a/data/themes/classic/sin_wave_active.png and b/data/themes/classic/sin_wave_active.png differ diff --git a/data/themes/classic/sin_wave_inactive.png b/data/themes/classic/sin_wave_inactive.png index 6d6e4fa80..ac1f02a1a 100644 Binary files a/data/themes/classic/sin_wave_inactive.png and b/data/themes/classic/sin_wave_inactive.png differ diff --git a/data/themes/classic/songeditor.png b/data/themes/classic/songeditor.png index ecfb65b24..1a5b2c972 100644 Binary files a/data/themes/classic/songeditor.png and b/data/themes/classic/songeditor.png differ diff --git a/data/themes/classic/soundfont_file.png b/data/themes/classic/soundfont_file.png index 774c82498..124035aa2 100644 Binary files a/data/themes/classic/soundfont_file.png and b/data/themes/classic/soundfont_file.png differ diff --git a/data/themes/classic/splash.png b/data/themes/classic/splash.png index a3b58d5f2..70c17f869 100644 Binary files a/data/themes/classic/splash.png and b/data/themes/classic/splash.png differ diff --git a/data/themes/classic/square_wave_active.png b/data/themes/classic/square_wave_active.png index 487b5aff7..c929c042a 100644 Binary files a/data/themes/classic/square_wave_active.png and b/data/themes/classic/square_wave_active.png differ diff --git a/data/themes/classic/square_wave_inactive.png b/data/themes/classic/square_wave_inactive.png index 435b33c6e..a2e2ef26c 100644 Binary files a/data/themes/classic/square_wave_inactive.png and b/data/themes/classic/square_wave_inactive.png differ diff --git a/data/themes/classic/step_btn_add.png b/data/themes/classic/step_btn_add.png index 60fbf9944..e145c92f1 100644 Binary files a/data/themes/classic/step_btn_add.png and b/data/themes/classic/step_btn_add.png differ diff --git a/data/themes/classic/step_btn_duplicate.png b/data/themes/classic/step_btn_duplicate.png index af9521fad..ae94271b0 100644 Binary files a/data/themes/classic/step_btn_duplicate.png and b/data/themes/classic/step_btn_duplicate.png differ diff --git a/data/themes/classic/step_btn_off.png b/data/themes/classic/step_btn_off.png index 5e40d3e5a..cb5f1a046 100644 Binary files a/data/themes/classic/step_btn_off.png and b/data/themes/classic/step_btn_off.png differ diff --git a/data/themes/classic/step_btn_off_light.png b/data/themes/classic/step_btn_off_light.png index f8f64bea8..f30c224ef 100644 Binary files a/data/themes/classic/step_btn_off_light.png and b/data/themes/classic/step_btn_off_light.png differ diff --git a/data/themes/classic/step_btn_on_0.png b/data/themes/classic/step_btn_on_0.png index faa9b462f..adb5fbe44 100644 Binary files a/data/themes/classic/step_btn_on_0.png and b/data/themes/classic/step_btn_on_0.png differ diff --git a/data/themes/classic/step_btn_on_200.png b/data/themes/classic/step_btn_on_200.png index 02586b337..2b34138ba 100644 Binary files a/data/themes/classic/step_btn_on_200.png and b/data/themes/classic/step_btn_on_200.png differ diff --git a/data/themes/classic/step_btn_remove.png b/data/themes/classic/step_btn_remove.png index 69383af18..eacb60440 100644 Binary files a/data/themes/classic/step_btn_remove.png and b/data/themes/classic/step_btn_remove.png differ diff --git a/data/themes/classic/stepper-down-press.png b/data/themes/classic/stepper-down-press.png index c1cec54a3..d0affa54c 100644 Binary files a/data/themes/classic/stepper-down-press.png and b/data/themes/classic/stepper-down-press.png differ diff --git a/data/themes/classic/stepper-down.png b/data/themes/classic/stepper-down.png index b7b8e2f1a..4f0ec4ebd 100644 Binary files a/data/themes/classic/stepper-down.png and b/data/themes/classic/stepper-down.png differ diff --git a/data/themes/classic/stepper-left-press.png b/data/themes/classic/stepper-left-press.png index 4de798f7c..c94234c4f 100644 Binary files a/data/themes/classic/stepper-left-press.png and b/data/themes/classic/stepper-left-press.png differ diff --git a/data/themes/classic/stepper-left.png b/data/themes/classic/stepper-left.png index 7f2278056..c4f2820b8 100644 Binary files a/data/themes/classic/stepper-left.png and b/data/themes/classic/stepper-left.png differ diff --git a/data/themes/classic/stepper-right-press.png b/data/themes/classic/stepper-right-press.png index ad634e175..003825136 100644 Binary files a/data/themes/classic/stepper-right-press.png and b/data/themes/classic/stepper-right-press.png differ diff --git a/data/themes/classic/stepper-right.png b/data/themes/classic/stepper-right.png index 215e88f6c..f7f98d172 100644 Binary files a/data/themes/classic/stepper-right.png and b/data/themes/classic/stepper-right.png differ diff --git a/data/themes/classic/stepper-up-press.png b/data/themes/classic/stepper-up-press.png index 99f47711f..9f72354d8 100644 Binary files a/data/themes/classic/stepper-up-press.png and b/data/themes/classic/stepper-up-press.png differ diff --git a/data/themes/classic/stepper-up.png b/data/themes/classic/stepper-up.png index 13329133d..aa61a4168 100644 Binary files a/data/themes/classic/stepper-up.png and b/data/themes/classic/stepper-up.png differ diff --git a/data/themes/classic/stop.png b/data/themes/classic/stop.png index b589f6178..236aa2a5d 100644 Binary files a/data/themes/classic/stop.png and b/data/themes/classic/stop.png differ diff --git a/data/themes/classic/style.css b/data/themes/classic/style.css index 95737ed3a..13047dc5d 100644 --- a/data/themes/classic/style.css +++ b/data/themes/classic/style.css @@ -148,6 +148,7 @@ lmms--gui--PianoRoll { qproperty-noteModeColor: rgb( 255, 255, 255 ); qproperty-noteColor: rgb( 119, 199, 216 ); qproperty-stepNoteColor: #9b1313; + qproperty-currentStepNoteColor: rgb(245, 3, 139); qproperty-noteTextColor: rgb( 255, 255, 255 ); qproperty-noteOpacity: 128; qproperty-noteBorders: true; /* boolean property, set false to have borderless notes */ @@ -375,7 +376,7 @@ lmms--gui--TrackContentWidget { /* gear button in tracks */ -lmms--gui--TrackOperationsWidget > QPushButton { +lmms--gui--TrackOperationsWidget QPushButton { max-height: 26px; max-width: 26px; min-height: 26px; @@ -384,7 +385,7 @@ lmms--gui--TrackOperationsWidget > QPushButton { border: none; } -lmms--gui--TrackOperationsWidget > QPushButton::menu-indicator { +lmms--gui--TrackOperationsWidget QPushButton::menu-indicator { image: url("resources:trackop.png"); subcontrol-origin: padding; subcontrol-position: center; @@ -392,12 +393,12 @@ lmms--gui--TrackOperationsWidget > QPushButton::menu-indicator { top: 1px; } -lmms--gui--TrackOperationsWidget > QPushButton::menu-indicator:hover { +lmms--gui--TrackOperationsWidget QPushButton::menu-indicator:hover { image: url("resources:trackop_h.png"); } -lmms--gui--TrackOperationsWidget > QPushButton::menu-indicator:pressed, -lmms--gui--TrackOperationsWidget > QPushButton::menu-indicator:checked { +lmms--gui--TrackOperationsWidget QPushButton::menu-indicator:pressed, +lmms--gui--TrackOperationsWidget QPushButton::menu-indicator:checked { image: url("resources:trackop_c.png"); position: relative; top: 2px; @@ -796,6 +797,21 @@ lmms--gui--SubWindow > QPushButton:hover{ border-radius: 2px; } +/* Instrument */ + +/* Envelope graph */ +lmms--gui--EnvelopeGraph { + qproperty-noAmountColor: rgb(96, 91, 96); + qproperty-fullAmountColor: rgb(0, 255, 128); + qproperty-markerFillColor: rgb(153, 175, 255); + qproperty-markerOutlineColor: rgb(0, 0, 0); +} + +/* LFO graph */ +lmms--gui--LfoGraph { + qproperty-noAmountColor: rgb(96, 91, 96); + qproperty-fullAmountColor: rgb(0, 255, 128); +} /* Plugins */ @@ -1022,6 +1038,12 @@ lmms--gui--CompressorControlDialog lmms--gui--Knob { qproperty-lineWidth: 2; } +lmms--gui--VectorView { + qproperty-colorTrace: rgba(255, 170, 33, 255); + qproperty-colorGrid: rgba(76, 80, 84, 128); + qproperty-colorLabels: rgba(76, 80, 84, 255); +} + lmms--gui--BarModelEditor { qproperty-backgroundBrush: rgba(28, 73, 51, 255); qproperty-barBrush: rgba(17, 136, 71, 255); diff --git a/data/themes/classic/tempo_sync.png b/data/themes/classic/tempo_sync.png index 4cd3f082a..392e84331 100644 Binary files a/data/themes/classic/tempo_sync.png and b/data/themes/classic/tempo_sync.png differ diff --git a/data/themes/classic/text_block.png b/data/themes/classic/text_block.png index e69a9f246..cba3c23cf 100644 Binary files a/data/themes/classic/text_block.png and b/data/themes/classic/text_block.png differ diff --git a/data/themes/classic/text_bold.png b/data/themes/classic/text_bold.png index 9abb008bc..43e2b7087 100644 Binary files a/data/themes/classic/text_bold.png and b/data/themes/classic/text_bold.png differ diff --git a/data/themes/classic/text_center.png b/data/themes/classic/text_center.png index eb8428fd3..41044868d 100644 Binary files a/data/themes/classic/text_center.png and b/data/themes/classic/text_center.png differ diff --git a/data/themes/classic/text_italic.png b/data/themes/classic/text_italic.png index f2d582368..23427392e 100644 Binary files a/data/themes/classic/text_italic.png and b/data/themes/classic/text_italic.png differ diff --git a/data/themes/classic/text_left.png b/data/themes/classic/text_left.png index ae817ca88..12e72b438 100644 Binary files a/data/themes/classic/text_left.png and b/data/themes/classic/text_left.png differ diff --git a/data/themes/classic/text_right.png b/data/themes/classic/text_right.png index 38129a211..bb1df0911 100644 Binary files a/data/themes/classic/text_right.png and b/data/themes/classic/text_right.png differ diff --git a/data/themes/classic/text_under.png b/data/themes/classic/text_under.png index 4504d7c00..f5f5ec34b 100644 Binary files a/data/themes/classic/text_under.png and b/data/themes/classic/text_under.png differ diff --git a/data/themes/classic/track_op_grip.png b/data/themes/classic/track_op_grip.png index d1dec24b8..64c9b9f5d 100644 Binary files a/data/themes/classic/track_op_grip.png and b/data/themes/classic/track_op_grip.png differ diff --git a/data/themes/classic/trackop.png b/data/themes/classic/trackop.png index bc089652e..109b02b0a 100644 Binary files a/data/themes/classic/trackop.png and b/data/themes/classic/trackop.png differ diff --git a/data/themes/classic/trackop_c.png b/data/themes/classic/trackop_c.png index 418e4f8eb..1736f985b 100644 Binary files a/data/themes/classic/trackop_c.png and b/data/themes/classic/trackop_c.png differ diff --git a/data/themes/classic/trackop_h.png b/data/themes/classic/trackop_h.png index b88839a0d..d5159b7c2 100644 Binary files a/data/themes/classic/trackop_h.png and b/data/themes/classic/trackop_h.png differ diff --git a/data/themes/classic/triangle_wave_active.png b/data/themes/classic/triangle_wave_active.png index f3ef94abc..0f202e450 100644 Binary files a/data/themes/classic/triangle_wave_active.png and b/data/themes/classic/triangle_wave_active.png differ diff --git a/data/themes/classic/triangle_wave_inactive.png b/data/themes/classic/triangle_wave_inactive.png index 08d049716..617cb5a1f 100644 Binary files a/data/themes/classic/triangle_wave_inactive.png and b/data/themes/classic/triangle_wave_inactive.png differ diff --git a/data/themes/classic/uhoh.png b/data/themes/classic/uhoh.png index 09dc577df..5f8bcbbe9 100644 Binary files a/data/themes/classic/uhoh.png and b/data/themes/classic/uhoh.png differ diff --git a/data/themes/classic/unavailable_sound.png b/data/themes/classic/unavailable_sound.png index 7a3106541..73ddffd98 100644 Binary files a/data/themes/classic/unavailable_sound.png and b/data/themes/classic/unavailable_sound.png differ diff --git a/data/themes/classic/unfreeze.png b/data/themes/classic/unfreeze.png index 6f28cf1a7..d82e6b020 100644 Binary files a/data/themes/classic/unfreeze.png and b/data/themes/classic/unfreeze.png differ diff --git a/data/themes/classic/usr_wave_active.png b/data/themes/classic/usr_wave_active.png index 2309967d5..ad9b01a66 100644 Binary files a/data/themes/classic/usr_wave_active.png and b/data/themes/classic/usr_wave_active.png differ diff --git a/data/themes/classic/usr_wave_inactive.png b/data/themes/classic/usr_wave_inactive.png index a10a3e454..7a700e134 100644 Binary files a/data/themes/classic/usr_wave_inactive.png and b/data/themes/classic/usr_wave_inactive.png differ diff --git a/data/themes/classic/vst_plugin_file.png b/data/themes/classic/vst_plugin_file.png index caca1e4c5..d9e1d9362 100644 Binary files a/data/themes/classic/vst_plugin_file.png and b/data/themes/classic/vst_plugin_file.png differ diff --git a/data/themes/classic/whatsthis.png b/data/themes/classic/whatsthis.png index cad033f4d..610fa87ba 100644 Binary files a/data/themes/classic/whatsthis.png and b/data/themes/classic/whatsthis.png differ diff --git a/data/themes/classic/white_key.png b/data/themes/classic/white_key.png index 7fee692ae..94fe89a38 100644 Binary files a/data/themes/classic/white_key.png and b/data/themes/classic/white_key.png differ diff --git a/data/themes/classic/white_key_disabled.png b/data/themes/classic/white_key_disabled.png index 00e3924ae..d91ec61d3 100644 Binary files a/data/themes/classic/white_key_disabled.png and b/data/themes/classic/white_key_disabled.png differ diff --git a/data/themes/classic/white_key_pressed.png b/data/themes/classic/white_key_pressed.png index dffb43ded..3538305b6 100644 Binary files a/data/themes/classic/white_key_pressed.png and b/data/themes/classic/white_key_pressed.png differ diff --git a/data/themes/classic/white_noise_wave_active.png b/data/themes/classic/white_noise_wave_active.png index 38b089c63..fb7a94343 100644 Binary files a/data/themes/classic/white_noise_wave_active.png and b/data/themes/classic/white_noise_wave_active.png differ diff --git a/data/themes/classic/white_noise_wave_inactive.png b/data/themes/classic/white_noise_wave_inactive.png index 9a35c9d16..4e88cf17f 100644 Binary files a/data/themes/classic/white_noise_wave_inactive.png and b/data/themes/classic/white_noise_wave_inactive.png differ diff --git a/data/themes/classic/zoom.png b/data/themes/classic/zoom.png index cfb50f543..d660241fc 100644 Binary files a/data/themes/classic/zoom.png and b/data/themes/classic/zoom.png differ diff --git a/data/themes/classic/zoom_x.png b/data/themes/classic/zoom_x.png index 435cc440c..c6bf0d27c 100644 Binary files a/data/themes/classic/zoom_x.png and b/data/themes/classic/zoom_x.png differ diff --git a/data/themes/classic/zoom_y.png b/data/themes/classic/zoom_y.png index 906d070e9..c877cf604 100644 Binary files a/data/themes/classic/zoom_y.png and b/data/themes/classic/zoom_y.png differ diff --git a/data/themes/default/add.png b/data/themes/default/add.png index 49ef81727..cc4295982 100644 Binary files a/data/themes/default/add.png and b/data/themes/default/add.png differ diff --git a/data/themes/default/add_automation.png b/data/themes/default/add_automation.png index 791b532d0..954bd190d 100644 Binary files a/data/themes/default/add_automation.png and b/data/themes/default/add_automation.png differ diff --git a/data/themes/default/add_folder.png b/data/themes/default/add_folder.png index b9afe40a2..a0952dc80 100644 Binary files a/data/themes/default/add_folder.png and b/data/themes/default/add_folder.png differ diff --git a/data/themes/default/add_pattern_track.png b/data/themes/default/add_pattern_track.png index 7d32cecc4..6a601d711 100644 Binary files a/data/themes/default/add_pattern_track.png and b/data/themes/default/add_pattern_track.png differ diff --git a/data/themes/default/add_sample_track.png b/data/themes/default/add_sample_track.png index 3c8e70efc..67ae80a31 100644 Binary files a/data/themes/default/add_sample_track.png and b/data/themes/default/add_sample_track.png differ diff --git a/data/themes/default/analysis.png b/data/themes/default/analysis.png index fcb43c8f7..e717251bd 100644 Binary files a/data/themes/default/analysis.png and b/data/themes/default/analysis.png differ diff --git a/data/themes/default/apply-selected.png b/data/themes/default/apply-selected.png index 7afb0f94e..662e3b022 100644 Binary files a/data/themes/default/apply-selected.png and b/data/themes/default/apply-selected.png differ diff --git a/data/themes/default/apply.png b/data/themes/default/apply.png index 42d8be333..1e526e626 100644 Binary files a/data/themes/default/apply.png and b/data/themes/default/apply.png differ diff --git a/data/themes/default/arp_down.png b/data/themes/default/arp_down.png index 63089788b..95ede4d6e 100644 Binary files a/data/themes/default/arp_down.png and b/data/themes/default/arp_down.png differ diff --git a/data/themes/default/arp_free.png b/data/themes/default/arp_free.png index 2fdd45c55..07065581e 100644 Binary files a/data/themes/default/arp_free.png and b/data/themes/default/arp_free.png differ diff --git a/data/themes/default/arp_random.png b/data/themes/default/arp_random.png index 21c628f67..930e40fa4 100644 Binary files a/data/themes/default/arp_random.png and b/data/themes/default/arp_random.png differ diff --git a/data/themes/default/arp_sort.png b/data/themes/default/arp_sort.png index 17bba5997..214afa5dc 100644 Binary files a/data/themes/default/arp_sort.png and b/data/themes/default/arp_sort.png differ diff --git a/data/themes/default/arp_sync.png b/data/themes/default/arp_sync.png index 1097cf839..4b9392239 100644 Binary files a/data/themes/default/arp_sync.png and b/data/themes/default/arp_sync.png differ diff --git a/data/themes/default/arp_up.png b/data/themes/default/arp_up.png index 0a0974c46..4b1a82205 100644 Binary files a/data/themes/default/arp_up.png and b/data/themes/default/arp_up.png differ diff --git a/data/themes/default/arp_up_and_down.png b/data/themes/default/arp_up_and_down.png index 5943c07ae..f92855be6 100644 Binary files a/data/themes/default/arp_up_and_down.png and b/data/themes/default/arp_up_and_down.png differ diff --git a/data/themes/default/automation.png b/data/themes/default/automation.png index 04f830acc..53112a592 100644 Binary files a/data/themes/default/automation.png and b/data/themes/default/automation.png differ diff --git a/data/themes/default/automation_ghost_note.png b/data/themes/default/automation_ghost_note.png index d14c047d7..d4b1416f5 100644 Binary files a/data/themes/default/automation_ghost_note.png and b/data/themes/default/automation_ghost_note.png differ diff --git a/data/themes/default/automation_track.png b/data/themes/default/automation_track.png index 04f830acc..53112a592 100644 Binary files a/data/themes/default/automation_track.png and b/data/themes/default/automation_track.png differ diff --git a/data/themes/default/autoscroll_off.png b/data/themes/default/autoscroll_off.png index b3a1436cd..dee4d5add 100644 Binary files a/data/themes/default/autoscroll_off.png and b/data/themes/default/autoscroll_off.png differ diff --git a/data/themes/default/autoscroll_on.png b/data/themes/default/autoscroll_on.png index 06cc8ed91..8b3c45ed1 100644 Binary files a/data/themes/default/autoscroll_on.png and b/data/themes/default/autoscroll_on.png differ diff --git a/data/themes/default/back_to_start.png b/data/themes/default/back_to_start.png index 85d8bf895..8e662940e 100644 Binary files a/data/themes/default/back_to_start.png and b/data/themes/default/back_to_start.png differ diff --git a/data/themes/default/back_to_zero.png b/data/themes/default/back_to_zero.png index 639f2e955..10bfb0ab4 100644 Binary files a/data/themes/default/back_to_zero.png and b/data/themes/default/back_to_zero.png differ diff --git a/data/themes/default/black_key.png b/data/themes/default/black_key.png index 42028d6ea..0c51668b2 100644 Binary files a/data/themes/default/black_key.png and b/data/themes/default/black_key.png differ diff --git a/data/themes/default/black_key_disabled.png b/data/themes/default/black_key_disabled.png index 1d001f9d7..c384d13cb 100644 Binary files a/data/themes/default/black_key_disabled.png and b/data/themes/default/black_key_disabled.png differ diff --git a/data/themes/default/black_key_pressed.png b/data/themes/default/black_key_pressed.png index 9dc8d6134..81ebac645 100644 Binary files a/data/themes/default/black_key_pressed.png and b/data/themes/default/black_key_pressed.png differ diff --git a/data/themes/default/cancel.png b/data/themes/default/cancel.png index eca10860e..fbc1b72e5 100644 Binary files a/data/themes/default/cancel.png and b/data/themes/default/cancel.png differ diff --git a/data/themes/default/chord.png b/data/themes/default/chord.png index 0450090d5..b0e1674d9 100644 Binary files a/data/themes/default/chord.png and b/data/themes/default/chord.png differ diff --git a/data/themes/default/clear_ghost_note.png b/data/themes/default/clear_ghost_note.png index b9565269f..d93e2771c 100644 Binary files a/data/themes/default/clear_ghost_note.png and b/data/themes/default/clear_ghost_note.png differ diff --git a/data/themes/default/clip_rec.png b/data/themes/default/clip_rec.png index 9bf241fdd..6eaf57dca 100644 Binary files a/data/themes/default/clip_rec.png and b/data/themes/default/clip_rec.png differ diff --git a/data/themes/default/clock.png b/data/themes/default/clock.png index a4a7efd67..9fdbcea10 100644 Binary files a/data/themes/default/clock.png and b/data/themes/default/clock.png differ diff --git a/data/themes/default/clone_pattern_track_clip.png b/data/themes/default/clone_pattern_track_clip.png index ed7d40fa1..5b954ba19 100644 Binary files a/data/themes/default/clone_pattern_track_clip.png and b/data/themes/default/clone_pattern_track_clip.png differ diff --git a/data/themes/default/close.png b/data/themes/default/close.png index 0dc87670d..dd01cb989 100644 Binary files a/data/themes/default/close.png and b/data/themes/default/close.png differ diff --git a/data/themes/default/closed_branch.png b/data/themes/default/closed_branch.png index 73f2de787..fd328a5d1 100755 Binary files a/data/themes/default/closed_branch.png and b/data/themes/default/closed_branch.png differ diff --git a/data/themes/default/colorize.png b/data/themes/default/colorize.png index 0c797a813..911d5522b 100644 Binary files a/data/themes/default/colorize.png and b/data/themes/default/colorize.png differ diff --git a/data/themes/default/combobox_arrow.png b/data/themes/default/combobox_arrow.png index ffda8a9a9..9885c0ed4 100644 Binary files a/data/themes/default/combobox_arrow.png and b/data/themes/default/combobox_arrow.png differ diff --git a/data/themes/default/combobox_arrow_selected.png b/data/themes/default/combobox_arrow_selected.png index 6075aa9ae..cc9c38120 100644 Binary files a/data/themes/default/combobox_arrow_selected.png and b/data/themes/default/combobox_arrow_selected.png differ diff --git a/data/themes/default/combobox_bg.png b/data/themes/default/combobox_bg.png index 851446eee..676d7facd 100644 Binary files a/data/themes/default/combobox_bg.png and b/data/themes/default/combobox_bg.png differ diff --git a/data/themes/default/computer.png b/data/themes/default/computer.png index ae1bda991..543f90d61 100644 Binary files a/data/themes/default/computer.png and b/data/themes/default/computer.png differ diff --git a/data/themes/default/controller.png b/data/themes/default/controller.png index 0f3684938..6ba898bf9 100644 Binary files a/data/themes/default/controller.png and b/data/themes/default/controller.png differ diff --git a/data/themes/default/cpuload_bg.png b/data/themes/default/cpuload_bg.png index 113970c81..ab548e262 100644 Binary files a/data/themes/default/cpuload_bg.png and b/data/themes/default/cpuload_bg.png differ diff --git a/data/themes/default/cpuload_leds.png b/data/themes/default/cpuload_leds.png index aca401837..4f7444d36 100644 Binary files a/data/themes/default/cpuload_leds.png and b/data/themes/default/cpuload_leds.png differ diff --git a/data/themes/default/cursor_knife.png b/data/themes/default/cursor_knife.png index 23dd3331b..591df2d62 100644 Binary files a/data/themes/default/cursor_knife.png and b/data/themes/default/cursor_knife.png differ diff --git a/data/themes/default/cursor_select_left.png b/data/themes/default/cursor_select_left.png index eaa80e0bb..e9fd3b933 100644 Binary files a/data/themes/default/cursor_select_left.png and b/data/themes/default/cursor_select_left.png differ diff --git a/data/themes/default/cursor_select_right.png b/data/themes/default/cursor_select_right.png index abd4aecfb..ae912206f 100644 Binary files a/data/themes/default/cursor_select_right.png and b/data/themes/default/cursor_select_right.png differ diff --git a/data/themes/default/cut_overlaps.png b/data/themes/default/cut_overlaps.png index 64b044ea9..133d9b255 100644 Binary files a/data/themes/default/cut_overlaps.png and b/data/themes/default/cut_overlaps.png differ diff --git a/data/themes/default/discard.png b/data/themes/default/discard.png index 6dec18588..67f0bce7e 100644 Binary files a/data/themes/default/discard.png and b/data/themes/default/discard.png differ diff --git a/data/themes/default/dont_know.png b/data/themes/default/dont_know.png index 710be6fba..e6a5aa200 100644 Binary files a/data/themes/default/dont_know.png and b/data/themes/default/dont_know.png differ diff --git a/data/themes/default/edit_copy.png b/data/themes/default/edit_copy.png index ed7d40fa1..5b954ba19 100644 Binary files a/data/themes/default/edit_copy.png and b/data/themes/default/edit_copy.png differ diff --git a/data/themes/default/edit_cut.png b/data/themes/default/edit_cut.png index 40e3ba6a2..1fe28328f 100644 Binary files a/data/themes/default/edit_cut.png and b/data/themes/default/edit_cut.png differ diff --git a/data/themes/default/edit_draw.png b/data/themes/default/edit_draw.png index 2ac896b4d..28994be9a 100644 Binary files a/data/themes/default/edit_draw.png and b/data/themes/default/edit_draw.png differ diff --git a/data/themes/default/edit_draw_outvalue.png b/data/themes/default/edit_draw_outvalue.png index 74adf71ac..0f5dc05a1 100644 Binary files a/data/themes/default/edit_draw_outvalue.png and b/data/themes/default/edit_draw_outvalue.png differ diff --git a/data/themes/default/edit_draw_small.png b/data/themes/default/edit_draw_small.png index 9979c8223..f961f138b 100644 Binary files a/data/themes/default/edit_draw_small.png and b/data/themes/default/edit_draw_small.png differ diff --git a/data/themes/default/edit_erase.png b/data/themes/default/edit_erase.png index 6695dcf91..8a73ae58c 100644 Binary files a/data/themes/default/edit_erase.png and b/data/themes/default/edit_erase.png differ diff --git a/data/themes/default/edit_knife.png b/data/themes/default/edit_knife.png index 70b15113d..b6b6bf934 100644 Binary files a/data/themes/default/edit_knife.png and b/data/themes/default/edit_knife.png differ diff --git a/data/themes/default/edit_merge.png b/data/themes/default/edit_merge.png index 3e8742b86..93addc528 100644 Binary files a/data/themes/default/edit_merge.png and b/data/themes/default/edit_merge.png differ diff --git a/data/themes/default/edit_move.png b/data/themes/default/edit_move.png index abfa3a719..353d24df6 100644 Binary files a/data/themes/default/edit_move.png and b/data/themes/default/edit_move.png differ diff --git a/data/themes/default/edit_paste.png b/data/themes/default/edit_paste.png index e3fa22de8..e3a1fcd5b 100644 Binary files a/data/themes/default/edit_paste.png and b/data/themes/default/edit_paste.png differ diff --git a/data/themes/default/edit_redo.png b/data/themes/default/edit_redo.png index 254c21f3c..2be93804a 100644 Binary files a/data/themes/default/edit_redo.png and b/data/themes/default/edit_redo.png differ diff --git a/data/themes/default/edit_rename.png b/data/themes/default/edit_rename.png index aabde713b..3654e4119 100644 Binary files a/data/themes/default/edit_rename.png and b/data/themes/default/edit_rename.png differ diff --git a/data/themes/default/edit_select.png b/data/themes/default/edit_select.png index 5b957da66..cbea832eb 100644 Binary files a/data/themes/default/edit_select.png and b/data/themes/default/edit_select.png differ diff --git a/data/themes/default/edit_tangent.png b/data/themes/default/edit_tangent.png index 7bc400094..55fc3aaad 100644 Binary files a/data/themes/default/edit_tangent.png and b/data/themes/default/edit_tangent.png differ diff --git a/data/themes/default/edit_undo.png b/data/themes/default/edit_undo.png index 63cf12a3c..41c7f281f 100644 Binary files a/data/themes/default/edit_undo.png and b/data/themes/default/edit_undo.png differ diff --git a/data/themes/default/effect_plugin.png b/data/themes/default/effect_plugin.png index 4c3120379..22f83ac8c 100644 Binary files a/data/themes/default/effect_plugin.png and b/data/themes/default/effect_plugin.png differ diff --git a/data/themes/default/env_lfo_tab.png b/data/themes/default/env_lfo_tab.png index 8916ea44a..86060c228 100644 Binary files a/data/themes/default/env_lfo_tab.png and b/data/themes/default/env_lfo_tab.png differ diff --git a/data/themes/default/envelope_graph.png b/data/themes/default/envelope_graph.png index fcc3ae97c..26cc3e156 100644 Binary files a/data/themes/default/envelope_graph.png and b/data/themes/default/envelope_graph.png differ diff --git a/data/themes/default/error.png b/data/themes/default/error.png index e46baed7c..af245eb89 100644 Binary files a/data/themes/default/error.png and b/data/themes/default/error.png differ diff --git a/data/themes/default/exit.png b/data/themes/default/exit.png index f7b81c7f7..0201447f6 100644 Binary files a/data/themes/default/exit.png and b/data/themes/default/exit.png differ diff --git a/data/themes/default/exp_wave_active.png b/data/themes/default/exp_wave_active.png index c07523cb5..ba054d017 100644 Binary files a/data/themes/default/exp_wave_active.png and b/data/themes/default/exp_wave_active.png differ diff --git a/data/themes/default/exp_wave_inactive.png b/data/themes/default/exp_wave_inactive.png index f67b31f2d..00f835fa2 100644 Binary files a/data/themes/default/exp_wave_inactive.png and b/data/themes/default/exp_wave_inactive.png differ diff --git a/data/themes/default/factory_files.png b/data/themes/default/factory_files.png index 249a32eea..155597158 100644 Binary files a/data/themes/default/factory_files.png and b/data/themes/default/factory_files.png differ diff --git a/data/themes/default/fader_knob.png b/data/themes/default/fader_knob.png index 866cd8634..2190451d8 100644 Binary files a/data/themes/default/fader_knob.png and b/data/themes/default/fader_knob.png differ diff --git a/data/themes/default/file.png b/data/themes/default/file.png index 15a0478dd..52209e35f 100644 Binary files a/data/themes/default/file.png and b/data/themes/default/file.png differ diff --git a/data/themes/default/fill.png b/data/themes/default/fill.png index 145667350..f61b99c2c 100644 Binary files a/data/themes/default/fill.png and b/data/themes/default/fill.png differ diff --git a/data/themes/default/filter_2lp.png b/data/themes/default/filter_2lp.png index 1e3264561..7ba083ce3 100644 Binary files a/data/themes/default/filter_2lp.png and b/data/themes/default/filter_2lp.png differ diff --git a/data/themes/default/filter_ap.png b/data/themes/default/filter_ap.png index 389e84704..1319e1a0f 100644 Binary files a/data/themes/default/filter_ap.png and b/data/themes/default/filter_ap.png differ diff --git a/data/themes/default/filter_bp.png b/data/themes/default/filter_bp.png index 127e34327..68a2ed14c 100644 Binary files a/data/themes/default/filter_bp.png and b/data/themes/default/filter_bp.png differ diff --git a/data/themes/default/filter_hp.png b/data/themes/default/filter_hp.png index 268f77d2c..c7c598b83 100644 Binary files a/data/themes/default/filter_hp.png and b/data/themes/default/filter_hp.png differ diff --git a/data/themes/default/filter_lp.png b/data/themes/default/filter_lp.png index 46aa4b7e3..5f28b7e94 100644 Binary files a/data/themes/default/filter_lp.png and b/data/themes/default/filter_lp.png differ diff --git a/data/themes/default/filter_notch.png b/data/themes/default/filter_notch.png index 84852e0ce..4caac66bd 100644 Binary files a/data/themes/default/filter_notch.png and b/data/themes/default/filter_notch.png differ diff --git a/data/themes/default/flip_x.png b/data/themes/default/flip_x.png index 3cf1516ad..7ad37395e 100644 Binary files a/data/themes/default/flip_x.png and b/data/themes/default/flip_x.png differ diff --git a/data/themes/default/flip_y.png b/data/themes/default/flip_y.png index b7a01f010..5a1809d36 100644 Binary files a/data/themes/default/flip_y.png and b/data/themes/default/flip_y.png differ diff --git a/data/themes/default/folder.png b/data/themes/default/folder.png index a721c7f36..19c9a2bb3 100644 Binary files a/data/themes/default/folder.png and b/data/themes/default/folder.png differ diff --git a/data/themes/default/folder_locked.png b/data/themes/default/folder_locked.png index 34b3ddebe..62fb88692 100644 Binary files a/data/themes/default/folder_locked.png and b/data/themes/default/folder_locked.png differ diff --git a/data/themes/default/folder_opened.png b/data/themes/default/folder_opened.png index dd88948da..aa8bb9b83 100644 Binary files a/data/themes/default/folder_opened.png and b/data/themes/default/folder_opened.png differ diff --git a/data/themes/default/fullscreen.png b/data/themes/default/fullscreen.png index 56f552e10..473fa1964 100755 Binary files a/data/themes/default/fullscreen.png and b/data/themes/default/fullscreen.png differ diff --git a/data/themes/default/func_tab.png b/data/themes/default/func_tab.png index 8776571cd..90f2991e1 100644 Binary files a/data/themes/default/func_tab.png and b/data/themes/default/func_tab.png differ diff --git a/data/themes/default/fx_tab.png b/data/themes/default/fx_tab.png index 58fbcb9bd..c56c2b519 100644 Binary files a/data/themes/default/fx_tab.png and b/data/themes/default/fx_tab.png differ diff --git a/data/themes/default/ghost_note.png b/data/themes/default/ghost_note.png index 9871fcf0a..2ebc7f1d6 100644 Binary files a/data/themes/default/ghost_note.png and b/data/themes/default/ghost_note.png differ diff --git a/data/themes/default/glue.png b/data/themes/default/glue.png index de611b4bc..81d778f06 100644 Binary files a/data/themes/default/glue.png and b/data/themes/default/glue.png differ diff --git a/data/themes/default/gridmode.png b/data/themes/default/gridmode.png index f018b6c2f..b805c296e 100644 Binary files a/data/themes/default/gridmode.png and b/data/themes/default/gridmode.png differ diff --git a/data/themes/default/hand.png b/data/themes/default/hand.png index 26fefab31..c6d9a0789 100644 Binary files a/data/themes/default/hand.png and b/data/themes/default/hand.png differ diff --git a/data/themes/default/help.png b/data/themes/default/help.png index 0547c68d0..ade343ed3 100644 Binary files a/data/themes/default/help.png and b/data/themes/default/help.png differ diff --git a/data/themes/default/hint.png b/data/themes/default/hint.png index 70edba0e7..e4236224e 100644 Binary files a/data/themes/default/hint.png and b/data/themes/default/hint.png differ diff --git a/data/themes/default/home.png b/data/themes/default/home.png index 09e84555e..6f493f695 100644 Binary files a/data/themes/default/home.png and b/data/themes/default/home.png differ diff --git a/data/themes/default/horizontal_slider.png b/data/themes/default/horizontal_slider.png index 24f6098e5..eb94d1344 100644 Binary files a/data/themes/default/horizontal_slider.png and b/data/themes/default/horizontal_slider.png differ diff --git a/data/themes/default/hq_mode.png b/data/themes/default/hq_mode.png index 48cb5f822..fddf9901d 100644 Binary files a/data/themes/default/hq_mode.png and b/data/themes/default/hq_mode.png differ diff --git a/data/themes/default/icon.png b/data/themes/default/icon.png index ec881aacf..bba4b8619 100644 Binary files a/data/themes/default/icon.png and b/data/themes/default/icon.png differ diff --git a/data/themes/default/icon_small.png b/data/themes/default/icon_small.png index fd74011f9..1a1ee3356 100644 Binary files a/data/themes/default/icon_small.png and b/data/themes/default/icon_small.png differ diff --git a/data/themes/default/ignore.png b/data/themes/default/ignore.png index 9e0e3f876..9b17f33f0 100644 Binary files a/data/themes/default/ignore.png and b/data/themes/default/ignore.png differ diff --git a/data/themes/default/insert_bar.png b/data/themes/default/insert_bar.png index c7b7ddc79..fc343b1de 100644 Binary files a/data/themes/default/insert_bar.png and b/data/themes/default/insert_bar.png differ diff --git a/data/themes/default/instrument_track.png b/data/themes/default/instrument_track.png index 4ee97700a..2d4e3c059 100644 Binary files a/data/themes/default/instrument_track.png and b/data/themes/default/instrument_track.png differ diff --git a/data/themes/default/keep_stop_position.png b/data/themes/default/keep_stop_position.png index 7811e104b..7405afea3 100644 Binary files a/data/themes/default/keep_stop_position.png and b/data/themes/default/keep_stop_position.png differ diff --git a/data/themes/default/knob01.png b/data/themes/default/knob01.png index 144afce6d..bac86e295 100644 Binary files a/data/themes/default/knob01.png and b/data/themes/default/knob01.png differ diff --git a/data/themes/default/knob02.png b/data/themes/default/knob02.png index eda24ef41..ae2af241f 100644 Binary files a/data/themes/default/knob02.png and b/data/themes/default/knob02.png differ diff --git a/data/themes/default/knob03.png b/data/themes/default/knob03.png index 015319486..4a946aa9f 100644 Binary files a/data/themes/default/knob03.png and b/data/themes/default/knob03.png differ diff --git a/data/themes/default/knob05.png b/data/themes/default/knob05.png index e0b688ac4..c034d16f0 100644 Binary files a/data/themes/default/knob05.png and b/data/themes/default/knob05.png differ diff --git a/data/themes/default/lcd_11green.png b/data/themes/default/lcd_11green.png index 32e923fe8..c46f15bb2 100644 Binary files a/data/themes/default/lcd_11green.png and b/data/themes/default/lcd_11green.png differ diff --git a/data/themes/default/lcd_11green_dot.png b/data/themes/default/lcd_11green_dot.png index 9f5a660d3..a8a031840 100644 Binary files a/data/themes/default/lcd_11green_dot.png and b/data/themes/default/lcd_11green_dot.png differ diff --git a/data/themes/default/lcd_19green.png b/data/themes/default/lcd_19green.png index 708987c34..f824c8bc7 100644 Binary files a/data/themes/default/lcd_19green.png and b/data/themes/default/lcd_19green.png differ diff --git a/data/themes/default/lcd_19green_dot.png b/data/themes/default/lcd_19green_dot.png index 2f4a8cf99..e4b171f46 100644 Binary files a/data/themes/default/lcd_19green_dot.png and b/data/themes/default/lcd_19green_dot.png differ diff --git a/data/themes/default/lcd_19pink_dot.png b/data/themes/default/lcd_19pink_dot.png index 5b625360a..fe726503c 100644 Binary files a/data/themes/default/lcd_19pink_dot.png and b/data/themes/default/lcd_19pink_dot.png differ diff --git a/data/themes/default/lcd_19purple.png b/data/themes/default/lcd_19purple.png index 35ecc4ace..d049d606e 100644 Binary files a/data/themes/default/lcd_19purple.png and b/data/themes/default/lcd_19purple.png differ diff --git a/data/themes/default/lcd_19purple_dot.png b/data/themes/default/lcd_19purple_dot.png index 6582d8c20..f5a963982 100644 Binary files a/data/themes/default/lcd_19purple_dot.png and b/data/themes/default/lcd_19purple_dot.png differ diff --git a/data/themes/default/lcd_19red.png b/data/themes/default/lcd_19red.png index e4c4a1f72..4aaf729f1 100644 Binary files a/data/themes/default/lcd_19red.png and b/data/themes/default/lcd_19red.png differ diff --git a/data/themes/default/lcd_19red_dot.png b/data/themes/default/lcd_19red_dot.png index 430768f3e..bd6d2470c 100644 Binary files a/data/themes/default/lcd_19red_dot.png and b/data/themes/default/lcd_19red_dot.png differ diff --git a/data/themes/default/lcd_21pink.png b/data/themes/default/lcd_21pink.png index 719730427..5d7bf0509 100644 Binary files a/data/themes/default/lcd_21pink.png and b/data/themes/default/lcd_21pink.png differ diff --git a/data/themes/default/led_blue.png b/data/themes/default/led_blue.png index 9a703acfc..3134c24da 100644 Binary files a/data/themes/default/led_blue.png and b/data/themes/default/led_blue.png differ diff --git a/data/themes/default/led_green.png b/data/themes/default/led_green.png index 8db24546b..75be36df8 100644 Binary files a/data/themes/default/led_green.png and b/data/themes/default/led_green.png differ diff --git a/data/themes/default/led_off.png b/data/themes/default/led_off.png index 340ae1b24..ec05efda5 100644 Binary files a/data/themes/default/led_off.png and b/data/themes/default/led_off.png differ diff --git a/data/themes/default/led_red.png b/data/themes/default/led_red.png index 0ab892827..53ac1dcbd 100644 Binary files a/data/themes/default/led_red.png and b/data/themes/default/led_red.png differ diff --git a/data/themes/default/led_yellow.png b/data/themes/default/led_yellow.png index 9a703acfc..3134c24da 100644 Binary files a/data/themes/default/led_yellow.png and b/data/themes/default/led_yellow.png differ diff --git a/data/themes/default/lfo_controller_artwork.png b/data/themes/default/lfo_controller_artwork.png index 3928db24c..65c8e8146 100644 Binary files a/data/themes/default/lfo_controller_artwork.png and b/data/themes/default/lfo_controller_artwork.png differ diff --git a/data/themes/default/lfo_d100_active.png b/data/themes/default/lfo_d100_active.png index 575d4ac0d..7a4b08138 100644 Binary files a/data/themes/default/lfo_d100_active.png and b/data/themes/default/lfo_d100_active.png differ diff --git a/data/themes/default/lfo_d100_inactive.png b/data/themes/default/lfo_d100_inactive.png index 6dea0cb72..0179ec376 100644 Binary files a/data/themes/default/lfo_d100_inactive.png and b/data/themes/default/lfo_d100_inactive.png differ diff --git a/data/themes/default/lfo_graph.png b/data/themes/default/lfo_graph.png index 5889edf1c..231fa8a4b 100644 Binary files a/data/themes/default/lfo_graph.png and b/data/themes/default/lfo_graph.png differ diff --git a/data/themes/default/lfo_x100_active.png b/data/themes/default/lfo_x100_active.png index 42ecf6ce6..08fe2f09a 100644 Binary files a/data/themes/default/lfo_x100_active.png and b/data/themes/default/lfo_x100_active.png differ diff --git a/data/themes/default/lfo_x100_inactive.png b/data/themes/default/lfo_x100_inactive.png index e34366804..d3225e9af 100644 Binary files a/data/themes/default/lfo_x100_inactive.png and b/data/themes/default/lfo_x100_inactive.png differ diff --git a/data/themes/default/lfo_x1_active.png b/data/themes/default/lfo_x1_active.png index 2c9922bd2..2b9e7c162 100644 Binary files a/data/themes/default/lfo_x1_active.png and b/data/themes/default/lfo_x1_active.png differ diff --git a/data/themes/default/lfo_x1_inactive.png b/data/themes/default/lfo_x1_inactive.png index b728cf8fa..13a8a5476 100644 Binary files a/data/themes/default/lfo_x1_inactive.png and b/data/themes/default/lfo_x1_inactive.png differ diff --git a/data/themes/default/loop_point.png b/data/themes/default/loop_point.png index a965f50bf..e7b6531cf 100644 Binary files a/data/themes/default/loop_point.png and b/data/themes/default/loop_point.png differ diff --git a/data/themes/default/loop_points_off.png b/data/themes/default/loop_points_off.png index a08b304dd..dddb8393c 100644 Binary files a/data/themes/default/loop_points_off.png and b/data/themes/default/loop_points_off.png differ diff --git a/data/themes/default/loop_points_on.png b/data/themes/default/loop_points_on.png index 908eccd9c..a93387ec7 100644 Binary files a/data/themes/default/loop_points_on.png and b/data/themes/default/loop_points_on.png differ diff --git a/data/themes/default/main_slider.png b/data/themes/default/main_slider.png index 4942109ee..ef560a62a 100644 Binary files a/data/themes/default/main_slider.png and b/data/themes/default/main_slider.png differ diff --git a/data/themes/default/master_pitch.png b/data/themes/default/master_pitch.png index d71c1316f..1514b1327 100644 Binary files a/data/themes/default/master_pitch.png and b/data/themes/default/master_pitch.png differ diff --git a/data/themes/default/master_volume.png b/data/themes/default/master_volume.png index 127c4526f..54c7c17fc 100644 Binary files a/data/themes/default/master_volume.png and b/data/themes/default/master_volume.png differ diff --git a/data/themes/default/max_length.png b/data/themes/default/max_length.png index 387bb7934..c7f8cda33 100644 Binary files a/data/themes/default/max_length.png and b/data/themes/default/max_length.png differ diff --git a/data/themes/default/maximize.png b/data/themes/default/maximize.png index fac7b46e9..4185b81c9 100644 Binary files a/data/themes/default/maximize.png and b/data/themes/default/maximize.png differ diff --git a/data/themes/default/metronome.png b/data/themes/default/metronome.png index 67e6a3503..6969cb5cf 100644 Binary files a/data/themes/default/metronome.png and b/data/themes/default/metronome.png differ diff --git a/data/themes/default/microtuner.png b/data/themes/default/microtuner.png index c197ba1ab..77a36fccf 100644 Binary files a/data/themes/default/microtuner.png and b/data/themes/default/microtuner.png differ diff --git a/data/themes/default/midi_cc_rack.png b/data/themes/default/midi_cc_rack.png index 1fe8bb9cb..e595816ba 100644 Binary files a/data/themes/default/midi_cc_rack.png and b/data/themes/default/midi_cc_rack.png differ diff --git a/data/themes/default/midi_file.png b/data/themes/default/midi_file.png index 4fa4f647e..8f4f093e0 100644 Binary files a/data/themes/default/midi_file.png and b/data/themes/default/midi_file.png differ diff --git a/data/themes/default/midi_tab.png b/data/themes/default/midi_tab.png index 6a006f6b1..0ad3e3c93 100644 Binary files a/data/themes/default/midi_tab.png and b/data/themes/default/midi_tab.png differ diff --git a/data/themes/default/min_length.png b/data/themes/default/min_length.png index 7dc67bdb0..00e8bc0fe 100644 Binary files a/data/themes/default/min_length.png and b/data/themes/default/min_length.png differ diff --git a/data/themes/default/misc_tab.png b/data/themes/default/misc_tab.png index efb0d8f41..5538a2528 100644 Binary files a/data/themes/default/misc_tab.png and b/data/themes/default/misc_tab.png differ diff --git a/data/themes/default/mixer.png b/data/themes/default/mixer.png index 1aae5fbae..c92cbdd10 100644 Binary files a/data/themes/default/mixer.png and b/data/themes/default/mixer.png differ diff --git a/data/themes/default/mixer_send_off.png b/data/themes/default/mixer_send_off.png index f4fd4cc85..b99b89171 100644 Binary files a/data/themes/default/mixer_send_off.png and b/data/themes/default/mixer_send_off.png differ diff --git a/data/themes/default/mixer_send_on.png b/data/themes/default/mixer_send_on.png index 476678e3e..1f0e534ca 100644 Binary files a/data/themes/default/mixer_send_on.png and b/data/themes/default/mixer_send_on.png differ diff --git a/data/themes/default/moog_saw_wave_active.png b/data/themes/default/moog_saw_wave_active.png index 3e5143471..922a44a75 100644 Binary files a/data/themes/default/moog_saw_wave_active.png and b/data/themes/default/moog_saw_wave_active.png differ diff --git a/data/themes/default/moog_saw_wave_inactive.png b/data/themes/default/moog_saw_wave_inactive.png index 4706d53e8..4085b6589 100644 Binary files a/data/themes/default/moog_saw_wave_inactive.png and b/data/themes/default/moog_saw_wave_inactive.png differ diff --git a/data/themes/default/mute_active.svg b/data/themes/default/mute_active.svg new file mode 100644 index 000000000..600144697 --- /dev/null +++ b/data/themes/default/mute_active.svg @@ -0,0 +1,37 @@ + + + LMMS mute button (active) + + + + + LMMS mute button (active) + + + Rebecca Noel Ati, Stakeout Punch + + + + + + + + + + + + + + + diff --git a/data/themes/default/mute_inactive.svg b/data/themes/default/mute_inactive.svg new file mode 100644 index 000000000..6042cc767 --- /dev/null +++ b/data/themes/default/mute_inactive.svg @@ -0,0 +1,37 @@ + + + LMMS mute button (inactive) + + + + + LMMS mute button (inactive) + + + Rebecca Noel Ati, Stakeout Punch + + + + + + + + + + + + + + + diff --git a/data/themes/default/muted.png b/data/themes/default/muted.png index db16d8c84..64a29a95e 100644 Binary files a/data/themes/default/muted.png and b/data/themes/default/muted.png differ diff --git a/data/themes/default/new_channel.png b/data/themes/default/new_channel.png index ccaa70d4e..1caa6c133 100644 Binary files a/data/themes/default/new_channel.png and b/data/themes/default/new_channel.png differ diff --git a/data/themes/default/note.png b/data/themes/default/note.png index 0f25ccd6b..c9b02c349 100644 Binary files a/data/themes/default/note.png and b/data/themes/default/note.png differ diff --git a/data/themes/default/note_double_whole.png b/data/themes/default/note_double_whole.png index de80db29f..868adacd5 100644 Binary files a/data/themes/default/note_double_whole.png and b/data/themes/default/note_double_whole.png differ diff --git a/data/themes/default/note_eight.png b/data/themes/default/note_eight.png index 607218516..7e36bf84a 100644 Binary files a/data/themes/default/note_eight.png and b/data/themes/default/note_eight.png differ diff --git a/data/themes/default/note_eighth.png b/data/themes/default/note_eighth.png index fda9bcfb6..7e36bf84a 100644 Binary files a/data/themes/default/note_eighth.png and b/data/themes/default/note_eighth.png differ diff --git a/data/themes/default/note_half.png b/data/themes/default/note_half.png index 51c7ff6ab..8b039b2eb 100644 Binary files a/data/themes/default/note_half.png and b/data/themes/default/note_half.png differ diff --git a/data/themes/default/note_none.png b/data/themes/default/note_none.png index ff31e3364..0d19cf375 100644 Binary files a/data/themes/default/note_none.png and b/data/themes/default/note_none.png differ diff --git a/data/themes/default/note_quarter.png b/data/themes/default/note_quarter.png index 3e2ecbbc0..a544e1f85 100644 Binary files a/data/themes/default/note_quarter.png and b/data/themes/default/note_quarter.png differ diff --git a/data/themes/default/note_sixteenth.png b/data/themes/default/note_sixteenth.png index 99045dda2..236f7c4ae 100644 Binary files a/data/themes/default/note_sixteenth.png and b/data/themes/default/note_sixteenth.png differ diff --git a/data/themes/default/note_thirtysecond.png b/data/themes/default/note_thirtysecond.png index 15bf2ce34..0f0e919cb 100644 Binary files a/data/themes/default/note_thirtysecond.png and b/data/themes/default/note_thirtysecond.png differ diff --git a/data/themes/default/note_tripleteighth.png b/data/themes/default/note_tripleteighth.png index 41f832ca3..e551483c9 100644 Binary files a/data/themes/default/note_tripleteighth.png and b/data/themes/default/note_tripleteighth.png differ diff --git a/data/themes/default/note_triplethalf.png b/data/themes/default/note_triplethalf.png index ce37f6e53..0fc509120 100644 Binary files a/data/themes/default/note_triplethalf.png and b/data/themes/default/note_triplethalf.png differ diff --git a/data/themes/default/note_tripletquarter.png b/data/themes/default/note_tripletquarter.png index 6b4bc5179..94727c235 100644 Binary files a/data/themes/default/note_tripletquarter.png and b/data/themes/default/note_tripletquarter.png differ diff --git a/data/themes/default/note_tripletsixteenth.png b/data/themes/default/note_tripletsixteenth.png index 8126660b0..56356390b 100644 Binary files a/data/themes/default/note_tripletsixteenth.png and b/data/themes/default/note_tripletsixteenth.png differ diff --git a/data/themes/default/note_tripletthirtysecond.png b/data/themes/default/note_tripletthirtysecond.png index a3a131a39..389d65134 100644 Binary files a/data/themes/default/note_tripletthirtysecond.png and b/data/themes/default/note_tripletthirtysecond.png differ diff --git a/data/themes/default/note_whole.png b/data/themes/default/note_whole.png index 49874feb9..a4be7ff50 100644 Binary files a/data/themes/default/note_whole.png and b/data/themes/default/note_whole.png differ diff --git a/data/themes/default/open_branch.png b/data/themes/default/open_branch.png index 5bbd5aa4e..70096accc 100755 Binary files a/data/themes/default/open_branch.png and b/data/themes/default/open_branch.png differ diff --git a/data/themes/default/output_graph.png b/data/themes/default/output_graph.png index 1bc5ffed6..0fde57775 100644 Binary files a/data/themes/default/output_graph.png and b/data/themes/default/output_graph.png differ diff --git a/data/themes/default/pattern_track.png b/data/themes/default/pattern_track.png index 78cb1cc32..cc3d7ce9a 100644 Binary files a/data/themes/default/pattern_track.png and b/data/themes/default/pattern_track.png differ diff --git a/data/themes/default/pattern_track_btn.png b/data/themes/default/pattern_track_btn.png index 85d5dcd4a..cc3d7ce9a 100644 Binary files a/data/themes/default/pattern_track_btn.png and b/data/themes/default/pattern_track_btn.png differ diff --git a/data/themes/default/pause.png b/data/themes/default/pause.png index f785273f1..1da0e6ceb 100644 Binary files a/data/themes/default/pause.png and b/data/themes/default/pause.png differ diff --git a/data/themes/default/piano.png b/data/themes/default/piano.png index 4ee97700a..2d4e3c059 100644 Binary files a/data/themes/default/piano.png and b/data/themes/default/piano.png differ diff --git a/data/themes/default/play.png b/data/themes/default/play.png index 7f4ead575..9b9f11b44 100644 Binary files a/data/themes/default/play.png and b/data/themes/default/play.png differ diff --git a/data/themes/default/playpos_marker.png b/data/themes/default/playpos_marker.png index fb4befbb0..6db3b27ea 100644 Binary files a/data/themes/default/playpos_marker.png and b/data/themes/default/playpos_marker.png differ diff --git a/data/themes/default/plugin_tab.png b/data/themes/default/plugin_tab.png index 788882f05..57ac9ad5a 100644 Binary files a/data/themes/default/plugin_tab.png and b/data/themes/default/plugin_tab.png differ diff --git a/data/themes/default/plugins.png b/data/themes/default/plugins.png index b9c6c93e1..aeea851d6 100644 Binary files a/data/themes/default/plugins.png and b/data/themes/default/plugins.png differ diff --git a/data/themes/default/ports.png b/data/themes/default/ports.png index 6537a4fe2..093be09ff 100644 Binary files a/data/themes/default/ports.png and b/data/themes/default/ports.png differ diff --git a/data/themes/default/pr_black_key.png b/data/themes/default/pr_black_key.png index 6ecc00f97..c3ced5ac1 100644 Binary files a/data/themes/default/pr_black_key.png and b/data/themes/default/pr_black_key.png differ diff --git a/data/themes/default/pr_black_key_pressed.png b/data/themes/default/pr_black_key_pressed.png index ef59d096e..2771ab7c9 100644 Binary files a/data/themes/default/pr_black_key_pressed.png and b/data/themes/default/pr_black_key_pressed.png differ diff --git a/data/themes/default/pr_white_key_big.png b/data/themes/default/pr_white_key_big.png index a2711bfc4..6d2c13d15 100644 Binary files a/data/themes/default/pr_white_key_big.png and b/data/themes/default/pr_white_key_big.png differ diff --git a/data/themes/default/pr_white_key_big_pressed.png b/data/themes/default/pr_white_key_big_pressed.png index 421a783fc..54c197520 100644 Binary files a/data/themes/default/pr_white_key_big_pressed.png and b/data/themes/default/pr_white_key_big_pressed.png differ diff --git a/data/themes/default/pr_white_key_small.png b/data/themes/default/pr_white_key_small.png index 2d644011d..369344ddc 100644 Binary files a/data/themes/default/pr_white_key_small.png and b/data/themes/default/pr_white_key_small.png differ diff --git a/data/themes/default/pr_white_key_small_pressed.png b/data/themes/default/pr_white_key_small_pressed.png index d98c00134..ff7826e85 100644 Binary files a/data/themes/default/pr_white_key_small_pressed.png and b/data/themes/default/pr_white_key_small_pressed.png differ diff --git a/data/themes/default/preset_file.png b/data/themes/default/preset_file.png index 8dbacf7aa..8cc19b46b 100644 Binary files a/data/themes/default/preset_file.png and b/data/themes/default/preset_file.png differ diff --git a/data/themes/default/progression_cubic_hermite.png b/data/themes/default/progression_cubic_hermite.png index 044814845..02adfc0c8 100644 Binary files a/data/themes/default/progression_cubic_hermite.png and b/data/themes/default/progression_cubic_hermite.png differ diff --git a/data/themes/default/progression_discrete.png b/data/themes/default/progression_discrete.png index 741a618d4..2dd081f39 100644 Binary files a/data/themes/default/progression_discrete.png and b/data/themes/default/progression_discrete.png differ diff --git a/data/themes/default/progression_linear.png b/data/themes/default/progression_linear.png index 04f830acc..53112a592 100644 Binary files a/data/themes/default/progression_linear.png and b/data/themes/default/progression_linear.png differ diff --git a/data/themes/default/project_export.png b/data/themes/default/project_export.png index 01da11576..eb8c1e6d7 100644 Binary files a/data/themes/default/project_export.png and b/data/themes/default/project_export.png differ diff --git a/data/themes/default/project_file.png b/data/themes/default/project_file.png index 144cbc626..3c2b698a6 100644 Binary files a/data/themes/default/project_file.png and b/data/themes/default/project_file.png differ diff --git a/data/themes/default/project_import.png b/data/themes/default/project_import.png index 37cca5f59..997c8718b 100644 Binary files a/data/themes/default/project_import.png and b/data/themes/default/project_import.png differ diff --git a/data/themes/default/project_new.png b/data/themes/default/project_new.png index a3639affc..fd7a3453a 100644 Binary files a/data/themes/default/project_new.png and b/data/themes/default/project_new.png differ diff --git a/data/themes/default/project_new_from_template.png b/data/themes/default/project_new_from_template.png index ecbc4ea7f..3f4d9b425 100644 Binary files a/data/themes/default/project_new_from_template.png and b/data/themes/default/project_new_from_template.png differ diff --git a/data/themes/default/project_notes.png b/data/themes/default/project_notes.png index 5e2262392..5c54f8363 100644 Binary files a/data/themes/default/project_notes.png and b/data/themes/default/project_notes.png differ diff --git a/data/themes/default/project_open.png b/data/themes/default/project_open.png index b8b5838df..8e5067584 100644 Binary files a/data/themes/default/project_open.png and b/data/themes/default/project_open.png differ diff --git a/data/themes/default/project_open_recent.png b/data/themes/default/project_open_recent.png index dcce6456b..50acc3e74 100644 Binary files a/data/themes/default/project_open_recent.png and b/data/themes/default/project_open_recent.png differ diff --git a/data/themes/default/project_save.png b/data/themes/default/project_save.png index 2546ad753..19da317f5 100644 Binary files a/data/themes/default/project_save.png and b/data/themes/default/project_save.png differ diff --git a/data/themes/default/project_saveas.png b/data/themes/default/project_saveas.png index 2546ad753..19da317f5 100644 Binary files a/data/themes/default/project_saveas.png and b/data/themes/default/project_saveas.png differ diff --git a/data/themes/default/proportional_snap.png b/data/themes/default/proportional_snap.png index 66a0bb049..485ced02b 100644 Binary files a/data/themes/default/proportional_snap.png and b/data/themes/default/proportional_snap.png differ diff --git a/data/themes/default/quantize.png b/data/themes/default/quantize.png index 3a2a0a861..afd45754c 100644 Binary files a/data/themes/default/quantize.png and b/data/themes/default/quantize.png differ diff --git a/data/themes/default/random_wave_active.png b/data/themes/default/random_wave_active.png index 62e5aac07..33ada7de5 100644 Binary files a/data/themes/default/random_wave_active.png and b/data/themes/default/random_wave_active.png differ diff --git a/data/themes/default/random_wave_inactive.png b/data/themes/default/random_wave_inactive.png index 871174f06..09b3aedb8 100644 Binary files a/data/themes/default/random_wave_inactive.png and b/data/themes/default/random_wave_inactive.png differ diff --git a/data/themes/default/receive_bg_arrow.png b/data/themes/default/receive_bg_arrow.png index 368a1bf15..53c35de2f 100644 Binary files a/data/themes/default/receive_bg_arrow.png and b/data/themes/default/receive_bg_arrow.png differ diff --git a/data/themes/default/record.png b/data/themes/default/record.png index 2e067293d..ddd31bda8 100644 Binary files a/data/themes/default/record.png and b/data/themes/default/record.png differ diff --git a/data/themes/default/record_accompany.png b/data/themes/default/record_accompany.png index f56a83d37..97c416e7e 100644 Binary files a/data/themes/default/record_accompany.png and b/data/themes/default/record_accompany.png differ diff --git a/data/themes/default/record_step_off.png b/data/themes/default/record_step_off.png index 8f81605f4..738e6d564 100644 Binary files a/data/themes/default/record_step_off.png and b/data/themes/default/record_step_off.png differ diff --git a/data/themes/default/record_step_on.png b/data/themes/default/record_step_on.png index 051a2baf7..01b05e1ec 100644 Binary files a/data/themes/default/record_step_on.png and b/data/themes/default/record_step_on.png differ diff --git a/data/themes/default/recover.png b/data/themes/default/recover.png index 42d8be333..1e526e626 100644 Binary files a/data/themes/default/recover.png and b/data/themes/default/recover.png differ diff --git a/data/themes/default/reload.png b/data/themes/default/reload.png index 15de6cdc1..88e7032f8 100644 Binary files a/data/themes/default/reload.png and b/data/themes/default/reload.png differ diff --git a/data/themes/default/remove_bar.png b/data/themes/default/remove_bar.png index 46845e599..0944249fd 100644 Binary files a/data/themes/default/remove_bar.png and b/data/themes/default/remove_bar.png differ diff --git a/data/themes/default/restore.png b/data/themes/default/restore.png index 4492e17a6..bbba08701 100644 Binary files a/data/themes/default/restore.png and b/data/themes/default/restore.png differ diff --git a/data/themes/default/round_square_wave_active.png b/data/themes/default/round_square_wave_active.png index bd513adcf..40b9f4ec0 100644 Binary files a/data/themes/default/round_square_wave_active.png and b/data/themes/default/round_square_wave_active.png differ diff --git a/data/themes/default/round_square_wave_inactive.png b/data/themes/default/round_square_wave_inactive.png index e0eb6403f..5a93d6a6e 100644 Binary files a/data/themes/default/round_square_wave_inactive.png and b/data/themes/default/round_square_wave_inactive.png differ diff --git a/data/themes/default/sample_file.png b/data/themes/default/sample_file.png index 1e2a95582..e4c1eecc0 100644 Binary files a/data/themes/default/sample_file.png and b/data/themes/default/sample_file.png differ diff --git a/data/themes/default/sample_track.png b/data/themes/default/sample_track.png index 468424f9a..220700a08 100644 Binary files a/data/themes/default/sample_track.png and b/data/themes/default/sample_track.png differ diff --git a/data/themes/default/saw_wave_active.png b/data/themes/default/saw_wave_active.png index 81d043541..13d73573a 100644 Binary files a/data/themes/default/saw_wave_active.png and b/data/themes/default/saw_wave_active.png differ diff --git a/data/themes/default/saw_wave_inactive.png b/data/themes/default/saw_wave_inactive.png index 3d548fe81..2acae7f7d 100644 Binary files a/data/themes/default/saw_wave_inactive.png and b/data/themes/default/saw_wave_inactive.png differ diff --git a/data/themes/default/sbarrow_down.png b/data/themes/default/sbarrow_down.png index a53757fb9..10f4b79d1 100644 Binary files a/data/themes/default/sbarrow_down.png and b/data/themes/default/sbarrow_down.png differ diff --git a/data/themes/default/sbarrow_down_d.png b/data/themes/default/sbarrow_down_d.png index 9dd44490e..232e9ac48 100644 Binary files a/data/themes/default/sbarrow_down_d.png and b/data/themes/default/sbarrow_down_d.png differ diff --git a/data/themes/default/sbarrow_left.png b/data/themes/default/sbarrow_left.png index 3d16a73f3..83aa9a407 100644 Binary files a/data/themes/default/sbarrow_left.png and b/data/themes/default/sbarrow_left.png differ diff --git a/data/themes/default/sbarrow_left_d.png b/data/themes/default/sbarrow_left_d.png index 8dd5a1639..d07b8f1f3 100644 Binary files a/data/themes/default/sbarrow_left_d.png and b/data/themes/default/sbarrow_left_d.png differ diff --git a/data/themes/default/sbarrow_right.png b/data/themes/default/sbarrow_right.png index ce4236e99..8c2674be3 100644 Binary files a/data/themes/default/sbarrow_right.png and b/data/themes/default/sbarrow_right.png differ diff --git a/data/themes/default/sbarrow_right_d.png b/data/themes/default/sbarrow_right_d.png index ad1f00200..a73f9577a 100644 Binary files a/data/themes/default/sbarrow_right_d.png and b/data/themes/default/sbarrow_right_d.png differ diff --git a/data/themes/default/sbarrow_up.png b/data/themes/default/sbarrow_up.png index 1d7579e10..4d571ffd6 100644 Binary files a/data/themes/default/sbarrow_up.png and b/data/themes/default/sbarrow_up.png differ diff --git a/data/themes/default/sbarrow_up_d.png b/data/themes/default/sbarrow_up_d.png index 7d752210e..d07b8f1f3 100644 Binary files a/data/themes/default/sbarrow_up_d.png and b/data/themes/default/sbarrow_up_d.png differ diff --git a/data/themes/default/scale.png b/data/themes/default/scale.png index 1610b2eba..2d2cdddff 100644 Binary files a/data/themes/default/scale.png and b/data/themes/default/scale.png differ diff --git a/data/themes/default/send_bg_arrow.png b/data/themes/default/send_bg_arrow.png index 311505b68..e356be7f9 100644 Binary files a/data/themes/default/send_bg_arrow.png and b/data/themes/default/send_bg_arrow.png differ diff --git a/data/themes/default/setup_audio.png b/data/themes/default/setup_audio.png index 5085c8754..e5a126920 100644 Binary files a/data/themes/default/setup_audio.png and b/data/themes/default/setup_audio.png differ diff --git a/data/themes/default/setup_directories.png b/data/themes/default/setup_directories.png index 895fde883..09fadcd62 100644 Binary files a/data/themes/default/setup_directories.png and b/data/themes/default/setup_directories.png differ diff --git a/data/themes/default/setup_general.png b/data/themes/default/setup_general.png index 834639973..587c0151c 100644 Binary files a/data/themes/default/setup_general.png and b/data/themes/default/setup_general.png differ diff --git a/data/themes/default/setup_midi.png b/data/themes/default/setup_midi.png index 47f57a8b0..ae9f9baf0 100644 Binary files a/data/themes/default/setup_midi.png and b/data/themes/default/setup_midi.png differ diff --git a/data/themes/default/setup_performance.png b/data/themes/default/setup_performance.png index 74efd2f62..cfe781b88 100644 Binary files a/data/themes/default/setup_performance.png and b/data/themes/default/setup_performance.png differ diff --git a/data/themes/default/shadow_c.png b/data/themes/default/shadow_c.png index 49c844f39..16b593622 100644 Binary files a/data/themes/default/shadow_c.png and b/data/themes/default/shadow_c.png differ diff --git a/data/themes/default/shadow_p.png b/data/themes/default/shadow_p.png index 38b2c58cc..86f8a9111 100644 Binary files a/data/themes/default/shadow_p.png and b/data/themes/default/shadow_p.png differ diff --git a/data/themes/default/sin_wave_active.png b/data/themes/default/sin_wave_active.png index f7b75fe00..a914f9542 100644 Binary files a/data/themes/default/sin_wave_active.png and b/data/themes/default/sin_wave_active.png differ diff --git a/data/themes/default/sin_wave_inactive.png b/data/themes/default/sin_wave_inactive.png index e99b4022c..9baba0309 100644 Binary files a/data/themes/default/sin_wave_inactive.png and b/data/themes/default/sin_wave_inactive.png differ diff --git a/data/themes/default/solo_active.svg b/data/themes/default/solo_active.svg new file mode 100644 index 000000000..d5c151be3 --- /dev/null +++ b/data/themes/default/solo_active.svg @@ -0,0 +1,37 @@ + + + LMMS solo button (active) + + + + + LMMS solo button (active) + + + Rebecca Noel Ati, Stakeout Punch + + + + + + + + + + + + + + + diff --git a/data/themes/default/solo_inactive.svg b/data/themes/default/solo_inactive.svg new file mode 100644 index 000000000..57788c607 --- /dev/null +++ b/data/themes/default/solo_inactive.svg @@ -0,0 +1,37 @@ + + + LMMS solo button (inactive) + + + + + LMMS solo button (inactive) + + + Rebecca Noel Ati, Stakeout Punch + + + + + + + + + + + + + + + diff --git a/data/themes/default/songeditor.png b/data/themes/default/songeditor.png index 42ea784a4..f369904c1 100644 Binary files a/data/themes/default/songeditor.png and b/data/themes/default/songeditor.png differ diff --git a/data/themes/default/soundfont_file.png b/data/themes/default/soundfont_file.png index d0e6b1d47..bd4793306 100644 Binary files a/data/themes/default/soundfont_file.png and b/data/themes/default/soundfont_file.png differ diff --git a/data/themes/default/splash.png b/data/themes/default/splash.png index 74f9fdef4..2e0aae483 100644 Binary files a/data/themes/default/splash.png and b/data/themes/default/splash.png differ diff --git a/data/themes/default/square_wave_active.png b/data/themes/default/square_wave_active.png index 4c4380239..d618f05e8 100644 Binary files a/data/themes/default/square_wave_active.png and b/data/themes/default/square_wave_active.png differ diff --git a/data/themes/default/square_wave_inactive.png b/data/themes/default/square_wave_inactive.png index 601bd1acb..c7b036d6e 100644 Binary files a/data/themes/default/square_wave_inactive.png and b/data/themes/default/square_wave_inactive.png differ diff --git a/data/themes/default/step_btn_add.png b/data/themes/default/step_btn_add.png index ad1380403..46b8509f4 100644 Binary files a/data/themes/default/step_btn_add.png and b/data/themes/default/step_btn_add.png differ diff --git a/data/themes/default/step_btn_duplicate.png b/data/themes/default/step_btn_duplicate.png index 3ca1ca7c6..c652ab6ba 100644 Binary files a/data/themes/default/step_btn_duplicate.png and b/data/themes/default/step_btn_duplicate.png differ diff --git a/data/themes/default/step_btn_off.png b/data/themes/default/step_btn_off.png index 646124a85..da02f99c9 100644 Binary files a/data/themes/default/step_btn_off.png and b/data/themes/default/step_btn_off.png differ diff --git a/data/themes/default/step_btn_off_light.png b/data/themes/default/step_btn_off_light.png index 17a158eb4..39903f379 100644 Binary files a/data/themes/default/step_btn_off_light.png and b/data/themes/default/step_btn_off_light.png differ diff --git a/data/themes/default/step_btn_on_0.png b/data/themes/default/step_btn_on_0.png index 6b6a66b69..64a23aca0 100644 Binary files a/data/themes/default/step_btn_on_0.png and b/data/themes/default/step_btn_on_0.png differ diff --git a/data/themes/default/step_btn_on_200.png b/data/themes/default/step_btn_on_200.png index b047afc18..cf9a0f751 100644 Binary files a/data/themes/default/step_btn_on_200.png and b/data/themes/default/step_btn_on_200.png differ diff --git a/data/themes/default/step_btn_remove.png b/data/themes/default/step_btn_remove.png index 20ff2d49f..9c6f9ca9e 100644 Binary files a/data/themes/default/step_btn_remove.png and b/data/themes/default/step_btn_remove.png differ diff --git a/data/themes/default/stepper-down-press.png b/data/themes/default/stepper-down-press.png index efdf11cee..91c1d638b 100644 Binary files a/data/themes/default/stepper-down-press.png and b/data/themes/default/stepper-down-press.png differ diff --git a/data/themes/default/stepper-down.png b/data/themes/default/stepper-down.png index a2f80e429..89a77bdc4 100644 Binary files a/data/themes/default/stepper-down.png and b/data/themes/default/stepper-down.png differ diff --git a/data/themes/default/stepper-left-press.png b/data/themes/default/stepper-left-press.png index c3bb14127..502f9021a 100644 Binary files a/data/themes/default/stepper-left-press.png and b/data/themes/default/stepper-left-press.png differ diff --git a/data/themes/default/stepper-left.png b/data/themes/default/stepper-left.png index 56530d079..b52e1b311 100644 Binary files a/data/themes/default/stepper-left.png and b/data/themes/default/stepper-left.png differ diff --git a/data/themes/default/stepper-right-press.png b/data/themes/default/stepper-right-press.png index 033eb01d4..a35cd939d 100644 Binary files a/data/themes/default/stepper-right-press.png and b/data/themes/default/stepper-right-press.png differ diff --git a/data/themes/default/stepper-right.png b/data/themes/default/stepper-right.png index 905dbbece..fd9030669 100644 Binary files a/data/themes/default/stepper-right.png and b/data/themes/default/stepper-right.png differ diff --git a/data/themes/default/stepper-up-press.png b/data/themes/default/stepper-up-press.png index d46560f58..f4525bf6a 100644 Binary files a/data/themes/default/stepper-up-press.png and b/data/themes/default/stepper-up-press.png differ diff --git a/data/themes/default/stepper-up.png b/data/themes/default/stepper-up.png index 498870888..778ee4a64 100644 Binary files a/data/themes/default/stepper-up.png and b/data/themes/default/stepper-up.png differ diff --git a/data/themes/default/stop.png b/data/themes/default/stop.png index 07a44fe42..6331cc102 100644 Binary files a/data/themes/default/stop.png and b/data/themes/default/stop.png differ diff --git a/data/themes/default/style.css b/data/themes/default/style.css index ef98c0609..184bc9b56 100644 --- a/data/themes/default/style.css +++ b/data/themes/default/style.css @@ -179,6 +179,7 @@ lmms--gui--PianoRoll { qproperty-noteModeColor: #0bd556; qproperty-noteColor: #0bd556; qproperty-stepNoteColor: #9b1313; + qproperty-currentStepNoteColor: rgb(245, 3, 139); qproperty-noteTextColor: #ffffff; qproperty-noteOpacity: 165; qproperty-noteBorders: false; /* boolean property, set false to have borderless notes */ @@ -411,7 +412,7 @@ lmms--gui--TrackContentWidget { /* gear button in tracks */ -lmms--gui--TrackOperationsWidget > QPushButton { +lmms--gui--TrackOperationsWidget QPushButton { max-height: 26px; max-width: 26px; min-height: 26px; @@ -420,7 +421,7 @@ lmms--gui--TrackOperationsWidget > QPushButton { border: none; } -lmms--gui--TrackOperationsWidget > QPushButton::menu-indicator { +lmms--gui--TrackOperationsWidget QPushButton::menu-indicator { image: url("resources:trackop.png"); subcontrol-origin: padding; subcontrol-position: center; @@ -428,8 +429,8 @@ lmms--gui--TrackOperationsWidget > QPushButton::menu-indicator { top: 1px; } -lmms--gui--TrackOperationsWidget > QPushButton::menu-indicator:pressed, -lmms--gui--TrackOperationsWidget > QPushButton::menu-indicator:checked { +lmms--gui--TrackOperationsWidget QPushButton::menu-indicator:pressed, +lmms--gui--TrackOperationsWidget QPushButton::menu-indicator:checked { image: url("resources:trackop.png"); position: relative; top: 2px; @@ -601,17 +602,11 @@ lmms--gui--TrackLabelButton:hover { background: #3B424A; border: 1px solid #515B66; border-radius: none; - font-size: 11px; - font-weight: normal; - padding: 2px 1px; } lmms--gui--TrackLabelButton:pressed { background: #262B30; border-radius: none; - font-size: 11px; - font-weight: normal; - padding: 2px 1px; } lmms--gui--TrackLabelButton:checked { @@ -619,17 +614,12 @@ lmms--gui--TrackLabelButton:checked { background: #1C1F24; background-image: url("resources:track_shadow_p.png"); border-radius: none; - font-size: 11px; - font-weight: normal; - padding: 2px 1px; } lmms--gui--TrackLabelButton:checked:pressed { border: 1px solid #2f353b; background: #0e1012; background-image: url("resources:track_shadow_p.png"); - font-size: 11px; - padding: 2px 1px; font-weight: solid; } @@ -846,6 +836,21 @@ lmms--gui--SubWindow > QPushButton:hover{ border-radius: 2px; } +/* Instrument */ + +/* Envelope graph */ +lmms--gui--EnvelopeGraph { + qproperty-noAmountColor: rgb(96, 91, 96); + qproperty-fullAmountColor: rgb(0, 255, 128); + qproperty-markerFillColor: rgb(153, 175, 255); + qproperty-markerOutlineColor: rgb(0, 0, 0); +} + +/* LFO graph */ +lmms--gui--LfoGraph { + qproperty-noAmountColor: rgb(96, 91, 96); + qproperty-fullAmountColor: rgb(0, 255, 128); +} /* Plugins */ @@ -1072,6 +1077,12 @@ lmms--gui--CompressorControlDialog lmms--gui--Knob { qproperty-lineWidth: 2; } +lmms--gui--VectorView { + qproperty-colorTrace: rgba(60, 255, 130, 255); + qproperty-colorGrid: rgba(76, 80, 84, 128); + qproperty-colorLabels: rgba(76, 80, 84, 255); +} + lmms--gui--BarModelEditor { qproperty-backgroundBrush: rgba(28, 73, 51, 255); qproperty-barBrush: rgba(17, 136, 71, 255); diff --git a/data/themes/default/tempo_sync.png b/data/themes/default/tempo_sync.png index a4a7efd67..9fdbcea10 100644 Binary files a/data/themes/default/tempo_sync.png and b/data/themes/default/tempo_sync.png differ diff --git a/data/themes/default/text_block.png b/data/themes/default/text_block.png index 7f140ba16..27014f062 100644 Binary files a/data/themes/default/text_block.png and b/data/themes/default/text_block.png differ diff --git a/data/themes/default/text_bold.png b/data/themes/default/text_bold.png index ae81c6f60..b509a48ff 100644 Binary files a/data/themes/default/text_bold.png and b/data/themes/default/text_bold.png differ diff --git a/data/themes/default/text_center.png b/data/themes/default/text_center.png index f65274624..b8211a790 100644 Binary files a/data/themes/default/text_center.png and b/data/themes/default/text_center.png differ diff --git a/data/themes/default/text_italic.png b/data/themes/default/text_italic.png index b3b72f117..0609e4c9a 100644 Binary files a/data/themes/default/text_italic.png and b/data/themes/default/text_italic.png differ diff --git a/data/themes/default/text_left.png b/data/themes/default/text_left.png index fdaa4a7fc..8fb01be93 100644 Binary files a/data/themes/default/text_left.png and b/data/themes/default/text_left.png differ diff --git a/data/themes/default/text_right.png b/data/themes/default/text_right.png index dc7310a71..8e873b917 100644 Binary files a/data/themes/default/text_right.png and b/data/themes/default/text_right.png differ diff --git a/data/themes/default/text_under.png b/data/themes/default/text_under.png index b1275366a..17806d738 100644 Binary files a/data/themes/default/text_under.png and b/data/themes/default/text_under.png differ diff --git a/data/themes/default/tool.png b/data/themes/default/tool.png index 6d818a53e..cae0f2941 100644 Binary files a/data/themes/default/tool.png and b/data/themes/default/tool.png differ diff --git a/data/themes/default/toolbar_bg.png b/data/themes/default/toolbar_bg.png index 51c3ae91c..04e548809 100644 Binary files a/data/themes/default/toolbar_bg.png and b/data/themes/default/toolbar_bg.png differ diff --git a/data/themes/default/track_op_grip.png b/data/themes/default/track_op_grip.png index 415a5713c..905bd8eb4 100644 Binary files a/data/themes/default/track_op_grip.png and b/data/themes/default/track_op_grip.png differ diff --git a/data/themes/default/track_op_grip_c.png b/data/themes/default/track_op_grip_c.png index 0faccddab..d1719810f 100644 Binary files a/data/themes/default/track_op_grip_c.png and b/data/themes/default/track_op_grip_c.png differ diff --git a/data/themes/default/track_shadow_c.png b/data/themes/default/track_shadow_c.png index c2b909be6..7e1acaf01 100644 Binary files a/data/themes/default/track_shadow_c.png and b/data/themes/default/track_shadow_c.png differ diff --git a/data/themes/default/track_shadow_p.png b/data/themes/default/track_shadow_p.png index e85b49e46..3a1bcf1c8 100644 Binary files a/data/themes/default/track_shadow_p.png and b/data/themes/default/track_shadow_p.png differ diff --git a/data/themes/default/trackop.png b/data/themes/default/trackop.png index dd200d095..a4f90e35c 100644 Binary files a/data/themes/default/trackop.png and b/data/themes/default/trackop.png differ diff --git a/data/themes/default/triangle_wave_active.png b/data/themes/default/triangle_wave_active.png index 798c1fb25..4acd00d6c 100644 Binary files a/data/themes/default/triangle_wave_active.png and b/data/themes/default/triangle_wave_active.png differ diff --git a/data/themes/default/triangle_wave_inactive.png b/data/themes/default/triangle_wave_inactive.png index a7bc8d6a2..6ca66b3bf 100644 Binary files a/data/themes/default/triangle_wave_inactive.png and b/data/themes/default/triangle_wave_inactive.png differ diff --git a/data/themes/default/tuning_tab.png b/data/themes/default/tuning_tab.png index 41c4f2d9f..9784da0bb 100644 Binary files a/data/themes/default/tuning_tab.png and b/data/themes/default/tuning_tab.png differ diff --git a/data/themes/default/uhoh.png b/data/themes/default/uhoh.png index d739e359d..115265ea5 100644 Binary files a/data/themes/default/uhoh.png and b/data/themes/default/uhoh.png differ diff --git a/data/themes/default/unavailable_sound.png b/data/themes/default/unavailable_sound.png index bd8e629f1..b455b62a4 100644 Binary files a/data/themes/default/unavailable_sound.png and b/data/themes/default/unavailable_sound.png differ diff --git a/data/themes/default/unknown_file.png b/data/themes/default/unknown_file.png index 0d01ebdf2..2ace6fd5b 100644 Binary files a/data/themes/default/unknown_file.png and b/data/themes/default/unknown_file.png differ diff --git a/data/themes/default/usr_wave_active.png b/data/themes/default/usr_wave_active.png index 01ddbfddc..d828bb925 100644 Binary files a/data/themes/default/usr_wave_active.png and b/data/themes/default/usr_wave_active.png differ diff --git a/data/themes/default/usr_wave_inactive.png b/data/themes/default/usr_wave_inactive.png index 610d76055..eb37f8b5b 100644 Binary files a/data/themes/default/usr_wave_inactive.png and b/data/themes/default/usr_wave_inactive.png differ diff --git a/data/themes/default/vst_plugin_file.png b/data/themes/default/vst_plugin_file.png index 6f5135a5f..790df54eb 100644 Binary files a/data/themes/default/vst_plugin_file.png and b/data/themes/default/vst_plugin_file.png differ diff --git a/data/themes/default/whatsthis.png b/data/themes/default/whatsthis.png index 5761d22ed..5a0dcf2d5 100644 Binary files a/data/themes/default/whatsthis.png and b/data/themes/default/whatsthis.png differ diff --git a/data/themes/default/white_key.png b/data/themes/default/white_key.png index c8e9f93be..c833b6e7a 100644 Binary files a/data/themes/default/white_key.png and b/data/themes/default/white_key.png differ diff --git a/data/themes/default/white_key_disabled.png b/data/themes/default/white_key_disabled.png index 498bccbe7..bbaa6e10b 100644 Binary files a/data/themes/default/white_key_disabled.png and b/data/themes/default/white_key_disabled.png differ diff --git a/data/themes/default/white_key_pressed.png b/data/themes/default/white_key_pressed.png index 1e7cb0d2e..b67f9959d 100644 Binary files a/data/themes/default/white_key_pressed.png and b/data/themes/default/white_key_pressed.png differ diff --git a/data/themes/default/white_noise_wave_active.png b/data/themes/default/white_noise_wave_active.png index c41d1922c..94cf8f181 100644 Binary files a/data/themes/default/white_noise_wave_active.png and b/data/themes/default/white_noise_wave_active.png differ diff --git a/data/themes/default/white_noise_wave_inactive.png b/data/themes/default/white_noise_wave_inactive.png index f4fb1a5e8..bab388157 100644 Binary files a/data/themes/default/white_noise_wave_inactive.png and b/data/themes/default/white_noise_wave_inactive.png differ diff --git a/data/themes/default/zoom.png b/data/themes/default/zoom.png index 0fea3dfda..72019ff88 100644 Binary files a/data/themes/default/zoom.png and b/data/themes/default/zoom.png differ diff --git a/data/themes/default/zoom_x.png b/data/themes/default/zoom_x.png index 49bd6c0c0..caad7a7e5 100644 Binary files a/data/themes/default/zoom_x.png and b/data/themes/default/zoom_x.png differ diff --git a/data/themes/default/zoom_y.png b/data/themes/default/zoom_y.png index f1107e0ec..0c6ba2bd8 100644 Binary files a/data/themes/default/zoom_y.png and b/data/themes/default/zoom_y.png differ diff --git a/include/AudioBusHandle.h b/include/AudioBusHandle.h new file mode 100644 index 000000000..c58cb9379 --- /dev/null +++ b/include/AudioBusHandle.h @@ -0,0 +1,110 @@ +/* + * AudioBusHandle.h - ThreadableJob between PlayHandle and MixerChannel + * + * Copyright (c) 2005-2014 Tobias Doerffel + * Copyright (c) 2025 Johannes Lorenz + * + * This file is part of LMMS - https://lmms.io + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program (see COPYING); if not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA. + * + */ + +#ifndef LMMS_AUDIO_BUS_HANDLE_H +#define LMMS_AUDIO_BUS_HANDLE_H + +#include +#include +#include + +#include "PlayHandle.h" + +namespace lmms +{ + +class EffectChain; +class FloatModel; +class BoolModel; + +/** + @brief Job between @ref PlayHandle and @ref MixerChannel + + A @ref ThreadableJob class located at the exit point of each @ref PlayHandle into a @ref MixerChannel + (or into an audio device, in case of @ref AudioJack, but this is not supported in AudioBusHandle yet). + It contains an optional @ref EffectChain which is e.g. visualized in the + @ref InstrumentTrackWindow or @ref SampleTrackWindow. + For processing, it adds all input play handles into an internal buffer, + processes the @ref EffectChain (if existing) on that buffer + and finally merges the buffer into its @ref MixerChannel. +*/ +class AudioBusHandle : public ThreadableJob +{ +public: + AudioBusHandle(const QString& name, bool hasEffectChain = true, + FloatModel* volumeModel = nullptr, FloatModel* panningModel = nullptr, + BoolModel* mutedModel = nullptr); + virtual ~AudioBusHandle(); + + SampleFrame* buffer() { return m_buffer; } + + // indicate whether JACK & Co should provide output-buffer at ext. port + bool extOutputEnabled() const { return m_extOutputEnabled; } + void setExtOutputEnabled(bool enabled); + + // next mixer-channel after this audio-bus-handle + // (-1 = none 0 = master) + mix_ch_t nextMixerChannel() const { return m_nextMixerChannel; } + void setNextMixerChannel(const mix_ch_t chnl) { m_nextMixerChannel = chnl; } + + const QString& name() const { return m_name; } + void setName(const QString& newName); + + EffectChain* effects() { return m_effects.get(); } + bool processEffects(); + + // ThreadableJob stuff + void doProcessing() override; + bool requiresProcessing() const override { return true; } + + void addPlayHandle(PlayHandle* handle); + void removePlayHandle(PlayHandle* handle); + +private: + volatile bool m_bufferUsage; + + SampleFrame* const m_buffer; + + bool m_extOutputEnabled; + mix_ch_t m_nextMixerChannel; + + QString m_name; + + std::unique_ptr m_effects; + + PlayHandleList m_playHandles; + QMutex m_playHandleLock; + + FloatModel* m_volumeModel; + FloatModel* m_panningModel; + BoolModel* m_mutedModel; + + friend class AudioEngine; + friend class AudioEngineWorkerThread; +}; + +} // namespace lmms + +#endif // LMMS_AUDIO_BUS_HANDLE_H diff --git a/include/AudioDevice.h b/include/AudioDevice.h index 376aee26b..228b1c1aa 100644 --- a/include/AudioDevice.h +++ b/include/AudioDevice.h @@ -36,7 +36,7 @@ namespace lmms { class AudioEngine; -class AudioPort; +class AudioBusHandle; class SampleFrame; @@ -57,14 +57,13 @@ public: } - // if audio-driver supports ports, classes inherting AudioPort + // if audio-driver supports ports, classes inherting AudioBusHandle // (e.g. channel-tracks) can register themselves for making // audio-driver able to collect their individual output and provide // them at a specific port - currently only supported by JACK - virtual void registerPort( AudioPort * _port ); - virtual void unregisterPort( AudioPort * _port ); - virtual void renamePort( AudioPort * _port ); - + virtual void registerPort(AudioBusHandle* port); + virtual void unregisterPort(AudioBusHandle* port); + virtual void renamePort(AudioBusHandle* port); inline bool supportsCapture() const { @@ -76,11 +75,6 @@ public: return m_sampleRate; } - ch_cnt_t channels() const - { - return m_channels; - } - void processNextBuffer(); virtual void startProcessing() @@ -109,6 +103,11 @@ protected: void clearS16Buffer( int_sample_t * _outbuf, const fpp_t _frames ); + ch_cnt_t channels() const + { + return m_channels; + } + inline void setSampleRate( const sample_rate_t _new_sr ) { m_sampleRate = _new_sr; diff --git a/include/AudioEngine.h b/include/AudioEngine.h index 6fc59bfd2..921fa1b34 100644 --- a/include/AudioEngine.h +++ b/include/AudioEngine.h @@ -33,6 +33,7 @@ #include #include +#include "AudioDevice.h" #include "lmms_basics.h" #include "SampleFrame.h" #include "LocklessList.h" @@ -46,18 +47,19 @@ namespace lmms class AudioDevice; class MidiClient; -class AudioPort; +class AudioBusHandle; class AudioEngineWorkerThread; -const fpp_t MINIMUM_BUFFER_SIZE = 32; -const fpp_t DEFAULT_BUFFER_SIZE = 256; +constexpr fpp_t MINIMUM_BUFFER_SIZE = 32; +constexpr fpp_t DEFAULT_BUFFER_SIZE = 256; +constexpr fpp_t MAXIMUM_BUFFER_SIZE = 4096; -const int BYTES_PER_SAMPLE = sizeof( sample_t ); -const int BYTES_PER_INT_SAMPLE = sizeof( int_sample_t ); -const int BYTES_PER_FRAME = sizeof( SampleFrame ); +constexpr int BYTES_PER_SAMPLE = sizeof(sample_t); +constexpr int BYTES_PER_INT_SAMPLE = sizeof(int_sample_t); +constexpr int BYTES_PER_FRAME = sizeof(SampleFrame); -const float OUTPUT_SAMPLE_MULTIPLIER = 32767.0f; +constexpr float OUTPUT_SAMPLE_MULTIPLIER = 32767.0f; class LMMS_EXPORT AudioEngine : public QObject { @@ -172,15 +174,15 @@ public: bool captureDeviceAvailable() const; - // audio-port-stuff - inline void addAudioPort(AudioPort * port) + // audio-bus-handle-stuff + inline void addAudioBusHandle(AudioBusHandle* busHandle) { requestChangeInModel(); - m_audioPorts.push_back(port); + m_audioBusHandles.push_back(busHandle); doneChangeInModel(); } - void removeAudioPort(AudioPort * port); + void removeAudioBusHandle(AudioBusHandle* busHandle); // MIDI-client-stuff @@ -236,9 +238,20 @@ public: } - sample_rate_t baseSampleRate() const; - sample_rate_t outputSampleRate() const; - sample_rate_t inputSampleRate() const; + sample_rate_t baseSampleRate() const { return m_baseSampleRate; } + + + sample_rate_t outputSampleRate() const + { + return m_audioDev != nullptr ? m_audioDev->sampleRate() : m_baseSampleRate; + } + + + sample_rate_t inputSampleRate() const + { + return m_audioDev != nullptr ? m_audioDev->sampleRate() : m_baseSampleRate; + } + inline float masterGain() const { @@ -291,9 +304,6 @@ public: void changeQuality(const struct qualitySettings & qs); - inline bool isMetronomeActive() const { return m_metronomeActive; } - inline void setMetronomeActive(bool value = true) { m_metronomeActive = value; } - //! Block until a change in model can be done (i.e. wait for audio thread) void requestChangeInModel(); void doneChangeInModel(); @@ -359,19 +369,18 @@ private: void swapBuffers(); - void handleMetronome(); - void clearInternal(); bool m_renderOnly; - std::vector m_audioPorts; + std::vector m_audioBusHandles; fpp_t m_framesPerPeriod; SampleFrame* m_inputBuffer[2]; f_cnt_t m_inputBufferFrames[2]; f_cnt_t m_inputBufferSize[2]; + sample_rate_t m_baseSampleRate; int m_inputBufferRead; int m_inputBufferWrite; @@ -409,8 +418,6 @@ private: AudioEngineProfiler m_profiler; - bool m_metronomeActive; - bool m_clearSignal; std::recursive_mutex m_changeMutex; diff --git a/include/AudioFileOgg.h b/include/AudioFileOgg.h index 2608da359..40e9c1f88 100644 --- a/include/AudioFileOgg.h +++ b/include/AudioFileOgg.h @@ -56,56 +56,16 @@ public: return new AudioFileOgg( outputSettings, channels, successful, outputFilename, audioEngine ); } - private: void writeBuffer(const SampleFrame* _ab, const fpp_t _frames) override; - - bool startEncoding(); - void finishEncoding(); - inline int writePage(); - - inline bitrate_t nominalBitrate() const - { - return getOutputSettings().getBitRateSettings().getBitRate(); - } - - inline bitrate_t minBitrate() const - { - if (nominalBitrate() > 64) - { - return nominalBitrate() - 64; - } - else - { - return 64; - } - } - - inline bitrate_t maxBitrate() const - { - return nominalBitrate() + 64; - } - -private: - bool m_ok; - ch_cnt_t m_channels; - sample_rate_t m_rate; - - uint32_t m_serialNo; - - vorbis_comment * m_comments; - - // encoding setup - init by init_ogg_encoding - ogg_stream_state m_os; - ogg_page m_og; - ogg_packet m_op; - - vorbis_dsp_state m_vd; - vorbis_block m_vb; - vorbis_info m_vi; - -} ; - + vorbis_info m_vi; + vorbis_dsp_state m_vds; + vorbis_comment m_vc; + vorbis_block m_vb; + ogg_stream_state m_oss; + ogg_packet m_packet; + ogg_page m_page; +}; } // namespace lmms diff --git a/include/AudioJack.h b/include/AudioJack.h index 234f6ebf2..e13b4a5ef 100644 --- a/include/AudioJack.h +++ b/include/AudioJack.h @@ -36,9 +36,15 @@ #include #include +#ifdef AUDIO_BUS_HANDLE_SUPPORT +#include +#endif #include "AudioDevice.h" #include "AudioDeviceSetupWidget.h" +#ifdef AUDIO_BUS_HANDLE_SUPPORT +#include "AudioBusHandle.h" +#endif class QLineEdit; @@ -94,9 +100,9 @@ private: void startProcessing() override; void stopProcessing() override; - void registerPort(AudioPort* port) override; - void unregisterPort(AudioPort* port) override; - void renamePort(AudioPort* port) override; + void registerPort(AudioBusHandle* port) override; + void unregisterPort(AudioBusHandle* port) override; + void renamePort(AudioBusHandle* port) override; int processCallback(jack_nframes_t nframes); @@ -116,13 +122,13 @@ private: f_cnt_t m_framesDoneInCurBuf; f_cnt_t m_framesToDoInCurBuf; -#ifdef AUDIO_PORT_SUPPORT +#ifdef AUDIO_BUS_HANDLE_SUPPORT struct StereoPort { jack_port_t* ports[2]; }; - using JackPortMap = QMap; + using JackPortMap = QMap; JackPortMap m_portMap; #endif diff --git a/include/AudioPort.h b/include/AudioPort.h deleted file mode 100644 index 12a0ec7d8..000000000 --- a/include/AudioPort.h +++ /dev/null @@ -1,139 +0,0 @@ -/* - * AudioPort.h - base-class for objects providing sound at a port - * - * Copyright (c) 2005-2014 Tobias Doerffel - * - * This file is part of LMMS - https://lmms.io - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public - * License along with this program (see COPYING); if not, write to the - * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301 USA. - * - */ - -#ifndef LMMS_AUDIO_PORT_H -#define LMMS_AUDIO_PORT_H - -#include -#include -#include - -#include "PlayHandle.h" - -namespace lmms -{ - -class EffectChain; -class FloatModel; -class BoolModel; - -class AudioPort : public ThreadableJob -{ -public: - AudioPort( const QString & _name, bool _has_effect_chain = true, - FloatModel * volumeModel = nullptr, FloatModel * panningModel = nullptr, - BoolModel * mutedModel = nullptr ); - virtual ~AudioPort(); - - inline SampleFrame* buffer() - { - return m_portBuffer; - } - - inline void lockBuffer() - { - m_portBufferLock.lock(); - } - - inline void unlockBuffer() - { - m_portBufferLock.unlock(); - } - - - // indicate whether JACK & Co should provide output-buffer at ext. port - inline bool extOutputEnabled() const - { - return m_extOutputEnabled; - } - - void setExtOutputEnabled( bool _enabled ); - - - // next mixer-channel after this audio-port - // (-1 = none 0 = master) - inline mix_ch_t nextMixerChannel() const - { - return m_nextMixerChannel; - } - - inline EffectChain * effects() - { - return m_effects.get(); - } - - void setNextMixerChannel( const mix_ch_t _chnl ) - { - m_nextMixerChannel = _chnl; - } - - - const QString & name() const - { - return m_name; - } - - void setName( const QString & _new_name ); - - - bool processEffects(); - - // ThreadableJob stuff - void doProcessing() override; - bool requiresProcessing() const override - { - return true; - } - - void addPlayHandle( PlayHandle * handle ); - void removePlayHandle( PlayHandle * handle ); - -private: - volatile bool m_bufferUsage; - - SampleFrame* m_portBuffer; - QMutex m_portBufferLock; - - bool m_extOutputEnabled; - mix_ch_t m_nextMixerChannel; - - QString m_name; - - std::unique_ptr m_effects; - - PlayHandleList m_playHandles; - QMutex m_playHandleLock; - - FloatModel * m_volumeModel; - FloatModel * m_panningModel; - BoolModel * m_mutedModel; - - friend class AudioEngine; - friend class AudioEngineWorkerThread; - -} ; - -} // namespace lmms - -#endif // LMMS_AUDIO_PORT_H diff --git a/include/AutomationEditor.h b/include/AutomationEditor.h index 1110e8e4c..eb3d229a3 100644 --- a/include/AutomationEditor.h +++ b/include/AutomationEditor.h @@ -38,6 +38,7 @@ #include "SampleClip.h" #include "TimePos.h" #include "lmms_basics.h" +#include "SampleThumbnail.h" class QPainter; class QPixmap; @@ -241,6 +242,8 @@ private: QScrollBar * m_leftRightScroll; QScrollBar * m_topBottomScroll; + void adjustLeftRightScoll(int value); + TimePos m_currentPosition; Action m_action; @@ -288,6 +291,8 @@ private: QColor m_ghostNoteColor; QColor m_detuningNoteColor; QColor m_ghostSampleColor; + + SampleThumbnail m_sampleThumbnail; friend class AutomationEditorWindow; diff --git a/include/AutomationTrack.h b/include/AutomationTrack.h index 64c2cc43a..9bcb537f4 100644 --- a/include/AutomationTrack.h +++ b/include/AutomationTrack.h @@ -50,8 +50,7 @@ public: gui::TrackView * createView( gui::TrackContainerView* ) override; Clip* createClip(const TimePos & pos) override; - void saveTrackSpecificSettings( QDomDocument & _doc, - QDomElement & _parent ) override; + void saveTrackSpecificSettings(QDomDocument& doc, QDomElement& parent, bool presetMode) override; void loadTrackSpecificSettings( const QDomElement & _this ) override; private: diff --git a/include/BandLimitedWave.h b/include/BandLimitedWave.h index 1c1a052ca..c70b8f6eb 100644 --- a/include/BandLimitedWave.h +++ b/include/BandLimitedWave.h @@ -156,11 +156,11 @@ public: t += 1; const sample_t s3 = s_waveforms[ static_cast(_wave) ].sampleAt( t, lookup ); const sample_t s4 = s_waveforms[ static_cast(_wave) ].sampleAt( t, ( lookup + 1 ) % tlen ); - const sample_t s34 = linearInterpolate( s3, s4, ip ); + const sample_t s34 = std::lerp(s3, s4, ip); const float ip2 = ( ( tlen - _wavelen ) / tlen - 0.5 ) * 2.0; - return linearInterpolate( s12, s34, ip2 ); + return std::lerp(s12, s34, ip2); */ }; diff --git a/include/BasicFilters.h b/include/BasicFilters.h index 8d21b3657..51d617480 100644 --- a/include/BasicFilters.h +++ b/include/BasicFilters.h @@ -31,16 +31,12 @@ #ifndef LMMS_BASIC_FILTERS_H #define LMMS_BASIC_FILTERS_H -#ifndef __USE_XOPEN -#define __USE_XOPEN -#endif - -#include +#include #include +#include +#include #include "lmms_basics.h" -#include "lmms_constants.h" -#include "interpolation.h" namespace lmms { @@ -73,20 +69,20 @@ public: inline void setCoeffs( float freq ) { + using namespace std::numbers; // wc - const double wc = D_2PI * freq; + const double wc = 2 * pi * freq; const double wc2 = wc * wc; const double wc3 = wc2 * wc; m_wc4 = wc2 * wc2; // k - const double k = wc / tan( D_PI * freq / m_sampleRate ); + const double k = wc / std::tan(pi * freq / m_sampleRate); const double k2 = k * k; const double k3 = k2 * k; m_k4 = k2 * k2; // a - static const double sqrt2 = sqrt( 2.0 ); const double sq_tmp1 = sqrt2 * wc3 * k; const double sq_tmp2 = sqrt2 * wc * k3; @@ -211,7 +207,7 @@ public: inline float update( float s, ch_cnt_t ch ) { - if (std::abs(s) < 1.0e-10f && std::abs(m_z1[ch]) < 1.0e-10f) return 0.0f; + if (std::abs(s) < 1.0e-10f && std::abs(m_z1[ch]) < 1.0e-10f) { return 0.0f; } return m_z1[ch] = s * m_a0 + m_z1[ch] * m_b1; } @@ -380,7 +376,7 @@ public: for( int i = 0; i < 4; ++i ) { ip += 0.25f; - sample_t x = linearInterpolate( m_last[_chnl], _in0, ip ) - m_r * m_y3[_chnl]; + sample_t x = std::lerp(m_last[_chnl], _in0, ip) - m_r * m_y3[_chnl]; m_y1[_chnl] = std::clamp((x + m_oldx[_chnl]) * m_p - m_k * m_y1[_chnl], -10.0f, @@ -706,6 +702,7 @@ public: inline void calcFilterCoeffs( float _freq, float _q ) { + using namespace std::numbers; // temp coef vars _q = std::max(_q, minQ()); @@ -718,7 +715,7 @@ public: { _freq = std::clamp(_freq, 50.0f, 20000.0f); const float sr = m_sampleRatio * 0.25f; - const float f = 1.0f / ( _freq * F_2PI ); + const float f = 1.0f / (_freq * 2 * pi_v); m_rca = 1.0f - sr / ( f + sr ); m_rcb = 1.0f - m_rca; @@ -751,8 +748,8 @@ public: const float fract = vowelf - vowel; // interpolate between formant frequencies - const float f0 = 1.0f / ( linearInterpolate( _f[vowel+0][0], _f[vowel+1][0], fract ) * F_2PI ); - const float f1 = 1.0f / ( linearInterpolate( _f[vowel+0][1], _f[vowel+1][1], fract ) * F_2PI ); + const float f0 = 1.f / (std::lerp(_f[vowel+0][0], _f[vowel+1][0], fract) * 2 * pi_v); + const float f1 = 1.f / (std::lerp(_f[vowel+0][1], _f[vowel+1][1], fract) * 2 * pi_v); // samplerate coeff: depends on oversampling const float sr = m_type == FilterType::FastFormant ? m_sampleRatio : m_sampleRatio * 0.25f; @@ -774,7 +771,7 @@ public: // (Empirical tunning) m_p = ( 3.6f - 3.2f * f ) * f; m_k = 2.0f * m_p - 1; - m_r = _q * powf( F_E, ( 1 - m_p ) * 1.386249f ); + m_r = _q * std::exp((1 - m_p) * 1.386249f); if( m_doubleFilter ) { @@ -791,7 +788,7 @@ public: m_p = ( 3.6f - 3.2f * f ) * f; m_k = 2.0f * m_p - 1.0f; - m_r = _q * 0.1f * powf( F_E, ( 1 - m_p ) * 1.386249f ); + m_r = _q * 0.1f * std::exp((1 - m_p) * 1.386249f); return; } @@ -801,7 +798,7 @@ public: m_type == FilterType::Highpass_SV || m_type == FilterType::Notch_SV ) { - const float f = sinf(std::max(minFreq(), _freq) * m_sampleRatio * F_PI); + const float f = std::sin(std::max(minFreq(), _freq) * m_sampleRatio * pi_v); m_svf1 = std::min(f, 0.825f); m_svf2 = std::min(f * 2.0f, 0.825f); m_svq = std::max(0.0001f, 2.0f - (_q * 0.1995f)); @@ -810,9 +807,9 @@ public: // other filters _freq = std::clamp(_freq, minFreq(), 20000.0f); - const float omega = F_2PI * _freq * m_sampleRatio; - const float tsin = sinf( omega ) * 0.5f; - const float tcos = cosf( omega ); + const float omega = 2 * pi_v * _freq * m_sampleRatio; + const float tsin = std::sin(omega) * 0.5f; + const float tcos = std::cos(omega); const float alpha = tsin / _q; diff --git a/include/ColorHelper.h b/include/ColorHelper.h index 78f99b9e2..b313d9b46 100644 --- a/include/ColorHelper.h +++ b/include/ColorHelper.h @@ -24,6 +24,7 @@ #ifndef LMMS_GUI_COLOR_HELPER_H #define LMMS_GUI_COLOR_HELPER_H +#include #include namespace lmms::gui @@ -40,10 +41,11 @@ public: qreal br, bg, bb, ba; b.getRgbF(&br, &bg, &bb, &ba); - const float interH = lerp(ar, br, t); - const float interS = lerp(ag, bg, t); - const float interV = lerp(ab, bb, t); - const float interA = lerp(aa, ba, t); + const auto t2 = static_cast(t); + const float interH = std::lerp(ar, br, t2); + const float interS = std::lerp(ag, bg, t2); + const float interV = std::lerp(ab, bb, t2); + const float interA = std::lerp(aa, ba, t2); return QColor::fromRgbF(interH, interS, interV, interA); } diff --git a/include/DataFile.h b/include/DataFile.h index 7f5f5b888..38e67f102 100644 --- a/include/DataFile.h +++ b/include/DataFile.h @@ -134,6 +134,7 @@ private: void upgrade_fixCMTDelays(); void upgrade_fixBassLoopsTypo(); void findProblematicLadspaPlugins(); + void upgrade_noHiddenAutomationTracks(); // List of all upgrade methods static const std::vector UPGRADE_METHODS; diff --git a/include/Delay.h b/include/Delay.h index 71fbe1b00..8ead1c37b 100644 --- a/include/Delay.h +++ b/include/Delay.h @@ -26,9 +26,9 @@ #ifndef LMMS_DELAY_H #define LMMS_DELAY_H +#include + #include "lmms_basics.h" -#include "lmms_math.h" -#include "interpolation.h" namespace lmms { @@ -114,7 +114,7 @@ public: int readPos = m_position - m_delay; if( readPos < 0 ) { readPos += m_size; } - const double y = linearInterpolate( m_buffer[readPos][ch], m_buffer[( readPos + 1 ) % m_size][ch], m_fraction ); + const double y = std::lerp(m_buffer[readPos][ch], m_buffer[(readPos + 1) % m_size][ch], m_fraction); ++m_position %= m_size; @@ -185,7 +185,7 @@ class CombFeedfwd int readPos = m_position - m_delay; if( readPos < 0 ) { readPos += m_size; } - const double y = linearInterpolate( m_buffer[readPos][ch], m_buffer[( readPos + 1 ) % m_size][ch], m_fraction ) + in * m_gain; + const double y = std::lerp(m_buffer[readPos][ch], m_buffer[(readPos + 1) % m_size][ch], m_fraction) + in * m_gain; ++m_position %= m_size; @@ -262,8 +262,8 @@ class CombFeedbackDualtap int readPos2 = m_position - m_delay2; if( readPos2 < 0 ) { readPos2 += m_size; } - const double y = linearInterpolate( m_buffer[readPos1][ch], m_buffer[( readPos1 + 1 ) % m_size][ch], m_fraction1 ) + - linearInterpolate( m_buffer[readPos2][ch], m_buffer[( readPos2 + 1 ) % m_size][ch], m_fraction2 ); + const double y = std::lerp(m_buffer[readPos1][ch], m_buffer[(readPos1 + 1) % m_size][ch], m_fraction1) + + std::lerp(m_buffer[readPos2][ch], m_buffer[(readPos2 + 1) % m_size][ch], m_fraction2); ++m_position %= m_size; @@ -337,7 +337,7 @@ public: int readPos = m_position - m_delay; if( readPos < 0 ) { readPos += m_size; } - const double y = linearInterpolate( m_buffer[readPos][ch], m_buffer[( readPos + 1 ) % m_size][ch], m_fraction ) + in * -m_gain; + const double y = std::lerp(m_buffer[readPos][ch], m_buffer[(readPos + 1) % m_size][ch], m_fraction) + in * -m_gain; const double x = in + m_gain * y; ++m_position %= m_size; diff --git a/include/DeprecationHelper.h b/include/DeprecationHelper.h index b9be6d42f..02a57c3fa 100644 --- a/include/DeprecationHelper.h +++ b/include/DeprecationHelper.h @@ -27,7 +27,10 @@ #ifndef LMMS_DEPRECATIONHELPER_H #define LMMS_DEPRECATIONHELPER_H +#include + #include +#include #include namespace lmms @@ -64,6 +67,30 @@ inline QPoint position(QWheelEvent *wheelEvent) #endif } + +namespace detail +{ + +template +inline constexpr bool IsKeyOrModifier = std::is_same_v + || std::is_same_v || std::is_same_v; + +} // namespace detail + + +/** + * @brief Combines Qt key and modifier arguments together, + * replacing `A | B` which was deprecated in C++20 + * due to the enums being different types. (P1120R0) + * @param args Any number of Qt::Key, Qt::Modifier, or Qt::KeyboardModifier + * @return The combination of the given keys/modifiers as an int + */ +template && ...), bool> = true> +constexpr int combine(Args... args) +{ + return (0 | ... | static_cast(args)); +} + } // namespace lmms #endif // LMMS_DEPRECATIONHELPER_H diff --git a/include/DspEffectLibrary.h b/include/DspEffectLibrary.h index 348c70765..656d5b1dd 100644 --- a/include/DspEffectLibrary.h +++ b/include/DspEffectLibrary.h @@ -25,8 +25,9 @@ #ifndef LMMS_DSPEFFECTLIBRARY_H #define LMMS_DSPEFFECTLIBRARY_H +#include + #include "lmms_math.h" -#include "lmms_constants.h" #include "lmms_basics.h" #include "SampleFrame.h" @@ -289,7 +290,7 @@ namespace lmms::DspEffectLibrary { if( in >= m_threshold || in < -m_threshold ) { - return ( fabsf( fabsf( fmodf( in - m_threshold, m_threshold*4 ) ) - m_threshold*2 ) - m_threshold ) * m_gain; + return (std::abs(std::abs(std::fmod(in - m_threshold, m_threshold * 4)) - m_threshold * 2) - m_threshold) * m_gain; } return in * m_gain; } @@ -303,7 +304,7 @@ namespace lmms::DspEffectLibrary sample_t nextSample( sample_t in ) { - return m_gain * ( in * ( fabsf( in )+m_threshold ) / ( in*in +( m_threshold-1 )* fabsf( in ) + 1 ) ); + return m_gain * (in * (std::abs(in) + m_threshold) / (in * in + (m_threshold - 1) * std::abs(in) + 1)); } } ; @@ -328,10 +329,10 @@ namespace lmms::DspEffectLibrary void nextSample( sample_t& inLeft, sample_t& inRight ) { - const float toRad = F_PI / 180; + constexpr float toRad = std::numbers::pi_v / 180.f; const sample_t tmp = inLeft; - inLeft += inRight * sinf( m_wideCoeff * ( .5 * toRad ) ); - inRight -= tmp * sinf( m_wideCoeff * ( .5 * toRad ) ); + inLeft += inRight * std::sin(m_wideCoeff * toRad * .5f); + inRight -= tmp * std::sin(m_wideCoeff * toRad * .5f); } private: diff --git a/include/DummyEffect.h b/include/DummyEffect.h index e2e649ab5..3a1061ead 100644 --- a/include/DummyEffect.h +++ b/include/DummyEffect.h @@ -98,6 +98,7 @@ public: m_originalPluginData( originalPluginData ) { setName(); + setDontRun(true); } ~DummyEffect() override = default; @@ -107,9 +108,9 @@ public: return &m_controls; } - bool processAudioBuffer( SampleFrame*, const fpp_t ) override + ProcessStatus processImpl(SampleFrame*, const fpp_t) override { - return false; + return ProcessStatus::Sleep; } const QDomElement& originalPluginData() const diff --git a/include/Editor.h b/include/Editor.h index 681bce46c..a5b667166 100644 --- a/include/Editor.h +++ b/include/Editor.h @@ -56,7 +56,7 @@ protected: DropToolBar * addDropToolBar(Qt::ToolBarArea whereToAdd, QString const & windowTitle); DropToolBar * addDropToolBar(QWidget * parent, Qt::ToolBarArea whereToAdd, QString const & windowTitle); - void closeEvent( QCloseEvent * _ce ) override; + void closeEvent(QCloseEvent * event) override; protected slots: virtual void play() {} virtual void record() {} diff --git a/include/Effect.h b/include/Effect.h index 34f8be00a..7eb911701 100644 --- a/include/Effect.h +++ b/include/Effect.h @@ -63,9 +63,8 @@ public: return "effect"; } - - virtual bool processAudioBuffer( SampleFrame* _buf, - const fpp_t _frames ) = 0; + //! Returns true if audio was processed and should continue being processed + bool processAudioBuffer(SampleFrame* buf, const fpp_t frames); inline ch_cnt_t processorCount() const { @@ -174,14 +173,29 @@ public: protected: - /** - Effects should call this at the end of audio processing + enum class ProcessStatus + { + //! Unconditionally continue processing + Continue, + + //! Calculate the RMS out sum and call `checkGate` to determine whether to stop processing + ContinueIfNotQuiet, + + //! Do not continue processing + Sleep + }; + + /** + * The main audio processing method that runs when plugin is not asleep + */ + virtual ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) = 0; + + /** + * Optional method that runs when plugin is sleeping (not enabled, + * not running, not in the Okay state, or in the Don't Run state) + */ + virtual void processBypassedImpl() {} - If the setting "Keep effects running even without input" is disabled, - after "decay" ms of a signal below "gate", the effect is turned off - and won't be processed again until it receives new audio input - */ - void checkGate( double _out_sum ); gui::PluginView* instantiateView( QWidget * ) override; @@ -212,6 +226,14 @@ protected: private: + /** + If the setting "Keep effects running even without input" is disabled, + after "decay" ms of a signal below "gate", the effect is turned off + and won't be processed again until it receives new audio input + */ + void checkGate(double outSum); + + EffectChain * m_parent; void resample( int _i, const SampleFrame* _src_buf, sample_rate_t _src_sr, diff --git a/include/EnvelopeGraph.h b/include/EnvelopeGraph.h index 4f8a5c386..2ffa2f64b 100644 --- a/include/EnvelopeGraph.h +++ b/include/EnvelopeGraph.h @@ -41,6 +41,12 @@ namespace gui class EnvelopeGraph : public QWidget, public ModelView { + Q_OBJECT + Q_PROPERTY(QColor noAmountColor MEMBER m_noAmountColor) + Q_PROPERTY(QColor fullAmountColor MEMBER m_fullAmountColor) + Q_PROPERTY(QColor markerFillColor MEMBER m_markerFillColor) + Q_PROPERTY(QColor markerOutlineColor MEMBER m_markerOutlineColor) + public: enum class ScalingMode { @@ -68,6 +74,11 @@ private: EnvelopeAndLfoParameters* m_params = nullptr; ScalingMode m_scaling = ScalingMode::Dynamic; + + QColor m_noAmountColor; + QColor m_fullAmountColor; + QColor m_markerFillColor; + QColor m_markerOutlineColor; }; } // namespace gui diff --git a/include/Fader.h b/include/Fader.h index 53e353a3d..9d6e21590 100644 --- a/include/Fader.h +++ b/include/Fader.h @@ -74,8 +74,8 @@ public: Q_PROPERTY(bool renderUnityLine READ getRenderUnityLine WRITE setRenderUnityLine) Q_PROPERTY(QColor unityMarker MEMBER m_unityMarker) - Fader(FloatModel* model, const QString& name, QWidget* parent); - Fader(FloatModel* model, const QString& name, QWidget* parent, const QPixmap& knob); + Fader(FloatModel* model, const QString& name, QWidget* parent, bool modelIsLinear = true); + Fader(FloatModel* model, const QString& name, QWidget* parent, const QPixmap& knob, bool modelIsLinear = true); ~Fader() override = default; void setPeak_L(float fPeak); @@ -93,6 +93,17 @@ public: inline bool getRenderUnityLine() const { return m_renderUnityLine; } inline void setRenderUnityLine(bool value = true) { m_renderUnityLine = value; } + enum class AdjustmentDirection + { + Up, + Down + }; + + void adjust(const Qt::KeyboardModifiers & modifiers, AdjustmentDirection direction); + void adjustByDecibelDelta(float value); + + void adjustByDialog(); + void setDisplayConversion(bool b) { m_conversionFactor = b ? 100.0 : 1.0; @@ -118,18 +129,34 @@ private: void paintEvent(QPaintEvent* ev) override; void paintLevels(QPaintEvent* ev, QPainter& painter, bool linear = false); + void paintFaderTicks(QPainter& painter); - int knobPosY() const - { - float fRange = model()->maxValue() - model()->minValue(); - float realVal = model()->value() - model()->minValue(); + float determineAdjustmentDelta(const Qt::KeyboardModifiers & modifiers) const; + void adjustModelByDBDelta(float value); - return height() - ((height() - m_knob.height()) * (realVal / fRange)); - } + int calculateKnobPosYFromModel() const; + void setVolumeByLocalPixelValue(int y); + + /** + * @brief Computes the scaled ratio between the maximum dB value supported by the model and the minimum + * dB value that's supported by the fader from the given actual dB value. + * + * If the provided input value lies inside the aforementioned interval then the result will be + * a value between 0 (value == minimum value) and 1 (value == maximum model value). + * If you look at the graphical representation of the fader then 0 represents a point at the bottom + * of the fader and 1 a point at the top of the fader. + * The ratio is scaled by an internal exponent which is an implementation detail that cannot be + * changed for now. + */ + float computeScaledRatio(float dBValue) const; void setPeak(float fPeak, float& targetPeak, float& persistentPeak, QElapsedTimer& lastPeakTimer); void updateTextFloat(); + void modelValueChanged(); + QString getModelValueAsDbString() const; + + bool modelIsLinear() const { return m_modelIsLinear; } // Private members private: @@ -145,10 +172,16 @@ private: QPixmap m_knob {embed::getIconPixmap("fader_knob")}; - bool m_levelsDisplayedInDBFS {true}; + /** + * @brief Stores the offset to the knob center when the user drags the fader knob + * + * This is needed to make it feel like the users drag the knob without it + * jumping immediately to the click position. + */ + int m_knobCenterOffset {0}; - int m_moveStartPoint {-1}; - float m_startValue {0.}; + bool m_levelsDisplayedInDBFS {true}; + bool m_modelIsLinear {false}; static SimpleTextFloat* s_textFloat; diff --git a/include/FileBrowser.h b/include/FileBrowser.h index 9193da5e4..6c10ee763 100644 --- a/include/FileBrowser.h +++ b/include/FileBrowser.h @@ -195,8 +195,6 @@ private slots: bool openInNewSampleTrack( lmms::gui::FileItem* item ); void sendToActiveInstrumentTrack( lmms::gui::FileItem* item ); void updateDirectory( QTreeWidgetItem * item ); - void openContainingFolder( lmms::gui::FileItem* item ); - } ; diff --git a/include/FileRevealer.h b/include/FileRevealer.h new file mode 100644 index 000000000..feb6d1223 --- /dev/null +++ b/include/FileRevealer.h @@ -0,0 +1,77 @@ +/* + * FileRevealer.h - include file for FileRevealer + * + * Copyright (c) 2025 Andrew Wiltshire + * + * This file is part of LMMS - https://lmms.io + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program (see COPYING); if not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA. + * + */ + +#ifndef LMMS_FILE_REVEALER_H +#define LMMS_FILE_REVEALER_H + +#include + +namespace lmms { + +/** + * @class FileRevealer + * @brief A utility class for revealing files and directories in the system's file manager. + */ +class FileRevealer +{ +public: + /** + * @brief Retrieves the default file manager for the current platform. + * @return The name or command of the default file manager. + */ + static const QString& getDefaultFileManager(); + + /** + * @brief Opens the directory containing the specified file or folder in the file manager. + * @param item The QFileInfo object representing the file or folder. + */ + static void openDir(const QFileInfo item); + + /** + * @brief Checks whether the file manager supports selecting a specific file. + * @return True if selection is supported, otherwise false. + */ + static const QStringList& getSelectCommand(); + + /** + * @brief Opens the file manager and selects the specified file if supported. + * @param item The QFileInfo object representing the file to reveal. + */ + static void reveal(const QFileInfo item); + +private: + static bool s_canSelect; + +protected: + /** + * @brief Determines if the given command supports the argument + * @param command The name of the file manager to check. + * @param arg The command line argument to parse for + * @return True if the file command the argument, otherwise false. + */ + static bool supportsArg(const QString& command, const QString& arg); +}; + +} // namespace lmms +#endif // LMMS_FILE_REVEALER_H diff --git a/include/gui_templates.h b/include/FontHelper.h similarity index 81% rename from include/gui_templates.h rename to include/FontHelper.h index bbb5f80da..ccef24775 100644 --- a/include/gui_templates.h +++ b/include/FontHelper.h @@ -1,5 +1,5 @@ /* - * gui_templates.h - GUI-specific templates + * FontHelper.h - Header function to help with fonts * * Copyright (c) 2005-2008 Tobias Doerffel * @@ -22,12 +22,16 @@ * */ -#ifndef LMMS_GUI_TEMPLATES_H -#define LMMS_GUI_TEMPLATES_H +#ifndef LMMS_FONT_HELPER_H +#define LMMS_FONT_HELPER_H #include #include +constexpr int DEFAULT_FONT_SIZE = 12; +constexpr int SMALL_FONT_SIZE = 10; +constexpr int LARGE_FONT_SIZE = 14; + namespace lmms::gui { @@ -40,4 +44,4 @@ inline QFont adjustedToPixelSize(QFont font, int size) } // namespace lmms::gui -#endif // LMMS_GUI_TEMPLATES_H +#endif // LMMS_FONT_HELPER_H diff --git a/include/Graph.h b/include/Graph.h index 0f5f24524..cc87b913e 100644 --- a/include/Graph.h +++ b/include/Graph.h @@ -182,7 +182,7 @@ public: public slots: //! Set range of y values - void setRange( float _min, float _max ); + void setRange(float ymin, float ymax); void setLength( int _size ); //! Update one sample diff --git a/include/InstrumentSoundShaping.h b/include/InstrumentSoundShaping.h index 7dfeaf58b..4bdaa9b3b 100644 --- a/include/InstrumentSoundShaping.h +++ b/include/InstrumentSoundShaping.h @@ -26,13 +26,13 @@ #define LMMS_INSTRUMENT_SOUND_SHAPING_H #include "ComboBoxModel.h" +#include "EnvelopeAndLfoParameters.h" namespace lmms { class InstrumentTrack; -class EnvelopeAndLfoParameters; class NotePlayHandle; class SampleFrame; @@ -52,14 +52,19 @@ public: void processAudioBuffer( SampleFrame* _ab, const fpp_t _frames, NotePlayHandle * _n ); - enum class Target - { - Volume, - Cut, - Resonance, - Count - } ; - constexpr static auto NumTargets = static_cast(Target::Count); + const EnvelopeAndLfoParameters& getVolumeParameters() const { return m_volumeParameters; } + EnvelopeAndLfoParameters& getVolumeParameters() { return m_volumeParameters; } + + const EnvelopeAndLfoParameters& getCutoffParameters() const { return m_cutoffParameters; } + EnvelopeAndLfoParameters& getCutoffParameters() { return m_cutoffParameters; } + + const EnvelopeAndLfoParameters& getResonanceParameters() const { return m_resonanceParameters; } + EnvelopeAndLfoParameters& getResonanceParameters() { return m_resonanceParameters; } + + BoolModel& getFilterEnabledModel() { return m_filterEnabledModel; } + ComboBoxModel& getFilterModel() { return m_filterModel; } + FloatModel& getFilterCutModel() { return m_filterCutModel; } + FloatModel& getFilterResModel() { return m_filterResModel; } f_cnt_t envFrames( const bool _only_vol = false ) const; f_cnt_t releaseFrames() const; @@ -74,22 +79,23 @@ public: return "eldata"; } +private: + QString getVolumeNodeName() const; + QString getCutoffNodeName() const; + QString getResonanceNodeName() const; private: - EnvelopeAndLfoParameters * m_envLfoParameters[NumTargets]; InstrumentTrack * m_instrumentTrack; + EnvelopeAndLfoParameters m_volumeParameters; + EnvelopeAndLfoParameters m_cutoffParameters; + EnvelopeAndLfoParameters m_resonanceParameters; + BoolModel m_filterEnabledModel; ComboBoxModel m_filterModel; FloatModel m_filterCutModel; FloatModel m_filterResModel; - - static const char *const targetNames[NumTargets][3]; - - - friend class gui::InstrumentSoundShapingView; - -} ; +}; } // namespace lmms diff --git a/include/InstrumentSoundShapingView.h b/include/InstrumentSoundShapingView.h index c9caea28c..b9e1fe82b 100644 --- a/include/InstrumentSoundShapingView.h +++ b/include/InstrumentSoundShapingView.h @@ -58,7 +58,10 @@ private: InstrumentSoundShaping * m_ss = nullptr; TabWidget * m_targetsTabWidget; - EnvelopeAndLfoView * m_envLfoViews[InstrumentSoundShaping::NumTargets]; + + EnvelopeAndLfoView* m_volumeView; + EnvelopeAndLfoView* m_cutoffView; + EnvelopeAndLfoView* m_resonanceView; // filter-stuff GroupBox * m_filterGroupBox; @@ -67,8 +70,7 @@ private: Knob * m_filterResKnob; QLabel* m_singleStreamInfoLabel; - -} ; +}; } // namespace lmms::gui diff --git a/include/InstrumentTrack.h b/include/InstrumentTrack.h index 1e46fb0cb..17d3233da 100644 --- a/include/InstrumentTrack.h +++ b/include/InstrumentTrack.h @@ -28,7 +28,7 @@ #include -#include "AudioPort.h" +#include "AudioBusHandle.h" #include "InstrumentFunctions.h" #include "InstrumentSoundShaping.h" #include "Microtuner.h" @@ -133,8 +133,7 @@ public: // called by track - void saveTrackSpecificSettings( QDomDocument & _doc, - QDomElement & _parent ) override; + void saveTrackSpecificSettings(QDomDocument& doc, QDomElement& parent, bool presetMode) override; void loadTrackSpecificSettings( const QDomElement & _this ) override; using Track::setJournalling; @@ -145,9 +144,9 @@ public: const Plugin::Descriptor::SubPluginFeatures::Key* key = nullptr, bool keyFromDnd = false); - AudioPort * audioPort() + AudioBusHandle* audioBusHandle() { - return &m_audioPort; + return &m_audioBusHandle; } MidiPort * midiPort() @@ -294,7 +293,7 @@ private: FloatModel m_volumeModel; FloatModel m_panningModel; - AudioPort m_audioPort; + AudioBusHandle m_audioBusHandle; FloatModel m_pitchModel; IntModel m_pitchRangeModel; diff --git a/include/InstrumentTrackWindow.h b/include/InstrumentTrackWindow.h index 48a352cbd..5d26ba9a2 100644 --- a/include/InstrumentTrackWindow.h +++ b/include/InstrumentTrackWindow.h @@ -28,11 +28,14 @@ #include #include "ModelView.h" +#include "PixmapButton.h" #include "SerializingObject.h" +#include "PluginView.h" class QLabel; class QLineEdit; class QWidget; +class QMdiSubWindow; namespace lmms { @@ -67,6 +70,9 @@ public: InstrumentTrackWindow( InstrumentTrackView * _tv ); ~InstrumentTrackWindow() override; + void resizeEvent(QResizeEvent* event) override; + + // parent for all internal tab-widgets TabWidget * tabWidgetParent() { @@ -130,6 +136,9 @@ private: //! required to keep the old look when using a variable sized tab widget void adjustTabSize(QWidget *w); + QMdiSubWindow* findSubWindowInParents(); + void updateSubWindow(); + InstrumentTrack * m_track; InstrumentTrackView * m_itv; @@ -139,6 +148,8 @@ private: Knob * m_volumeKnob; Knob * m_panningKnob; Knob * m_pitchKnob; + PixmapButton *m_muteBtn; + PixmapButton *m_soloBtn; QLabel * m_pitchLabel; LcdSpinBox* m_pitchRangeSpinBox; QLabel * m_pitchRangeLabel; @@ -152,6 +163,7 @@ private: InstrumentSoundShapingView * m_ssView; InstrumentFunctionNoteStackingView* m_noteStackingView; InstrumentFunctionArpeggioView* m_arpeggioView; + QWidget* m_instrumentFunctionsView; // container of note stacking and arpeggio InstrumentMidiIOView * m_midiView; EffectRackView * m_effectView; InstrumentTuningView *m_tuningView; diff --git a/include/KeyboardShortcuts.h b/include/KeyboardShortcuts.h new file mode 100644 index 000000000..63f6be6bb --- /dev/null +++ b/include/KeyboardShortcuts.h @@ -0,0 +1,77 @@ +/* + * KeyboardShortcuts.h - Cross-platform handling of keyboard modifier keys + * + * Copyright (c) 2025 Michael Gregorius + * Copyright (c) 2025 Tres Finocchiaro + * + * This file is part of LMMS - https://lmms.io + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program (see COPYING); if not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA. + * + */ + +#ifndef LMMS_KEYBOARDSHORTCUTS_H +#define LMMS_KEYBOARDSHORTCUTS_H + +#include "lmmsconfig.h" + +#include "qnamespace.h" + + +namespace lmms +{ + +// Qt on macOS maps: +// - ControlModifier --> Command keys +// - MetaModifier value --> Control keys +// - Qt::AltModifier --> Option keys +// +// Our UI hints need to be adjusted to accommodate for this +constexpr const char* UI_CTRL_KEY = +#ifdef LMMS_BUILD_APPLE +"⌘"; +#else +"Ctrl"; +#endif + +constexpr const char* UI_ALT_KEY = +#ifdef LMMS_BUILD_APPLE +"Option"; +#else +"Alt"; +#endif + +// UI hint for copying OR linking a UI component +// this MUST be consistent with KBD_COPY_MODIFIER +constexpr const char* UI_COPY_KEY = +#ifdef LMMS_BUILD_APPLE +UI_ALT_KEY; +#else +UI_CTRL_KEY; +#endif + +// Shortcut for copying OR linking a UI component +// this MUST be consistent with UI_COPY_KEY +constexpr Qt::KeyboardModifier KBD_COPY_MODIFIER = +#ifdef LMMS_BUILD_APPLE +Qt::AltModifier; +#else +Qt::ControlModifier; +#endif + +} // namespace lmms + +#endif // LMMS_KEYBOARDSHORTCUTS_H diff --git a/include/LfoGraph.h b/include/LfoGraph.h index 9d566770f..fe56ecbb6 100644 --- a/include/LfoGraph.h +++ b/include/LfoGraph.h @@ -41,6 +41,10 @@ namespace gui class LfoGraph : public QWidget, public ModelView { + Q_OBJECT + Q_PROPERTY(QColor noAmountColor MEMBER m_noAmountColor) + Q_PROPERTY(QColor fullAmountColor MEMBER m_fullAmountColor) + public: LfoGraph(QWidget* parent); @@ -56,6 +60,8 @@ private: QPixmap m_lfoGraph = embed::getIconPixmap("lfo_graph"); float m_randomGraph {0.}; + QColor m_noAmountColor; + QColor m_fullAmountColor; }; } // namespace gui diff --git a/include/LmmsStyle.h b/include/LmmsStyle.h index d17bbed98..4c1c60e3d 100644 --- a/include/LmmsStyle.h +++ b/include/LmmsStyle.h @@ -26,6 +26,7 @@ #ifndef LMMS_GUI_LMMS_STYLE_H #define LMMS_GUI_LMMS_STYLE_H +#include #include @@ -60,6 +61,7 @@ public: private: QImage colorizeXpm( const char * const * xpm, const QBrush& fill ) const; void hoverColors( bool sunken, bool hover, bool active, QColor& color, QColor& blend ) const; + QFileSystemWatcher m_styleReloader; }; diff --git a/include/MainWindow.h b/include/MainWindow.h index 4442a7ac2..1330de8c5 100644 --- a/include/MainWindow.h +++ b/include/MainWindow.h @@ -29,6 +29,7 @@ #include #include #include +#include #include "ConfigManager.h" @@ -57,7 +58,7 @@ class MainWindow : public QMainWindow public: QMdiArea* workspace() { - return m_workspace; + return static_cast(m_workspace); } QWidget* toolBar() @@ -72,6 +73,8 @@ public: LMMS_EXPORT SubWindow* addWindowedWidget(QWidget *w, Qt::WindowFlags windowFlags = QFlag(0)); + void refocus(); + /// /// \brief Asks whether changes made to the project are to be saved. /// @@ -195,14 +198,28 @@ private: void finalize(); void toggleWindow( QWidget *window, bool forceShow = false ); - void refocus(); void exportProject(bool multiExport = false); void handleSaveResult(QString const & filename, bool songSavedSuccessfully); bool guiSaveProject(); bool guiSaveProjectAs( const QString & filename ); - QMdiArea * m_workspace; + class MovableQMdiArea : public QMdiArea + { + public: + MovableQMdiArea(QWidget* parent = nullptr); + ~MovableQMdiArea() {} + protected: + void mousePressEvent(QMouseEvent* event) override; + void mouseMoveEvent(QMouseEvent* event) override; + void mouseReleaseEvent(QMouseEvent* event) override; + private: + bool m_isBeingMoved; + int m_lastX; + int m_lastY; + }; + + MovableQMdiArea * m_workspace; QWidget * m_toolBar; QGridLayout * m_toolBarLayout; @@ -257,7 +274,6 @@ signals: } ; - } // namespace gui } // namespace lmms diff --git a/plugins/Flanger/Noise.h b/include/Metronome.h similarity index 68% rename from plugins/Flanger/Noise.h rename to include/Metronome.h index 9f6e2f2e1..a59ad5b83 100644 --- a/plugins/Flanger/Noise.h +++ b/include/Metronome.h @@ -1,7 +1,7 @@ /* - * noise.h - defination of Noise class. + * Metronome.h * - * Copyright (c) 2014 David French + * Copyright (c) 2024 saker * * This file is part of LMMS - https://lmms.io * @@ -22,23 +22,22 @@ * */ -#ifndef NOISE_H -#define NOISE_H +#ifndef LMMS_METRONOME_H +#define LMMS_METRONOME_H -namespace lmms -{ +#include - -class Noise +namespace lmms { +class Metronome { public: - Noise(); - float tick(); + bool active() const { return m_active; } + void setActive(bool active) { m_active = active; } + void processTick(int currentTick, int ticksPerBar, int beatsPerBar, size_t bufferOffset); + private: - double inv_randmax; + bool m_active = false; }; - - } // namespace lmms -#endif // NOISE_H +#endif // LMMS_METRONOME_H diff --git a/include/MidiClip.h b/include/MidiClip.h index b3ed0d84a..f3150ba6f 100644 --- a/include/MidiClip.h +++ b/include/MidiClip.h @@ -82,6 +82,9 @@ public: // Split the list of notes on the given position void splitNotes(const NoteVector& notes, TimePos pos); + // Split the list of notes along a line + void splitNotesAlongLine(const NoteVector notes, TimePos pos1, int key1, TimePos pos2, int key2, bool deleteShortEnds); + // clip-type stuff inline Type type() const { diff --git a/include/MidiEvent.h b/include/MidiEvent.h index 453f65410..b23f6a99f 100644 --- a/include/MidiEvent.h +++ b/include/MidiEvent.h @@ -27,7 +27,7 @@ #include #include "Midi.h" -#include "panning_constants.h" +#include "panning.h" #include "volume.h" namespace lmms diff --git a/include/Mixer.h b/include/Mixer.h index d74f9c11c..6e3c86565 100644 --- a/include/Mixer.h +++ b/include/Mixer.h @@ -63,7 +63,6 @@ class MixerChannel : public ThreadableJob FloatModel m_volumeModel; QString m_name; QMutex m_lock; - int m_channelIndex; // what channel index are we bool m_queued; // are we queued up for rendering yet? bool m_muted; // are we muted? updated per period so we don't have to call m_muteModel.value() twice @@ -73,8 +72,15 @@ class MixerChannel : public ThreadableJob // pointers to other channels that send to this one MixerRouteVector m_receives; + int index() const { return m_channelIndex; } + void setIndex(int index) { m_channelIndex = index; } + + bool isMaster() { return m_channelIndex == 0; } + bool requiresProcessing() const override { return true; } void unmuteForSolo(); + void unmuteSenderForSolo(); + void unmuteReceiverForSolo(); auto color() const -> const std::optional& { return m_color; } void setColor(const std::optional& color) { m_color = color; } @@ -85,7 +91,7 @@ class MixerChannel : public ThreadableJob private: void doProcessing() override; - + int m_channelIndex; std::optional m_color; }; @@ -98,12 +104,12 @@ public: mix_ch_t senderIndex() const { - return m_from->m_channelIndex; + return m_from->index(); } mix_ch_t receiverIndex() const { - return m_to->m_channelIndex; + return m_to->index(); } FloatModel * amount() diff --git a/include/MixerChannelLcdSpinBox.h b/include/MixerChannelLcdSpinBox.h index 0abd9f100..251cf7da2 100644 --- a/include/MixerChannelLcdSpinBox.h +++ b/include/MixerChannelLcdSpinBox.h @@ -50,6 +50,8 @@ protected: void contextMenuEvent(QContextMenuEvent* event) override; private: + void enterValue(); + TrackView * m_tv; }; diff --git a/include/MixerChannelView.h b/include/MixerChannelView.h index 7ccb8a24f..3d5f4ffb6 100644 --- a/include/MixerChannelView.h +++ b/include/MixerChannelView.h @@ -1,7 +1,7 @@ /* - * MixerChannelView.h - the mixer channel view + * MixerChannelView.h * - * Copyright (c) 2022 saker + * Copyright (c) 2024 saker * * This file is part of LMMS - https://lmms.io * @@ -22,8 +22,15 @@ * */ -#ifndef MIXER_CHANNEL_VIEW_H -#define MIXER_CHANNEL_VIEW_H +#ifndef LMMS_GUI_MIXER_CHANNEL_VIEW_H +#define LMMS_GUI_MIXER_CHANNEL_VIEW_H + +#include +#include +#include +#include +#include +#include #include "EffectRackView.h" #include "Fader.h" @@ -32,113 +39,99 @@ #include "PixmapButton.h" #include "SendButtonIndicator.h" -#include -#include -#include -#include -#include - -namespace lmms -{ - class MixerChannel; +namespace lmms { +class MixerChannel; } -namespace lmms::gui +namespace lmms::gui { +class PeakIndicator; + + +class MixerChannelView : public QWidget { - class PeakIndicator; + Q_OBJECT + Q_PROPERTY(QBrush backgroundActive READ backgroundActive WRITE setBackgroundActive) + Q_PROPERTY(QColor strokeOuterActive READ strokeOuterActive WRITE setStrokeOuterActive) + Q_PROPERTY(QColor strokeOuterInactive READ strokeOuterInactive WRITE setStrokeOuterInactive) + Q_PROPERTY(QColor strokeInnerActive READ strokeInnerActive WRITE setStrokeInnerActive) + Q_PROPERTY(QColor strokeInnerInactive READ strokeInnerInactive WRITE setStrokeInnerInactive) +public: + MixerChannelView(QWidget* parent, MixerView* mixerView, int channelIndex); + void paintEvent(QPaintEvent* event) override; + void contextMenuEvent(QContextMenuEvent*) override; + void mousePressEvent(QMouseEvent*) override; + void mouseDoubleClickEvent(QMouseEvent*) override; + bool eventFilter(QObject* dist, QEvent* event) override; - constexpr int MIXER_CHANNEL_INNER_BORDER_SIZE = 3; - constexpr int MIXER_CHANNEL_OUTER_BORDER_SIZE = 1; + void reset(); + int channelIndex() const { return m_channelIndex; } + void setChannelIndex(int index); - class MixerChannelView : public QWidget - { - Q_OBJECT - Q_PROPERTY(QBrush backgroundActive READ backgroundActive WRITE setBackgroundActive) - Q_PROPERTY(QColor strokeOuterActive READ strokeOuterActive WRITE setStrokeOuterActive) - Q_PROPERTY(QColor strokeOuterInactive READ strokeOuterInactive WRITE setStrokeOuterInactive) - Q_PROPERTY(QColor strokeInnerActive READ strokeInnerActive WRITE setStrokeInnerActive) - Q_PROPERTY(QColor strokeInnerInactive READ strokeInnerInactive WRITE setStrokeInnerInactive) - public: - enum class SendReceiveState - { - None, SendToThis, ReceiveFromThis - }; + QBrush backgroundActive() const { return m_backgroundActive; } + void setBackgroundActive(const QBrush& c) { m_backgroundActive = c; } - MixerChannelView(QWidget* parent, MixerView* mixerView, int channelIndex); - void paintEvent(QPaintEvent* event) override; - void contextMenuEvent(QContextMenuEvent*) override; - void mousePressEvent(QMouseEvent*) override; - void mouseDoubleClickEvent(QMouseEvent*) override; - bool eventFilter(QObject* dist, QEvent* event) override; + QColor strokeOuterActive() const { return m_strokeOuterActive; } + void setStrokeOuterActive(const QColor& c) { m_strokeOuterActive = c; } - int channelIndex() const; - void setChannelIndex(int index); + QColor strokeOuterInactive() const { return m_strokeOuterInactive; } + void setStrokeOuterInactive(const QColor& c) { m_strokeOuterInactive = c; } - SendReceiveState sendReceiveState() const; - void setSendReceiveState(const SendReceiveState& state); + QColor strokeInnerActive() const { return m_strokeInnerActive; } + void setStrokeInnerActive(const QColor& c) { m_strokeInnerActive = c; } - QBrush backgroundActive() const; - void setBackgroundActive(const QBrush& c); + QColor strokeInnerInactive() const { return m_strokeInnerInactive; } + void setStrokeInnerInactive(const QColor& c) { m_strokeInnerInactive = c; } - QColor strokeOuterActive() const; - void setStrokeOuterActive(const QColor& c); + Fader* fader() const { return m_fader; } - QColor strokeOuterInactive() const; - void setStrokeOuterInactive(const QColor& c); +public slots: + void renameChannel(); + void resetColor(); + void selectColor(); + void randomizeColor(); - QColor strokeInnerActive() const; - void setStrokeInnerActive(const QColor& c); +private slots: + void renameFinished(); + void removeChannel(); + void removeUnusedChannels(); + void moveChannelLeft(); + void moveChannelRight(); - QColor strokeInnerInactive() const; - void setStrokeInnerInactive(const QColor& c); +private: + bool confirmRemoval(int index); + QString elideName(const QString& name); + MixerChannel* mixerChannel() const; + auto isMasterChannel() const -> bool { return m_channelIndex == 0; } - void reset(); +private: + SendButtonIndicator* m_sendButton; + QLabel* m_receiveArrow; + QStackedWidget* m_receiveArrowOrSendButton; + int m_receiveArrowStackedIndex = -1; + int m_sendButtonStackedIndex = -1; - public slots: - void renameChannel(); - void resetColor(); - void selectColor(); - void randomizeColor(); + Knob* m_sendKnob; + LcdWidget* m_channelNumberLcd; + QLineEdit* m_renameLineEdit; + QGraphicsView* m_renameLineEditView; + QLabel* m_sendArrow; + PixmapButton* m_muteButton; + PixmapButton* m_soloButton; + PeakIndicator* m_peakIndicator = nullptr; + Fader* m_fader; + EffectRackView* m_effectRackView; + MixerView* m_mixerView; + int m_channelIndex = 0; + bool m_inRename = false; - private slots: - void renameFinished(); - void removeChannel(); - void removeUnusedChannels(); - void moveChannelLeft(); - void moveChannelRight(); + QBrush m_backgroundActive; + QColor m_strokeOuterActive; + QColor m_strokeOuterInactive; + QColor m_strokeInnerActive; + QColor m_strokeInnerInactive; - private: - bool confirmRemoval(int index); - QString elideName(const QString& name); - MixerChannel* mixerChannel() const; - auto isMasterChannel() const -> bool { return m_channelIndex == 0; } - - private: - SendButtonIndicator* m_sendButton; - Knob* m_sendKnob; - LcdWidget* m_channelNumberLcd; - QLineEdit* m_renameLineEdit; - QGraphicsView* m_renameLineEditView; - QLabel* m_sendArrow; - QLabel* m_receiveArrow; - PixmapButton* m_muteButton; - PixmapButton* m_soloButton; - PeakIndicator* m_peakIndicator = nullptr; - Fader* m_fader; - EffectRackView* m_effectRackView; - MixerView* m_mixerView; - SendReceiveState m_sendReceiveState = SendReceiveState::None; - int m_channelIndex = 0; - bool m_inRename = false; - - QBrush m_backgroundActive; - QColor m_strokeOuterActive; - QColor m_strokeOuterInactive; - QColor m_strokeInnerActive; - QColor m_strokeInnerInactive; - - friend class MixerView; - }; + friend class MixerView; +}; } // namespace lmms::gui -#endif \ No newline at end of file +#endif // LMMS_GUI_MIXER_CHANNEL_VIEW_H diff --git a/include/Oscillator.h b/include/Oscillator.h index 0a5e166dc..13d8264be 100644 --- a/include/Oscillator.h +++ b/include/Oscillator.h @@ -30,10 +30,10 @@ #include #include #include -#include "interpolation.h" +#include #include "Engine.h" -#include "lmms_constants.h" +#include "lmms_math.h" #include "lmmsconfig.h" #include "AudioEngine.h" #include "OscillatorConstants.h" @@ -114,7 +114,7 @@ public: // now follow the wave-shape-routines... static inline sample_t sinSample( const float _sample ) { - return sinf( _sample * F_2PI ); + return std::sin(_sample * 2 * std::numbers::pi_v); } static inline sample_t triangleSample( const float _sample ) @@ -163,7 +163,7 @@ public: static inline sample_t noiseSample( const float ) { - return 1.0f - rand() * 2.0f / RAND_MAX; + return 1.0f - rand() * 2.0f / static_cast(RAND_MAX); } static sample_t userWaveSample(const SampleBuffer* buffer, const float sample) @@ -173,7 +173,7 @@ public: const auto frame = absFraction(sample) * frames; const auto f1 = static_cast(frame); - return linearInterpolate(buffer->data()[f1][0], buffer->data()[(f1 + 1) % frames][0], fraction(frame)); + return std::lerp(buffer->data()[f1][0], buffer->data()[(f1 + 1) % frames][0], fraction(frame)); } struct wtSampleControl { @@ -202,24 +202,25 @@ public: { assert(table != nullptr); wtSampleControl control = getWtSampleControl(sample); - return linearInterpolate(table[control.band][control.f1], - table[control.band][control.f2], fraction(control.frame)); + return std::lerp(table[control.band][control.f1], table[control.band][control.f2], fraction(control.frame)); } sample_t wtSample(const OscillatorConstants::waveform_t* table, const float sample) const { assert(table != nullptr); wtSampleControl control = getWtSampleControl(sample); - return linearInterpolate((*table)[control.band][control.f1], - (*table)[control.band][control.f2], fraction(control.frame)); + return std::lerp( + (*table)[control.band][control.f1], + (*table)[control.band][control.f2], + fraction(control.frame) + ); } inline sample_t wtSample(sample_t **table, const float sample) const { assert(table != nullptr); wtSampleControl control = getWtSampleControl(sample); - return linearInterpolate(table[control.band][control.f1], - table[control.band][control.f2], fraction(control.frame)); + return std::lerp(table[control.band][control.f1], table[control.band][control.f2], fraction(control.frame)); } static inline int waveTableBandFromFreq(float freq) @@ -237,7 +238,7 @@ public: static inline float freqFromWaveTableBand(int band) { - return 440.0f * std::pow(2.0f, (band * OscillatorConstants::SEMITONES_PER_TABLE - 69.0f) / 12.0f); + return 440.0f * std::exp2((band * OscillatorConstants::SEMITONES_PER_TABLE - 69.0f) / 12.0f); } private: diff --git a/include/OutputSettings.h b/include/OutputSettings.h index 94de0612c..8a7ebc993 100644 --- a/include/OutputSettings.h +++ b/include/OutputSettings.h @@ -49,50 +49,26 @@ public: Mono }; - class BitRateSettings - { - public: - BitRateSettings(bitrate_t bitRate, bool isVariableBitRate) : - m_bitRate(bitRate), - m_isVariableBitRate(isVariableBitRate) - {} - - bool isVariableBitRate() const { return m_isVariableBitRate; } - void setVariableBitrate(bool variableBitRate = true) { m_isVariableBitRate = variableBitRate; } - - bitrate_t getBitRate() const { return m_bitRate; } - void setBitRate(bitrate_t bitRate) { m_bitRate = bitRate; } - - private: - bitrate_t m_bitRate; - bool m_isVariableBitRate; - }; - public: - OutputSettings( sample_rate_t sampleRate, - BitRateSettings const & bitRateSettings, - BitDepth bitDepth, - StereoMode stereoMode ) : - m_sampleRate(sampleRate), - m_bitRateSettings(bitRateSettings), - m_bitDepth(bitDepth), - m_stereoMode(stereoMode), - m_compressionLevel(0.625) // 5/8 + OutputSettings(sample_rate_t sampleRate, bitrate_t bitRate, BitDepth bitDepth, StereoMode stereoMode) + : m_sampleRate(sampleRate) + , m_bitRate(bitRate) + , m_bitDepth(bitDepth) + , m_stereoMode(stereoMode) + , m_compressionLevel(0.625) // 5/8 { } - OutputSettings( sample_rate_t sampleRate, - BitRateSettings const & bitRateSettings, - BitDepth bitDepth ) : - OutputSettings(sampleRate, bitRateSettings, bitDepth, StereoMode::Stereo ) + OutputSettings(sample_rate_t sampleRate, bitrate_t bitRate, BitDepth bitDepth) + : OutputSettings(sampleRate, bitRate, bitDepth, StereoMode::Stereo) { } sample_rate_t getSampleRate() const { return m_sampleRate; } void setSampleRate(sample_rate_t sampleRate) { m_sampleRate = sampleRate; } - BitRateSettings const & getBitRateSettings() const { return m_bitRateSettings; } - void setBitRateSettings(BitRateSettings const & bitRateSettings) { m_bitRateSettings = bitRateSettings; } + bitrate_t bitrate() const { return m_bitRate; } + void setBitrate(bitrate_t bitrate) { m_bitRate = bitrate; } BitDepth getBitDepth() const { return m_bitDepth; } void setBitDepth(BitDepth bitDepth) { m_bitDepth = bitDepth; } @@ -109,7 +85,7 @@ public: private: sample_rate_t m_sampleRate; - BitRateSettings m_bitRateSettings; + bitrate_t m_bitRate; BitDepth m_bitDepth; StereoMode m_stereoMode; double m_compressionLevel; diff --git a/include/PatternTrack.h b/include/PatternTrack.h index 1c0c610d2..2568fc91e 100644 --- a/include/PatternTrack.h +++ b/include/PatternTrack.h @@ -57,8 +57,7 @@ public: gui::TrackView * createView( gui::TrackContainerView* tcv ) override; Clip* createClip(const TimePos & pos) override; - void saveTrackSpecificSettings( QDomDocument & _doc, - QDomElement & _parent ) override; + void saveTrackSpecificSettings(QDomDocument& doc, QDomElement& parent, bool presetMode) override; void loadTrackSpecificSettings( const QDomElement & _this ) override; static PatternTrack* findPatternTrack(int pattern_num); diff --git a/include/PeakController.h b/include/PeakController.h index de9da3b1c..a22257374 100644 --- a/include/PeakController.h +++ b/include/PeakController.h @@ -78,8 +78,7 @@ private: static int m_loadCount; static bool m_buggedFile; - float m_attackCoeff; - float m_decayCoeff; + float m_coeff; bool m_coeffNeedsUpdate; } ; diff --git a/include/PianoRoll.h b/include/PianoRoll.h index 35550a5b3..a1d045ff4 100644 --- a/include/PianoRoll.h +++ b/include/PianoRoll.h @@ -74,6 +74,7 @@ class PianoRoll : public QWidget Q_PROPERTY(QColor noteModeColor MEMBER m_noteModeColor) Q_PROPERTY(QColor noteColor MEMBER m_noteColor) Q_PROPERTY(QColor stepNoteColor MEMBER m_stepNoteColor) + Q_PROPERTY(QColor currentStepNoteColor MEMBER m_currentStepNoteColor) Q_PROPERTY(QColor ghostNoteColor MEMBER m_ghostNoteColor) Q_PROPERTY(QColor noteTextColor MEMBER m_noteTextColor) Q_PROPERTY(QColor ghostNoteTextColor MEMBER m_ghostNoteTextColor) @@ -374,6 +375,8 @@ private: QScrollBar * m_leftRightScroll; QScrollBar * m_topBottomScroll; + void adjustLeftRightScoll(int value); + TimePos m_currentPosition; bool m_recording; bool m_doAutoQuantization{false}; @@ -453,9 +456,14 @@ private: // did we start a mouseclick with shift pressed bool m_startedWithShift; - // Variable that holds the position in ticks for the knife action - int m_knifeTickPos; - void updateKnifePos(QMouseEvent* me); + // Variables that hold the start and end position for the knife line + TimePos m_knifeStartTickPos; + int m_knifeStartKey; + TimePos m_knifeEndTickPos; + int m_knifeEndKey; + bool m_knifeDown; + + void updateKnifePos(QMouseEvent* me, bool initial); friend class PianoRollWindow; @@ -469,6 +477,7 @@ private: QColor m_noteModeColor; QColor m_noteColor; QColor m_stepNoteColor; + QColor m_currentStepNoteColor; QColor m_noteTextColor; QColor m_ghostNoteColor; QColor m_ghostNoteTextColor; diff --git a/include/PixmapButton.h b/include/PixmapButton.h index 734bd11ae..a0b4141de 100644 --- a/include/PixmapButton.h +++ b/include/PixmapButton.h @@ -45,6 +45,7 @@ public: void setInactiveGraphic( const QPixmap & _pm, bool _update = true ); QSize sizeHint() const override; + QSize minimumSizeHint() const override; signals: void doubleClicked(); diff --git a/include/PlayHandle.h b/include/PlayHandle.h index f2e87136a..5f0256a1a 100644 --- a/include/PlayHandle.h +++ b/include/PlayHandle.h @@ -40,7 +40,7 @@ namespace lmms { class Track; -class AudioPort; +class AudioBusHandle; class SampleFrame; class LMMS_EXPORT PlayHandle : public ThreadableJob @@ -65,7 +65,7 @@ public: m_offset = p.m_offset; m_affinity = p.m_affinity; m_usesBuffer = p.m_usesBuffer; - m_audioPort = p.m_audioPort; + m_audioBusHandle = p.m_audioBusHandle; return *this; } @@ -134,14 +134,14 @@ public: m_usesBuffer = b; } - AudioPort * audioPort() + AudioBusHandle* audioBusHandle() { - return m_audioPort; + return m_audioBusHandle; } - void setAudioPort( AudioPort * port ) + void setAudioBusHandle(AudioBusHandle* busHandle) { - m_audioPort = port; + m_audioBusHandle = busHandle; } void releaseBuffer(); @@ -156,7 +156,7 @@ private: SampleFrame* m_playHandleBuffer; bool m_bufferReleased; bool m_usesBuffer; - AudioPort * m_audioPort; + AudioBusHandle* m_audioBusHandle; } ; using PlayHandleList = QList; diff --git a/include/PluginFactory.h b/include/PluginFactory.h index 7221f2b09..6ed0bc40b 100644 --- a/include/PluginFactory.h +++ b/include/PluginFactory.h @@ -61,6 +61,7 @@ public: ~PluginFactory() = default; static void setupSearchPaths(); + static QList getExcludePatterns(const char* envVar); /// Returns the singleton instance of PluginFactory. You won't need to call /// this directly, use pluginFactory instead. @@ -104,6 +105,8 @@ private: QHash m_errors; static std::unique_ptr s_instance; + + static void filterPlugins(QSet& files); }; //Short-hand function diff --git a/include/PluginView.h b/include/PluginView.h index 3c78cb00a..dce4d6bfb 100644 --- a/include/PluginView.h +++ b/include/PluginView.h @@ -27,23 +27,22 @@ #include -#include "Plugin.h" #include "ModelView.h" +#include "Plugin.h" -namespace lmms::gui -{ +namespace lmms::gui { -class LMMS_EXPORT PluginView : public QWidget, public ModelView +class LMMS_EXPORT PluginView : public QWidget, public ModelView { public: - PluginView( Plugin * _plugin, QWidget * _parent ) : - QWidget( _parent ), - ModelView( _plugin, this ) + PluginView(Plugin* _plugin, QWidget* _parent) + : QWidget(_parent) + , ModelView(_plugin, this) { } -} ; - + virtual bool isResizable() const { return false; } +}; } // namespace lmms::gui diff --git a/include/QuadratureLfo.h b/include/QuadratureLfo.h index 6f007e072..bece17c5a 100644 --- a/include/QuadratureLfo.h +++ b/include/QuadratureLfo.h @@ -25,7 +25,8 @@ #ifndef LMMS_QUADRATURE_LFO_H #define LMMS_QUADRATURE_LFO_H -#include "lmms_math.h" +#include +#include namespace lmms { @@ -37,7 +38,7 @@ public: QuadratureLfo( int sampleRate ) : m_frequency(0), m_phase(0), - m_offset(D_PI / 2) + m_offset(std::numbers::pi * 0.5) { setSampleRate(sampleRate); } @@ -64,7 +65,7 @@ public: inline void setSampleRate ( int samplerate ) { m_samplerate = samplerate; - m_twoPiOverSr = F_2PI / samplerate; + m_twoPiOverSr = 2 * std::numbers::pi_v / samplerate; m_increment = m_frequency * m_twoPiOverSr; } @@ -77,14 +78,10 @@ public: void tick( float *l, float *r ) { - *l = sinf( m_phase ); - *r = sinf( m_phase + m_offset ); + *l = std::sin(m_phase); + *r = std::sin(m_phase + m_offset); m_phase += m_increment; - - while (m_phase >= D_2PI) - { - m_phase -= D_2PI; - } + m_phase = std::fmod(m_phase, 2 * std::numbers::pi); } private: diff --git a/include/RemotePluginBase.h b/include/RemotePluginBase.h index 5214b6f92..787742fc0 100644 --- a/include/RemotePluginBase.h +++ b/include/RemotePluginBase.h @@ -71,7 +71,6 @@ #include #include #include -#include #ifndef SYNC_WITH_SHM_FIFO #include @@ -125,7 +124,7 @@ public: m_master( true ), m_lockDepth( 0 ) { - m_data.create(QUuid::createUuid().toString().toStdString()); + m_data.create(); m_data->startPtr = m_data->endPtr = 0; static int k = 0; m_data->dataSem.semKey = ( getpid()<<10 ) + ++k; @@ -398,7 +397,7 @@ public: message & addInt( int _i ) { char buf[32]; - sprintf( buf, "%d", _i ); + std::snprintf(buf, 32, "%d", _i); data.emplace_back( buf ); return *this; } @@ -406,7 +405,7 @@ public: message & addFloat( float _f ) { char buf[32]; - sprintf( buf, "%f", _f ); + std::snprintf(buf, 32, "%f", _f); data.emplace_back( buf ); return *this; } diff --git a/include/RemotePluginClient.h b/include/RemotePluginClient.h index 22158f1b8..241896506 100644 --- a/include/RemotePluginClient.h +++ b/include/RemotePluginClient.h @@ -309,7 +309,7 @@ bool RemotePluginClient::processMessage( const message & _m ) default: { char buf[64]; - sprintf( buf, "undefined message: %d\n", (int) _m.id ); + std::snprintf(buf, 64, "undefined message: %d\n", _m.id); debugMessage( buf ); break; } diff --git a/include/RmsHelper.h b/include/RmsHelper.h index a50d5ff6d..ae0fb71b3 100644 --- a/include/RmsHelper.h +++ b/include/RmsHelper.h @@ -84,7 +84,7 @@ public: m_sum -= m_buffer[ m_pos ]; m_sum += m_buffer[ m_pos ] = in * in; ++m_pos %= m_size; - return sqrtf( m_sum * m_sizef ); + return std::sqrt(m_sum * m_sizef); } private: diff --git a/include/SampleClipView.h b/include/SampleClipView.h index 0faf8c275..07d04d9d0 100644 --- a/include/SampleClipView.h +++ b/include/SampleClipView.h @@ -27,6 +27,8 @@ #include "ClipView.h" +#include "SampleThumbnail.h" + namespace lmms { @@ -64,6 +66,7 @@ protected: private: SampleClip * m_clip; + SampleThumbnail m_sampleThumbnail; QPixmap m_paintPixmap; bool splitClip( const TimePos pos ) override; } ; diff --git a/include/SamplePlayHandle.h b/include/SamplePlayHandle.h index dde29b49b..b3fddd503 100644 --- a/include/SamplePlayHandle.h +++ b/include/SamplePlayHandle.h @@ -38,13 +38,13 @@ namespace lmms class PatternTrack; class SampleClip; class Track; -class AudioPort; +class AudioBusHandle; class LMMS_EXPORT SamplePlayHandle : public PlayHandle { public: - SamplePlayHandle(Sample* sample, bool ownAudioPort = true); + SamplePlayHandle(Sample* sample, bool ownAudioBusHandle = true); SamplePlayHandle( const QString& sampleFile ); SamplePlayHandle( SampleClip* clip ); ~SamplePlayHandle() override; @@ -88,7 +88,7 @@ private: f_cnt_t m_frame; Sample::PlaybackState m_state; - const bool m_ownAudioPort; + const bool m_ownAudioBusHandle; FloatModel m_defaultVolumeModel; FloatModel * m_volumeModel; diff --git a/include/SampleThumbnail.h b/include/SampleThumbnail.h new file mode 100644 index 000000000..b8e1e85af --- /dev/null +++ b/include/SampleThumbnail.h @@ -0,0 +1,143 @@ +/* + * SampleThumbnail.h + * + * Copyright (c) 2024 Khoi Dau + * Copyright (c) 2024 Sotonye Atemie + * + * This file is part of LMMS - https://lmms.io + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program (see COPYING); if not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA. + * + */ + +#ifndef LMMS_SAMPLE_THUMBNAIL_H +#define LMMS_SAMPLE_THUMBNAIL_H + +#include +#include +#include +#include + +#include "Sample.h" +#include "lmms_export.h" + +namespace lmms { + +/** + Allows for visualizing sample data. + + On construction, thumbnails will be generated + at logarathmic intervals of downsampling. Those cached thumbnails will then be further downsampled on the fly and + transformed in various ways to create the desired waveform. + + Given that we are dealing with far less data to generate + the visualization however (i.e., we are not reading from original sample data when drawing), this provides a + significant performance boost that wouldn't be possible otherwise. + */ +class LMMS_EXPORT SampleThumbnail +{ +public: + struct VisualizeParameters + { + QRect sampleRect; //!< A rectangle that covers the entire range of samples. + + QRect drawRect; //!< Specifies the location in `sampleRect` where the waveform will be drawn. Equals + //!< `sampleRect` when null. + + QRect viewportRect; //!< Clips `drawRect`. Equals `drawRect` when null. + + float amplification = 1.0f; //!< The amount of amplification to apply to the waveform. + + float sampleStart = 0.0f; //!< Where the sample begins for drawing. + + float sampleEnd = 1.0f; //!< Where the sample ends for drawing. + + bool reversed = false; //!< Determines if the waveform is drawn in reverse or not. + }; + + SampleThumbnail() = default; + SampleThumbnail(const Sample& sample); + void visualize(VisualizeParameters parameters, QPainter& painter) const; + +private: + class Thumbnail + { + public: + struct Peak + { + Peak() = default; + + Peak(float min, float max) + : min(min) + , max(max) + { + } + + Peak(const SampleFrame& frame) + : min(std::min(frame.left(), frame.right())) + , max(std::max(frame.left(), frame.right())) + { + } + + Peak operator+(const Peak& other) const { return Peak(std::min(min, other.min), std::max(max, other.max)); } + Peak operator+(const SampleFrame& frame) const { return *this + Peak{frame}; } + + float min = std::numeric_limits::max(); + float max = std::numeric_limits::min(); + }; + + Thumbnail() = default; + Thumbnail(std::vector peaks, double samplesPerPeak); + Thumbnail(const float* buffer, size_t size, size_t width); + + Thumbnail zoomOut(float factor) const; + + Peak& operator[](size_t index) { return m_peaks[index]; } + const Peak& operator[](size_t index) const { return m_peaks[index]; } + + int width() const { return m_peaks.size(); } + double samplesPerPeak() const { return m_samplesPerPeak; } + + private: + std::vector m_peaks; + double m_samplesPerPeak = 0.0; + }; + + struct SampleThumbnailEntry + { + QString filePath; + QDateTime lastModified; + + friend bool operator==(const SampleThumbnailEntry& first, const SampleThumbnailEntry& second) + { + return first.filePath == second.filePath && first.lastModified == second.lastModified; + } + }; + + struct Hash + { + std::size_t operator()(const SampleThumbnailEntry& entry) const noexcept { return qHash(entry.filePath); } + }; + + using ThumbnailCache = std::vector; + std::shared_ptr m_thumbnailCache = std::make_shared(); + + inline static std::unordered_map, Hash> s_sampleThumbnailCacheMap; +}; + +} // namespace lmms + +#endif // LMMS_SAMPLE_THUMBNAIL_H diff --git a/include/SampleTrack.h b/include/SampleTrack.h index f71f01cd1..d333cd593 100644 --- a/include/SampleTrack.h +++ b/include/SampleTrack.h @@ -25,7 +25,7 @@ #ifndef LMMS_SAMPLE_TRACK_H #define LMMS_SAMPLE_TRACK_H -#include "AudioPort.h" +#include "AudioBusHandle.h" #include "Track.h" @@ -54,8 +54,7 @@ public: Clip* createClip(const TimePos & pos) override; - void saveTrackSpecificSettings( QDomDocument & _doc, - QDomElement & _parent ) override; + void saveTrackSpecificSettings(QDomDocument& doc, QDomElement& parent, bool presetMode) override; void loadTrackSpecificSettings( const QDomElement & _this ) override; inline IntModel * mixerChannelModel() @@ -63,9 +62,9 @@ public: return &m_mixerChannelModel; } - inline AudioPort * audioPort() + inline AudioBusHandle* audioBusHandle() { - return &m_audioPort; + return &m_audioBusHandle; } QString nodeName() const override @@ -96,7 +95,7 @@ private: FloatModel m_volumeModel; FloatModel m_panningModel; IntModel m_mixerChannelModel; - AudioPort m_audioPort; + AudioBusHandle m_audioBusHandle; bool m_isPlaying; diff --git a/include/SampleTrackWindow.h b/include/SampleTrackWindow.h index 4d535bfe5..01adb0080 100644 --- a/include/SampleTrackWindow.h +++ b/include/SampleTrackWindow.h @@ -28,6 +28,7 @@ #include #include "ModelView.h" +#include "PixmapButton.h" #include "SampleTrack.h" #include "SerializingObject.h" @@ -90,6 +91,8 @@ private: QLineEdit * m_nameLineEdit; Knob * m_volumeKnob; Knob * m_panningKnob; + PixmapButton *m_muteBtn; + PixmapButton *m_soloBtn; MixerChannelLcdSpinBox * m_mixerChannelNumber; EffectRackView * m_effectRack; diff --git a/include/SampleWaveform.h b/include/SampleWaveform.h deleted file mode 100644 index ccfc9fb60..000000000 --- a/include/SampleWaveform.h +++ /dev/null @@ -1,49 +0,0 @@ -/* - * SampleWaveform.h - * - * Copyright (c) 2023 saker - * - * This file is part of LMMS - https://lmms.io - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public - * License along with this program (see COPYING); if not, write to the - * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301 USA. - * - */ - -#ifndef LMMS_GUI_SAMPLE_WAVEFORM_H -#define LMMS_GUI_SAMPLE_WAVEFORM_H - -#include - -#include "Sample.h" -#include "lmms_export.h" - -namespace lmms::gui { -class LMMS_EXPORT SampleWaveform -{ -public: - struct Parameters - { - const SampleFrame* buffer; - size_t size; - float amplification; - bool reversed; - }; - - static void visualize(Parameters parameters, QPainter& painter, const QRect& rect); -}; -} // namespace lmms::gui - -#endif // LMMS_GUI_SAMPLE_WAVEFORM_H diff --git a/include/SetupDialog.h b/include/SetupDialog.h index 871a80bcd..23589f91a 100644 --- a/include/SetupDialog.h +++ b/include/SetupDialog.h @@ -72,10 +72,10 @@ protected slots: private slots: // General settings widget. - void toggleDisplaydBFS(bool enabled); void toggleTooltips(bool enabled); void toggleDisplayWaveform(bool enabled); void toggleNoteLabels(bool enabled); + void toggleShowFaderTicks(bool enabled); void toggleCompactTrackButtons(bool enabled); void toggleOneInstrumentTrackWindow(bool enabled); void toggleSideBarOnRight(bool enabled); @@ -134,10 +134,10 @@ private: TabBar * m_tabBar; // General settings widgets. - bool m_displaydBFS; bool m_tooltips; bool m_displayWaveform; bool m_printNoteLabels; + bool m_showFaderTicks; bool m_compactTrackButtons; bool m_oneInstrumentTrackWindow; bool m_sideBarOnRight; diff --git a/include/SharedMemory.h b/include/SharedMemory.h index c2790c78b..3ed1330d4 100644 --- a/include/SharedMemory.h +++ b/include/SharedMemory.h @@ -44,6 +44,7 @@ public: SharedMemoryData() noexcept; SharedMemoryData(std::string&& key, bool readOnly); SharedMemoryData(std::string&& key, std::size_t size, bool readOnly); + SharedMemoryData(std::size_t size, bool readOnly); ~SharedMemoryData(); SharedMemoryData(SharedMemoryData&& other) noexcept; @@ -64,6 +65,7 @@ public: const std::string& key() const noexcept { return m_key; } void* get() const noexcept { return m_ptr; } + std::size_t size_bytes() const noexcept; private: std::string m_key; @@ -95,6 +97,11 @@ public: m_data = detail::SharedMemoryData{std::move(key), sizeof(T), std::is_const_v}; } + void create() + { + m_data = detail::SharedMemoryData{sizeof(T), std::is_const_v}; + } + void detach() noexcept { m_data = detail::SharedMemoryData{}; @@ -103,6 +110,9 @@ public: const std::string& key() const noexcept { return m_data.key(); } T* get() const noexcept { return static_cast(m_data.get()); } + std::size_t size() const noexcept { return get() ? 1 : 0; } + std::size_t size_bytes() const noexcept { return get() ? sizeof(T) : 0; } + T* operator->() const noexcept { return get(); } T& operator*() const noexcept { return *get(); } explicit operator bool() const noexcept { return get() != nullptr; } @@ -132,6 +142,11 @@ public: m_data = detail::SharedMemoryData{std::move(key), size * sizeof(T), std::is_const_v}; } + void create(std::size_t size) + { + m_data = detail::SharedMemoryData{size * sizeof(T), std::is_const_v}; + } + void detach() noexcept { m_data = detail::SharedMemoryData{}; @@ -140,6 +155,9 @@ public: const std::string& key() const noexcept { return m_data.key(); } T* get() const noexcept { return static_cast(m_data.get()); } + std::size_t size() const noexcept { return m_data.size_bytes() / sizeof(T); } + std::size_t size_bytes() const noexcept { return m_data.size_bytes(); } + T& operator[](std::size_t index) const noexcept { return get()[index]; } explicit operator bool() const noexcept { return get() != nullptr; } diff --git a/include/Song.h b/include/Song.h index 2897b2131..f08edfff6 100644 --- a/include/Song.h +++ b/include/Song.h @@ -33,6 +33,7 @@ #include "AudioEngine.h" #include "Controller.h" +#include "Metronome.h" #include "lmms_constants.h" #include "MeterModel.h" #include "Timeline.h" @@ -375,6 +376,8 @@ public: const std::string& syncKey() const noexcept { return m_vstSyncController.sharedMemoryKey(); } + Metronome& metronome() { return m_metronome; } + public slots: void playSong(); void record(); @@ -448,6 +451,7 @@ private: void restoreKeymapStates(const QDomElement &element); void processAutomations(const TrackList& tracks, TimePos timeStart, fpp_t frames); + void processMetronome(size_t bufferOffset); void setModified(bool value); @@ -513,6 +517,8 @@ private: AutomatedValueMap m_oldAutomatedValues; + Metronome m_metronome; + friend class Engine; friend class gui::SongEditor; friend class gui::ControllerRackView; diff --git a/include/SongEditor.h b/include/SongEditor.h index 98a9096fb..1f719623a 100644 --- a/include/SongEditor.h +++ b/include/SongEditor.h @@ -128,6 +128,8 @@ private: QScrollBar * m_leftRightScroll; + void adjustLeftRightScoll(int value); + LcdSpinBox * m_tempoSpinBox; TimeLineWidget * m_timeLine; diff --git a/include/StepRecorder.h b/include/StepRecorder.h index 55435617c..e085838e2 100644 --- a/include/StepRecorder.h +++ b/include/StepRecorder.h @@ -66,11 +66,6 @@ class StepRecorder : public QObject return m_isRecording; } - QColor curStepNoteColor() const - { - return QColor(245,3,139); // radiant pink - } - private slots: void removeNotesReleasedForTooLong(); diff --git a/include/SubWindow.h b/include/SubWindow.h index d1cc6a7af..cc9ff38a3 100644 --- a/include/SubWindow.h +++ b/include/SubWindow.h @@ -71,6 +71,10 @@ public: int titleBarHeight() const; int frameWidth() const; + // TODO Needed to update the title bar when replacing instruments. + // Update works automatically if QMdiSubWindows are used. + void updateTitleBar(); + protected: // hook the QWidget move/resize events to update the tracked geometry void moveEvent( QMoveEvent * event ) override; @@ -78,6 +82,8 @@ protected: void paintEvent( QPaintEvent * pe ) override; void changeEvent( QEvent * event ) override; + QPushButton* addTitleButton(const std::string& iconName, const QString& toolTip); + signals: void focusLost(); diff --git a/include/TimePos.h b/include/TimePos.h index b86d8eb0f..68f3bd01b 100644 --- a/include/TimePos.h +++ b/include/TimePos.h @@ -26,6 +26,8 @@ #ifndef LMMS_TIME_POS_H #define LMMS_TIME_POS_H +#include +#include #include "lmms_export.h" #include "lmms_basics.h" @@ -51,8 +53,8 @@ class LMMS_EXPORT TimeSig public: TimeSig( int num, int denom ); TimeSig( const MeterModel &model ); - int numerator() const; - int denominator() const; + int numerator() const { return m_num; } + int denominator() const { return m_denom; } private: int m_num; int m_denom; @@ -69,42 +71,72 @@ public: TimePos( const tick_t ticks = 0 ); TimePos quantize(float) const; - TimePos toAbsoluteBar() const; + TimePos toAbsoluteBar() const { return getBar() * s_ticksPerBar; } - TimePos& operator+=( const TimePos& time ); - TimePos& operator-=( const TimePos& time ); + TimePos& operator+=(const TimePos& time) + { + m_ticks += time.m_ticks; + return *this; + } + + TimePos& operator-=(const TimePos& time) + { + m_ticks -= time.m_ticks; + return *this; + } // return the bar, rounded down and 0-based - bar_t getBar() const; + bar_t getBar() const { return m_ticks / s_ticksPerBar; } + // return the bar, rounded up and 0-based - bar_t nextFullBar() const; + bar_t nextFullBar() const { return (m_ticks + (s_ticksPerBar - 1)) / s_ticksPerBar; } - void setTicks( tick_t ticks ); - tick_t getTicks() const; + void setTicks(tick_t ticks) { m_ticks = ticks; } + tick_t getTicks() const { return m_ticks; } - operator int() const; + operator int() const { return m_ticks; } + + tick_t ticksPerBeat(const TimeSig& sig) const { return ticksPerBar(sig) / sig.numerator(); } - tick_t ticksPerBeat( const TimeSig &sig ) const; // Remainder ticks after bar is removed - tick_t getTickWithinBar( const TimeSig &sig ) const; + tick_t getTickWithinBar(const TimeSig& sig) const { return m_ticks % ticksPerBar(sig); } + // Returns the beat position inside the bar, 0-based - tick_t getBeatWithinBar( const TimeSig &sig ) const; + tick_t getBeatWithinBar(const TimeSig& sig) const { return getTickWithinBar(sig) / ticksPerBeat(sig); } + // Remainder ticks after bar and beat are removed - tick_t getTickWithinBeat( const TimeSig &sig ) const; + tick_t getTickWithinBeat(const TimeSig& sig) const { return getTickWithinBar(sig) % ticksPerBeat(sig); } // calculate number of frame that are needed this time - f_cnt_t frames( const float framesPerTick ) const; + f_cnt_t frames(const float framesPerTick) const + { + // Before, step notes used to have negative length. This + // assert is a safeguard against negative length being + // introduced again (now using Note Types instead #5902) + assert(m_ticks >= 0); + return static_cast(m_ticks * framesPerTick); + } - double getTimeInMilliseconds( bpm_t beatsPerMinute ) const; + double getTimeInMilliseconds(bpm_t beatsPerMinute) const { return ticksToMilliseconds(getTicks(), beatsPerMinute); } - static TimePos fromFrames( const f_cnt_t frames, const float framesPerTick ); - static tick_t ticksPerBar(); - static tick_t ticksPerBar( const TimeSig &sig ); - static int stepsPerBar(); - static void setTicksPerBar( tick_t tpt ); - static TimePos stepPosition( int step ); - static double ticksToMilliseconds( tick_t ticks, bpm_t beatsPerMinute ); - static double ticksToMilliseconds( double ticks, bpm_t beatsPerMinute ); + static TimePos fromFrames(const f_cnt_t frames, const float framesPerTick) + { + return TimePos(static_cast(frames / framesPerTick)); + } + + static tick_t ticksPerBar() { return s_ticksPerBar; } + static tick_t ticksPerBar(const TimeSig& sig) { return DefaultTicksPerBar * sig.numerator() / sig.denominator(); } + + static int stepsPerBar() { return std::max(1, ticksPerBar() / DefaultBeatsPerBar); } + static void setTicksPerBar(tick_t ticks) { s_ticksPerBar = ticks; } + static TimePos stepPosition(int step) { return step * ticksPerBar() / stepsPerBar(); } + + static double ticksToMilliseconds(tick_t ticks, bpm_t beatsPerMinute) + { + return ticksToMilliseconds(static_cast(ticks), beatsPerMinute); + } + + static double ticksToMilliseconds(double ticks, bpm_t beatsPerMinute) { return (ticks * 1250) / beatsPerMinute; } private: tick_t m_ticks; diff --git a/include/Track.h b/include/Track.h index db33900f5..a152640e1 100644 --- a/include/Track.h +++ b/include/Track.h @@ -107,19 +107,17 @@ public: virtual gui::TrackView * createView( gui::TrackContainerView * view ) = 0; virtual Clip * createClip( const TimePos & pos ) = 0; - virtual void saveTrackSpecificSettings( QDomDocument & doc, - QDomElement & parent ) = 0; + virtual void saveTrackSpecificSettings(QDomDocument& doc, QDomElement& parent, bool presetMode) = 0; virtual void loadTrackSpecificSettings( const QDomElement & element ) = 0; + // Saving and loading of presets which do not necessarily contain all the track information + void savePreset(QDomDocument & doc, QDomElement & element); + void loadPreset(const QDomElement & element); + // Saving and loading of full tracks void saveSettings( QDomDocument & doc, QDomElement & element ) override; void loadSettings( const QDomElement & element ) override; - void setSimpleSerializing() - { - m_simpleSerializingMode = true; - } - // -- for usage by Clip only --------------- Clip * addClip( Clip * clip ); void removeClip( Clip * clip ); @@ -209,6 +207,10 @@ public slots: void toggleSolo(); +private: + void saveTrack(QDomDocument& doc, QDomElement& element, bool presetMode); + void loadTrack(const QDomElement& element, bool presetMode); + private: TrackContainer* m_trackContainer; Type m_type; @@ -217,13 +219,11 @@ private: protected: BoolModel m_mutedModel; + BoolModel m_soloModel; private: - BoolModel m_soloModel; bool m_mutedBeforeSolo; - bool m_simpleSerializingMode; - clipVector m_clips; QMutex m_processingLock; diff --git a/include/TrackContainerView.h b/include/TrackContainerView.h index 9bdcdcab6..010cda602 100644 --- a/include/TrackContainerView.h +++ b/include/TrackContainerView.h @@ -168,8 +168,6 @@ public slots: protected: static const int DEFAULT_PIXELS_PER_BAR = 128; - void resizeEvent( QResizeEvent * ) override; - TimePos m_currentPosition; diff --git a/plugins/Flanger/Noise.cpp b/include/TrackGrip.h similarity index 52% rename from plugins/Flanger/Noise.cpp rename to include/TrackGrip.h index 263fb7c45..aa19222a6 100644 --- a/plugins/Flanger/Noise.cpp +++ b/include/TrackGrip.h @@ -1,7 +1,7 @@ /* - * noise.cpp - defination of Noise class. + * TrackGrip.h - Grip that can be used to move tracks * - * Copyright (c) 2014 David French + * Copyright (c) 2024- Michael Gregorius * * This file is part of LMMS - https://lmms.io * @@ -22,25 +22,47 @@ * */ -#include "Noise.h" -#include "lmms_math.h" +#ifndef LMMS_GUI_TRACK_GRIP_H +#define LMMS_GUI_TRACK_GRIP_H + +#include + + +class QPixmap; namespace lmms { +class Track; -Noise::Noise() +namespace gui { - inv_randmax = 1.0/FAST_RAND_MAX; /* for range of 0 - 1.0 */ -} - - - -float Noise::tick() +class TrackGrip : public QWidget { - return (float) ((2.0 * fast_rand() * inv_randmax) - 1.0); -} + Q_OBJECT +public: + TrackGrip(Track* track, QWidget* parent = 0); + ~TrackGrip() override = default; +signals: + void grabbed(); + void released(); -} // namespace lmms \ No newline at end of file +protected: + void mousePressEvent(QMouseEvent*) override; + void mouseReleaseEvent(QMouseEvent*) override; + void paintEvent(QPaintEvent*) override; + +private: + Track* m_track = nullptr; + bool m_isGrabbed = false; + static QPixmap* s_grabbedPixmap; + static QPixmap* s_releasedPixmap; +}; + +} // namespace gui + +} // namespace lmms + +#endif // LMMS_GUI_TRACK_GRIP_H diff --git a/include/TrackOperationsWidget.h b/include/TrackOperationsWidget.h index 4dbb5353c..8417298b4 100644 --- a/include/TrackOperationsWidget.h +++ b/include/TrackOperationsWidget.h @@ -33,6 +33,7 @@ namespace lmms::gui { class PixmapButton; +class TrackGrip; class TrackView; class TrackOperationsWidget : public QWidget @@ -42,6 +43,7 @@ public: TrackOperationsWidget( TrackView * parent ); ~TrackOperationsWidget() override = default; + TrackGrip* getTrackGrip() const { return m_trackGrip; } protected: void mousePressEvent( QMouseEvent * me ) override; @@ -65,6 +67,7 @@ private slots: private: TrackView * m_trackView; + TrackGrip* m_trackGrip; QPushButton * m_trackOps; PixmapButton * m_muteBtn; PixmapButton * m_soloBtn; diff --git a/include/TrackView.h b/include/TrackView.h index b2654202b..495407192 100644 --- a/include/TrackView.h +++ b/include/TrackView.h @@ -48,12 +48,12 @@ class FadeButton; class TrackContainerView; -const int DEFAULT_SETTINGS_WIDGET_WIDTH = 256; +const int DEFAULT_SETTINGS_WIDGET_WIDTH = 260; const int TRACK_OP_WIDTH = 78; // This shaves 150-ish pixels off track buttons, // ruled from config: ui.compacttrackbuttons -const int DEFAULT_SETTINGS_WIDGET_WIDTH_COMPACT = 128; -const int TRACK_OP_WIDTH_COMPACT = 62; +const int DEFAULT_SETTINGS_WIDGET_WIDTH_COMPACT = 136; +const int TRACK_OP_WIDTH_COMPACT = TRACK_OP_WIDTH; class TrackView : public QWidget, public ModelView, public JournallingObject @@ -171,7 +171,8 @@ private: private slots: void createClipView( lmms::Clip * clip ); void muteChanged(); - + void onTrackGripGrabbed(); + void onTrackGripReleased(); } ; diff --git a/include/interpolation.h b/include/interpolation.h index fd2c29a04..83e24e5ae 100644 --- a/include/interpolation.h +++ b/include/interpolation.h @@ -25,13 +25,8 @@ #ifndef LMMS_INTERPOLATION_H #define LMMS_INTERPOLATION_H -#ifndef __USE_XOPEN -#define __USE_XOPEN -#endif - #include -#include "lmms_constants.h" -#include "lmms_math.h" +#include namespace lmms { @@ -69,27 +64,21 @@ inline float hermiteInterpolate( float x0, float x1, float x2, float x3, inline float cubicInterpolate( float v0, float v1, float v2, float v3, float x ) { - float frsq = x*x; - float frcu = frsq*v0; - float t1 = v3 + 3*v1; + float frsq = x * x; + float frcu = frsq * v0; + float t1 = v1 * 3.f + v3; - return( v1 + fastFmaf( 0.5f, frcu, x ) * ( v2 - frcu * ( 1.0f/6.0f ) - - fastFmaf( t1, ( 1.0f/6.0f ), -v0 ) * ( 1.0f/3.0f ) ) + frsq * x * ( t1 * - ( 1.0f/6.0f ) - 0.5f * v2 ) + frsq * fastFmaf( 0.5f, v2, -v1 ) ); + return v1 + (0.5f * frcu + x) * (v2 - frcu * (1.0f / 6.0f) - + (t1 * (1.0f / 6.0f) - v0) * (1.0f / 3.0f)) + frsq * x * (t1 * + (1.0f / 6.0f) - 0.5f * v2) + frsq * (0.5f * v2 - v1); } inline float cosinusInterpolate( float v0, float v1, float x ) { - const float f = ( 1.0f - cosf( x * F_PI ) ) * 0.5f; - return fastFmaf( f, v1-v0, v0 ); -} - - -inline float linearInterpolate( float v0, float v1, float x ) -{ - return fastFmaf( x, v1-v0, v0 ); + const float f = (1.0f - std::cos(x * std::numbers::pi_v)) * 0.5f; + return f * (v1 - v0) + v0; } @@ -104,7 +93,7 @@ inline float optimalInterpolate( float v0, float v1, float x ) const float c2 = even * -0.004541102062639801; const float c3 = odd * -1.57015627178718420; - return fastFmaf( fastFmaf( fastFmaf( c3, z, c2 ), z, c1 ), z, c0 ); + return ((c3 * z + c2) * z + c1) * z + c0; } @@ -121,7 +110,7 @@ inline float optimal4pInterpolate( float v0, float v1, float v2, float v3, float const float c2 = even1 * -0.246185007019907091 + even2 * 0.24614027139700284; const float c3 = odd1 * -0.36030925263849456 + odd2 * 0.10174985775982505; - return fastFmaf( fastFmaf( fastFmaf( c3, z, c2 ), z, c1 ), z, c0 ); + return ((c3 * z + c2) * z + c1) * z + c0; } @@ -132,7 +121,7 @@ inline float lagrangeInterpolate( float v0, float v1, float v2, float v3, float const float c1 = v2 - v0 * ( 1.0f / 3.0f ) - v1 * 0.5f - v3 * ( 1.0f / 6.0f ); const float c2 = 0.5f * (v0 + v2) - v1; const float c3 = ( 1.0f/6.0f ) * ( v3 - v0 ) + 0.5f * ( v1 - v2 ); - return fastFmaf( fastFmaf( fastFmaf( c3, x, c2 ), x, c1 ), x, c0 ); + return ((c3 * x + c2) * x + c1) * x + c0; } diff --git a/include/lmms_basics.h b/include/lmms_basics.h index 63a2bf3ad..ea9371603 100644 --- a/include/lmms_basics.h +++ b/include/lmms_basics.h @@ -69,15 +69,6 @@ constexpr char LADSPA_PATH_SEPERATOR = #define LMMS_STRINGIFY(s) LMMS_STR(s) #define LMMS_STR(PN) #PN -// Abstract away GUI CTRL key (linux/windows) vs ⌘ (apple) -constexpr const char* UI_CTRL_KEY = -#ifdef LMMS_BUILD_APPLE -"⌘"; -#else -"Ctrl"; -#endif - - } // namespace lmms #endif // LMMS_TYPES_H diff --git a/include/lmms_constants.h b/include/lmms_constants.h index 4390b81ea..782e6849d 100644 --- a/include/lmms_constants.h +++ b/include/lmms_constants.h @@ -28,43 +28,17 @@ namespace lmms { - -constexpr long double LD_PI = 3.14159265358979323846264338327950288419716939937510; -constexpr long double LD_2PI = LD_PI * 2.0; -constexpr long double LD_PI_2 = LD_PI * 0.5; -constexpr long double LD_PI_R = 1.0 / LD_PI; -constexpr long double LD_PI_SQR = LD_PI * LD_PI; -constexpr long double LD_E = 2.71828182845904523536028747135266249775724709369995; -constexpr long double LD_E_R = 1.0 / LD_E; -constexpr long double LD_SQRT_2 = 1.41421356237309504880168872420969807856967187537695; - -constexpr double D_PI = (double) LD_PI; -constexpr double D_2PI = (double) LD_2PI; -constexpr double D_PI_2 = (double) LD_PI_2; -constexpr double D_PI_R = (double) LD_PI_R; -constexpr double D_PI_SQR = (double) LD_PI_SQR; -constexpr double D_E = (double) LD_E; -constexpr double D_E_R = (double) LD_E_R; -constexpr double D_SQRT_2 = (double) LD_SQRT_2; - -constexpr float F_PI = (float) LD_PI; -constexpr float F_2PI = (float) LD_2PI; -constexpr float F_PI_2 = (float) LD_PI_2; -constexpr float F_PI_R = (float) LD_PI_R; -constexpr float F_PI_SQR = (float) LD_PI_SQR; -constexpr float F_E = (float) LD_E; -constexpr float F_E_R = (float) LD_E_R; -constexpr float F_SQRT_2 = (float) LD_SQRT_2; - -constexpr float F_EPSILON = 1.0e-10f; // 10^-10 +// Prefer using `approximatelyEqual()` from lmms_math.h rather than +// using this directly +inline constexpr float F_EPSILON = 1.0e-10f; // 10^-10 // Microtuner -constexpr unsigned int MaxScaleCount = 10; //!< number of scales per project -constexpr unsigned int MaxKeymapCount = 10; //!< number of keyboard mappings per project +inline constexpr unsigned MaxScaleCount = 10; //!< number of scales per project +inline constexpr unsigned MaxKeymapCount = 10; //!< number of keyboard mappings per project // Frequency ranges (in Hz). // Arbitrary low limit for logarithmic frequency scale; >1 Hz. -constexpr int LOWEST_LOG_FREQ = 5; +inline constexpr auto LOWEST_LOG_FREQ = 5; // Full range is defined by LOWEST_LOG_FREQ and current sample rate. enum class FrequencyRange @@ -76,14 +50,14 @@ enum class FrequencyRange High }; -constexpr int FRANGE_AUDIBLE_START = 20; -constexpr int FRANGE_AUDIBLE_END = 20000; -constexpr int FRANGE_BASS_START = 20; -constexpr int FRANGE_BASS_END = 300; -constexpr int FRANGE_MIDS_START = 200; -constexpr int FRANGE_MIDS_END = 5000; -constexpr int FRANGE_HIGH_START = 4000; -constexpr int FRANGE_HIGH_END = 20000; +inline constexpr auto FRANGE_AUDIBLE_START = 20; +inline constexpr auto FRANGE_AUDIBLE_END = 20000; +inline constexpr auto FRANGE_BASS_START = 20; +inline constexpr auto FRANGE_BASS_END = 300; +inline constexpr auto FRANGE_MIDS_START = 200; +inline constexpr auto FRANGE_MIDS_END = 5000; +inline constexpr auto FRANGE_HIGH_START = 4000; +inline constexpr auto FRANGE_HIGH_END = 20000; // Amplitude ranges (in dBFS). // Reference: full scale sine wave (-1.0 to 1.0) is 0 dB. @@ -96,15 +70,14 @@ enum class AmplitudeRange Silent }; -constexpr int ARANGE_EXTENDED_START = -80; -constexpr int ARANGE_EXTENDED_END = 20; -constexpr int ARANGE_AUDIBLE_START = -50; -constexpr int ARANGE_AUDIBLE_END = 0; -constexpr int ARANGE_LOUD_START = -30; -constexpr int ARANGE_LOUD_END = 0; -constexpr int ARANGE_SILENT_START = -60; -constexpr int ARANGE_SILENT_END = -10; - +inline constexpr auto ARANGE_EXTENDED_START = -80; +inline constexpr auto ARANGE_EXTENDED_END = 20; +inline constexpr auto ARANGE_AUDIBLE_START = -50; +inline constexpr auto ARANGE_AUDIBLE_END = 0; +inline constexpr auto ARANGE_LOUD_START = -30; +inline constexpr auto ARANGE_LOUD_END = 0; +inline constexpr auto ARANGE_SILENT_START = -60; +inline constexpr auto ARANGE_SILENT_END = -10; } // namespace lmms diff --git a/include/lmms_math.h b/include/lmms_math.h index 369a89b6e..1d3de249d 100644 --- a/include/lmms_math.h +++ b/include/lmms_math.h @@ -27,35 +27,42 @@ #include #include +#include #include #include +#include +#include +#include -#include "lmms_constants.h" #include "lmmsconfig.h" -#include +#include "lmms_constants.h" namespace lmms { -static inline bool approximatelyEqual(float x, float y) +// TODO C++23: Make constexpr since std::abs() will be constexpr +inline bool approximatelyEqual(float x, float y) noexcept { - return x == y ? true : std::abs(x - y) < F_EPSILON; + return x == y || std::abs(x - y) < F_EPSILON; } -#ifdef __INTEL_COMPILER - -static inline float absFraction( const float _x ) +// TODO C++23: Make constexpr since std::trunc() will be constexpr +/*! + * @brief Returns the fractional part of a float, a value between -1.0f and 1.0f. + * + * fraction( 2.3) => 0.3 + * fraction(-2.3) => -0.3 + * + * Note that if the return value is used as a phase of an oscillator, that the oscillator must support + * negative phases. + */ +inline auto fraction(std::floating_point auto x) noexcept { - return( _x - floorf( _x ) ); + return x - std::trunc(x); } -static inline float fraction( const float _x ) -{ - return( _x - floorf( _x ) - ( _x >= 0.0f ? 0.0 : 1.0 ) ); -} - -#else +// TODO C++23: Make constexpr since std::floor() will be constexpr /*! * @brief Returns the wrapped fractional part of a float, a value between 0.0f and 1.0f. * @@ -66,287 +73,174 @@ static inline float fraction( const float _x ) * If the result is interpreted as a phase of an oscillator, it makes that negative phases are * converted to positive phases. */ -static inline float absFraction(const float x) +inline auto absFraction(std::floating_point auto x) noexcept { return x - std::floor(x); } -/*! - * @brief Returns the fractional part of a float, a value between -1.0f and 1.0f. - * - * fraction( 2.3) => 0.3 - * fraction(-2.3) => -0.3 - * - * Note that if the return value is used as a phase of an oscillator, that the oscillator must support - * negative phases. - */ -static inline float fraction( const float _x ) -{ - return( _x - static_cast( _x ) ); -} - - -#if 0 -// SSE3-version -static inline float absFraction( float _x ) -{ - unsigned int tmp; - asm( - "fld %%st\n\t" - "fisttp %1\n\t" - "fild %1\n\t" - "ftst\n\t" - "sahf\n\t" - "jae 1f\n\t" - "fld1\n\t" - "fsubrp %%st, %%st(1)\n\t" - "1:\n\t" - "fsubrp %%st, %%st(1)" - : "+t"( _x ), "=m"( tmp ) - : - : "st(1)", "cc" ); - return( _x ); -} - -static inline float absFraction( float _x ) -{ - unsigned int tmp; - asm( - "fld %%st\n\t" - "fisttp %1\n\t" - "fild %1\n\t" - "fsubrp %%st, %%st(1)" - : "+t"( _x ), "=m"( tmp ) - : - : "st(1)" ); - return( _x ); -} -#endif - -#endif // __INTEL_COMPILER - - - -constexpr int FAST_RAND_MAX = 32767; -static inline int fast_rand() +inline auto fastRand() noexcept { static unsigned long next = 1; next = next * 1103515245 + 12345; - return( (unsigned)( next / 65536 ) % 32768 ); + return next / 65536 % 32768; } -static inline double fastRand( double range ) +template +inline auto fastRand(T range) noexcept { - static const double fast_rand_ratio = 1.0 / FAST_RAND_MAX; - return fast_rand() * range * fast_rand_ratio; + constexpr T FAST_RAND_RATIO = static_cast(1.0 / 32767); + return fastRand() * range * FAST_RAND_RATIO; } -static inline float fastRandf( float range ) +template +inline auto fastRand(T from, T to) noexcept { - static const float fast_rand_ratio = 1.0f / FAST_RAND_MAX; - return fast_rand() * range * fast_rand_ratio; + return from + fastRand(to - from); } -//! @brief Takes advantage of fmal() function if present in hardware -static inline long double fastFmal( long double a, long double b, long double c ) +//! Round `value` to `where` depending on step size +template +static void roundAt(T& value, const T& where, const T& stepSize) { -#ifdef FP_FAST_FMAL - #ifdef __clang__ - return fma( a, b, c ); - #else - return fmal( a, b, c ); - #endif -#else - return a * b + c; -#endif // FP_FAST_FMAL -} - -//! @brief Takes advantage of fmaf() function if present in hardware -static inline float fastFmaf( float a, float b, float c ) -{ -#ifdef FP_FAST_FMAF - #ifdef __clang__ - return fma( a, b, c ); - #else - return fmaf( a, b, c ); - #endif -#else - return a * b + c; -#endif // FP_FAST_FMAF -} - -//! @brief Takes advantage of fma() function if present in hardware -static inline double fastFma( double a, double b, double c ) -{ -#ifdef FP_FAST_FMA - return fma( a, b, c ); -#else - return a * b + c; -#endif -} - -// source: http://martin.ankerl.com/2007/10/04/optimized-pow-approximation-for-java-and-c-c/ -static inline double fastPow( double a, double b ) -{ - union + if (std::abs(value - where) < F_EPSILON * std::abs(stepSize)) { - double d; - int32_t x[2]; - } u = { a }; - u.x[1] = static_cast( b * ( u.x[1] - 1072632447 ) + 1072632447 ); - u.x[0] = 0; - return u.d; + value = where; + } } -// sinc function -static inline double sinc( double _x ) +//! Source: http://martin.ankerl.com/2007/10/04/optimized-pow-approximation-for-java-and-c-c/ +inline double fastPow(double a, double b) { - return _x == 0.0 ? 1.0 : sin( F_PI * _x ) / ( F_PI * _x ); + double d; + std::int32_t x[2]; + + std::memcpy(x, &a, sizeof(x)); + x[1] = static_cast(b * (x[1] - 1072632447) + 1072632447); + x[0] = 0; + + std::memcpy(&d, x, sizeof(d)); + return d; } +//! returns +1 if val >= 0, else -1 +template +constexpr T sign(T val) noexcept +{ + return val >= 0 ? 1 : -1; +} + + +//! if val >= 0.0f, returns sqrt(val), else: -sqrt(-val) +inline float sqrt_neg(float val) +{ + return std::sqrt(std::abs(val)) * sign(val); +} + //! @brief Exponential function that deals with negative bases -static inline float signedPowf( float v, float e ) +inline float signedPowf(float v, float e) { - return v < 0 - ? powf( -v, e ) * -1.0f - : powf( v, e ); + return std::pow(std::abs(v), e) * sign(v); } //! @brief Scales @value from linear to logarithmic. //! Value should be within [0,1] -static inline float logToLinearScale( float min, float max, float value ) +inline float logToLinearScale(float min, float max, float value) { - if( min < 0 ) + using namespace std::numbers; + if (min < 0) { const float mmax = std::max(std::abs(min), std::abs(max)); - const float val = value * ( max - min ) + min; - float result = signedPowf( val / mmax, F_E ) * mmax; - return std::isnan( result ) ? 0 : result; + const float val = value * (max - min) + min; + float result = signedPowf(val / mmax, e_v) * mmax; + return std::isnan(result) ? 0 : result; } - float result = powf( value, F_E ) * ( max - min ) + min; - return std::isnan( result ) ? 0 : result; + float result = std::pow(value, e_v) * (max - min) + min; + return std::isnan(result) ? 0 : result; } //! @brief Scales value from logarithmic to linear. Value should be in min-max range. -static inline float linearToLogScale( float min, float max, float value ) +inline float linearToLogScale(float min, float max, float value) { - static const float EXP = 1.0f / F_E; + constexpr auto inv_e = static_cast(1.0 / std::numbers::e); const float valueLimited = std::clamp(value, min, max); - const float val = ( valueLimited - min ) / ( max - min ); - if( min < 0 ) + const float val = (valueLimited - min) / (max - min); + if (min < 0) { const float mmax = std::max(std::abs(min), std::abs(max)); - float result = signedPowf( valueLimited / mmax, EXP ) * mmax; - return std::isnan( result ) ? 0 : result; + float result = signedPowf(valueLimited / mmax, inv_e) * mmax; + return std::isnan(result) ? 0 : result; } - float result = powf( val, EXP ) * ( max - min ) + min; - return std::isnan( result ) ? 0 : result; + float result = std::pow(val, inv_e) * (max - min) + min; + return std::isnan(result) ? 0 : result; } - - - -//! @brief Converts linear amplitude (0-1.0) to dBFS scale. Handles zeroes as -inf. -//! @param amp Linear amplitude, where 1.0 = 0dBFS. -//! @return Amplitude in dBFS. -inf for 0 amplitude. -static inline float safeAmpToDbfs( float amp ) +// TODO C++26: Make constexpr since std::exp() will be constexpr +template +inline auto fastPow10f(T x) { - return amp == 0.0f - ? -INFINITY - : log10f( amp ) * 20.0f; + return std::exp(std::numbers::ln10_v * x); } - -//! @brief Converts dBFS-scale to linear amplitude with 0dBFS = 1.0. Handles infinity as zero. -//! @param dbfs The dBFS value to convert: all infinites are treated as -inf and result in 0 -//! @return Linear amplitude -static inline float safeDbfsToAmp( float dbfs ) +// TODO C++26: Make constexpr since std::exp() will be constexpr +inline auto fastPow10f(std::integral auto x) { - return std::isinf( dbfs ) - ? 0.0f - : std::pow(10.f, dbfs * 0.05f ); + return std::exp(std::numbers::ln10_v * x); } +// TODO C++26: Make constexpr since std::log() will be constexpr +inline auto fastLog10f(float x) +{ + constexpr auto inv_ln10 = static_cast(1.0 / std::numbers::ln10); + return std::log(x) * inv_ln10; +} //! @brief Converts linear amplitude (>0-1.0) to dBFS scale. //! @param amp Linear amplitude, where 1.0 = 0dBFS. ** Must be larger than zero! ** //! @return Amplitude in dBFS. -static inline float ampToDbfs(float amp) +inline float ampToDbfs(float amp) { - return log10f(amp) * 20.0f; + return fastLog10f(amp) * 20.0f; } //! @brief Converts dBFS-scale to linear amplitude with 0dBFS = 1.0 //! @param dbfs The dBFS value to convert. ** Must be a real number - not inf/nan! ** //! @return Linear amplitude -static inline float dbfsToAmp(float dbfs) +inline float dbfsToAmp(float dbfs) { - return std::pow(10.f, dbfs * 0.05f); + return fastPow10f(dbfs * 0.05f); } - -//! returns 1.0f if val >= 0.0f, -1.0 else -static inline float sign( float val ) -{ - return val >= 0.0f ? 1.0f : -1.0f; -} - - -//! if val >= 0.0f, returns sqrtf(val), else: -sqrtf(-val) -static inline float sqrt_neg( float val ) +//! @brief Converts linear amplitude (0-1.0) to dBFS scale. Handles zeroes as -inf. +//! @param amp Linear amplitude, where 1.0 = 0dBFS. +//! @return Amplitude in dBFS. -inf for 0 amplitude. +inline float safeAmpToDbfs(float amp) { - return sqrtf( fabs( val ) ) * sign( val ); + return amp == 0.0f ? -INFINITY : ampToDbfs(amp); } -// fast approximation of square root -static inline float fastSqrt( float n ) +//! @brief Converts dBFS-scale to linear amplitude with 0dBFS = 1.0. Handles infinity as zero. +//! @param dbfs The dBFS value to convert: all infinites are treated as -inf and result in 0 +//! @return Linear amplitude +inline float safeDbfsToAmp(float dbfs) { - union - { - int32_t i; - float f; - } u; - u.f = n; - u.i = ( u.i + ( 127 << 23 ) ) >> 1; - return u.f; + return std::isinf(dbfs) ? 0.0f : dbfsToAmp(dbfs); } -//! returns value furthest from zero -template -static inline T absMax( T a, T b ) -{ - return std::abs(a) > std::abs(b) ? a : b; -} - -//! returns value nearest to zero -template -static inline T absMin( T a, T b ) -{ - return std::abs(a) < std::abs(b) ? a : b; -} - -//! Returns the linear interpolation of the two values -template -constexpr T lerp(T a, T b, F t) -{ - return (1. - t) * a + t * b; -} +// TODO C++20: use std::formatted_size // @brief Calculate number of digits which LcdSpinBox would show for a given number -// @note Once we upgrade to C++20, we could probably use std::formatted_size -static inline int numDigitsAsInt(float f) +inline int numDigitsAsInt(float f) { // use rounding: - // LcdSpinBox sometimes uses roundf(), sometimes cast rounding + // LcdSpinBox sometimes uses std::round(), sometimes cast rounding // we use rounding to be on the "safe side" - const float rounded = roundf(f); - int asInt = static_cast(rounded); + int asInt = static_cast(std::round(f)); int digits = 1; // always at least 1 if(asInt < 0) { @@ -354,11 +248,11 @@ static inline int numDigitsAsInt(float f) asInt = -asInt; } // "asInt" is positive from now - int32_t power = 1; - for(int32_t i = 1; i<10; ++i) + int power = 1; + for (int i = 1; i < 10; ++i) { power *= 10; - if(static_cast(asInt) >= power) { ++digits; } // 2 digits for >=10, 3 for >=100 + if (asInt >= power) { ++digits; } // 2 digits for >=10, 3 for >=100 else { break; } } return digits; diff --git a/include/panning.h b/include/panning.h index 0fd74d1cc..2945988ba 100644 --- a/include/panning.h +++ b/include/panning.h @@ -27,7 +27,6 @@ #define LMMS_PANNING_H #include "lmms_basics.h" -#include "panning_constants.h" #include "Midi.h" #include "volume.h" @@ -36,6 +35,10 @@ namespace lmms { +inline constexpr panning_t PanningRight = 100; +inline constexpr panning_t PanningLeft = -PanningRight; +inline constexpr panning_t PanningCenter = 0; +inline constexpr panning_t DefaultPanning = PanningCenter; inline StereoVolumeVector panningToVolumeVector( panning_t _p, float _scale = 1.0f ) diff --git a/plugins/Amplifier/Amplifier.cpp b/plugins/Amplifier/Amplifier.cpp index 2f4e57f77..04fd98682 100644 --- a/plugins/Amplifier/Amplifier.cpp +++ b/plugins/Amplifier/Amplifier.cpp @@ -57,11 +57,8 @@ AmplifierEffect::AmplifierEffect(Model* parent, const Descriptor::SubPluginFeatu } -bool AmplifierEffect::processAudioBuffer(SampleFrame* buf, const fpp_t frames) +Effect::ProcessStatus AmplifierEffect::processImpl(SampleFrame* buf, const fpp_t frames) { - if (!isEnabled() || !isRunning()) { return false ; } - - double outSum = 0.0; const float d = dryLevel(); const float w = wetLevel(); @@ -86,13 +83,9 @@ bool AmplifierEffect::processAudioBuffer(SampleFrame* buf, const fpp_t frames) // Dry/wet mix currentFrame = currentFrame * d + s * w; - - outSum += currentFrame.sumOfSquaredAmplitudes(); } - checkGate(outSum / frames); - - return isRunning(); + return ProcessStatus::ContinueIfNotQuiet; } diff --git a/plugins/Amplifier/Amplifier.h b/plugins/Amplifier/Amplifier.h index 8be938001..8c0667316 100644 --- a/plugins/Amplifier/Amplifier.h +++ b/plugins/Amplifier/Amplifier.h @@ -37,7 +37,8 @@ class AmplifierEffect : public Effect public: AmplifierEffect(Model* parent, const Descriptor::SubPluginFeatures::Key* key); ~AmplifierEffect() override = default; - bool processAudioBuffer(SampleFrame* buf, const fpp_t frames) override; + + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; EffectControls* controls() override { diff --git a/plugins/AudioFileProcessor/AudioFileProcessorView.cpp b/plugins/AudioFileProcessor/AudioFileProcessorView.cpp index b7d5802dc..298e79c5e 100644 --- a/plugins/AudioFileProcessor/AudioFileProcessorView.cpp +++ b/plugins/AudioFileProcessor/AudioFileProcessorView.cpp @@ -31,7 +31,7 @@ #include "ComboBox.h" #include "DataFile.h" -#include "gui_templates.h" +#include "FontHelper.h" #include "PixmapButton.h" #include "SampleLoader.h" #include "Song.h" @@ -227,7 +227,7 @@ void AudioFileProcessorView::paintEvent(QPaintEvent*) int idx = a->sample().sampleFile().length(); - p.setFont(adjustedToPixelSize(font(), 8)); + p.setFont(adjustedToPixelSize(font(), SMALL_FONT_SIZE)); QFontMetrics fm(p.font()); diff --git a/plugins/AudioFileProcessor/AudioFileProcessorWaveView.cpp b/plugins/AudioFileProcessor/AudioFileProcessorWaveView.cpp index 2a07e5f77..f120fbf25 100644 --- a/plugins/AudioFileProcessor/AudioFileProcessorWaveView.cpp +++ b/plugins/AudioFileProcessor/AudioFileProcessorWaveView.cpp @@ -24,16 +24,16 @@ #include "AudioFileProcessorWaveView.h" +#include "Sample.h" #include "ConfigManager.h" -#include "gui_templates.h" -#include "SampleWaveform.h" +#include "SampleThumbnail.h" +#include "FontHelper.h" #include #include #include - namespace lmms { @@ -81,7 +81,8 @@ AudioFileProcessorWaveView::AudioFileProcessorWaveView(QWidget* parent, int w, i m_isDragging(false), m_reversed(false), m_framesPlayed(0), - m_animation(ConfigManager::inst()->value("ui", "animateafp").toInt()) + m_animation(ConfigManager::inst()->value("ui", "animateafp").toInt()), + m_sampleThumbnail(*buf) { setFixedSize(w, h); setMouseTracking(true); @@ -166,16 +167,22 @@ void AudioFileProcessorWaveView::mouseMoveEvent(QMouseEvent * me) case DraggingType::SampleLoop: slideSamplePointByPx(Point::Loop, step); break; + case DraggingType::SlideWave: + slide(step); + break; + case DraggingType::ZoomWave: + zoom(me->y() < m_draggingLastPoint.y()); + break; case DraggingType::Wave: default: if (qAbs(me->y() - m_draggingLastPoint.y()) < 2 * qAbs(me->x() - m_draggingLastPoint.x())) { - slide(step); + m_draggingType = DraggingType::SlideWave; } else { - zoom(me->y() < m_draggingLastPoint.y()); + m_draggingType = DraggingType::ZoomWave; } } @@ -273,7 +280,7 @@ void AudioFileProcessorWaveView::paintEvent(QPaintEvent * pe) p.fillRect(s_padding, s_padding, m_graph.width(), 14, g); p.setPen(QColor(255, 255, 255)); - p.setFont(adjustedToPixelSize(font(), 8)); + p.setFont(adjustedToPixelSize(font(), SMALL_FONT_SIZE)); QString length_text; const int length = m_sample->sampleDuration().count(); @@ -333,10 +340,17 @@ void AudioFileProcessorWaveView::updateGraph() QPainter p(&m_graph); p.setPen(QColor(255, 255, 255)); - const auto rect = QRect{0, 0, m_graph.width(), m_graph.height()}; - const auto waveform = SampleWaveform::Parameters{ - m_sample->data() + m_from, static_cast(range()), m_sample->amplification(), m_sample->reversed()}; - SampleWaveform::visualize(waveform, p, rect); + m_sampleThumbnail = SampleThumbnail{*m_sample}; + + const auto param = SampleThumbnail::VisualizeParameters{ + .sampleRect = m_graph.rect(), + .amplification = m_sample->amplification(), + .sampleStart = static_cast(m_from) / m_sample->sampleSize(), + .sampleEnd = static_cast(m_to) / m_sample->sampleSize(), + .reversed = m_sample->reversed(), + }; + + m_sampleThumbnail.visualize(param, p); } void AudioFileProcessorWaveView::zoom(const bool out) @@ -376,14 +390,15 @@ void AudioFileProcessorWaveView::zoom(const bool out) void AudioFileProcessorWaveView::slide(int px) { const double fact = qAbs(double(px) / width()); - auto step = range() * fact * (px > 0 ? -1 : 1); + auto step = range() * fact * (px > 0 ? 1 : -1); - const auto stepFrom = std::clamp(m_from + step, 0.0, static_cast(m_sample->sampleSize())) - m_from; - const auto stepTo = std::clamp(m_to + step, m_from + 1.0, static_cast(m_sample->sampleSize())) - m_to; + const auto sampleStart = static_cast(m_sample->startFrame()); + const auto sampleEnd = static_cast(m_sample->endFrame()); + + const auto stepFrom = std::clamp(sampleStart + step, 0.0, static_cast(m_sample->sampleSize())) - sampleStart; + const auto stepTo = std::clamp(sampleEnd + step, sampleStart + 1.0, static_cast(m_sample->sampleSize())) - sampleEnd; step = std::abs(stepFrom) < std::abs(stepTo) ? stepFrom : stepTo; - setFrom(m_from + step); - setTo(m_to + step); slideSampleByFrames(step); } @@ -395,7 +410,7 @@ void AudioFileProcessorWaveView::slideSamplePointByPx(Point point, int px) ); } -void AudioFileProcessorWaveView::slideSamplePointByFrames(Point point, f_cnt_t frames, bool slide_to) +void AudioFileProcessorWaveView::slideSamplePointByFrames(Point point, long frameOffset, bool slideTo) { knob * a_knob = m_startKnob; switch(point) @@ -415,8 +430,8 @@ void AudioFileProcessorWaveView::slideSamplePointByFrames(Point point, f_cnt_t f } else { - const double v = static_cast(frames) / m_sample->sampleSize(); - if (slide_to) + const double v = static_cast(frameOffset) / m_sample->sampleSize(); + if (slideTo) { a_knob->slideTo(v); } @@ -430,13 +445,13 @@ void AudioFileProcessorWaveView::slideSamplePointByFrames(Point point, f_cnt_t f -void AudioFileProcessorWaveView::slideSampleByFrames(f_cnt_t frames) +void AudioFileProcessorWaveView::slideSampleByFrames(long frameOffset) { if (m_sample->sampleSize() <= 1) { return; } - const double v = static_cast(frames) / m_sample->sampleSize(); + const double v = static_cast(frameOffset) / m_sample->sampleSize(); // update knobs in the right order // to avoid them clamping each other if (v < 0) @@ -460,9 +475,11 @@ void AudioFileProcessorWaveView::reverse() - m_sample->endFrame() - m_sample->startFrame() ); + + const int fromTmp = m_from; setFrom(m_sample->sampleSize() - m_to); - setTo(m_sample->sampleSize() - m_from); + setTo(m_sample->sampleSize() - fromTmp); m_reversed = ! m_reversed; } diff --git a/plugins/AudioFileProcessor/AudioFileProcessorWaveView.h b/plugins/AudioFileProcessor/AudioFileProcessorWaveView.h index 8081d20ca..6440570e6 100644 --- a/plugins/AudioFileProcessor/AudioFileProcessorWaveView.h +++ b/plugins/AudioFileProcessor/AudioFileProcessorWaveView.h @@ -27,6 +27,7 @@ #include "Knob.h" +#include "SampleThumbnail.h" namespace lmms @@ -118,6 +119,8 @@ private: enum class DraggingType { Wave, + SlideWave, + ZoomWave, SampleStart, SampleEnd, SampleLoop @@ -142,6 +145,7 @@ private: bool m_reversed; f_cnt_t m_framesPlayed; bool m_animation; + SampleThumbnail m_sampleThumbnail; friend class AudioFileProcessorView; @@ -158,8 +162,8 @@ private: void zoom(const bool out = false); void slide(int px); void slideSamplePointByPx(Point point, int px); - void slideSamplePointByFrames(Point point, f_cnt_t frames, bool slide_to = false); - void slideSampleByFrames(f_cnt_t frames); + void slideSamplePointByFrames(Point point, long frameOffset, bool slideTo = false); + void slideSampleByFrames(long frameOffset); void slideSamplePointToFrames(Point point, f_cnt_t frames) { diff --git a/plugins/BassBooster/BassBooster.cpp b/plugins/BassBooster/BassBooster.cpp index f12fd6ace..ae914c85d 100644 --- a/plugins/BassBooster/BassBooster.cpp +++ b/plugins/BassBooster/BassBooster.cpp @@ -69,12 +69,8 @@ BassBoosterEffect::BassBoosterEffect( Model* parent, const Descriptor::SubPlugin -bool BassBoosterEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames ) +Effect::ProcessStatus BassBoosterEffect::processImpl(SampleFrame* buf, const fpp_t frames) { - if( !isEnabled() || !isRunning () ) - { - return( false ); - } // check out changed controls if( m_frequencyChangeNeeded || m_bbControls.m_freqModel.isValueChanged() ) { @@ -87,7 +83,6 @@ bool BassBoosterEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames const float const_gain = m_bbControls.m_gainModel.value(); const ValueBuffer *gainBuffer = m_bbControls.m_gainModel.valueBuffer(); - double outSum = 0.0; const float d = dryLevel(); const float w = wetLevel(); @@ -102,13 +97,9 @@ bool BassBoosterEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames // Dry/wet mix currentFrame = currentFrame * d + s * w; - - outSum += currentFrame.sumOfSquaredAmplitudes(); } - checkGate( outSum / frames ); - - return isRunning(); + return ProcessStatus::ContinueIfNotQuiet; } diff --git a/plugins/BassBooster/BassBooster.h b/plugins/BassBooster/BassBooster.h index 64c4e354d..f46c910a3 100644 --- a/plugins/BassBooster/BassBooster.h +++ b/plugins/BassBooster/BassBooster.h @@ -38,7 +38,8 @@ class BassBoosterEffect : public Effect public: BassBoosterEffect( Model* parent, const Descriptor::SubPluginFeatures::Key* key ); ~BassBoosterEffect() override = default; - bool processAudioBuffer( SampleFrame* buf, const fpp_t frames ) override; + + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; EffectControls* controls() override { diff --git a/plugins/BitInvader/BitInvader.cpp b/plugins/BitInvader/BitInvader.cpp index 8d9bef4d3..dcd24e8e9 100644 --- a/plugins/BitInvader/BitInvader.cpp +++ b/plugins/BitInvader/BitInvader.cpp @@ -22,7 +22,7 @@ * */ - +#include #include #include "BitInvader.h" @@ -36,10 +36,9 @@ #include "NotePlayHandle.h" #include "PixmapButton.h" #include "Song.h" -#include "interpolation.h" +#include "lmms_math.h" #include "embed.h" - #include "plugin_export.h" namespace lmms @@ -86,7 +85,7 @@ BSynth::BSynth( float * _shape, NotePlayHandle * _nph, bool _interpolation, i.e., the absolute value of all samples is <= 1.0 if _factor is different to the default normalization factor. If there is a value > 1.0, clip the sample to 1.0 to limit the range. */ - if ((_factor != defaultNormalizationFactor) && (fabsf(buf) > 1.0f)) + if ((_factor != defaultNormalizationFactor) && (std::abs(buf) > 1.0f)) { buf = (buf < 0) ? -1.0f : 1.0f; } @@ -121,7 +120,7 @@ sample_t BSynth::nextStringSample( float sample_length ) } const auto nextIndex = currentIndex < sample_length - 1 ? currentIndex + 1 : 0; - return linearInterpolate(sample_shape[currentIndex], sample_shape[nextIndex], fraction(currentRealIndex)); + return std::lerp(sample_shape[currentIndex], sample_shape[nextIndex], fraction(currentRealIndex)); } /*********************************************************************** @@ -238,7 +237,7 @@ void BitInvader::normalize() const float* samples = m_graph.samples(); for(int i=0; i < m_graph.length(); i++) { - const float f = fabsf( samples[i] ); + const float f = std::abs(samples[i]); if (f > max) { max = f; } } m_normalizeFactor = 1.0 / max; @@ -554,4 +553,4 @@ PLUGIN_EXPORT Plugin * lmms_plugin_main( Model *m, void * ) } -} // namespace lmms \ No newline at end of file +} // namespace lmms diff --git a/plugins/Bitcrush/Bitcrush.cpp b/plugins/Bitcrush/Bitcrush.cpp index ea1c43acb..624cdd90b 100644 --- a/plugins/Bitcrush/Bitcrush.cpp +++ b/plugins/Bitcrush/Bitcrush.cpp @@ -24,6 +24,7 @@ */ #include "Bitcrush.h" +#include "lmms_math.h" #include "embed.h" #include "plugin_export.h" @@ -97,16 +98,11 @@ inline float BitcrushEffect::depthCrush( float in ) inline float BitcrushEffect::noise( float amt ) { - return fastRandf( amt * 2.0f ) - amt; + return fastRand(-amt, +amt); } -bool BitcrushEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames ) +Effect::ProcessStatus BitcrushEffect::processImpl(SampleFrame* buf, const fpp_t frames) { - if( !isEnabled() || !isRunning () ) - { - return( false ); - } - // update values if( m_needsUpdate || m_controls.m_rateEnabled.isValueChanged() ) { @@ -222,7 +218,6 @@ bool BitcrushEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames ) // now downsample and write it back to main buffer - double outSum = 0.0; const float d = dryLevel(); const float w = wetLevel(); for (auto f = std::size_t{0}; f < frames; ++f) @@ -236,12 +231,9 @@ bool BitcrushEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames ) } buf[f][0] = d * buf[f][0] + w * qBound( -m_outClip, lsum, m_outClip ) * m_outGain; buf[f][1] = d * buf[f][1] + w * qBound( -m_outClip, rsum, m_outClip ) * m_outGain; - outSum += buf[f][0]*buf[f][0] + buf[f][1]*buf[f][1]; } - checkGate( outSum / frames ); - - return isRunning(); + return ProcessStatus::ContinueIfNotQuiet; } @@ -257,4 +249,4 @@ PLUGIN_EXPORT Plugin * lmms_plugin_main( Model* parent, void* data ) } -} // namespace lmms \ No newline at end of file +} // namespace lmms diff --git a/plugins/Bitcrush/Bitcrush.h b/plugins/Bitcrush/Bitcrush.h index 009c7c02d..4957ea9ec 100644 --- a/plugins/Bitcrush/Bitcrush.h +++ b/plugins/Bitcrush/Bitcrush.h @@ -41,13 +41,14 @@ class BitcrushEffect : public Effect public: BitcrushEffect( Model* parent, const Descriptor::SubPluginFeatures::Key* key ); ~BitcrushEffect() override; - bool processAudioBuffer( SampleFrame* buf, const fpp_t frames ) override; + + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; EffectControls* controls() override { return &m_controls; } - + private: void sampleRateChanged(); float depthCrush( float in ); diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt index 04862cac1..7b63e5ead 100644 --- a/plugins/CMakeLists.txt +++ b/plugins/CMakeLists.txt @@ -2,8 +2,8 @@ SET(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}") SET(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}") SET(CMAKE_DEBUG_POSTFIX "") -# Enable C++17 -SET(CMAKE_CXX_STANDARD 17) +# Enable C++20 +SET(CMAKE_CXX_STANDARD 20) IF(LMMS_BUILD_APPLE AND CMAKE_CXX_COMPILER_ID MATCHES "Clang") SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++") diff --git a/plugins/CarlaBase/Carla.cpp b/plugins/CarlaBase/Carla.cpp index e81e65550..37cba078a 100644 --- a/plugins/CarlaBase/Carla.cpp +++ b/plugins/CarlaBase/Carla.cpp @@ -32,7 +32,7 @@ #include "Knob.h" #include "MidiEventToByteSeq.h" #include "MainWindow.h" -#include "gui_templates.h" +#include "FontHelper.h" #include "Song.h" #include @@ -627,7 +627,7 @@ CarlaInstrumentView::CarlaInstrumentView(CarlaInstrument* const instrument, QWid m_toggleUIButton->setCheckable( true ); m_toggleUIButton->setChecked( false ); m_toggleUIButton->setIcon( embed::getIconPixmap( "zoom" ) ); - m_toggleUIButton->setFont(adjustedToPixelSize(m_toggleUIButton->font(), 8)); + m_toggleUIButton->setFont(adjustedToPixelSize(m_toggleUIButton->font(), SMALL_FONT_SIZE)); connect( m_toggleUIButton, SIGNAL( clicked(bool) ), this, SLOT( toggleUI( bool ) ) ); m_toggleUIButton->setToolTip( @@ -637,7 +637,7 @@ CarlaInstrumentView::CarlaInstrumentView(CarlaInstrument* const instrument, QWid m_toggleParamsWindowButton = new QPushButton(tr("Params"), this); m_toggleParamsWindowButton->setIcon(embed::getIconPixmap("controller")); m_toggleParamsWindowButton->setCheckable(true); - m_toggleParamsWindowButton->setFont(adjustedToPixelSize(m_toggleParamsWindowButton->font(), 8)); + m_toggleParamsWindowButton->setFont(adjustedToPixelSize(m_toggleParamsWindowButton->font(), SMALL_FONT_SIZE)); #if CARLA_VERSION_HEX < CARLA_MIN_PARAM_VERSION m_toggleParamsWindowButton->setEnabled(false); m_toggleParamsWindowButton->setToolTip(tr("Available from Carla version 2.1 and up.")); diff --git a/plugins/Compressor/Compressor.cpp b/plugins/Compressor/Compressor.cpp index c04893361..a6f6c79dc 100755 --- a/plugins/Compressor/Compressor.cpp +++ b/plugins/Compressor/Compressor.cpp @@ -24,8 +24,10 @@ #include "Compressor.h" +#include +#include + #include "embed.h" -#include "interpolation.h" #include "lmms_math.h" #include "plugin_export.h" @@ -61,7 +63,7 @@ CompressorEffect::CompressorEffect(Model* parent, const Descriptor::SubPluginFea m_yL[0] = m_yL[1] = COMP_NOISE_FLOOR; // 200 ms - m_crestTimeConst = exp(-1.f / (0.2f * m_sampleRate)); + m_crestTimeConst = std::exp(-1.f / (0.2f * m_sampleRate)); connect(&m_compressorControls.m_attackModel, SIGNAL(dataChanged()), this, SLOT(calcAttack()), Qt::DirectConnection); connect(&m_compressorControls.m_releaseModel, SIGNAL(dataChanged()), this, SLOT(calcRelease()), Qt::DirectConnection); @@ -97,7 +99,7 @@ CompressorEffect::CompressorEffect(Model* parent, const Descriptor::SubPluginFea float CompressorEffect::msToCoeff(float ms) { // Convert time in milliseconds to applicable lowpass coefficient - return exp(m_coeffPrecalc / ms); + return std::exp(m_coeffPrecalc / ms); } @@ -175,7 +177,7 @@ void CompressorEffect::calcRange() void CompressorEffect::resizeRMS() { const float rmsValue = m_compressorControls.m_rmsModel.value(); - m_rmsTimeConst = (rmsValue > 0) ? exp(-1.f / (rmsValue * 0.001f * m_sampleRate)) : 0; + m_rmsTimeConst = (rmsValue > 0) ? std::exp(-1.f / (rmsValue * 0.001f * m_sampleRate)) : 0; } void CompressorEffect::calcLookaheadLength() @@ -209,18 +211,19 @@ void CompressorEffect::redrawKnee() void CompressorEffect::calcTiltCoeffs() { + using namespace std::numbers; m_tiltVal = m_compressorControls.m_tiltModel.value(); - const float amp = 6 / log(2); + constexpr float amp = 6.f / ln2_v; - const float gfactor = 5; + constexpr float gfactor = 5; const float g1 = m_tiltVal > 0 ? -gfactor * m_tiltVal : -m_tiltVal; const float g2 = m_tiltVal > 0 ? m_tiltVal : gfactor * m_tiltVal; - m_lgain = exp(g1 / amp) - 1; - m_hgain = exp(g2 / amp) - 1; + m_lgain = std::exp(g1 / amp) - 1; + m_hgain = std::exp(g2 / amp) - 1; - const float omega = 2 * F_PI * m_compressorControls.m_tiltFreqModel.value(); + const float omega = 2 * pi_v * m_compressorControls.m_tiltFreqModel.value(); const float n = 1 / (m_sampleRate * 3 + omega); m_a0 = 2 * omega * n; m_b1 = (m_sampleRate * 3 - omega) * n; @@ -233,31 +236,10 @@ void CompressorEffect::calcMix() -bool CompressorEffect::processAudioBuffer(SampleFrame* buf, const fpp_t frames) +Effect::ProcessStatus CompressorEffect::processImpl(SampleFrame* buf, const fpp_t frames) { - if (!isEnabled() || !isRunning()) - { - // Clear lookahead buffers and other values when needed - if (!m_cleanedBuffers) - { - m_yL[0] = m_yL[1] = COMP_NOISE_FLOOR; - m_gainResult[0] = m_gainResult[1] = 1; - m_displayPeak[0] = m_displayPeak[1] = COMP_NOISE_FLOOR; - m_displayGain[0] = m_displayGain[1] = COMP_NOISE_FLOOR; - std::fill(std::begin(m_scLookBuf[0]), std::end(m_scLookBuf[0]), COMP_NOISE_FLOOR); - std::fill(std::begin(m_scLookBuf[1]), std::end(m_scLookBuf[1]), COMP_NOISE_FLOOR); - std::fill(std::begin(m_inLookBuf[0]), std::end(m_inLookBuf[0]), 0); - std::fill(std::begin(m_inLookBuf[1]), std::end(m_inLookBuf[1]), 0); - m_cleanedBuffers = true; - } - return false; - } - else - { - m_cleanedBuffers = false; - } + m_cleanedBuffers = false; - float outSum = 0.0; const float d = dryLevel(); const float w = wetLevel(); @@ -423,21 +405,21 @@ bool CompressorEffect::processAudioBuffer(SampleFrame* buf, const fpp_t frames) if (blend <= 1)// Blend to minimum volume { const float temp1 = qMin(m_gainResult[0], m_gainResult[1]); - m_gainResult[0] = linearInterpolate(m_gainResult[0], temp1, blend); - m_gainResult[1] = linearInterpolate(m_gainResult[1], temp1, blend); + m_gainResult[0] = std::lerp(m_gainResult[0], temp1, blend); + m_gainResult[1] = std::lerp(m_gainResult[1], temp1, blend); } else if (blend <= 2)// Blend to average volume { const float temp1 = qMin(m_gainResult[0], m_gainResult[1]); const float temp2 = (m_gainResult[0] + m_gainResult[1]) * 0.5f; - m_gainResult[0] = linearInterpolate(temp1, temp2, blend - 1); + m_gainResult[0] = std::lerp(temp1, temp2, blend - 1); m_gainResult[1] = m_gainResult[0]; } else// Blend to maximum volume { const float temp1 = (m_gainResult[0] + m_gainResult[1]) * 0.5f; const float temp2 = qMax(m_gainResult[0], m_gainResult[1]); - m_gainResult[0] = linearInterpolate(temp1, temp2, blend - 2); + m_gainResult[0] = std::lerp(temp1, temp2, blend - 2); m_gainResult[1] = m_gainResult[0]; } } @@ -516,8 +498,6 @@ bool CompressorEffect::processAudioBuffer(SampleFrame* buf, const fpp_t frames) buf[f][0] = (1 - m_mixVal) * temp1 + m_mixVal * buf[f][0]; buf[f][1] = (1 - m_mixVal) * temp2 + m_mixVal * buf[f][1]; - outSum += buf[f][0] * buf[f][0] + buf[f][1] * buf[f][1]; - if (--m_lookWrite < 0) { m_lookWrite = m_lookBufLength - 1; } lInPeak = drySignal[0] > lInPeak ? drySignal[0] : lInPeak; @@ -526,30 +506,31 @@ bool CompressorEffect::processAudioBuffer(SampleFrame* buf, const fpp_t frames) rOutPeak = s[1] > rOutPeak ? s[1] : rOutPeak; } - checkGate(outSum / frames); m_compressorControls.m_outPeakL = lOutPeak; m_compressorControls.m_outPeakR = rOutPeak; m_compressorControls.m_inPeakL = lInPeak; m_compressorControls.m_inPeakR = rInPeak; - return isRunning(); + return ProcessStatus::ContinueIfNotQuiet; } - -// Regular modulo doesn't handle negative numbers correctly. This does. -inline int CompressorEffect::realmod(int k, int n) +void CompressorEffect::processBypassedImpl() { - return (k %= n) < 0 ? k+n : k; + // Clear lookahead buffers and other values when needed + if (!m_cleanedBuffers) + { + m_yL[0] = m_yL[1] = COMP_NOISE_FLOOR; + m_gainResult[0] = m_gainResult[1] = 1; + m_displayPeak[0] = m_displayPeak[1] = COMP_NOISE_FLOOR; + m_displayGain[0] = m_displayGain[1] = COMP_NOISE_FLOOR; + std::fill(std::begin(m_scLookBuf[0]), std::end(m_scLookBuf[0]), COMP_NOISE_FLOOR); + std::fill(std::begin(m_scLookBuf[1]), std::end(m_scLookBuf[1]), COMP_NOISE_FLOOR); + std::fill(std::begin(m_inLookBuf[0]), std::end(m_inLookBuf[0]), 0); + std::fill(std::begin(m_inLookBuf[1]), std::end(m_inLookBuf[1]), 0); + m_cleanedBuffers = true; + } } -// Regular fmod doesn't handle negative numbers correctly. This does. -inline float CompressorEffect::realfmod(float k, float n) -{ - return (k = fmod(k, n)) < 0 ? k+n : k; -} - - - inline void CompressorEffect::calcTiltFilter(sample_t inputSample, sample_t &outputSample, int filtNum) { m_tiltOut[filtNum] = m_a0 * inputSample + m_b1 * m_tiltOut[filtNum]; @@ -565,7 +546,7 @@ void CompressorEffect::changeSampleRate() m_coeffPrecalc = COMP_LOG / (m_sampleRate * 0.001f); // 200 ms - m_crestTimeConst = exp(-1.f / (0.2f * m_sampleRate)); + m_crestTimeConst = std::exp(-1.f / (0.2f * m_sampleRate)); m_lookBufLength = std::ceil((20.f / 1000.f) * m_sampleRate) + 2; for (int i = 0; i < 2; ++i) diff --git a/plugins/Compressor/Compressor.h b/plugins/Compressor/Compressor.h index af322de97..f5649411a 100755 --- a/plugins/Compressor/Compressor.h +++ b/plugins/Compressor/Compressor.h @@ -43,7 +43,9 @@ class CompressorEffect : public Effect public: CompressorEffect(Model* parent, const Descriptor::SubPluginFeatures::Key* key); ~CompressorEffect() override = default; - bool processAudioBuffer(SampleFrame* buf, const fpp_t frames) override; + + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; + void processBypassedImpl() override; EffectControls* controls() override { @@ -76,8 +78,6 @@ private: float msToCoeff(float ms); inline void calcTiltFilter(sample_t inputSample, sample_t &outputSample, int filtNum); - inline int realmod(int k, int n); - inline float realfmod(float k, float n); enum class StereoLinkMode { Unlinked, Maximum, Average, Minimum, Blend }; diff --git a/plugins/Compressor/CompressorControlDialog.cpp b/plugins/Compressor/CompressorControlDialog.cpp index d7350ba59..b4b1b0146 100755 --- a/plugins/Compressor/CompressorControlDialog.cpp +++ b/plugins/Compressor/CompressorControlDialog.cpp @@ -26,6 +26,7 @@ #include "CompressorControlDialog.h" #include "CompressorControls.h" +#include #include #include #include @@ -34,7 +35,6 @@ #include "embed.h" #include "../Eq/EqFader.h" #include "GuiApplication.h" -#include "interpolation.h" #include "Knob.h" #include "MainWindow.h" #include "PixmapButton.h" @@ -48,7 +48,6 @@ CompressorControlDialog::CompressorControlDialog(CompressorControls* controls) : m_controls(controls) { setAutoFillBackground(false); - setAttribute(Qt::WA_OpaquePaintEvent, true); setAttribute(Qt::WA_NoSystemBackground, true); setMinimumSize(MIN_COMP_SCREEN_X, MIN_COMP_SCREEN_Y); @@ -437,7 +436,11 @@ void CompressorControlDialog::drawVisPixmap() m_p.setPen(QPen(m_inVolAreaColor, 1)); for (int i = 0; i < m_compPixelMovement; ++i) { - const int temp = linearInterpolate(m_lastPoint, m_yPoint, float(i) / float(m_compPixelMovement)); + const int temp = std::lerp( + m_lastPoint, + m_yPoint, + static_cast(i) / static_cast(m_compPixelMovement) + ); m_p.drawLine(m_windowSizeX-m_compPixelMovement+i, temp, m_windowSizeX-m_compPixelMovement+i, m_windowSizeY); } @@ -449,7 +452,11 @@ void CompressorControlDialog::drawVisPixmap() m_p.setPen(QPen(m_outVolAreaColor, 1)); for (int i = 0; i < m_compPixelMovement; ++i) { - const int temp = linearInterpolate(m_lastPoint+m_lastGainPoint, m_yPoint+m_yGainPoint, float(i) / float(m_compPixelMovement)); + const int temp = std::lerp( + m_lastPoint + m_lastGainPoint, + m_yPoint + m_yGainPoint, + static_cast(i) / static_cast(m_compPixelMovement) + ); m_p.drawLine(m_windowSizeX-m_compPixelMovement+i, temp, m_windowSizeX-m_compPixelMovement+i, m_windowSizeY); } @@ -512,7 +519,7 @@ void CompressorControlDialog::redrawKnee() // Draw knee curve using many straight lines. for (int i = 0; i < COMP_KNEE_LINES; ++i) { - newPoint[0] = linearInterpolate(kneePoint1, kneePoint2X, (i + 1) / (float)COMP_KNEE_LINES); + newPoint[0] = std::lerp(kneePoint1, kneePoint2X, (i + 1) / static_cast(COMP_KNEE_LINES)); const float temp = newPoint[0] - thresholdVal + kneeVal; newPoint[1] = (newPoint[0] + (actualRatio - 1) * temp * temp / (4 * kneeVal)); diff --git a/plugins/Compressor/limiter_sel.png b/plugins/Compressor/limiter_sel.png index 2d0e054af..cc3d4debe 100755 Binary files a/plugins/Compressor/limiter_sel.png and b/plugins/Compressor/limiter_sel.png differ diff --git a/plugins/Compressor/limiter_unsel.png b/plugins/Compressor/limiter_unsel.png index 415641c5f..068eec50d 100755 Binary files a/plugins/Compressor/limiter_unsel.png and b/plugins/Compressor/limiter_unsel.png differ diff --git a/plugins/CrossoverEQ/CrossoverEQ.cpp b/plugins/CrossoverEQ/CrossoverEQ.cpp index 2142d040c..e221dc525 100644 --- a/plugins/CrossoverEQ/CrossoverEQ.cpp +++ b/plugins/CrossoverEQ/CrossoverEQ.cpp @@ -89,13 +89,8 @@ void CrossoverEQEffect::sampleRateChanged() } -bool CrossoverEQEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames ) +Effect::ProcessStatus CrossoverEQEffect::processImpl(SampleFrame* buf, const fpp_t frames) { - if( !isEnabled() || !isRunning () ) - { - return( false ); - } - // filters update if( m_needsUpdate || m_controls.m_xover12.isValueChanged() ) { @@ -192,17 +187,14 @@ bool CrossoverEQEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames const float d = dryLevel(); const float w = wetLevel(); - double outSum = 0.0; + for (auto f = std::size_t{0}; f < frames; ++f) { buf[f][0] = d * buf[f][0] + w * m_work[f][0]; buf[f][1] = d * buf[f][1] + w * m_work[f][1]; - outSum += buf[f][0] * buf[f][0] + buf[f][1] * buf[f][1]; } - - checkGate( outSum / frames ); - - return isRunning(); + + return ProcessStatus::ContinueIfNotQuiet; } void CrossoverEQEffect::clearFilterHistories() diff --git a/plugins/CrossoverEQ/CrossoverEQ.h b/plugins/CrossoverEQ/CrossoverEQ.h index 078e51c21..276e2c131 100644 --- a/plugins/CrossoverEQ/CrossoverEQ.h +++ b/plugins/CrossoverEQ/CrossoverEQ.h @@ -40,7 +40,8 @@ class CrossoverEQEffect : public Effect public: CrossoverEQEffect( Model* parent, const Descriptor::SubPluginFeatures::Key* key ); ~CrossoverEQEffect() override; - bool processAudioBuffer( SampleFrame* buf, const fpp_t frames ) override; + + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; EffectControls* controls() override { diff --git a/plugins/CrossoverEQ/CrossoverEQControlDialog.cpp b/plugins/CrossoverEQ/CrossoverEQControlDialog.cpp index a4f44f5d3..e7202556b 100644 --- a/plugins/CrossoverEQ/CrossoverEQControlDialog.cpp +++ b/plugins/CrossoverEQ/CrossoverEQControlDialog.cpp @@ -70,25 +70,25 @@ CrossoverEQControlDialog::CrossoverEQControlDialog( CrossoverEQControls * contro QPixmap const fader_knob(PLUGIN_NAME::getIconPixmap("fader_knob2")); // faders - auto gain1 = new Fader(&controls->m_gain1, tr("Band 1 gain"), this, fader_knob); + auto gain1 = new Fader(&controls->m_gain1, tr("Band 1 gain"), this, fader_knob, false); gain1->move( 7, 56 ); gain1->setDisplayConversion( false ); gain1->setHintText( tr( "Band 1 gain:" ), " dBFS" ); gain1->setRenderUnityLine(false); - auto gain2 = new Fader(&controls->m_gain2, tr("Band 2 gain"), this, fader_knob); + auto gain2 = new Fader(&controls->m_gain2, tr("Band 2 gain"), this, fader_knob, false); gain2->move( 47, 56 ); gain2->setDisplayConversion( false ); gain2->setHintText( tr( "Band 2 gain:" ), " dBFS" ); gain2->setRenderUnityLine(false); - auto gain3 = new Fader(&controls->m_gain3, tr("Band 3 gain"), this, fader_knob); + auto gain3 = new Fader(&controls->m_gain3, tr("Band 3 gain"), this, fader_knob, false); gain3->move( 87, 56 ); gain3->setDisplayConversion( false ); gain3->setHintText( tr( "Band 3 gain:" ), " dBFS" ); gain3->setRenderUnityLine(false); - auto gain4 = new Fader(&controls->m_gain4, tr("Band 4 gain"), this, fader_knob); + auto gain4 = new Fader(&controls->m_gain4, tr("Band 4 gain"), this, fader_knob, false); gain4->move( 127, 56 ); gain4->setDisplayConversion( false ); gain4->setHintText( tr( "Band 4 gain:" ), " dBFS" ); diff --git a/plugins/Delay/DelayEffect.cpp b/plugins/Delay/DelayEffect.cpp index 4e90c0fa8..baf015916 100644 --- a/plugins/Delay/DelayEffect.cpp +++ b/plugins/Delay/DelayEffect.cpp @@ -81,13 +81,8 @@ DelayEffect::~DelayEffect() -bool DelayEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames ) +Effect::ProcessStatus DelayEffect::processImpl(SampleFrame* buf, const fpp_t frames) { - if( !isEnabled() || !isRunning () ) - { - return( false ); - } - double outSum = 0.0; const float sr = Engine::audioEngine()->outputSampleRate(); const float d = dryLevel(); const float w = wetLevel(); @@ -135,19 +130,17 @@ bool DelayEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames ) // Dry/wet mix currentFrame = dryS * d + currentFrame * w; - - outSum += currentFrame.sumOfSquaredAmplitudes(); lengthPtr += lengthInc; amplitudePtr += amplitudeInc; lfoTimePtr += lfoTimeInc; feedbackPtr += feedbackInc; } - checkGate( outSum / frames ); + m_delayControls.m_outPeakL = peak.left(); m_delayControls.m_outPeakR = peak.right(); - return isRunning(); + return ProcessStatus::ContinueIfNotQuiet; } void DelayEffect::changeSampleRate() diff --git a/plugins/Delay/DelayEffect.h b/plugins/Delay/DelayEffect.h index b7e2cfef0..fc6a21fd6 100644 --- a/plugins/Delay/DelayEffect.h +++ b/plugins/Delay/DelayEffect.h @@ -39,7 +39,9 @@ class DelayEffect : public Effect public: DelayEffect(Model* parent , const Descriptor::SubPluginFeatures::Key* key ); ~DelayEffect() override; - bool processAudioBuffer( SampleFrame* buf, const fpp_t frames ) override; + + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; + EffectControls* controls() override { return &m_delayControls; diff --git a/plugins/Delay/Lfo.cpp b/plugins/Delay/Lfo.cpp index 5a449243a..ce5903baa 100644 --- a/plugins/Delay/Lfo.cpp +++ b/plugins/Delay/Lfo.cpp @@ -25,6 +25,7 @@ #include "Lfo.h" #include +#include namespace lmms { @@ -33,7 +34,7 @@ namespace lmms Lfo::Lfo( int samplerate ) { m_samplerate = samplerate; - m_twoPiOverSr = F_2PI / samplerate; + m_twoPiOverSr = 2 * std::numbers::pi_v / samplerate; } @@ -41,7 +42,7 @@ Lfo::Lfo( int samplerate ) float Lfo::tick() { - float output = sinf( m_phase ); + float output = std::sin(m_phase); m_phase += m_increment; return output; diff --git a/plugins/Delay/Lfo.h b/plugins/Delay/Lfo.h index ea8435d13..f3fc22cf7 100644 --- a/plugins/Delay/Lfo.h +++ b/plugins/Delay/Lfo.h @@ -25,8 +25,8 @@ #ifndef LFO_H #define LFO_H -#include "lmms_constants.h" - +#include +#include namespace lmms { @@ -50,10 +50,7 @@ public: m_frequency = frequency; m_increment = m_frequency * m_twoPiOverSr; - if( m_phase >= F_2PI ) - { - m_phase -= F_2PI; - } + m_phase = std::fmod(m_phase, 2 * std::numbers::pi_v); } @@ -62,7 +59,7 @@ public: inline void setSampleRate ( int samplerate ) { m_samplerate = samplerate; - m_twoPiOverSr = F_2PI / samplerate; + m_twoPiOverSr = 2 * std::numbers::pi_v / samplerate; m_increment = m_frequency * m_twoPiOverSr; } diff --git a/plugins/Dispersion/Dispersion.cpp b/plugins/Dispersion/Dispersion.cpp index a2fada615..52dd60136 100644 --- a/plugins/Dispersion/Dispersion.cpp +++ b/plugins/Dispersion/Dispersion.cpp @@ -58,14 +58,8 @@ DispersionEffect::DispersionEffect(Model* parent, const Descriptor::SubPluginFea } -bool DispersionEffect::processAudioBuffer(SampleFrame* buf, const fpp_t frames) +Effect::ProcessStatus DispersionEffect::processImpl(SampleFrame* buf, const fpp_t frames) { - if (!isEnabled() || !isRunning()) - { - return false; - } - - double outSum = 0.0; const float d = dryLevel(); const float w = wetLevel(); @@ -76,7 +70,7 @@ bool DispersionEffect::processAudioBuffer(SampleFrame* buf, const fpp_t frames) const bool dc = m_dispersionControls.m_dcModel.value(); // All-pass coefficient calculation - const float w0 = (F_2PI / m_sampleRate) * freq; + const float w0 = (2 * std::numbers::pi_v / m_sampleRate) * freq; const float a0 = 1 + (std::sin(w0) / (reso * 2.f)); float apCoeff1 = (1 - (a0 - 1)) / a0; float apCoeff2 = (-2 * std::cos(w0)) / a0; @@ -122,11 +116,9 @@ bool DispersionEffect::processAudioBuffer(SampleFrame* buf, const fpp_t frames) buf[f][0] = d * buf[f][0] + w * s[0]; buf[f][1] = d * buf[f][1] + w * s[1]; - outSum += buf[f][0] * buf[f][0] + buf[f][1] * buf[f][1]; } - checkGate(outSum / frames); - return isRunning(); + return ProcessStatus::ContinueIfNotQuiet; } diff --git a/plugins/Dispersion/Dispersion.h b/plugins/Dispersion/Dispersion.h index e3d5d4b5c..27365950d 100644 --- a/plugins/Dispersion/Dispersion.h +++ b/plugins/Dispersion/Dispersion.h @@ -41,7 +41,8 @@ class DispersionEffect : public Effect public: DispersionEffect(Model* parent, const Descriptor::SubPluginFeatures::Key* key); ~DispersionEffect() override = default; - bool processAudioBuffer(SampleFrame* buf, const fpp_t frames) override; + + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; EffectControls* controls() override { diff --git a/plugins/DualFilter/DualFilter.cpp b/plugins/DualFilter/DualFilter.cpp index b337e1003..397180b8e 100644 --- a/plugins/DualFilter/DualFilter.cpp +++ b/plugins/DualFilter/DualFilter.cpp @@ -77,23 +77,17 @@ DualFilterEffect::~DualFilterEffect() -bool DualFilterEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames ) +Effect::ProcessStatus DualFilterEffect::processImpl(SampleFrame* buf, const fpp_t frames) { - if( !isEnabled() || !isRunning () ) - { - return( false ); - } - - double outSum = 0.0; const float d = dryLevel(); const float w = wetLevel(); - if( m_dfControls.m_filter1Model.isValueChanged() || m_filter1changed ) + if (m_dfControls.m_filter1Model.isValueChanged() || m_filter1changed) { m_filter1->setFilterType( static_cast::FilterType>(m_dfControls.m_filter1Model.value()) ); m_filter1changed = true; } - if( m_dfControls.m_filter2Model.isValueChanged() || m_filter2changed ) + if (m_dfControls.m_filter2Model.isValueChanged() || m_filter2changed) { m_filter2->setFilterType( static_cast::FilterType>(m_dfControls.m_filter2Model.value()) ); m_filter2changed = true; @@ -201,7 +195,6 @@ bool DualFilterEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames // do another mix with dry signal buf[f][0] = d * buf[f][0] + w * s[0]; buf[f][1] = d * buf[f][1] + w * s[1]; - outSum += buf[f][0] * buf[f][0] + buf[f][1] * buf[f][1]; //increment pointers cut1Ptr += cut1Inc; @@ -213,9 +206,7 @@ bool DualFilterEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames mixPtr += mixInc; } - checkGate( outSum / frames ); - - return isRunning(); + return ProcessStatus::ContinueIfNotQuiet; } void DualFilterEffect::onEnabledChanged() diff --git a/plugins/DualFilter/DualFilter.h b/plugins/DualFilter/DualFilter.h index 6c53f61ef..dc573a8d6 100644 --- a/plugins/DualFilter/DualFilter.h +++ b/plugins/DualFilter/DualFilter.h @@ -40,7 +40,8 @@ class DualFilterEffect : public Effect public: DualFilterEffect( Model* parent, const Descriptor::SubPluginFeatures::Key* key ); ~DualFilterEffect() override; - bool processAudioBuffer( SampleFrame* buf, const fpp_t frames ) override; + + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; EffectControls* controls() override { diff --git a/plugins/DynamicsProcessor/DynamicsProcessor.cpp b/plugins/DynamicsProcessor/DynamicsProcessor.cpp index 5b251a6f0..4f8db97ce 100644 --- a/plugins/DynamicsProcessor/DynamicsProcessor.cpp +++ b/plugins/DynamicsProcessor/DynamicsProcessor.cpp @@ -25,8 +25,10 @@ #include "DynamicsProcessor.h" + +#include + #include "lmms_math.h" -#include "interpolation.h" #include "RmsHelper.h" #include "embed.h" @@ -91,15 +93,8 @@ inline void DynProcEffect::calcRelease() } -bool DynProcEffect::processAudioBuffer( SampleFrame* _buf, - const fpp_t _frames ) +Effect::ProcessStatus DynProcEffect::processImpl(SampleFrame* buf, const fpp_t frames) { - if( !isEnabled() || !isRunning () ) - { -//apparently we can't keep running after the decay value runs out so we'll just set the peaks to zero - m_currentPeak[0] = m_currentPeak[1] = DYN_NOISE_FLOOR; - return( false ); - } //qDebug( "%f %f", m_currentPeak[0], m_currentPeak[1] ); // variables for effect @@ -107,7 +102,6 @@ bool DynProcEffect::processAudioBuffer( SampleFrame* _buf, auto sm_peak = std::array{0.0f, 0.0f}; - double out_sum = 0.0; const float d = dryLevel(); const float w = wetLevel(); @@ -140,9 +134,9 @@ bool DynProcEffect::processAudioBuffer( SampleFrame* _buf, } } - for( fpp_t f = 0; f < _frames; ++f ) + for (fpp_t f = 0; f < frames; ++f) { - auto s = std::array{_buf[f][0], _buf[f][1]}; + auto s = std::array{buf[f][0], buf[f][1]}; // apply input gain s[0] *= inputGain; @@ -197,7 +191,7 @@ bool DynProcEffect::processAudioBuffer( SampleFrame* _buf, { float gain; if (lookup < 1) { gain = frac * samples[0]; } - else if (lookup < 200) { gain = linearInterpolate(samples[lookup - 1], samples[lookup], frac); } + else if (lookup < 200) { gain = std::lerp(samples[lookup - 1], samples[lookup], frac); } else { gain = samples[199]; } s[i] *= gain; @@ -210,17 +204,18 @@ bool DynProcEffect::processAudioBuffer( SampleFrame* _buf, s[1] *= outputGain; // mix wet/dry signals - _buf[f][0] = d * _buf[f][0] + w * s[0]; - _buf[f][1] = d * _buf[f][1] + w * s[1]; - out_sum += _buf[f][0] * _buf[f][0] + _buf[f][1] * _buf[f][1]; + buf[f][0] = d * buf[f][0] + w * s[0]; + buf[f][1] = d * buf[f][1] + w * s[1]; } - checkGate( out_sum / _frames ); - - return( isRunning() ); + return ProcessStatus::ContinueIfNotQuiet; } - +void DynProcEffect::processBypassedImpl() +{ + // Apparently we can't keep running after the decay value runs out so we'll just set the peaks to zero + m_currentPeak[0] = m_currentPeak[1] = DYN_NOISE_FLOOR; +} diff --git a/plugins/DynamicsProcessor/DynamicsProcessor.h b/plugins/DynamicsProcessor/DynamicsProcessor.h index 970690d8d..fbf5d930a 100644 --- a/plugins/DynamicsProcessor/DynamicsProcessor.h +++ b/plugins/DynamicsProcessor/DynamicsProcessor.h @@ -42,8 +42,9 @@ public: DynProcEffect( Model * _parent, const Descriptor::SubPluginFeatures::Key * _key ); ~DynProcEffect() override; - bool processAudioBuffer( SampleFrame* _buf, - const fpp_t _frames ) override; + + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; + void processBypassedImpl() override; EffectControls * controls() override { diff --git a/plugins/Eq/EqControlsDialog.cpp b/plugins/Eq/EqControlsDialog.cpp index 8394569f6..1fb10e2bb 100644 --- a/plugins/Eq/EqControlsDialog.cpp +++ b/plugins/Eq/EqControlsDialog.cpp @@ -110,7 +110,7 @@ EqControlsDialog::EqControlsDialog( EqControls *controls ) : resKnob->setVolumeKnob(false); resKnob->setModel( m_parameterWidget->getBandModels( i )->res ); if(i > 1 && i < 6) { resKnob->setHintText( tr( "Bandwidth: " ) , tr( " Octave" ) ); } - else { resKnob->setHintText( tr( "Resonance : " ) , "" ); } + else { resKnob->setHintText(tr("Resonance: "), ""); } auto freqKnob = new Knob(KnobType::Bright26, this); freqKnob->move( distance, 396 ); diff --git a/plugins/Eq/EqCurve.cpp b/plugins/Eq/EqCurve.cpp index df17f71ff..c07b98dd3 100644 --- a/plugins/Eq/EqCurve.cpp +++ b/plugins/Eq/EqCurve.cpp @@ -30,7 +30,7 @@ #include "AudioEngine.h" #include "embed.h" #include "Engine.h" -#include "lmms_constants.h" +#include "FontHelper.h" #include "lmms_math.h" @@ -67,10 +67,10 @@ QRectF EqHandle::boundingRect() const float EqHandle::freqToXPixel( float freq , int w ) { if (approximatelyEqual(freq, 0.0f)) { return 0.0f; } - float min = log10f( 20 ); - float max = log10f( 20000 ); + float min = std::log10(20); + float max = std::log10(20000); float range = max - min; - return ( log10f( freq ) - min ) / range * w; + return (std::log10(freq) - min) / range * w; } @@ -78,10 +78,10 @@ float EqHandle::freqToXPixel( float freq , int w ) float EqHandle::xPixelToFreq( float x , int w ) { - float min = log10f( 20 ); - float max = log10f( 20000 ); + float min = std::log10(20); + float max = std::log10(20000); float range = max - min; - return powf( 10 , x * ( range / w ) + min ); + return fastPow10f(x * (range / w) + min); } @@ -148,9 +148,7 @@ void EqHandle::paint( QPainter *painter, const QStyleOptionGraphicsItem *option, res = tr( "BW: " ) + QString::number( getResonance() ); } - QFont painterFont = painter->font(); - painterFont.setPointSizeF( painterFont.pointSizeF() * 0.7 ); - painter->setFont( painterFont ); + painter->setFont(adjustedToPixelSize(painter->font(), SMALL_FONT_SIZE)); painter->setPen( Qt::black ); painter->drawRect( textRect ); painter->fillRect( textRect, QBrush( QColor( 6, 106, 43, 180 ) ) ); @@ -201,14 +199,14 @@ bool EqHandle::mousePressed() const float EqHandle::getPeakCurve( float x ) { + using namespace std::numbers; double freqZ = xPixelToFreq( EqHandle::x(), m_width ); - const int SR = Engine::audioEngine()->outputSampleRate(); - double w0 = 2 * LD_PI * freqZ / SR ; - double c = cosf( w0 ); - double s = sinf( w0 ); + double w0 = 2 * pi * freqZ / Engine::audioEngine()->outputSampleRate(); + double c = std::cos(w0); + double s = std::sin(w0); double Q = getResonance(); - double A = pow( 10, yPixelToGain( EqHandle::y(), m_heigth, m_pixelsPerUnitHeight ) / 40 ); - double alpha = s * sinh( log( 2 ) / 2 * Q * w0 / sinf( w0 ) ); + double A = fastPow10f(yPixelToGain(EqHandle::y(), m_heigth, m_pixelsPerUnitHeight) / 40); + double alpha = s * std::sinh(ln2 / 2 * Q * w0 / std::sin(w0)); //calc coefficents double b0 = 1 + alpha * A; @@ -239,12 +237,11 @@ float EqHandle::getPeakCurve( float x ) float EqHandle::getHighShelfCurve( float x ) { double freqZ = xPixelToFreq( EqHandle::x(), m_width ); - const int SR = Engine::audioEngine()->outputSampleRate(); - double w0 = 2 * LD_PI * freqZ / SR; - double c = cosf( w0 ); - double s = sinf( w0 ); - double A = pow( 10, yPixelToGain( EqHandle::y(), m_heigth, m_pixelsPerUnitHeight ) * 0.025 ); - double beta = sqrt( A ) / m_resonance; + double w0 = 2 * std::numbers::pi * freqZ / Engine::audioEngine()->outputSampleRate(); + double c = std::cos(w0); + double s = std::sin(w0); + double A = fastPow10f(yPixelToGain(EqHandle::y(), m_heigth, m_pixelsPerUnitHeight) * 0.025); + double beta = std::sqrt(A) / m_resonance; //calc coefficents double b0 = A * ((A + 1) + (A - 1) * c + beta * s); @@ -275,12 +272,11 @@ float EqHandle::getHighShelfCurve( float x ) float EqHandle::getLowShelfCurve( float x ) { double freqZ = xPixelToFreq( EqHandle::x(), m_width ); - const int SR = Engine::audioEngine()->outputSampleRate(); - double w0 = 2 * LD_PI * freqZ / SR ; - double c = cosf( w0 ); - double s = sinf( w0 ); - double A = pow( 10, yPixelToGain( EqHandle::y(), m_heigth, m_pixelsPerUnitHeight ) / 40 ); - double beta = sqrt( A ) / m_resonance; + double w0 = 2 * std::numbers::pi * freqZ / Engine::audioEngine()->outputSampleRate(); + double c = std::cos(w0); + double s = std::sin(w0); + double A = fastPow10f(yPixelToGain(EqHandle::y(), m_heigth, m_pixelsPerUnitHeight) / 40); + double beta = std::sqrt(A) / m_resonance; //calc coefficents double b0 = A * ((A + 1) - (A - 1) * c + beta * s); @@ -311,10 +307,9 @@ float EqHandle::getLowShelfCurve( float x ) float EqHandle::getLowCutCurve( float x ) { double freqZ = xPixelToFreq( EqHandle::x(), m_width ); - const int SR = Engine::audioEngine()->outputSampleRate(); - double w0 = 2 * LD_PI * freqZ / SR ; - double c = cosf( w0 ); - double s = sinf( w0 ); + double w0 = 2 * std::numbers::pi * freqZ / Engine::audioEngine()->outputSampleRate(); + double c = std::cos(w0); + double s = std::sin(w0); double resonance = getResonance(); double alpha = s / (2 * resonance); @@ -354,10 +349,9 @@ float EqHandle::getLowCutCurve( float x ) float EqHandle::getHighCutCurve( float x ) { double freqZ = xPixelToFreq( EqHandle::x(), m_width ); - const int SR = Engine::audioEngine()->outputSampleRate(); - double w0 = 2 * LD_PI * freqZ / SR ; - double c = cosf( w0 ); - double s = sinf( w0 ); + double w0 = 2 * std::numbers::pi * freqZ / Engine::audioEngine()->outputSampleRate(); + double c = std::cos(w0); + double s = std::sin(w0); double resonance = getResonance(); double alpha = s / (2 * resonance); @@ -528,14 +522,13 @@ void EqHandle::setlp48() double EqHandle::calculateGain(const double freq, const double a1, const double a2, const double b0, const double b1, const double b2 ) { - const int SR = Engine::audioEngine()->outputSampleRate(); + const double w = std::sin(std::numbers::pi * freq / Engine::audioEngine()->outputSampleRate()); + const double PHI = w * w * 4; - const double w = 2 * LD_PI * freq / SR ; - const double PHI = pow( sin( w / 2 ), 2 ) * 4; - - double gain = 10 * log10( pow( b0 + b1 + b2 , 2 ) + ( b0 * b2 * PHI - ( b1 * ( b0 + b2 ) - + 4 * b0 * b2 ) ) * PHI ) - 10 * log10( pow( 1 + a1 + a2, 2 ) - + ( 1 * a2 * PHI - ( a1 * ( 1 + a2 ) + 4 * 1 * a2 ) ) * PHI ); + auto bb = b0 + b1 + b2; + auto aa = 1 + a1 + a2; + double gain = 10 * std::log10(bb * bb + (b0 * b2 * PHI - (b1 * (b0 + b2) + 4 * b0 * b2)) * PHI) + - 10 * std::log10(aa * aa + (1 * a2 * PHI - (a1 * (1 + a2) + 4 * 1 * a2)) * PHI); return gain; } diff --git a/plugins/Eq/EqEffect.cpp b/plugins/Eq/EqEffect.cpp index 662b85a8e..6859529f4 100644 --- a/plugins/Eq/EqEffect.cpp +++ b/plugins/Eq/EqEffect.cpp @@ -64,7 +64,7 @@ EqEffect::EqEffect( Model *parent, const Plugin::Descriptor::SubPluginFeatures:: -bool EqEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames ) +Effect::ProcessStatus EqEffect::processImpl(SampleFrame* buf, const fpp_t frames) { const int sampleRate = Engine::audioEngine()->outputSampleRate(); @@ -131,13 +131,6 @@ bool EqEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames ) m_lp481.setParameters( sampleRate, lpFreq, lpRes, 1 ); - - - if( !isEnabled() || !isRunning () ) - { - return( false ); - } - if( m_eqControls.m_outGainModel.isValueChanged() ) { m_outGain = dbfsToAmp(m_eqControls.m_outGainModel.value()); @@ -151,9 +144,9 @@ bool EqEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames ) m_eqControls.m_inProgress = true; double outSum = 0.0; - for( fpp_t f = 0; f < frames; ++f ) + for (fpp_t f = 0; f < frames; ++f) { - outSum += buf[f][0]*buf[f][0] + buf[f][1]*buf[f][1]; + outSum += buf[f][0] * buf[f][0] + buf[f][1] * buf[f][1]; } const float outGain = m_outGain; @@ -268,8 +261,6 @@ bool EqEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames ) m_eqControls.m_outPeakL = m_eqControls.m_outPeakL < outPeak[0] ? outPeak[0] : m_eqControls.m_outPeakL; m_eqControls.m_outPeakR = m_eqControls.m_outPeakR < outPeak[1] ? outPeak[1] : m_eqControls.m_outPeakR; - checkGate( outSum / frames ); - if(m_eqControls.m_analyseOutModel.value( true ) && outSum > 0 && m_eqControls.isViewVisible() ) { m_eqControls.m_outFftBands.analyze( buf, frames ); @@ -281,7 +272,8 @@ bool EqEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames ) } m_eqControls.m_inProgress = false; - return isRunning(); + + return Effect::ProcessStatus::ContinueIfNotQuiet; } diff --git a/plugins/Eq/EqEffect.h b/plugins/Eq/EqEffect.h index ca0ebb1b9..35e1b12b5 100644 --- a/plugins/Eq/EqEffect.h +++ b/plugins/Eq/EqEffect.h @@ -40,7 +40,9 @@ class EqEffect : public Effect public: EqEffect( Model * parent , const Descriptor::SubPluginFeatures::Key * key ); ~EqEffect() override = default; - bool processAudioBuffer( SampleFrame* buf, const fpp_t frames ) override; + + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; + EffectControls * controls() override { return &m_eqControls; diff --git a/plugins/Eq/EqFader.h b/plugins/Eq/EqFader.h index 3185d0879..5c9aa5e5d 100644 --- a/plugins/Eq/EqFader.h +++ b/plugins/Eq/EqFader.h @@ -43,7 +43,7 @@ public: Q_OBJECT public: EqFader( FloatModel * model, const QString & name, QWidget * parent, float* lPeak, float* rPeak ) : - Fader( model, name, parent ) + Fader(model, name, parent, false) { setMinimumSize( 23, 116 ); setMaximumSize( 23, 116 ); diff --git a/plugins/Eq/EqFilter.h b/plugins/Eq/EqFilter.h index 5408d131c..a6e7d558a 100644 --- a/plugins/Eq/EqFilter.h +++ b/plugins/Eq/EqFilter.h @@ -25,13 +25,14 @@ #ifndef EQFILTER_H #define EQFILTER_H +#include + #include "BasicFilters.h" #include "lmms_math.h" namespace lmms { - /// /// \brief The EqFilter class. /// A wrapper for the StereoBiQuad class, giving it freq, res, and gain controls. @@ -185,9 +186,9 @@ public : { // calc intermediate - float w0 = F_2PI * m_freq / m_sampleRate; - float c = cosf( w0 ); - float s = sinf( w0 ); + float w0 = 2 * std::numbers::pi_v * m_freq / m_sampleRate; + float c = std::cos(w0); + float s = std::sin(w0); float alpha = s / ( 2 * m_res ); //calc coefficents @@ -228,9 +229,9 @@ public : { // calc intermediate - float w0 = F_2PI * m_freq / m_sampleRate; - float c = cosf( w0 ); - float s = sinf( w0 ); + float w0 = 2 * std::numbers::pi_v * m_freq / m_sampleRate; + float c = std::cos(w0); + float s = std::sin(w0); float alpha = s / ( 2 * m_res ); //calc coefficents @@ -268,12 +269,13 @@ public: void calcCoefficents() override { + using namespace std::numbers; // calc intermediate - float w0 = F_2PI * m_freq / m_sampleRate; - float c = cosf( w0 ); - float s = sinf( w0 ); - float A = pow( 10, m_gain * 0.025); - float alpha = s * sinh( log( 2 ) / 2 * m_bw * w0 / sinf(w0) ); + float w0 = 2 * pi_v * m_freq / m_sampleRate; + float c = std::cos(w0); + float s = std::sin(w0); + float A = fastPow10f(m_gain * 0.025); + float alpha = s * std::sinh(ln2 / 2 * m_bw * w0 / std::sin(w0)); //calc coefficents float b0 = 1 + alpha * A; @@ -332,12 +334,12 @@ public : { // calc intermediate - float w0 = F_2PI * m_freq / m_sampleRate; - float c = cosf( w0 ); - float s = sinf( w0 ); - float A = pow( 10, m_gain * 0.025); - // float alpha = s / ( 2 * m_res ); - float beta = sqrt( A ) / m_res; + float w0 = 2 * std::numbers::pi_v * m_freq / m_sampleRate; + float c = std::cos(w0); + float s = std::sin(w0); + float A = fastPow10f(m_gain * 0.025); + // float alpha = s / (2 * m_res); + float beta = std::sqrt(A) / m_res; //calc coefficents float b0 = A * ((A + 1) - (A - 1) * c + beta * s); @@ -369,11 +371,11 @@ public : { // calc intermediate - float w0 = F_2PI * m_freq / m_sampleRate; - float c = cosf( w0 ); - float s = sinf( w0 ); - float A = pow( 10, m_gain * 0.025 ); - float beta = sqrt( A ) / m_res; + float w0 = 2 * std::numbers::pi_v * m_freq / m_sampleRate; + float c = std::cos(w0); + float s = std::sin(w0); + float A = fastPow10f(m_gain * 0.025); + float beta = std::sqrt(A) / m_res; //calc coefficents float b0 = A * ((A + 1) + (A - 1) * c + beta * s); diff --git a/plugins/Eq/EqParameterWidget.cpp b/plugins/Eq/EqParameterWidget.cpp index ceccb669f..a7c75b70d 100644 --- a/plugins/Eq/EqParameterWidget.cpp +++ b/plugins/Eq/EqParameterWidget.cpp @@ -35,7 +35,6 @@ #include "AutomatableModel.h" #include "EqCurve.h" #include "EqParameterWidget.h" -#include "lmms_constants.h" namespace lmms::gui @@ -239,4 +238,4 @@ EqBand::EqBand() : } -} // namespace lmms::gui \ No newline at end of file +} // namespace lmms::gui diff --git a/plugins/Eq/EqSpectrumView.cpp b/plugins/Eq/EqSpectrumView.cpp index 99df328ef..5441df287 100644 --- a/plugins/Eq/EqSpectrumView.cpp +++ b/plugins/Eq/EqSpectrumView.cpp @@ -23,6 +23,7 @@ #include "EqSpectrumView.h" #include +#include #include #include @@ -31,7 +32,6 @@ #include "EqCurve.h" #include "GuiApplication.h" #include "MainWindow.h" -#include "lmms_constants.h" namespace lmms { @@ -43,6 +43,7 @@ EqAnalyser::EqAnalyser() : m_sampleRate ( 1 ), m_active ( true ) { + using namespace std::numbers; m_inProgress=false; m_specBuf = ( fftwf_complex * ) fftwf_malloc( ( FFT_BUFFER_SIZE + 1 ) * sizeof( fftwf_complex ) ); m_fftPlan = fftwf_plan_dft_r2c_1d( FFT_BUFFER_SIZE*2, m_buffer, m_specBuf, FFTW_MEASURE ); @@ -56,9 +57,9 @@ EqAnalyser::EqAnalyser() : for (auto i = std::size_t{0}; i < FFT_BUFFER_SIZE; i++) { - m_fftWindow[i] = (a0 - a1 * cos(2 * F_PI * i / ((float)FFT_BUFFER_SIZE - 1.0)) - + a2 * cos(4 * F_PI * i / ((float)FFT_BUFFER_SIZE - 1.0)) - - a3 * cos(6 * F_PI * i / ((float)FFT_BUFFER_SIZE - 1.0))); + m_fftWindow[i] = a0 - a1 * std::cos(2 * pi_v * i / static_cast(FFT_BUFFER_SIZE - 1.0)) + + a2 * std::cos(4 * pi_v * i / static_cast(FFT_BUFFER_SIZE - 1.0)) + - a3 * std::cos(6 * pi_v * i / static_cast(FFT_BUFFER_SIZE - 1.0)); } clear(); } @@ -193,7 +194,7 @@ EqSpectrumView::EqSpectrumView(EqAnalyser *b, QWidget *_parent) : connect( getGUI()->mainWindow(), SIGNAL( periodicUpdate() ), this, SLOT( periodicalUpdate() ) ); setAttribute( Qt::WA_TranslucentBackground, true ); m_skipBands = MAX_BANDS * 0.5; - float totalLength = log10( 20000 ); + const float totalLength = std::log10(20000); m_pixelsPerUnitWidth = width() / totalLength ; m_scale = 1.5; m_color = QColor( 255, 255, 255, 255 ); @@ -233,7 +234,7 @@ void EqSpectrumView::paintEvent(QPaintEvent *event) const float fallOff = 1.07f; for( int x = 0; x < MAX_BANDS; ++x, ++bands ) { - float peak = *bands != 0. ? (fh * 2.0 / 3.0 * (20. * log10(*bands / energy) - LOWER_Y) / (-LOWER_Y)) : 0.; + float peak = *bands != 0. ? (fh * 2.0 / 3.0 * (20. * std::log10(*bands / energy) - LOWER_Y) / (-LOWER_Y)) : 0.; if( peak < 0 ) { diff --git a/plugins/Flanger/CMakeLists.txt b/plugins/Flanger/CMakeLists.txt index 92a9198e5..e74b2838f 100644 --- a/plugins/Flanger/CMakeLists.txt +++ b/plugins/Flanger/CMakeLists.txt @@ -1,7 +1,7 @@ INCLUDE(BuildPlugin) BUILD_PLUGIN( - flanger FlangerEffect.cpp FlangerControls.cpp FlangerControlsDialog.cpp Noise.cpp MonoDelay.cpp + flanger FlangerEffect.cpp FlangerControls.cpp FlangerControlsDialog.cpp MonoDelay.cpp MOCFILES FlangerControls.h FlangerControlsDialog.h EMBEDDED_RESOURCES artwork.png logo.png ) diff --git a/plugins/Flanger/FlangerEffect.cpp b/plugins/Flanger/FlangerEffect.cpp index b8bb9d692..2072156f5 100644 --- a/plugins/Flanger/FlangerEffect.cpp +++ b/plugins/Flanger/FlangerEffect.cpp @@ -23,12 +23,15 @@ */ #include "FlangerEffect.h" + +#include + #include "Engine.h" #include "MonoDelay.h" -#include "Noise.h" #include "QuadratureLfo.h" #include "embed.h" +#include "lmms_math.h" #include "plugin_export.h" namespace lmms @@ -61,7 +64,6 @@ FlangerEffect::FlangerEffect( Model *parent, const Plugin::Descriptor::SubPlugin m_lfo = new QuadratureLfo( Engine::audioEngine()->outputSampleRate() ); m_lDelay = new MonoDelay( 1, Engine::audioEngine()->outputSampleRate() ); m_rDelay = new MonoDelay( 1, Engine::audioEngine()->outputSampleRate() ); - m_noise = new Noise; } @@ -81,22 +83,13 @@ FlangerEffect::~FlangerEffect() { delete m_lfo; } - if(m_noise) - { - delete m_noise; - } } -bool FlangerEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames ) +Effect::ProcessStatus FlangerEffect::processImpl(SampleFrame* buf, const fpp_t frames) { - if( !isEnabled() || !isRunning () ) - { - return( false ); - } - double outSum = 0.0; const float d = dryLevel(); const float w = wetLevel(); const float length = m_flangerControls.m_delayTimeModel.value() * Engine::audioEngine()->outputSampleRate(); @@ -104,7 +97,7 @@ bool FlangerEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames ) float amplitude = m_flangerControls.m_lfoAmountModel.value() * Engine::audioEngine()->outputSampleRate(); bool invertFeedback = m_flangerControls.m_invertFeedbackModel.value(); m_lfo->setFrequency( 1.0/m_flangerControls.m_lfoFrequencyModel.value() ); - m_lfo->setOffset( m_flangerControls.m_lfoPhaseModel.value() / 180 * D_PI ); + m_lfo->setOffset(m_flangerControls.m_lfoPhaseModel.value() / 180 * std::numbers::pi); m_lDelay->setFeedback( m_flangerControls.m_feedbackModel.value() ); m_rDelay->setFeedback( m_flangerControls.m_feedbackModel.value() ); auto dryS = std::array{}; @@ -113,8 +106,8 @@ bool FlangerEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames ) float leftLfo; float rightLfo; - buf[f][0] += m_noise->tick() * noise; - buf[f][1] += m_noise->tick() * noise; + buf[f][0] += fastRand(-1.f, +1.f) * noise; + buf[f][1] += fastRand(-1.f, +1.f) * noise; dryS[0] = buf[f][0]; dryS[1] = buf[f][1]; m_lfo->tick(&leftLfo, &rightLfo); @@ -132,10 +125,9 @@ bool FlangerEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames ) buf[f][0] = ( d * dryS[0] ) + ( w * buf[f][0] ); buf[f][1] = ( d * dryS[1] ) + ( w * buf[f][1] ); - outSum += buf[f][0]*buf[f][0] + buf[f][1]*buf[f][1]; } - checkGate( outSum / frames ); - return isRunning(); + + return ProcessStatus::ContinueIfNotQuiet; } diff --git a/plugins/Flanger/FlangerEffect.h b/plugins/Flanger/FlangerEffect.h index c4afb8841..ec43d3199 100644 --- a/plugins/Flanger/FlangerEffect.h +++ b/plugins/Flanger/FlangerEffect.h @@ -33,7 +33,6 @@ namespace lmms { class MonoDelay; -class Noise; class QuadratureLfo; @@ -42,7 +41,9 @@ class FlangerEffect : public Effect public: FlangerEffect( Model* parent , const Descriptor::SubPluginFeatures::Key* key ); ~FlangerEffect() override; - bool processAudioBuffer( SampleFrame* buf, const fpp_t frames ) override; + + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; + EffectControls* controls() override { return &m_flangerControls; @@ -55,8 +56,6 @@ private: MonoDelay* m_lDelay; MonoDelay* m_rDelay; QuadratureLfo* m_lfo; - Noise* m_noise; - }; diff --git a/plugins/FreeBoy/FreeBoy.cpp b/plugins/FreeBoy/FreeBoy.cpp index e9acddeeb..c0eadf2f1 100644 --- a/plugins/FreeBoy/FreeBoy.cpp +++ b/plugins/FreeBoy/FreeBoy.cpp @@ -352,14 +352,14 @@ void FreeBoyInstrument::playNote(NotePlayHandle* nph, SampleFrame* workingBuffer // a unique frequency, we can start by guessing s = r = 0 here and then skip r = 0 in the loop. char clock_freq = 0; char div_ratio = 0; - float closest_freq = 524288.0 / (0.5 * std::pow(2.0, clock_freq + 1.0)); + float closest_freq = 524288.0 / (0.5 * std::exp2(clock_freq + 1.0)); // This nested for loop iterates over all possible combinations of clock frequency and dividing // ratio and chooses the combination whose resulting frequency is closest to the note frequency for (char s = 0; s < 16; ++s) { for (char r = 1; r < 8; ++r) { - float f = 524288.0 / (r * std::pow(2.0, s + 1.0)); + float f = 524288.0 / (r * std::exp2(s + 1.0)); if (std::fabs(freq - closest_freq) > std::fabs(freq - f)) { closest_freq = f; diff --git a/plugins/GigPlayer/GigPlayer.cpp b/plugins/GigPlayer/GigPlayer.cpp index b72e30b33..c2d27f1e6 100644 --- a/plugins/GigPlayer/GigPlayer.cpp +++ b/plugins/GigPlayer/GigPlayer.cpp @@ -1101,9 +1101,7 @@ GigSample::GigSample( gig::Sample * pSample, gig::DimensionRegion * pDimRegion, if( region->PitchTrack == true ) { // Calculate what frequency the provided sample is - sampleFreq = 440.0 * powf( 2, 1.0 / 12 * ( - 1.0 * region->UnityNote - 69 - - 0.01 * region->FineTune ) ); + sampleFreq = 440.0f * std::exp2((region->UnityNote - 69 - region->FineTune * 0.01) / 12.0f); freqFactor = sampleFreq / desiredFreq; } @@ -1342,7 +1340,7 @@ float ADSR::value() { // Maybe not the best way of doing this, but it appears to be about right // Satisfies f(0) = sustain and f(releaseLength) = very small - amplitude = ( sustain + 1e-3 ) * expf( -5.0 / releaseLength * releasePosition ) - 1e-3; + amplitude = (sustain + 1e-3) * std::exp(-5.0f / releaseLength * releasePosition) - 1e-3; // Don't have an infinite exponential decay if( amplitude <= 0 || releasePosition >= releaseLength ) diff --git a/plugins/GranularPitchShifter/GranularPitchShifterControlDialog.cpp b/plugins/GranularPitchShifter/GranularPitchShifterControlDialog.cpp index 71a8d15f7..1231535c2 100755 --- a/plugins/GranularPitchShifter/GranularPitchShifterControlDialog.cpp +++ b/plugins/GranularPitchShifter/GranularPitchShifterControlDialog.cpp @@ -28,7 +28,6 @@ #include "LcdFloatSpinBox.h" #include "Knob.h" #include "GuiApplication.h" -#include "gui_templates.h" #include "PixmapButton.h" diff --git a/plugins/GranularPitchShifter/GranularPitchShifterEffect.cpp b/plugins/GranularPitchShifter/GranularPitchShifterEffect.cpp index 992d05304..f59030105 100755 --- a/plugins/GranularPitchShifter/GranularPitchShifterEffect.cpp +++ b/plugins/GranularPitchShifter/GranularPitchShifterEffect.cpp @@ -26,6 +26,7 @@ #include #include "embed.h" +#include "lmms_math.h" #include "plugin_export.h" @@ -60,10 +61,8 @@ GranularPitchShifterEffect::GranularPitchShifterEffect(Model* parent, const Desc } -bool GranularPitchShifterEffect::processAudioBuffer(SampleFrame* buf, const fpp_t frames) +Effect::ProcessStatus GranularPitchShifterEffect::processImpl(SampleFrame* buf, const fpp_t frames) { - if (!isEnabled() || !isRunning()) { return false; } - const float d = dryLevel(); const float w = wetLevel(); @@ -157,18 +156,15 @@ bool GranularPitchShifterEffect::processAudioBuffer(SampleFrame* buf, const fpp_ if (++m_timeSinceLastGrain >= m_nextWaitRandomization * waitMult) { m_timeSinceLastGrain = 0; - double randThing = (fast_rand()/static_cast(FAST_RAND_MAX) * 2. - 1.); + auto randThing = fastRand(-1.0, +1.0); m_nextWaitRandomization = std::exp2(randThing * twitch); double grainSpeed = 1. / std::exp2(randThing * jitter); std::array sprayResult = {0, 0}; if (spray > 0) { - sprayResult[0] = (fast_rand() / static_cast(FAST_RAND_MAX)) * spray * m_sampleRate; - sprayResult[1] = linearInterpolate( - sprayResult[0], - (fast_rand() / static_cast(FAST_RAND_MAX)) * spray * m_sampleRate, - spraySpread); + sprayResult[0] = fastRand(spray * m_sampleRate); + sprayResult[1] = std::lerp(sprayResult[0], fastRand(spray * m_sampleRate), spraySpread); } std::array readPoint; @@ -245,7 +241,7 @@ bool GranularPitchShifterEffect::processAudioBuffer(SampleFrame* buf, const fpp_ changeSampleRate(); } - return isRunning(); + return Effect::ProcessStatus::ContinueIfNotQuiet; } void GranularPitchShifterEffect::changeSampleRate() @@ -273,7 +269,7 @@ void GranularPitchShifterEffect::changeSampleRate() m_grainCount = 0; m_grains.reserve(8);// arbitrary - m_dcCoeff = std::exp(-2.0 * F_PI * DcRemovalHz / m_sampleRate); + m_dcCoeff = std::exp(-2 * std::numbers::pi_v * DcRemovalHz / m_sampleRate); const double pitch = m_granularpitchshifterControls.m_pitchModel.value() * (1. / 12.); const double pitchSpread = m_granularpitchshifterControls.m_pitchSpreadModel.value() * (1. / 24.); diff --git a/plugins/GranularPitchShifter/GranularPitchShifterEffect.h b/plugins/GranularPitchShifter/GranularPitchShifterEffect.h index 0f94168b7..4b4eb55b2 100755 --- a/plugins/GranularPitchShifter/GranularPitchShifterEffect.h +++ b/plugins/GranularPitchShifter/GranularPitchShifterEffect.h @@ -25,6 +25,8 @@ #ifndef LMMS_GRANULAR_PITCH_SHIFTER_EFFECT_H #define LMMS_GRANULAR_PITCH_SHIFTER_EFFECT_H +#include + #include "Effect.h" #include "GranularPitchShifterControls.h" @@ -48,7 +50,8 @@ class GranularPitchShifterEffect : public Effect public: GranularPitchShifterEffect(Model* parent, const Descriptor::SubPluginFeatures::Key* key); ~GranularPitchShifterEffect() override = default; - bool processAudioBuffer(SampleFrame* buf, const fpp_t frames) override; + + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; EffectControls* controls() override { @@ -117,12 +120,13 @@ private: void setCoefs(float sampleRate, float cutoff) { - const float g = std::tan(F_PI * cutoff / sampleRate); - const float ginv = g / (1.f + g * (g + F_SQRT_2)); - m_g1 = ginv; - m_g2 = 2.f * (g + F_SQRT_2) * ginv; - m_g3 = g * ginv; - m_g4 = 2.f * ginv; + using namespace std::numbers; + const float g = std::tan(pi_v * cutoff / sampleRate); + const float ginv = g / (1.f + g * (g + sqrt2_v)); + m_g1 = ginv; + m_g2 = 2 * (g + sqrt2_v) * ginv; + m_g3 = g * ginv; + m_g4 = 2 * ginv; } float process(float input) diff --git a/plugins/HydrogenImport/CMakeLists.txt b/plugins/HydrogenImport/CMakeLists.txt index 27e8d6a4d..34f4d43ae 100644 --- a/plugins/HydrogenImport/CMakeLists.txt +++ b/plugins/HydrogenImport/CMakeLists.txt @@ -1,4 +1,4 @@ INCLUDE(BuildPlugin) -BUILD_PLUGIN(hydrogenimport HydrogenImport.cpp HydrogenImport.h local_file_mgr.cpp LocalFileMng.h) +BUILD_PLUGIN(hydrogenimport HydrogenImport.cpp HydrogenImport.h LocalFileMng.cpp LocalFileMng.h) diff --git a/plugins/HydrogenImport/HydrogenImport.cpp b/plugins/HydrogenImport/HydrogenImport.cpp index 144a2f5e7..6a81b507d 100644 --- a/plugins/HydrogenImport/HydrogenImport.cpp +++ b/plugins/HydrogenImport/HydrogenImport.cpp @@ -1,7 +1,8 @@ +#include "HydrogenImport.h" + #include #include "LocalFileMng.h" -#include "HydrogenImport.h" #include "Song.h" #include "Engine.h" #include "Instrument.h" diff --git a/plugins/HydrogenImport/local_file_mgr.cpp b/plugins/HydrogenImport/LocalFileMng.cpp similarity index 97% rename from plugins/HydrogenImport/local_file_mgr.cpp rename to plugins/HydrogenImport/LocalFileMng.cpp index 227440501..c4d11c7e2 100644 --- a/plugins/HydrogenImport/local_file_mgr.cpp +++ b/plugins/HydrogenImport/LocalFileMng.cpp @@ -1,12 +1,11 @@ -#include +#include "LocalFileMng.h" + #include #include #include #include -#include -#include "LocalFileMng.h" namespace lmms { @@ -197,10 +196,7 @@ QDomDocument LocalFileMng::openXmlDocument( const QString& filename ) return QDomDocument(); if( TinyXMLCompat ) { - QString enc = QTextCodec::codecForLocale()->name(); - if( enc == QString("System") ) { - enc = "UTF-8"; - } + const QString enc = "UTF-8"; // unknown encoding, so assume utf-8 and call it a day QByteArray line; QByteArray buf = QString("\n") .arg( enc ) diff --git a/plugins/HydrogenImport/LocalFileMng.h b/plugins/HydrogenImport/LocalFileMng.h index 0aaf7d1c8..1260dbfdd 100644 --- a/plugins/HydrogenImport/LocalFileMng.h +++ b/plugins/HydrogenImport/LocalFileMng.h @@ -14,12 +14,6 @@ namespace lmms class LocalFileMng { public: - LocalFileMng(); - ~LocalFileMng(); - std::vector getallPatternList(){ - return m_allPatternList; - } - static QString readXmlString( QDomNode , const QString& nodeName, const QString& defaultValue, bool bCanBeEmpty = false, bool bShouldExists = true , bool tinyXmlCompatMode = false); static float readXmlFloat( QDomNode , const QString& nodeName, float defaultValue, bool bCanBeEmpty = false, bool bShouldExists = true , bool tinyXmlCompatMode = false); static int readXmlInt( QDomNode , const QString& nodeName, int defaultValue, bool bCanBeEmpty = false, bool bShouldExists = true , bool tinyXmlCompatMode = false); @@ -27,7 +21,6 @@ public: static void convertFromTinyXMLString( QByteArray* str ); static bool checkTinyXMLCompatMode( const QString& filename ); static QDomDocument openXmlDocument( const QString& filename ); - std::vector m_allPatternList; }; diff --git a/plugins/Kicker/KickerOsc.h b/plugins/Kicker/KickerOsc.h index 420373512..6cac39134 100644 --- a/plugins/Kicker/KickerOsc.h +++ b/plugins/Kicker/KickerOsc.h @@ -26,11 +26,12 @@ #ifndef KICKER_OSC_H #define KICKER_OSC_H +#include + #include "DspEffectLibrary.h" #include "Oscillator.h" #include "lmms_math.h" -#include "interpolation.h" namespace lmms { @@ -64,7 +65,7 @@ public: { for( fpp_t frame = 0; frame < frames; ++frame ) { - const double gain = ( 1 - fastPow( ( m_counter < m_length ) ? m_counter / m_length : 1, m_env ) ); + const double gain = 1 - fastPow((m_counter < m_length) ? m_counter / m_length : 1, m_env); const sample_t s = ( Oscillator::sinSample( m_phase ) * ( 1 - m_noise ) ) + ( Oscillator::noiseSample( 0 ) * gain * gain * m_noise ); buf[frame][0] = s * gain; buf[frame][1] = s * gain; @@ -72,7 +73,7 @@ public: // update distortion envelope if necessary if( m_hasDistEnv && m_counter < m_length ) { - float thres = linearInterpolate( m_distStart, m_distEnd, m_counter / m_length ); + float thres = std::lerp(m_distStart, m_distEnd, m_counter / m_length); m_FX.leftFX().setThreshold( thres ); m_FX.rightFX().setThreshold( thres ); } @@ -80,7 +81,7 @@ public: m_FX.nextSample( buf[frame][0], buf[frame][1] ); m_phase += m_freq / sampleRate; - const double change = ( m_counter < m_length ) ? ( ( m_startFreq - m_endFreq ) * ( 1 - fastPow( m_counter / m_length, m_slope ) ) ) : 0; + const double change = (m_counter < m_length) ? ((m_startFreq - m_endFreq) * (1 - fastPow(m_counter / m_length, m_slope))) : 0; m_freq = m_endFreq + change; ++m_counter; } diff --git a/plugins/LOMM/LOMM.cpp b/plugins/LOMM/LOMM.cpp index 7c4574cd1..aafbfcf41 100644 --- a/plugins/LOMM/LOMM.cpp +++ b/plugins/LOMM/LOMM.cpp @@ -24,6 +24,7 @@ #include "LOMM.h" +#include "lmms_math.h" #include "embed.h" #include "plugin_export.h" @@ -82,7 +83,7 @@ void LOMMEffect::changeSampleRate() m_coeffPrecalc = -2.2f / (m_sampleRate * 0.001f); m_needsUpdate = true; - m_crestTimeConst = exp(-1.f / (0.2f * m_sampleRate)); + m_crestTimeConst = std::exp(-1.f / (0.2f * m_sampleRate)); m_lookBufLength = std::ceil((LOMM_MAX_LOOKAHEAD / 1000.f) * m_sampleRate) + 2; for (int i = 0; i < 2; ++i) @@ -101,13 +102,8 @@ void LOMMEffect::changeSampleRate() } -bool LOMMEffect::processAudioBuffer(SampleFrame* buf, const fpp_t frames) +Effect::ProcessStatus LOMMEffect::processImpl(SampleFrame* buf, const fpp_t frames) { - if (!isEnabled() || !isRunning()) - { - return false; - } - if (m_needsUpdate || m_lommControls.m_split1Model.isValueChanged()) { m_lp1.setLowpass(m_lommControls.m_split1Model.value()); @@ -121,7 +117,6 @@ bool LOMMEffect::processAudioBuffer(SampleFrame* buf, const fpp_t frames) } m_needsUpdate = false; - float outSum = 0.f; const float d = dryLevel(); const float w = wetLevel(); @@ -177,7 +172,7 @@ bool LOMMEffect::processAudioBuffer(SampleFrame* buf, const fpp_t frames) float rel[3] = {relH, relM, relL}; float relCoef[3] = {relCoefH, relCoefM, relCoefL}; const float rmsTime = m_lommControls.m_rmsTimeModel.value(); - const float rmsTimeConst = (rmsTime == 0) ? 0 : exp(-1.f / (rmsTime * 0.001f * m_sampleRate)); + const float rmsTimeConst = (rmsTime == 0) ? 0 : std::exp(-1.f / (rmsTime * 0.001f * m_sampleRate)); const float knee = m_lommControls.m_kneeModel.value() * 0.5f; const float range = m_lommControls.m_rangeModel.value(); const float rangeAmp = dbfsToAmp(range); @@ -318,11 +313,11 @@ bool LOMMEffect::processAudioBuffer(SampleFrame* buf, const fpp_t frames) { if (downward * depth <= 1) { - aboveGain = linearInterpolate(yDbfs, aboveGain, downward * depth); + aboveGain = std::lerp(yDbfs, aboveGain, downward * depth); } else { - aboveGain = linearInterpolate(aboveGain, aThresh[j], downward * depth - 1); + aboveGain = std::lerp(aboveGain, aThresh[j], downward * depth - 1); } } @@ -344,11 +339,11 @@ bool LOMMEffect::processAudioBuffer(SampleFrame* buf, const fpp_t frames) { if (upward * depth <= 1) { - belowGain = linearInterpolate(yDbfs, belowGain, upward * depth); + belowGain = std::lerp(yDbfs, belowGain, upward * depth); } else { - belowGain = linearInterpolate(belowGain, bThresh[j], upward * depth - 1); + belowGain = std::lerp(belowGain, bThresh[j], upward * depth - 1); } } @@ -402,12 +397,12 @@ bool LOMMEffect::processAudioBuffer(SampleFrame* buf, const fpp_t frames) bands[j][i] *= outBandVol[j]; - bands[j][i] = linearInterpolate(bandsDry[j][i], bands[j][i], mix); + bands[j][i] = std::lerp(bandsDry[j][i], bands[j][i], mix); } s[i] = bands[0][i] + bands[1][i] + bands[2][i]; - s[i] *= linearInterpolate(1.f, outVol, mix * (depthScaling ? depth : 1)); + s[i] *= std::lerp(1.f, outVol, mix * (depthScaling ? depth : 1)); } // Convert mid/side back to left/right. @@ -423,11 +418,9 @@ bool LOMMEffect::processAudioBuffer(SampleFrame* buf, const fpp_t frames) buf[f][0] = d * buf[f][0] + w * s[0]; buf[f][1] = d * buf[f][1] + w * s[1]; - outSum += buf[f][0] + buf[f][1]; } - checkGate(outSum / frames); - return isRunning(); + return ProcessStatus::ContinueIfNotQuiet; } extern "C" diff --git a/plugins/LOMM/LOMM.h b/plugins/LOMM/LOMM.h index 783233c5f..c0d2155c3 100644 --- a/plugins/LOMM/LOMM.h +++ b/plugins/LOMM/LOMM.h @@ -30,7 +30,6 @@ #include "Effect.h" #include "BasicFilters.h" -#include "lmms_math.h" namespace lmms { @@ -45,7 +44,8 @@ class LOMMEffect : public Effect public: LOMMEffect(Model* parent, const Descriptor::SubPluginFeatures::Key* key); ~LOMMEffect() override = default; - bool processAudioBuffer(SampleFrame* buf, const fpp_t frames) override; + + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; EffectControls* controls() override { @@ -54,7 +54,7 @@ public: inline float msToCoeff(float ms) { - return (ms == 0) ? 0 : exp(m_coeffPrecalc / ms); + return (ms == 0) ? 0 : std::exp(m_coeffPrecalc / ms); } private slots: diff --git a/plugins/LadspaBrowser/LadspaDescription.cpp b/plugins/LadspaBrowser/LadspaDescription.cpp index 7b1ede1c3..a61e7f233 100644 --- a/plugins/LadspaBrowser/LadspaDescription.cpp +++ b/plugins/LadspaBrowser/LadspaDescription.cpp @@ -74,8 +74,7 @@ LadspaDescription::LadspaDescription( QWidget * _parent, QList pluginNames; for (const auto& plugin : plugins) { - ch_cnt_t audioDeviceChannels = Engine::audioEngine()->audioDev()->channels(); - if (_type != LadspaPluginType::Valid || manager->getDescription(plugin.second)->inputChannels <= audioDeviceChannels) + if (_type != LadspaPluginType::Valid || manager->getDescription(plugin.second)->inputChannels <= DEFAULT_CHANNELS) { pluginNames.push_back(plugin.first); m_pluginKeys.push_back(plugin.second); diff --git a/plugins/LadspaEffect/LadspaEffect.cpp b/plugins/LadspaEffect/LadspaEffect.cpp index 75c79ad21..eebe6938c 100644 --- a/plugins/LadspaEffect/LadspaEffect.cpp +++ b/plugins/LadspaEffect/LadspaEffect.cpp @@ -129,26 +129,25 @@ void LadspaEffect::changeSampleRate() -bool LadspaEffect::processAudioBuffer( SampleFrame* _buf, - const fpp_t _frames ) +Effect::ProcessStatus LadspaEffect::processImpl(SampleFrame* buf, const fpp_t frames) { m_pluginMutex.lock(); - if( !isOkay() || dontRun() || !isRunning() || !isEnabled() ) + if (!isOkay() || dontRun() || !isEnabled() || !isRunning()) { m_pluginMutex.unlock(); - return( false ); + return ProcessStatus::Sleep; } - auto frames = _frames; - SampleFrame* o_buf = nullptr; - QVarLengthArray sBuf(_frames); + auto outFrames = frames; + SampleFrame* outBuf = nullptr; + QVarLengthArray sBuf(frames); if( m_maxSampleRate < Engine::audioEngine()->outputSampleRate() ) { - o_buf = _buf; - _buf = sBuf.data(); - sampleDown( o_buf, _buf, m_maxSampleRate ); - frames = _frames * m_maxSampleRate / + outBuf = buf; + buf = sBuf.data(); + sampleDown(outBuf, buf, m_maxSampleRate); + outFrames = frames * m_maxSampleRate / Engine::audioEngine()->outputSampleRate(); } @@ -163,11 +162,9 @@ bool LadspaEffect::processAudioBuffer( SampleFrame* _buf, switch( pp->rate ) { case BufferRate::ChannelIn: - for( fpp_t frame = 0; - frame < frames; ++frame ) + for (fpp_t frame = 0; frame < outFrames; ++frame) { - pp->buffer[frame] = - _buf[frame][channel]; + pp->buffer[frame] = buf[frame][channel]; } ++channel; break; @@ -176,7 +173,7 @@ bool LadspaEffect::processAudioBuffer( SampleFrame* _buf, ValueBuffer * vb = pp->control->valueBuffer(); if( vb ) { - memcpy( pp->buffer, vb->values(), frames * sizeof(float) ); + memcpy(pp->buffer, vb->values(), outFrames * sizeof(float)); } else { @@ -185,11 +182,9 @@ bool LadspaEffect::processAudioBuffer( SampleFrame* _buf, // This only supports control rate ports, so the audio rates are // treated as though they were control rate by setting the // port buffer to all the same value. - for( fpp_t frame = 0; - frame < frames; ++frame ) + for (fpp_t frame = 0; frame < outFrames; ++frame) { - pp->buffer[frame] = - pp->value; + pp->buffer[frame] = pp->value; } } break; @@ -218,11 +213,10 @@ bool LadspaEffect::processAudioBuffer( SampleFrame* _buf, // Process the buffers. for( ch_cnt_t proc = 0; proc < processorCount(); ++proc ) { - (m_descriptor->run)( m_handles[proc], frames ); + (m_descriptor->run)(m_handles[proc], outFrames); } // Copy the LADSPA output buffers to the LMMS buffer. - double out_sum = 0.0; channel = 0; const float d = dryLevel(); const float w = wetLevel(); @@ -238,11 +232,9 @@ bool LadspaEffect::processAudioBuffer( SampleFrame* _buf, case BufferRate::ControlRateInput: break; case BufferRate::ChannelOut: - for( fpp_t frame = 0; - frame < frames; ++frame ) + for (fpp_t frame = 0; frame < outFrames; ++frame) { - _buf[frame][channel] = d * _buf[frame][channel] + w * pp->buffer[frame]; - out_sum += _buf[frame][channel] * _buf[frame][channel]; + buf[frame][channel] = d * buf[frame][channel] + w * pp->buffer[frame]; } ++channel; break; @@ -255,17 +247,14 @@ bool LadspaEffect::processAudioBuffer( SampleFrame* _buf, } } - if( o_buf != nullptr ) + if (outBuf != nullptr) { - sampleBack( _buf, o_buf, m_maxSampleRate ); + sampleBack(buf, outBuf, m_maxSampleRate); } - checkGate( out_sum / frames ); - - - bool is_running = isRunning(); m_pluginMutex.unlock(); - return( is_running ); + + return ProcessStatus::ContinueIfNotQuiet; } @@ -290,9 +279,8 @@ void LadspaEffect::pluginInstantiation() Ladspa2LMMS * manager = Engine::getLADSPAManager(); // Calculate how many processing units are needed. - const ch_cnt_t lmms_chnls = Engine::audioEngine()->audioDev()->channels(); int effect_channels = manager->getDescription( m_key )->inputChannels; - setProcessorCount( lmms_chnls / effect_channels ); + setProcessorCount(DEFAULT_CHANNELS / effect_channels); // get inPlaceBroken property m_inPlaceBroken = manager->isInplaceBroken( m_key ); diff --git a/plugins/LadspaEffect/LadspaEffect.h b/plugins/LadspaEffect/LadspaEffect.h index d5b93d4e2..0cfa18682 100644 --- a/plugins/LadspaEffect/LadspaEffect.h +++ b/plugins/LadspaEffect/LadspaEffect.h @@ -47,9 +47,8 @@ public: const Descriptor::SubPluginFeatures::Key * _key ); ~LadspaEffect() override; - bool processAudioBuffer( SampleFrame* _buf, - const fpp_t _frames ) override; - + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; + void setControl( int _control, LADSPA_Data _data ); EffectControls * controls() override diff --git a/plugins/LadspaEffect/LadspaSubPluginFeatures.cpp b/plugins/LadspaEffect/LadspaSubPluginFeatures.cpp index fc4667152..4349f621f 100644 --- a/plugins/LadspaEffect/LadspaSubPluginFeatures.cpp +++ b/plugins/LadspaEffect/LadspaSubPluginFeatures.cpp @@ -157,7 +157,7 @@ void LadspaSubPluginFeatures::listSubPluginKeys( for( l_sortable_plugin_t::const_iterator it = plugins.begin(); it != plugins.end(); ++it ) { - if( lm->getDescription( ( *it ).second )->inputChannels <= Engine::audioEngine()->audioDev()->channels() ) + if (lm->getDescription((*it).second)->inputChannels <= DEFAULT_CHANNELS) { _kl.push_back( ladspaKeyToSubPluginKey( _desc, ( *it ).first, ( *it ).second ) ); } diff --git a/plugins/LadspaEffect/calf/CMakeLists.txt b/plugins/LadspaEffect/calf/CMakeLists.txt index 23f93da7a..1b8d8f6e1 100644 --- a/plugins/LadspaEffect/calf/CMakeLists.txt +++ b/plugins/LadspaEffect/calf/CMakeLists.txt @@ -10,7 +10,7 @@ STRING(REPLACE "]" ";" VERSION_FILE ${VERSION_FILE} ) LIST(GET VERSION_FILE 2 VERSION) CONFIGURE_FILE(config.h.in config.h) -FILE(GLOB SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/veal/src/*.cpp") +FILE(GLOB SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/veal/src/*.cpp" "${CMAKE_CURRENT_SOURCE_DIR}/veal/src/*.c") LIST(SORT SOURCES) # Skip files matching pattern diff --git a/plugins/LadspaEffect/calf/veal b/plugins/LadspaEffect/calf/veal index 0162621fa..789d0faf9 160000 --- a/plugins/LadspaEffect/calf/veal +++ b/plugins/LadspaEffect/calf/veal @@ -1 +1 @@ -Subproject commit 0162621fa75cf90c319c704d646c734e1ed21e14 +Subproject commit 789d0faf9faed430f48dfb93cf74e04afe88e39f diff --git a/plugins/LadspaEffect/swh/CMakeLists.txt b/plugins/LadspaEffect/swh/CMakeLists.txt index 203c3168f..27796cc9d 100644 --- a/plugins/LadspaEffect/swh/CMakeLists.txt +++ b/plugins/LadspaEffect/swh/CMakeLists.txt @@ -13,7 +13,7 @@ ENDIF() # Additional compile flags if(NOT MSVC) set(COMPILE_FLAGS ${COMPILE_FLAGS} -O3 -c - -fomit-frame-pointer -funroll-loops -ffast-math -fno-strict-aliasing + -funroll-loops -ffast-math -fno-strict-aliasing ${PIC_FLAGS} ) endif() diff --git a/plugins/LadspaEffect/tap/CMakeLists.txt b/plugins/LadspaEffect/tap/CMakeLists.txt index 84c469465..93b54ae47 100644 --- a/plugins/LadspaEffect/tap/CMakeLists.txt +++ b/plugins/LadspaEffect/tap/CMakeLists.txt @@ -6,7 +6,7 @@ LIST(SORT PLUGIN_SOURCES) if(MSVC) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /fp:fast") else() - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O3 -fomit-frame-pointer -fno-strict-aliasing -funroll-loops -ffast-math") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O3 -fno-strict-aliasing -funroll-loops -ffast-math") endif() FOREACH(_item ${PLUGIN_SOURCES}) GET_FILENAME_COMPONENT(_plugin "${_item}" NAME_WE) diff --git a/plugins/Lb302/Lb302.cpp b/plugins/Lb302/Lb302.cpp index 0041b0c51..5a085df4d 100644 --- a/plugins/Lb302/Lb302.cpp +++ b/plugins/Lb302/Lb302.cpp @@ -109,20 +109,20 @@ Lb302Filter::Lb302Filter(Lb302FilterKnobState* p_fs) : void Lb302Filter::recalc() { - vcf_e1 = exp(6.109 + 1.5876*(fs->envmod) + 2.1553*(fs->cutoff) - 1.2*(1.0-(fs->reso))); - vcf_e0 = exp(5.613 - 0.8*(fs->envmod) + 2.1553*(fs->cutoff) - 0.7696*(1.0-(fs->reso))); + vcf_e1 = std::exp(6.109f + 1.5876f * fs->envmod + 2.1553f * fs->cutoff - 1.2f * (1.0f - fs->reso)); + vcf_e0 = std::exp(5.613f - 0.8f * fs->envmod + 2.1553f * fs->cutoff - 0.7696f * (1.0f - fs->reso)); vcf_e0*=M_PI/Engine::audioEngine()->outputSampleRate(); vcf_e1*=M_PI/Engine::audioEngine()->outputSampleRate(); vcf_e1 -= vcf_e0; - vcf_rescoeff = exp(-1.20 + 3.455*(fs->reso)); + vcf_rescoeff = std::exp(-1.20f + 3.455f * fs->reso); }; void Lb302Filter::envRecalc() { vcf_c0 *= fs->envdecay; // Filter Decay. vcf_decay is adjusted for Hz and ENVINC - // vcf_rescoeff = exp(-1.20 + 3.455*(fs->reso)); moved above + // vcf_rescoeff = std::exp(-1.20f + 3.455f * fs->reso); moved above }; @@ -169,9 +169,9 @@ void Lb302FilterIIR2::envRecalc() Lb302Filter::envRecalc(); float w = vcf_e0 + vcf_c0; // e0 is adjusted for Hz and doesn't need ENVINC - float k = exp(-w/vcf_rescoeff); // Does this mean c0 is inheritantly? + float k = std::exp(-w / vcf_rescoeff); // Does this mean c0 is inheritantly? - vcf_a = 2.0*cos(2.0*w) * k; + vcf_a = 2.0 * std::cos(2.0 * w) * k; vcf_b = -k*k; vcf_c = 1.0 - vcf_a - vcf_b; } @@ -241,7 +241,7 @@ void Lb302Filter3Pole::envRecalc() kp1 = kp+1.0; kp1h = 0.5*kp1; #ifdef LB_24_RES_TRICK - k = exp(-w/vcf_rescoeff); + k = std::exp(-w / vcf_rescoeff); kres = (((k))) * (((-2.7079*kp1 + 10.963)*kp1 - 14.934)*kp1 + 8.4974); #else kres = (((fs->reso))) * (((-2.7079*kp1 + 10.963)*kp1 - 14.934)*kp1 + 8.4974); @@ -415,7 +415,7 @@ void Lb302Synth::filterChanged() float d = 0.2 + (2.3*vcf_dec_knob.value()); d *= Engine::audioEngine()->outputSampleRate(); // d *= smpl rate - fs.envdecay = pow(0.1, 1.0/d * ENVINC); // decay is 0.1 to the 1/d * ENVINC + fs.envdecay = std::pow(0.1f, 1.0f / d * ENVINC); // decay is 0.1 to the 1/d * ENVINC // vcf_envdecay is now adjusted for both // sampling rate and ENVINC recalcFilter(); @@ -462,7 +462,7 @@ inline float GET_INC(float freq) { return freq/Engine::audioEngine()->outputSampleRate(); // TODO: Use actual sampling rate. } -int Lb302Synth::process(SampleFrame* outbuf, const int size) +int Lb302Synth::process(SampleFrame* outbuf, const std::size_t size) { const float sampleRatio = 44100.f / Engine::audioEngine()->outputSampleRate(); @@ -498,13 +498,10 @@ int Lb302Synth::process(SampleFrame* outbuf, const int size) // hard coded value of 0.99897516. auto decay = computeDecayFactor(0.245260770975f, 1.f / 65536.f); - for( int i=0; i= release_frame ) - { - vca_mode = VcaMode::Decay; - } + if (i >= release_frame) { vca_mode = VcaMode::Decay; } // update vcf if(vcf_envpos >= ENVINC) { @@ -566,7 +563,7 @@ int Lb302Synth::process(SampleFrame* outbuf, const int size) break; case VcoShape::RoundSquare: // p0: width of round - vco_k = (vco_c<0)?(sqrtf(1-(vco_c*vco_c*4))-0.5):-0.5; + vco_k = (vco_c < 0.f) ? (std::sqrt(1.f - (vco_c * vco_c * 4.f)) - 0.5f) : -0.5f; break; case VcoShape::Moog: // Maybe the fall should be exponential/sinsoidal instead of quadric. @@ -577,7 +574,7 @@ int Lb302Synth::process(SampleFrame* outbuf, const int size) } else if (vco_k>0.5) { float w = 2.0 * (vco_k - 0.5) - 1.0; - vco_k = 0.5 - sqrtf(1.0-(w*w)); + vco_k = 0.5 - std::sqrt(1.0 - (w * w)); } vco_k *= 2.0; // MOOG wave gets filtered away break; @@ -751,7 +748,7 @@ void Lb302Synth::playNote( NotePlayHandle * _n, SampleFrame* _working_buffer ) } m_notesMutex.unlock(); - release_frame = std::max(release_frame, static_cast(_n->framesLeft()) + static_cast(_n->offset())); + release_frame = std::max(release_frame, _n->framesLeft() + _n->offset()); } diff --git a/plugins/Lb302/Lb302.h b/plugins/Lb302/Lb302.h index 25a08592c..f9129af66 100644 --- a/plugins/Lb302/Lb302.h +++ b/plugins/Lb302/Lb302.h @@ -214,7 +214,7 @@ private: Lb302FilterKnobState fs; QAtomicPointer vcf; - int release_frame; + size_t release_frame; // More States int vcf_envpos; // Update counter. Updates when >= ENVINC @@ -246,7 +246,7 @@ private: void recalcFilter(); - int process(SampleFrame* outbuf, const int size); + int process(SampleFrame* outbuf, const std::size_t size); friend class gui::Lb302SynthView; diff --git a/plugins/Lv2Effect/CMakeLists.txt b/plugins/Lv2Effect/CMakeLists.txt index e0427eaa3..ca5658172 100644 --- a/plugins/Lv2Effect/CMakeLists.txt +++ b/plugins/Lv2Effect/CMakeLists.txt @@ -1,6 +1,6 @@ IF(LMMS_HAVE_LV2) include_directories(SYSTEM ${LV2_INCLUDE_DIRS}) - include_directories(SYSTEM ${LILV_INCLUDE_DIRS}) + include_directories(SYSTEM ${Lilv_INCLUDE_DIRS}) include_directories(SYSTEM ${SUIL_INCLUDE_DIRS}) INCLUDE(BuildPlugin) BUILD_PLUGIN(lv2effect Lv2Effect.cpp Lv2FxControls.cpp Lv2FxControlDialog.cpp Lv2Effect.h Lv2FxControls.h Lv2FxControlDialog.h diff --git a/plugins/Lv2Effect/Lv2Effect.cpp b/plugins/Lv2Effect/Lv2Effect.cpp index d6b89a229..afa69fe13 100644 --- a/plugins/Lv2Effect/Lv2Effect.cpp +++ b/plugins/Lv2Effect/Lv2Effect.cpp @@ -68,9 +68,8 @@ Lv2Effect::Lv2Effect(Model* parent, const Descriptor::SubPluginFeatures::Key *ke -bool Lv2Effect::processAudioBuffer(SampleFrame* buf, const fpp_t frames) +Effect::ProcessStatus Lv2Effect::processImpl(SampleFrame* buf, const fpp_t frames) { - if (!isEnabled() || !isRunning()) { return false; } Q_ASSERT(frames <= static_cast(m_tmpOutputSmps.size())); m_controls.copyBuffersFromLmms(buf, frames); @@ -83,7 +82,6 @@ bool Lv2Effect::processAudioBuffer(SampleFrame* buf, const fpp_t frames) m_controls.copyModelsToLmms(); m_controls.copyBuffersToLmms(m_tmpOutputSmps.data(), frames); - double outSum = .0; bool corrupt = wetLevel() < 0; // #3261 - if w < 0, bash w := 0, d := 1 const float d = corrupt ? 1 : dryLevel(); const float w = corrupt ? 0 : wetLevel(); @@ -91,13 +89,9 @@ bool Lv2Effect::processAudioBuffer(SampleFrame* buf, const fpp_t frames) { buf[f][0] = d * buf[f][0] + w * m_tmpOutputSmps[f][0]; buf[f][1] = d * buf[f][1] + w * m_tmpOutputSmps[f][1]; - auto l = static_cast(buf[f][0]); - auto r = static_cast(buf[f][1]); - outSum += l*l + r*r; } - checkGate(outSum / frames); - return isRunning(); + return ProcessStatus::ContinueIfNotQuiet; } diff --git a/plugins/Lv2Effect/Lv2Effect.h b/plugins/Lv2Effect/Lv2Effect.h index bc81eb590..dbede0d43 100644 --- a/plugins/Lv2Effect/Lv2Effect.h +++ b/plugins/Lv2Effect/Lv2Effect.h @@ -42,7 +42,8 @@ public: */ Lv2Effect(Model* parent, const Descriptor::SubPluginFeatures::Key* _key); - bool processAudioBuffer( SampleFrame* buf, const fpp_t frames ) override; + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; + EffectControls* controls() override { return &m_controls; } Lv2FxControls* lv2Controls() { return &m_controls; } diff --git a/plugins/Lv2Instrument/CMakeLists.txt b/plugins/Lv2Instrument/CMakeLists.txt index e10eff692..a316a0fa7 100644 --- a/plugins/Lv2Instrument/CMakeLists.txt +++ b/plugins/Lv2Instrument/CMakeLists.txt @@ -1,6 +1,6 @@ IF(LMMS_HAVE_LV2) include_directories(SYSTEM ${LV2_INCLUDE_DIRS}) - include_directories(SYSTEM ${LILV_INCLUDE_DIRS}) + include_directories(SYSTEM ${Lilv_INCLUDE_DIRS}) include_directories(SYSTEM ${SUIL_INCLUDE_DIRS}) INCLUDE(BuildPlugin) BUILD_PLUGIN(lv2instrument Lv2Instrument.cpp Lv2Instrument.h MOCFILES Lv2Instrument.h EMBEDDED_RESOURCES logo.png) diff --git a/plugins/Monstro/Monstro.cpp b/plugins/Monstro/Monstro.cpp index 874b5d8d1..57d423bca 100644 --- a/plugins/Monstro/Monstro.cpp +++ b/plugins/Monstro/Monstro.cpp @@ -22,11 +22,10 @@ * */ +#include "Monstro.h" #include -#include "Monstro.h" - #include "ComboBox.h" #include "Engine.h" #include "InstrumentTrack.h" @@ -34,7 +33,6 @@ #include "interpolation.h" #include "embed.h" - #include "plugin_export.h" namespace lmms @@ -120,7 +118,7 @@ void MonstroSynth::renderOutput( fpp_t _frames, SampleFrame* _buf ) if( mod##_e2 != 0.0f ) modtmp += m_env[1][f] * mod##_e2; \ if( mod##_l1 != 0.0f ) modtmp += m_lfo[0][f] * mod##_l1; \ if( mod##_l2 != 0.0f ) modtmp += m_lfo[1][f] * mod##_l2; \ - car = qBound( MIN_FREQ, car * powf( 2.0f, modtmp ), MAX_FREQ ); + (car) = qBound( MIN_FREQ, (car) * std::exp2(modtmp), MAX_FREQ); #define modulateabs( car, mod ) \ if( mod##_e1 != 0.0f ) car += m_env[0][f] * mod##_e1; \ @@ -625,8 +623,8 @@ void MonstroSynth::renderOutput( fpp_t _frames, SampleFrame* _buf ) sub = qBound( 0.0f, sub, 1.0f ); } - sample_t O3L = linearInterpolate( O3AL, O3BL, sub ); - sample_t O3R = linearInterpolate( O3AR, O3BR, sub ); + sample_t O3L = std::lerp(O3AL, O3BL, sub); + sample_t O3R = std::lerp(O3AR, O3BR, sub); // modulate volume O3L *= o3lv; @@ -665,8 +663,8 @@ void MonstroSynth::renderOutput( fpp_t _frames, SampleFrame* _buf ) sample_t L = O1L + O3L + ( omod == MOD_MIX ? O2L : 0.0f ); sample_t R = O1R + O3R + ( omod == MOD_MIX ? O2R : 0.0f ); - _buf[f][0] = linearInterpolate( L, m_l_last, m_parent->m_integrator ); - _buf[f][1] = linearInterpolate( R, m_r_last, m_parent->m_integrator ); + _buf[f][0] = std::lerp(L, m_l_last, m_parent->m_integrator); + _buf[f][1] = std::lerp(R, m_r_last, m_parent->m_integrator); m_l_last = L; m_r_last = R; @@ -858,7 +856,7 @@ inline sample_t MonstroSynth::calcSlope( int slope, sample_t s ) { if( m_parent->m_slope[slope] == 1.0f ) return s; if( s == 0.0f ) return s; - return fastPow( s, m_parent->m_slope[slope] ); + return fastPow(s, m_parent->m_slope[slope]); } @@ -1361,25 +1359,25 @@ void MonstroInstrument::updateVolume3() void MonstroInstrument::updateFreq1() { - m_osc1l_freq = powf( 2.0f, m_osc1Crs.value() / 12.0f ) * - powf( 2.0f, m_osc1Ftl.value() / 1200.0f ); - m_osc1r_freq = powf( 2.0f, m_osc1Crs.value() / 12.0f ) * - powf( 2.0f, m_osc1Ftr.value() / 1200.0f ); + m_osc1l_freq = std::exp2(m_osc1Crs.value() / 12.0f) + * std::exp2(m_osc1Ftl.value() / 1200.0f); + m_osc1r_freq = std::exp2(m_osc1Crs.value() / 12.0f) + * std::exp2(m_osc1Ftr.value() / 1200.0f); } void MonstroInstrument::updateFreq2() { - m_osc2l_freq = powf( 2.0f, m_osc2Crs.value() / 12.0f ) * - powf( 2.0f, m_osc2Ftl.value() / 1200.0f ); - m_osc2r_freq = powf( 2.0f, m_osc2Crs.value() / 12.0f ) * - powf( 2.0f, m_osc2Ftr.value() / 1200.0f ); + m_osc2l_freq = std::exp2(m_osc2Crs.value() / 12.0f) + * std::exp2(m_osc2Ftl.value() / 1200.0f); + m_osc2r_freq = std::exp2(m_osc2Crs.value() / 12.0f) + * std::exp2(m_osc2Ftr.value() / 1200.0f); } void MonstroInstrument::updateFreq3() { - m_osc3_freq = powf( 2.0f, m_osc3Crs.value() / 12.0f ); + m_osc3_freq = std::exp2(m_osc3Crs.value() / 12.0f); } @@ -1462,14 +1460,14 @@ void MonstroInstrument::updateSamplerate() void MonstroInstrument::updateSlope1() { const float slope = m_env1Slope.value(); - m_slope[0] = std::pow(10.f, slope * -1.0f ); + m_slope[0] = fastPow10f(-slope); } void MonstroInstrument::updateSlope2() { const float slope = m_env2Slope.value(); - m_slope[1] = std::pow(10.f, slope * -1.0f ); + m_slope[1] = fastPow10f(-slope); } diff --git a/plugins/MultitapEcho/MultitapEcho.cpp b/plugins/MultitapEcho/MultitapEcho.cpp index ecc1d8f30..3d92e5ae8 100644 --- a/plugins/MultitapEcho/MultitapEcho.cpp +++ b/plugins/MultitapEcho/MultitapEcho.cpp @@ -26,6 +26,7 @@ #include "MultitapEcho.h" #include "embed.h" #include "lmms_basics.h" +#include "lmms_math.h" #include "plugin_export.h" namespace lmms @@ -94,14 +95,8 @@ void MultitapEchoEffect::runFilter( SampleFrame* dst, SampleFrame* src, StereoOn } -bool MultitapEchoEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames ) +Effect::ProcessStatus MultitapEchoEffect::processImpl(SampleFrame* buf, const fpp_t frames) { - if( !isEnabled() || !isRunning () ) - { - return( false ); - } - - double outSum = 0.0; const float d = dryLevel(); const float w = wetLevel(); @@ -156,12 +151,9 @@ bool MultitapEchoEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frame { buf[f][0] = d * buf[f][0] + w * m_work[f][0]; buf[f][1] = d * buf[f][1] + w * m_work[f][1]; - outSum += buf[f][0]*buf[f][0] + buf[f][1]*buf[f][1]; } - - checkGate( outSum / frames ); - return isRunning(); + return ProcessStatus::ContinueIfNotQuiet; } diff --git a/plugins/MultitapEcho/MultitapEcho.h b/plugins/MultitapEcho/MultitapEcho.h index d6e981fbd..a7ed0c2c4 100644 --- a/plugins/MultitapEcho/MultitapEcho.h +++ b/plugins/MultitapEcho/MultitapEcho.h @@ -40,7 +40,8 @@ class MultitapEchoEffect : public Effect public: MultitapEchoEffect( Model* parent, const Descriptor::SubPluginFeatures::Key* key ); ~MultitapEchoEffect() override; - bool processAudioBuffer( SampleFrame* buf, const fpp_t frames ) override; + + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; EffectControls* controls() override { @@ -53,7 +54,7 @@ private: inline void setFilterFreq( float fc, StereoOnePole & f ) { - const float b1 = expf( -2.0f * F_PI * fc ); + const float b1 = std::exp(-2 * std::numbers::pi_v * fc); f.setCoeffs( 1.0f - b1, b1 ); } diff --git a/plugins/MultitapEcho/MultitapEchoControls.cpp b/plugins/MultitapEcho/MultitapEchoControls.cpp index 4df05afc6..81f71d460 100644 --- a/plugins/MultitapEcho/MultitapEchoControls.cpp +++ b/plugins/MultitapEcho/MultitapEchoControls.cpp @@ -147,7 +147,7 @@ void MultitapEchoControls::lpSamplesChanged( int begin, int end ) const float * samples = m_lpGraph.samples(); for( int i = begin; i <= end; ++i ) { - m_effect->m_lpFreq[i] = 20.0f * std::pow(10.f, samples[i] ); + m_effect->m_lpFreq[i] = 20.0f * fastPow10f(samples[i]); } m_effect->updateFilters( begin, end ); } diff --git a/plugins/Nes/Nes.cpp b/plugins/Nes/Nes.cpp index fb7c52459..9fbb46db1 100644 --- a/plugins/Nes/Nes.cpp +++ b/plugins/Nes/Nes.cpp @@ -29,11 +29,11 @@ #include "AudioEngine.h" #include "Engine.h" #include "InstrumentTrack.h" -#include "interpolation.h" #include "Knob.h" #include "Oscillator.h" #include "embed.h" +#include "lmms_math.h" #include "plugin_export.h" namespace lmms @@ -392,16 +392,16 @@ void NesObject::renderOutput( SampleFrame* buf, fpp_t frames ) pin1 *= 1.0 + ( Oscillator::noiseSample( 0.0f ) * DITHER_AMP ); pin1 = pin1 / 30.0f; - pin1 = signedPow( pin1, NES_DIST ); + pin1 = signedPowf(pin1, NES_DIST); pin1 = pin1 * 2.0f - 1.0f; // simple first order iir filter, to simulate the frequency response falloff in nes analog audio output - pin1 = linearInterpolate( pin1, m_12Last, m_nsf ); + pin1 = std::lerp(pin1, m_12Last, m_nsf); m_12Last = pin1; // compensate DC offset - pin1 += 1.0f - signedPow( static_cast( ch1Level + ch2Level ) / 30.0f, NES_DIST ); + pin1 += 1.0f - signedPowf(static_cast(ch1Level + ch2Level) / 30.0f, NES_DIST); pin1 *= NES_MIXING_12; @@ -410,16 +410,16 @@ void NesObject::renderOutput( SampleFrame* buf, fpp_t frames ) pin2 *= 1.0 + ( Oscillator::noiseSample( 0.0f ) * DITHER_AMP ); pin2 = pin2 / 30.0f; - pin2 = signedPow( pin2, NES_DIST ); + pin2 = signedPowf(pin2, NES_DIST); pin2 = pin2 * 2.0f - 1.0f; // simple first order iir filter, to simulate the frequency response falloff in nes analog audio output - pin2 = linearInterpolate( pin2, m_34Last, m_nsf ); + pin2 = std::lerp(pin2, m_34Last, m_nsf); m_34Last = pin2; // compensate DC offset - pin2 += 1.0f - signedPow( static_cast( ch3Level + ch4Level ) / 30.0f, NES_DIST ); + pin2 += 1.0f - signedPowf(static_cast(ch3Level + ch4Level) / 30.0f, NES_DIST); pin2 *= NES_MIXING_34; @@ -699,19 +699,19 @@ gui::PluginView* NesInstrument::instantiateView( QWidget * parent ) void NesInstrument::updateFreq1() { - m_freq1 = powf( 2, m_ch1Crs.value() / 12.0f ); + m_freq1 = std::exp2(m_ch1Crs.value() / 12.0f); } void NesInstrument::updateFreq2() { - m_freq2 = powf( 2, m_ch2Crs.value() / 12.0f ); + m_freq2 = std::exp2(m_ch2Crs.value() / 12.0f); } void NesInstrument::updateFreq3() { - m_freq3 = powf( 2, m_ch3Crs.value() / 12.0f ); + m_freq3 = std::exp2(m_ch3Crs.value() / 12.0f); } diff --git a/plugins/Nes/Nes.h b/plugins/Nes/Nes.h index 207c22e83..ca084032a 100644 --- a/plugins/Nes/Nes.h +++ b/plugins/Nes/Nes.h @@ -136,13 +136,6 @@ public: return static_cast( m_samplerate / freq ); } - inline float signedPow( float f, float e ) - { - return f < 0 - ? powf( qAbs( f ), e ) * -1.0f - : powf( f, e ); - } - inline int nearestNoiseFreq( float f ) { int n = 15; diff --git a/plugins/OpulenZ/OpulenZ.cpp b/plugins/OpulenZ/OpulenZ.cpp index 5fd4bf58a..48dfb6c8c 100644 --- a/plugins/OpulenZ/OpulenZ.cpp +++ b/plugins/OpulenZ/OpulenZ.cpp @@ -497,7 +497,7 @@ void OpulenzInstrument::loadPatch(const unsigned char inst[14]) { void OpulenzInstrument::tuneEqual(int center, float Hz) { for(int n=0; n<128; ++n) { - float tmp = Hz * pow(2.0, (n - center) * (1.0 / 12.0) + pitchbend * (1.0 / 1200.0)); + float tmp = Hz * std::exp2((n - center) / 12.0f + pitchbend / 1200.0f); fnums[n] = Hz2fnum( tmp ); } } @@ -505,7 +505,7 @@ void OpulenzInstrument::tuneEqual(int center, float Hz) { // Find suitable F number in lowest possible block int OpulenzInstrument::Hz2fnum(float Hz) { for(int block=0; block<8; ++block) { - unsigned int fnum = Hz * pow( 2.0, 20.0 - (double)block ) * ( 1.0 / 49716.0 ); + auto fnum = static_cast(Hz * std::exp2(20.0f - static_cast(block)) / 49716.0f); if(fnum<1023) { return fnum + (block << 10); } diff --git a/plugins/Organic/Organic.cpp b/plugins/Organic/Organic.cpp index c167bcec2..b9e7716ef 100644 --- a/plugins/Organic/Organic.cpp +++ b/plugins/Organic/Organic.cpp @@ -236,9 +236,9 @@ void OrganicInstrument::playNote( NotePlayHandle * _n, for( int i = m_numOscillators - 1; i >= 0; --i ) { static_cast( _n->m_pluginData )->phaseOffsetLeft[i] - = rand() / ( RAND_MAX + 1.0f ); + = rand() / (static_cast(RAND_MAX) + 1.0f); static_cast( _n->m_pluginData )->phaseOffsetRight[i] - = rand() / ( RAND_MAX + 1.0f ); + = rand() / (static_cast(RAND_MAX) + 1.0f); // initialise ocillators @@ -342,8 +342,7 @@ void OrganicInstrument::deleteNotePluginData( NotePlayHandle * _n ) float inline OrganicInstrument::waveshape(float in, float amount) { float k = 2.0f * amount / ( 1.0f - amount ); - - return( ( 1.0f + k ) * in / ( 1.0f + k * fabs( in ) ) ); + return (1.0f + k) * in / (1.0f + k * std::abs(in)); } @@ -603,12 +602,11 @@ void OscillatorObject::updateVolume() void OscillatorObject::updateDetuning() { - m_detuningLeft = powf( 2.0f, OrganicInstrument::s_harmonics[ static_cast( m_harmModel.value() ) ] - + (float)m_detuneModel.value() * CENT ) / - Engine::audioEngine()->outputSampleRate(); - m_detuningRight = powf( 2.0f, OrganicInstrument::s_harmonics[ static_cast( m_harmModel.value() ) ] - - (float)m_detuneModel.value() * CENT ) / - Engine::audioEngine()->outputSampleRate(); + const auto harmonic = OrganicInstrument::s_harmonics[static_cast(m_harmModel.value())]; + const auto sr = Engine::audioEngine()->outputSampleRate(); + + m_detuningLeft = std::exp2(harmonic + m_detuneModel.value() * CENT) / sr; + m_detuningRight = std::exp2(harmonic - m_detuneModel.value() * CENT) / sr; } diff --git a/plugins/Patman/Patman.cpp b/plugins/Patman/Patman.cpp index 6165bd537..4ecbe1bb8 100644 --- a/plugins/Patman/Patman.cpp +++ b/plugins/Patman/Patman.cpp @@ -33,7 +33,7 @@ #include "endian_handling.h" #include "Engine.h" #include "FileDialog.h" -#include "gui_templates.h" +#include "FontHelper.h" #include "InstrumentTrack.h" #include "NotePlayHandle.h" #include "PathUtil.h" @@ -545,7 +545,7 @@ void PatmanView::updateFilename() m_displayFilename = ""; int idx = m_pi->m_patchFile.length(); - QFontMetrics fm(adjustedToPixelSize(font(), 8)); + QFontMetrics fm(adjustedToPixelSize(font(), SMALL_FONT_SIZE)); // simple algorithm for creating a text from the filename that // matches in the white rectangle @@ -615,7 +615,7 @@ void PatmanView::paintEvent( QPaintEvent * ) { QPainter p( this ); - p.setFont(adjustedToPixelSize(font() ,8)); + p.setFont(adjustedToPixelSize(font(), SMALL_FONT_SIZE)); p.drawText( 8, 116, 235, 16, Qt::AlignLeft | Qt::TextSingleLine | Qt::AlignVCenter, m_displayFilename ); diff --git a/plugins/PeakControllerEffect/PeakControllerEffect.cpp b/plugins/PeakControllerEffect/PeakControllerEffect.cpp index 886036095..b6d053257 100644 --- a/plugins/PeakControllerEffect/PeakControllerEffect.cpp +++ b/plugins/PeakControllerEffect/PeakControllerEffect.cpp @@ -93,37 +93,29 @@ PeakControllerEffect::~PeakControllerEffect() } -bool PeakControllerEffect::processAudioBuffer( SampleFrame* _buf, - const fpp_t _frames ) +Effect::ProcessStatus PeakControllerEffect::processImpl(SampleFrame* buf, const fpp_t frames) { PeakControllerEffectControls & c = m_peakControls; - // This appears to be used for determining whether or not to continue processing - // audio with this effect - if( !isEnabled() || !isRunning() ) - { - return false; - } - // RMS: double sum = 0; if( c.m_absModel.value() ) { - for (auto i = std::size_t{0}; i < _frames; ++i) + for (auto i = std::size_t{0}; i < frames; ++i) { // absolute value is achieved because the squares are > 0 - sum += _buf[i][0]*_buf[i][0] + _buf[i][1]*_buf[i][1]; + sum += buf[i][0] * buf[i][0] + buf[i][1] * buf[i][1]; } } else { - for (auto i = std::size_t{0}; i < _frames; ++i) + for (auto i = std::size_t{0}; i < frames; ++i) { // the value is absolute because of squaring, // so we need to correct it - sum += _buf[i][0] * _buf[i][0] * sign( _buf[i][0] ) - + _buf[i][1] * _buf[i][1] * sign( _buf[i][1] ); + sum += buf[i][0] * buf[i][0] * sign(buf[i][0]) + + buf[i][1] * buf[i][1] * sign(buf[i][1]); } } @@ -131,19 +123,29 @@ bool PeakControllerEffect::processAudioBuffer( SampleFrame* _buf, // this will mute the output after the values were measured if( c.m_muteModel.value() ) { - for (auto i = std::size_t{0}; i < _frames; ++i) + for (auto i = std::size_t{0}; i < frames; ++i) { - _buf[i][0] = _buf[i][1] = 0.0f; + buf[i][0] = buf[i][1] = 0.0f; } } - float curRMS = sqrt_neg( sum / _frames ); + float curRMS = sqrt_neg(sum / frames); const float tres = c.m_tresholdModel.value(); const float amount = c.m_amountModel.value() * c.m_amountMultModel.value(); - curRMS = qAbs( curRMS ) < tres ? 0.0f : curRMS; - m_lastSample = qBound( 0.0f, c.m_baseModel.value() + amount * curRMS, 1.0f ); + const float attack = 1.0f - c.m_attackModel.value(); + const float decay = 1.0f - c.m_decayModel.value(); - return isRunning(); + curRMS = qAbs( curRMS ) < tres ? 0.0f : curRMS; + float target = c.m_baseModel.value() + amount * curRMS; + // Use decay when the volume is decreasing, attack otherwise. + // Since direction can change as often as every sampleBuffer, it's difficult + // to witness attack/decay working in isolation unless using large buffer sizes. + const float t = target < m_lastSample ? decay : attack; + // Set m_lastSample to the interpolation between itself and target. + // When t is 1.0, m_lastSample snaps to target. When t is 0.0, m_lastSample shouldn't change. + m_lastSample = std::clamp(m_lastSample + t * (target - m_lastSample), 0.0f, 1.0f); + + return ProcessStatus::Continue; } diff --git a/plugins/PeakControllerEffect/PeakControllerEffect.h b/plugins/PeakControllerEffect/PeakControllerEffect.h index dc6e507f3..bac8db929 100644 --- a/plugins/PeakControllerEffect/PeakControllerEffect.h +++ b/plugins/PeakControllerEffect/PeakControllerEffect.h @@ -41,8 +41,8 @@ public: PeakControllerEffect( Model * parent, const Descriptor::SubPluginFeatures::Key * _key ); ~PeakControllerEffect() override; - bool processAudioBuffer( SampleFrame* _buf, - const fpp_t _frames ) override; + + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; EffectControls * controls() override { diff --git a/plugins/ReverbSC/ReverbSC.cpp b/plugins/ReverbSC/ReverbSC.cpp index 2def88d1d..4eae13129 100644 --- a/plugins/ReverbSC/ReverbSC.cpp +++ b/plugins/ReverbSC/ReverbSC.cpp @@ -24,10 +24,9 @@ #include "ReverbSC.h" #include "embed.h" +#include "lmms_math.h" #include "plugin_export.h" -#define DB2LIN(X) pow(10, X / 20.0f); - namespace lmms { @@ -75,14 +74,8 @@ ReverbSCEffect::~ReverbSCEffect() sp_destroy(&sp); } -bool ReverbSCEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames ) +Effect::ProcessStatus ReverbSCEffect::processImpl(SampleFrame* buf, const fpp_t frames) { - if( !isEnabled() || !isRunning () ) - { - return( false ); - } - - double outSum = 0.0; const float d = dryLevel(); const float w = wetLevel(); @@ -98,10 +91,10 @@ bool ReverbSCEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames ) { auto s = std::array{buf[f][0], buf[f][1]}; - const auto inGain - = (SPFLOAT)DB2LIN((inGainBuf ? inGainBuf->values()[f] : m_reverbSCControls.m_inputGainModel.value())); - const auto outGain - = (SPFLOAT)DB2LIN((outGainBuf ? outGainBuf->values()[f] : m_reverbSCControls.m_outputGainModel.value())); + const auto inGain = static_cast(fastPow10f( + (inGainBuf ? inGainBuf->values()[f] : m_reverbSCControls.m_inputGainModel.value()) / 20.f)); + const auto outGain = static_cast(fastPow10f( + (outGainBuf ? outGainBuf->values()[f] : m_reverbSCControls.m_outputGainModel.value()) / 20.f)); s[0] *= inGain; s[1] *= inGain; @@ -119,14 +112,9 @@ bool ReverbSCEffect::processAudioBuffer( SampleFrame* buf, const fpp_t frames ) sp_dcblock_compute(sp, dcblk[1], &tmpR, &dcblkR); buf[f][0] = d * buf[f][0] + w * dcblkL * outGain; buf[f][1] = d * buf[f][1] + w * dcblkR * outGain; - - outSum += buf[f][0]*buf[f][0] + buf[f][1]*buf[f][1]; } - - checkGate( outSum / frames ); - - return isRunning(); + return ProcessStatus::ContinueIfNotQuiet; } void ReverbSCEffect::changeSampleRate() diff --git a/plugins/ReverbSC/ReverbSC.h b/plugins/ReverbSC/ReverbSC.h index f3c196f5b..2d02662bf 100644 --- a/plugins/ReverbSC/ReverbSC.h +++ b/plugins/ReverbSC/ReverbSC.h @@ -45,7 +45,8 @@ class ReverbSCEffect : public Effect public: ReverbSCEffect( Model* parent, const Descriptor::SubPluginFeatures::Key* key ); ~ReverbSCEffect() override; - bool processAudioBuffer( SampleFrame* buf, const fpp_t frames ) override; + + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; EffectControls* controls() override { diff --git a/plugins/Sf2Player/Sf2Player.cpp b/plugins/Sf2Player/Sf2Player.cpp index 13dab7b8a..020364151 100644 --- a/plugins/Sf2Player/Sf2Player.cpp +++ b/plugins/Sf2Player/Sf2Player.cpp @@ -556,7 +556,7 @@ void Sf2Instrument::updateTuning() if (instrumentTrack()->microtuner()->enabledModel()->value()) { auto centArray = std::array{}; - double lowestHz = pow(2., -69. / 12.) * 440.;// Frequency of MIDI note 0, which is approximately 8.175798916 Hz + double lowestHz = std::exp2(-69. / 12.) * 440.; // Frequency of MIDI note 0, which is approximately 8.175798916 Hz for (int i = 0; i < 128; ++i) { // Get desired Hz of note diff --git a/plugins/Sfxr/Sfxr.cpp b/plugins/Sfxr/Sfxr.cpp index 0279eb41a..b941d8f0a 100644 --- a/plugins/Sfxr/Sfxr.cpp +++ b/plugins/Sfxr/Sfxr.cpp @@ -97,33 +97,34 @@ void SfxrSynth::resetSample( bool restart ) fperiod=100.0/(s->m_startFreqModel.value()*s->m_startFreqModel.value()+0.001); period=(int)fperiod; fmaxperiod=100.0/(s->m_minFreqModel.value()*s->m_minFreqModel.value()+0.001); - fslide=1.0-pow((double)s->m_slideModel.value(), 3.0)*0.01; - fdslide=-pow((double)s->m_dSlideModel.value(), 3.0)*0.000001; + const auto sv = static_cast(s->m_slideModel.value()); + const auto dsv = static_cast(s->m_dSlideModel.value()); + fslide = 1.0 - sv * sv * sv * 0.01; + fdslide = -dsv * dsv * dsv * 0.000001; square_duty=0.5f-s->m_sqrDutyModel.value()*0.5f; square_slide=-s->m_sqrSweepModel.value()*0.00005f; - if(s->m_changeAmtModel.value()>=0.0f) - arp_mod=1.0-pow((double)s->m_changeAmtModel.value(), 2.0)*0.9; - else - arp_mod=1.0+pow((double)s->m_changeAmtModel.value(), 2.0)*10.0; - arp_time=0; - arp_limit=(int)(pow(1.0f-s->m_changeSpeedModel.value(), 2.0f)*20000+32); - if(s->m_changeSpeedModel.value()==1.0f) - arp_limit=0; + const auto cha = static_cast(s->m_changeAmtModel.value()); + arp_mod = (cha >= 0.0) + ? 1.0 - cha * cha * 0.9 + : 1.0 + cha * cha * 10.0; + arp_time = 0; + const auto chs = 1.f - s->m_changeSpeedModel.value(); + arp_limit = (chs == 0.f) ? 0 : static_cast(chs * chs * 20000 + 32); if(!restart) { // reset filter fltp=0.0f; fltdp=0.0f; - fltw=pow(s->m_lpFilCutModel.value(), 3.0f)*0.1f; + fltw = std::pow(s->m_lpFilCutModel.value(), 3.f) * 0.1f; fltw_d=1.0f+s->m_lpFilCutSweepModel.value()*0.0001f; - fltdmp=5.0f/(1.0f+pow(s->m_lpFilResoModel.value(), 2.0f)*20.0f)*(0.01f+fltw); + fltdmp = 5.0f / (1.0f + std::pow(s->m_lpFilResoModel.value(), 2.0f) * 20.0f) * (0.01f + fltw); if(fltdmp>0.8f) fltdmp=0.8f; fltphp=0.0f; - flthp=pow(s->m_hpFilCutModel.value(), 2.0f)*0.1f; + flthp = std::pow(s->m_hpFilCutModel.value(), 2.f) * 0.1f; flthp_d=1.0+s->m_hpFilCutSweepModel.value()*0.0003f; // reset vibrato vib_phase=0.0f; - vib_speed=pow(s->m_vibSpeedModel.value(), 2.0f)*0.01f; + vib_speed = std::pow(s->m_vibSpeedModel.value(), 2.f) * 0.01f; vib_amp=s->m_vibDepthModel.value()*0.5f; // reset envelope env_vol=0.0f; @@ -134,9 +135,9 @@ void SfxrSynth::resetSample( bool restart ) env_length[1]=(int)(s->m_holdModel.value()*s->m_holdModel.value()*99999.0f)+1; env_length[2]=(int)(s->m_decModel.value()*s->m_decModel.value()*99999.0f)+1; - fphase=pow(s->m_phaserOffsetModel.value(), 2.0f)*1020.0f; + fphase = std::pow(s->m_phaserOffsetModel.value(), 2.f) * 1020.f; if(s->m_phaserOffsetModel.value()<0.0f) fphase=-fphase; - fdphase=pow(s->m_phaserSweepModel.value(), 2.0f)*1.0f; + fdphase = std::pow(s->m_phaserSweepModel.value(), 2.f) * 1.f; if(s->m_phaserSweepModel.value()<0.0f) fdphase=-fdphase; iphase=abs((int)fphase); ipp=0; @@ -148,10 +149,10 @@ void SfxrSynth::resetSample( bool restart ) } rep_time=0; - rep_limit=(int)(pow(1.0f-s->m_repeatSpeedModel.value(), 2.0f)*20000+32); + rep_limit = static_cast(std::pow(1.0f - s->m_repeatSpeedModel.value(), 2.0f) * 20000 + 32); if(s->m_repeatSpeedModel.value()==0.0f) rep_limit=0; - } + } } @@ -195,7 +196,7 @@ void SfxrSynth::update( SampleFrame* buffer, const int32_t frameNum ) if(vib_amp>0.0f) { vib_phase+=vib_speed; - rfperiod=fperiod*(1.0+sin(vib_phase)*vib_amp); + rfperiod = fperiod * (1.0 + std::sin(vib_phase) * vib_amp); } period=(int)rfperiod; if(period<8) period=8; @@ -214,7 +215,7 @@ void SfxrSynth::update( SampleFrame* buffer, const int32_t frameNum ) if(env_stage==0) env_vol=(float)env_time/env_length[0]; if(env_stage==1) - env_vol=1.0f+pow(1.0f-(float)env_time/env_length[1], 1.0f)*2.0f*s->m_susModel.value(); + { env_vol = 1.0f + (1.0f - static_cast(env_time) / env_length[1]) * 2.0f * s->m_susModel.value(); } if(env_stage==2) env_vol=1.0f-(float)env_time/env_length[2]; @@ -1000,13 +1001,13 @@ void SfxrInstrumentView::randomize() { auto s = castModel(); - s->m_startFreqModel.setValue( pow(frnd(2.0f)-1.0f, 2.0f) ); + s->m_startFreqModel.setValue(std::pow(frnd(2.0f) - 1.0f, 2.0f)); if(rnd(1)) { - s->m_startFreqModel.setValue( pow(frnd(2.0f)-1.0f, 3.0f)+0.5f ); + s->m_startFreqModel.setValue(std::pow(frnd(2.0f) - 1.0f, 3.0f) + 0.5f); } s->m_minFreqModel.setValue( 0.0f ); - s->m_slideModel.setValue( pow(frnd(2.0f)-1.0f, 5.0f) ); + s->m_slideModel.setValue(std::pow(frnd(2.0f) - 1.0f, 5.0f)); if( s->m_startFreqModel.value()>0.7f && s->m_slideModel.value()>0.2f ) { s->m_slideModel.setValue( -s->m_slideModel.value() ); @@ -1015,19 +1016,19 @@ void SfxrInstrumentView::randomize() { s->m_slideModel.setValue( -s->m_slideModel.value() ); } - s->m_dSlideModel.setValue( pow(frnd(2.0f)-1.0f, 3.0f) ); + s->m_dSlideModel.setValue(std::pow(frnd(2.0f) - 1.0f, 3.0f)); s->m_sqrDutyModel.setValue( frnd(2.0f)-1.0f ); - s->m_sqrSweepModel.setValue( pow(frnd(2.0f)-1.0f, 3.0f) ); + s->m_sqrSweepModel.setValue(std::pow(frnd(2.0f) - 1.0f, 3.0f)); - s->m_vibDepthModel.setValue( pow(frnd(2.0f)-1.0f, 3.0f) ); + s->m_vibDepthModel.setValue(std::pow(frnd(2.0f) - 1.0f, 3.0f)); s->m_vibSpeedModel.setValue( frnd(2.0f)-1.0f ); //s->m_vibDelayModel.setValue( frnd(2.0f)-1.0f ); - s->m_attModel.setValue( pow(frnd(2.0f)-1.0f, 3.0f) ); - s->m_holdModel.setValue( pow(frnd(2.0f)-1.0f, 2.0f) ); + s->m_attModel.setValue(std::pow(frnd(2.0f) - 1.0f, 3.0f)); + s->m_holdModel.setValue(std::pow(frnd(2.0f) - 1.0f, 2.0f)); s->m_decModel.setValue( frnd(2.0f)-1.0f ); - s->m_susModel.setValue( pow(frnd(0.8f), 2.0f) ); + s->m_susModel.setValue(std::pow(frnd(0.8f), 2.0f)); if(s->m_attModel.value()+s->m_holdModel.value()+s->m_decModel.value()<0.2f) { s->m_holdModel.setValue( s->m_holdModel.value()+0.2f+frnd(0.3f) ); @@ -1035,17 +1036,17 @@ void SfxrInstrumentView::randomize() } s->m_lpFilResoModel.setValue( frnd(2.0f)-1.0f ); - s->m_lpFilCutModel.setValue( 1.0f-pow(frnd(1.0f), 3.0f) ); - s->m_lpFilCutSweepModel.setValue( pow(frnd(2.0f)-1.0f, 3.0f) ); + s->m_lpFilCutModel.setValue(1.0f - std::pow(frnd(1.0f), 3.0f)); + s->m_lpFilCutSweepModel.setValue(std::pow(frnd(2.0f) - 1.0f, 3.0f)); if(s->m_lpFilCutModel.value()<0.1f && s->m_lpFilCutSweepModel.value()<-0.05f) { s->m_lpFilCutSweepModel.setValue( -s->m_lpFilCutSweepModel.value() ); } - s->m_hpFilCutModel.setValue( pow(frnd(1.0f), 5.0f) ); - s->m_hpFilCutSweepModel.setValue( pow(frnd(2.0f)-1.0f, 5.0f) ); + s->m_hpFilCutModel.setValue(std::pow(frnd(1.0f), 5.0f)); + s->m_hpFilCutSweepModel.setValue(std::pow(frnd(2.0f) - 1.0f, 5.0f)); - s->m_phaserOffsetModel.setValue( pow(frnd(2.0f)-1.0f, 3.0f) ); - s->m_phaserSweepModel.setValue( pow(frnd(2.0f)-1.0f, 3.0f) ); + s->m_phaserOffsetModel.setValue(std::pow(frnd(2.0f) - 1.0f, 3.0f)); + s->m_phaserSweepModel.setValue(std::pow(frnd(2.0f) - 1.0f, 3.0f)); s->m_repeatSpeedModel.setValue( frnd(2.0f)-1.0f ); diff --git a/plugins/Sid/SidInstrument.cpp b/plugins/Sid/SidInstrument.cpp index 4d21abd4d..fbb68b4e4 100644 --- a/plugins/Sid/SidInstrument.cpp +++ b/plugins/Sid/SidInstrument.cpp @@ -128,6 +128,10 @@ SidInstrument::SidInstrument( InstrumentTrack * _instrument_track ) : m_volumeModel( 15.0f, 0.0f, 15.0f, 1.0f, this, tr( "Volume" ) ), m_chipModel( static_cast(ChipModel::MOS8580), 0, NumChipModels-1, this, tr( "Chip model" ) ) { + // A Filter object needs to be created only once to do some initialization, avoiding + // dropouts down the line when we have to play a note for the first time. + [[maybe_unused]] static auto s_filter = reSID::Filter{}; + for( int i = 0; i < 3; ++i ) { m_voice[i] = new VoiceObject( this, i ); @@ -337,9 +341,9 @@ void SidInstrument::playNote( NotePlayHandle * _n, base = i*7; // freq ( Fn = Fout / Fclk * 16777216 ) + coarse detuning freq = _n->frequency(); - note = 69.0 + 12.0 * log( freq / 440.0 ) / log( 2 ); + note = 69.0 + 12.0 * std::log2(freq / 440.0); note += m_voice[i]->m_coarseModel.value(); - freq = 440.0 * pow( 2.0, (note-69.0)/12.0 ); + freq = 440.0 * std::exp2((note - 69.0) / 12.0); data16 = int( freq / float(clockrate) * 16777216.0 ); sidreg[base+0] = data16&0x00FF; diff --git a/plugins/SlicerT/SlicerT.cpp b/plugins/SlicerT/SlicerT.cpp index dcfbf6bc5..ef533cd1a 100644 --- a/plugins/SlicerT/SlicerT.cpp +++ b/plugins/SlicerT/SlicerT.cpp @@ -34,7 +34,7 @@ #include "SampleLoader.h" #include "Song.h" #include "embed.h" -#include "lmms_constants.h" +#include "interpolation.h" #include "plugin_export.h" namespace lmms { @@ -152,6 +152,7 @@ void SlicerT::playNote(NotePlayHandle* handle, SampleFrame* workingBuffer) void SlicerT::deleteNotePluginData(NotePlayHandle* handle) { delete static_cast(handle->m_pluginData); + emit isPlaying(-1, 0, 0); } // uses the spectral flux to determine the change in magnitude @@ -182,7 +183,7 @@ void SlicerT::findSlices() for (auto i = std::size_t{0}; i < singleChannel.size(); i++) { singleChannel[i] /= maxMag; - if (sign(lastValue) != sign(singleChannel[i])) + if ((lastValue >= 0) != (singleChannel[i] >= 0)) { zeroCrossings.push_back(i); lastValue = singleChannel[i]; @@ -213,7 +214,7 @@ void SlicerT::findSlices() float magnitude = std::sqrt(real * real + imag * imag); // using L2-norm (euclidean distance) - float diff = std::sqrt(std::pow(magnitude - prevMags[j], 2)); + float diff = std::abs(magnitude - prevMags[j]); spectralFlux += diff; prevMags[j] = magnitude; @@ -246,7 +247,7 @@ void SlicerT::findSlices() if (noteSnap == 0) { sliceLock = 1; } for (float& sliceValue : m_slicePoints) { - sliceValue += sliceLock / 2; + sliceValue += sliceLock / 2.f; sliceValue -= static_cast(sliceValue) % sliceLock; } diff --git a/plugins/SlicerT/SlicerT.h b/plugins/SlicerT/SlicerT.h index 06b55687b..53b8bfb2a 100644 --- a/plugins/SlicerT/SlicerT.h +++ b/plugins/SlicerT/SlicerT.h @@ -84,6 +84,8 @@ public: void findSlices(); void findBPM(); + QString getSampleName() { return m_originalSample.sampleFile(); } + QString nodeName() const override; gui::PluginView* instantiateView(QWidget* parent) override; diff --git a/plugins/SlicerT/SlicerTView.cpp b/plugins/SlicerT/SlicerTView.cpp index bbdb53ccb..7af2db143 100644 --- a/plugins/SlicerT/SlicerTView.cpp +++ b/plugins/SlicerT/SlicerTView.cpp @@ -25,15 +25,16 @@ #include "SlicerTView.h" #include -#include +#include +#include #include "Clipboard.h" #include "DataFile.h" -#include "Engine.h" #include "InstrumentTrack.h" +#include "InstrumentView.h" +#include "PixmapButton.h" #include "SampleLoader.h" #include "SlicerT.h" -#include "Song.h" #include "StringPairDrag.h" #include "Track.h" #include "embed.h" @@ -43,57 +44,62 @@ namespace lmms { namespace gui { SlicerTView::SlicerTView(SlicerT* instrument, QWidget* parent) - : InstrumentViewFixedSize(instrument, parent) + : InstrumentView(instrument, parent) , m_slicerTParent(instrument) + , m_fullLogo(PLUGIN_NAME::getIconPixmap("full_logo")) + , m_background(PLUGIN_NAME::getIconPixmap("toolbox")) { // window settings setAcceptDrops(true); setAutoFillBackground(true); - // render background - QPalette pal; - pal.setBrush(backgroundRole(), PLUGIN_NAME::getIconPixmap("artwork")); - setPalette(pal); + setMaximumSize(QSize(10000, 10000)); + setMinimumSize(QSize(516, 400)); m_wf = new SlicerTWaveform(248, 128, instrument, this); - m_wf->move(2, 6); + m_wf->move(0, s_topBarHeight); m_snapSetting = new ComboBox(this, tr("Slice snap")); m_snapSetting->setGeometry(185, 200, 55, ComboBox::DEFAULT_HEIGHT); m_snapSetting->setToolTip(tr("Set slice snapping for detection")); m_snapSetting->setModel(&m_slicerTParent->m_sliceSnap); - m_syncToggle = new LedCheckBox("Sync", this, tr("SyncToggle"), LedCheckBox::LedColor::Green); - m_syncToggle->move(135, 187); + m_syncToggle = new PixmapButton(this, tr("Sync sample")); + m_syncToggle->setActiveGraphic(PLUGIN_NAME::getIconPixmap("sync_active")); + m_syncToggle->setInactiveGraphic(PLUGIN_NAME::getIconPixmap("sync_inactive")); + m_syncToggle->setCheckable(true); m_syncToggle->setToolTip(tr("Enable BPM sync")); m_syncToggle->setModel(&m_slicerTParent->m_enableSync); m_bpmBox = new LcdSpinBox(3, "19purple", this); - m_bpmBox->move(130, 201); m_bpmBox->setToolTip(tr("Original sample BPM")); m_bpmBox->setModel(&m_slicerTParent->m_originalBPM); m_noteThresholdKnob = createStyledKnob(); - m_noteThresholdKnob->move(10, 197); m_noteThresholdKnob->setToolTip(tr("Threshold used for slicing")); m_noteThresholdKnob->setModel(&m_slicerTParent->m_noteThreshold); m_fadeOutKnob = createStyledKnob(); - m_fadeOutKnob->move(64, 197); m_fadeOutKnob->setToolTip(tr("Fade Out per note in milliseconds")); m_fadeOutKnob->setModel(&m_slicerTParent->m_fadeOutFrames); m_midiExportButton = new QPushButton(this); - m_midiExportButton->move(199, 150); m_midiExportButton->setIcon(PLUGIN_NAME::getIconPixmap("copy_midi")); m_midiExportButton->setToolTip(tr("Copy midi pattern to clipboard")); connect(m_midiExportButton, &PixmapButton::clicked, this, &SlicerTView::exportMidi); + m_folderButton = new PixmapButton(this); + m_folderButton->setActiveGraphic(PLUGIN_NAME::getIconPixmap("folder_icon")); + m_folderButton->setInactiveGraphic(PLUGIN_NAME::getIconPixmap("folder_icon")); + m_folderButton->setToolTip(tr("Open sample selector")); + connect(m_folderButton, &PixmapButton::clicked, this, &SlicerTView::openFiles); + m_resetButton = new QPushButton(this); - m_resetButton->move(18, 150); m_resetButton->setIcon(PLUGIN_NAME::getIconPixmap("reset_slices")); - m_resetButton->setToolTip(tr("Reset Slices")); + m_resetButton->setToolTip(tr("Reset slices")); connect(m_resetButton, &PixmapButton::clicked, m_slicerTParent, &SlicerT::updateSlices); + + update(); } Knob* SlicerTView::createStyledKnob() @@ -178,16 +184,101 @@ void SlicerTView::dropEvent(QDropEvent* de) void SlicerTView::paintEvent(QPaintEvent* pe) { QPainter brush(this); - brush.setPen(QColor(255, 255, 255)); brush.setFont(QFont(brush.font().family(), 7, -1, false)); - brush.drawText(8, s_topTextY, s_textBoxWidth, s_textBoxHeight, Qt::AlignCenter, tr("Reset")); - brush.drawText(188, s_topTextY, s_textBoxWidth, s_textBoxHeight, Qt::AlignCenter, tr("Midi")); + int boxTopY = height() - s_bottomBoxHeight; - brush.drawText(8, s_bottomTextY, s_textBoxWidth, s_textBoxHeight, Qt::AlignCenter, tr("Threshold")); - brush.drawText(63, s_bottomTextY, s_textBoxWidth, s_textBoxHeight, Qt::AlignCenter, tr("Fade Out")); - brush.drawText(127, s_bottomTextY, s_textBoxWidth, s_textBoxHeight, Qt::AlignCenter, tr("BPM")); - brush.drawText(188, s_bottomTextY, s_textBoxWidth, s_textBoxHeight, Qt::AlignCenter, tr("Snap")); + // --- backgrounds and limiters + brush.drawPixmap(QRect(0, boxTopY, s_leftBoxWidth, s_bottomBoxHeight), m_background); // left + brush.fillRect( + QRect(s_leftBoxWidth, boxTopY, width() - s_leftBoxWidth, s_bottomBoxHeight), QColor(23, 26, 31)); // right + brush.fillRect(QRect(0, 0, width(), s_topBarHeight), QColor(20, 23, 27)); // top + + // top bar dividers + brush.setPen(QColor(56, 58, 60)); + brush.drawLine(0, s_topBarHeight - 1, width(), s_topBarHeight - 1); + brush.drawLine(0, 0, width(), 0); + + // sample name divider + brush.setPen(QColor(56, 58, 60)); + brush.drawLine(0, boxTopY, width(), boxTopY); + + // boxes divider + brush.setPen(QColor(56, 24, 94)); + brush.drawLine(s_leftBoxWidth, boxTopY, s_leftBoxWidth, height()); + + // --- top bar + brush.drawPixmap( + QRect(10, (s_topBarHeight - m_fullLogo.height()) / 2, m_fullLogo.width(), m_fullLogo.height()), m_fullLogo); + + int y1_text = m_y1 + 27; + + // --- left box + brush.setPen(QColor(255, 255, 255)); + brush.drawText(s_x1 - 25, y1_text, s_textBoxWidth, s_textBoxHeight, Qt::AlignCenter, tr("Threshold")); + brush.drawText(s_x2 - 25, y1_text, s_textBoxWidth, s_textBoxHeight, Qt::AlignCenter, tr("Fade Out")); + brush.drawText(s_x3 - 25, y1_text, s_textBoxWidth, s_textBoxHeight, Qt::AlignCenter, tr("Reset")); + brush.drawText(s_x4 - 8, y1_text, s_textBoxWidth, s_textBoxHeight, Qt::AlignCenter, tr("Midi")); + brush.drawText(s_x5 - 16, y1_text, s_textBoxWidth, s_textBoxHeight, Qt::AlignCenter, tr("BPM")); + brush.drawText(s_x6 - 8, y1_text, s_textBoxWidth, s_textBoxHeight, Qt::AlignCenter, tr("Snap")); + + int kor = 15; // knob outer radius + int kir = 9; // knob inner radius + + // draw knob backgrounds + brush.setRenderHint(QPainter::Antialiasing); + + // draw outer radius 2 times to make smooth + brush.setPen(QPen(QColor(159, 124, 223, 100), 4)); + brush.drawArc(QRect(s_x1 - kor, m_y1, kor * 2, kor * 2), -45 * 16, 270 * 16); + brush.drawArc(QRect(s_x2 - kor, m_y1, kor * 2, kor * 2), -45 * 16, 270 * 16); + + brush.setPen(QPen(QColor(159, 124, 223, 255), 2)); + brush.drawArc(QRect(s_x1 - kor, m_y1, kor * 2, kor * 2), -45 * 16, 270 * 16); + brush.drawArc(QRect(s_x2 - kor, m_y1, kor * 2, kor * 2), -45 * 16, 270 * 16); + + // inner knob circle + brush.setBrush(QColor(106, 90, 138)); + brush.setPen(QColor(0, 0, 0, 0)); + brush.drawEllipse(QPoint(s_x1, m_y1 + 15), kir, kir); + brush.drawEllipse(QPoint(s_x2, m_y1 + 15), kir, kir); + + // current sample bar + brush.fillRect(QRect(0, boxTopY - s_sampleBoxHeight, width(), s_sampleBoxHeight), QColor(5, 5, 5)); + + brush.setPen(QColor(56, 58, 60)); + brush.drawLine(width() - 24, boxTopY - s_sampleBoxHeight, width() - 24, boxTopY); + + brush.setPen(QColor(255, 255, 255, 180)); + brush.setFont(QFont(brush.font().family(), 8, -1, false)); + QString sampleName = m_slicerTParent->getSampleName(); + if (sampleName == "") { sampleName = "No sample loaded"; } + + brush.drawText(5, boxTopY - s_sampleBoxHeight, width(), s_sampleBoxHeight, Qt::AlignLeft, sampleName); +} + +void SlicerTView::resizeEvent(QResizeEvent* re) +{ + m_y1 = height() - s_bottomBoxOffset; + + // left box + m_noteThresholdKnob->move(s_x1 - 25, m_y1); + m_fadeOutKnob->move(s_x2 - 25, m_y1); + + m_resetButton->move(s_x3 - 15, m_y1 + 3); + m_midiExportButton->move(s_x4 + 2, m_y1 + 3); + + m_bpmBox->move(s_x5 - 13, m_y1 + 4); + m_snapSetting->move(s_x6 - 8, m_y1 + 3); + + // right box + m_syncToggle->move((width() - 100), m_y1 + 5); + + m_folderButton->move(width() - 20, height() - s_bottomBoxHeight - s_sampleBoxHeight + 1); + + int waveFormHeight = height() - s_bottomBoxHeight - s_topBarHeight - s_sampleBoxHeight; + + m_wf->resize(width(), waveFormHeight); } } // namespace gui diff --git a/plugins/SlicerT/SlicerTView.h b/plugins/SlicerT/SlicerTView.h index ea2b979fc..f24246621 100644 --- a/plugins/SlicerT/SlicerTView.h +++ b/plugins/SlicerT/SlicerTView.h @@ -26,9 +26,9 @@ #define LMMS_GUI_SLICERT_VIEW_H #include +#include #include "ComboBox.h" -#include "Instrument.h" #include "InstrumentView.h" #include "Knob.h" #include "LcdSpinBox.h" @@ -42,7 +42,7 @@ class SlicerT; namespace gui { -class SlicerTView : public InstrumentViewFixedSize +class SlicerTView : public InstrumentView { Q_OBJECT @@ -55,23 +55,39 @@ public: static constexpr int s_textBoxHeight = 20; static constexpr int s_textBoxWidth = 50; - static constexpr int s_topTextY = 170; - static constexpr int s_bottomTextY = 220; + static constexpr int s_topBarHeight = 50; + static constexpr int s_bottomBoxHeight = 97; + static constexpr int s_bottomBoxOffset = 65; + static constexpr int s_sampleBoxHeight = 14; + static constexpr int s_folderButtonWidth = 15; + static constexpr int s_leftBoxWidth = 400; + + + static constexpr int s_x1 = 35; + static constexpr int s_x2 = 85; + static constexpr int s_x3 = 160; + static constexpr int s_x4 = 190; + static constexpr int s_x5 = 275; + static constexpr int s_x6 = 325; protected: - virtual void dragEnterEvent(QDragEnterEvent* dee); - virtual void dropEvent(QDropEvent* de); + void dragEnterEvent(QDragEnterEvent* dee) override; + void dropEvent(QDropEvent* de) override; - virtual void paintEvent(QPaintEvent* pe); + void paintEvent(QPaintEvent* pe) override; + void resizeEvent(QResizeEvent* event) override; private: + bool isResizable() const override { return true; } + SlicerT* m_slicerTParent; Knob* m_noteThresholdKnob; Knob* m_fadeOutKnob; LcdSpinBox* m_bpmBox; ComboBox* m_snapSetting; - LedCheckBox* m_syncToggle; + PixmapButton* m_syncToggle; + PixmapButton* m_folderButton; QPushButton* m_resetButton; QPushButton* m_midiExportButton; @@ -79,6 +95,13 @@ private: SlicerTWaveform* m_wf; Knob* createStyledKnob(); + + QPixmap m_fullLogo; + QPixmap m_background; + + + int m_y1; + int m_y2; }; } // namespace gui } // namespace lmms diff --git a/plugins/SlicerT/SlicerTWaveform.cpp b/plugins/SlicerT/SlicerTWaveform.cpp index 808b81c39..37f55572f 100644 --- a/plugins/SlicerT/SlicerTWaveform.cpp +++ b/plugins/SlicerT/SlicerTWaveform.cpp @@ -25,8 +25,9 @@ #include "SlicerTWaveform.h" #include +#include -#include "SampleWaveform.h" +#include "SampleThumbnail.h" #include "SlicerT.h" #include "SlicerTView.h" #include "embed.h" @@ -35,43 +36,52 @@ namespace lmms { namespace gui { +// waveform colors static QColor s_emptyColor = QColor(0, 0, 0, 0); -static QColor s_waveformColor = QColor(123, 49, 212); -static QColor s_waveformBgColor = QColor(255, 255, 255, 0); -static QColor s_waveformMaskColor = QColor(151, 65, 255); // update this if s_waveformColor changes -static QColor s_waveformInnerColor = QColor(183, 124, 255); +static QColor s_waveformColor = QColor(123, 49, 212); // color of outer waveform +static QColor s_waveformSeekerBgColor = QColor(0, 0, 0, 255); +static QColor s_waveformEditorBgColor = QColor(15, 15, 15, 255); +static QColor s_waveformMaskColor = QColor(151, 65, 255); // update this if s_waveformColor changes +static QColor s_waveformInnerColor = QColor(183, 124, 255); // color of inner waveform -static QColor s_playColor = QColor(255, 255, 255, 200); -static QColor s_playHighlightColor = QColor(255, 255, 255, 70); +// now playing colors +static QColor s_playColor = QColor(255, 255, 255, 200); // now playing line +static QColor s_playHighlightColor = QColor(255, 255, 255, 70); // now playing note marker -static QColor s_sliceColor = QColor(218, 193, 255); -static QColor s_sliceShadowColor = QColor(136, 120, 158); -static QColor s_sliceHighlightColor = QColor(255, 255, 255); +// slice markers +static QColor s_sliceColor = QColor(218, 193, 255); // color of slice marker +static QColor s_sliceShadowColor = QColor(136, 120, 158); // color of dark side of slice marker +static QColor s_sliceHighlightColor = QColor(255, 255, 255); // color of highlighted slice marker -static QColor s_seekerColor = QColor(178, 115, 255); -static QColor s_seekerHighlightColor = QColor(178, 115, 255, 100); -static QColor s_seekerShadowColor = QColor(0, 0, 0, 120); +// seeker rect colors +static QColor s_seekerColor = QColor(178, 115, 255); // outline of seeker +static QColor s_seekerHighlightColor = QColor(178, 115, 255, 100); // inside of seeker +static QColor s_seekerShadowColor = QColor(0, 0, 0, 120); // color used for darkening outside seeker + +// decor colors +static QColor s_editorBounding = QColor(53, 22, 90); // color of the editor bounding box +static QColor s_gradientEnd = QColor(29, 16, 47); // end color of the seeker gradient SlicerTWaveform::SlicerTWaveform(int totalWidth, int totalHeight, SlicerT* instrument, QWidget* parent) : QWidget(parent) , m_width(totalWidth) , m_height(totalHeight) + , m_seekerHeight(40) , m_seekerWidth(totalWidth - s_seekerHorMargin * 2) - , m_editorHeight(totalHeight - s_seekerHeight - s_middleMargin) + , m_editorHeight(totalHeight - m_seekerHeight - s_middleMargin - s_seekerVerMargin) , m_editorWidth(totalWidth) , m_sliceArrow(PLUGIN_NAME::getIconPixmap("slice_indicator_arrow")) - , m_seeker(QPixmap(m_seekerWidth, s_seekerHeight)) - , m_seekerWaveform(QPixmap(m_seekerWidth, s_seekerHeight)) - , m_editorWaveform(QPixmap(m_editorWidth, m_editorHeight)) + , m_seeker(QPixmap(m_seekerWidth, m_seekerHeight)) + , m_seekerWaveform(QPixmap(m_seekerWidth, m_seekerHeight)) + , m_editorWaveform(QPixmap(m_editorWidth, m_editorHeight - s_arrowHeight)) , m_sliceEditor(QPixmap(totalWidth, m_editorHeight)) , m_emptySampleIcon(embed::getIconPixmap("sample_track")) , m_slicerTParent(instrument) { - setFixedSize(m_width, m_height); setMouseTracking(true); - m_seekerWaveform.fill(s_waveformBgColor); - m_editorWaveform.fill(s_waveformBgColor); + m_seekerWaveform.fill(s_waveformSeekerBgColor); + m_editorWaveform.fill(s_waveformEditorBgColor); connect(instrument, &SlicerT::isPlaying, this, &SlicerTWaveform::isPlaying); connect(instrument, &SlicerT::dataChanged, this, &SlicerTWaveform::updateUI); @@ -82,17 +92,42 @@ SlicerTWaveform::SlicerTWaveform(int totalWidth, int totalHeight, SlicerT* instr updateUI(); } +void SlicerTWaveform::resizeEvent(QResizeEvent* event) +{ + m_width = width(); + m_height = height(); + m_seekerWidth = m_width - s_seekerHorMargin * 2; + /* m_seekerHeight = m_height * 0.33f; */ + m_editorWidth = m_width; + m_editorHeight = m_height - m_seekerHeight - s_middleMargin - s_seekerVerMargin; + + m_seeker = QPixmap(m_seekerWidth, m_seekerHeight); + m_seekerWaveform = QPixmap(m_seekerWidth, m_seekerHeight); + m_editorWaveform = QPixmap(m_editorWidth, m_editorHeight - s_arrowHeight); + m_sliceEditor = QPixmap(m_width, m_editorHeight); + updateUI(); +} void SlicerTWaveform::drawSeekerWaveform() { - m_seekerWaveform.fill(s_waveformBgColor); + m_seekerWaveform.fill(s_emptyColor); if (m_slicerTParent->m_originalSample.sampleSize() <= 1) { return; } QPainter brush(&m_seekerWaveform); brush.setPen(s_waveformColor); const auto& sample = m_slicerTParent->m_originalSample; - const auto waveform = SampleWaveform::Parameters{sample.data(), sample.sampleSize(), sample.amplification(), sample.reversed()}; - const auto rect = QRect(0, 0, m_seekerWaveform.width(), m_seekerWaveform.height()); - SampleWaveform::visualize(waveform, brush, rect); + + m_sampleThumbnail = SampleThumbnail{sample}; + + const auto param = SampleThumbnail::VisualizeParameters{ + .sampleRect = m_seekerWaveform.rect(), + .amplification = sample.amplification(), + .sampleStart = static_cast(sample.startFrame()) / sample.sampleSize(), + .sampleEnd = static_cast(sample.endFrame()) / sample.sampleSize(), + .reversed = sample.reversed() + }; + + m_sampleThumbnail.visualize(param, brush); + // increase brightness in inner color QBitmap innerMask = m_seekerWaveform.createMaskFromColor(s_waveformMaskColor, Qt::MaskMode::MaskOutColor); @@ -102,15 +137,16 @@ void SlicerTWaveform::drawSeekerWaveform() void SlicerTWaveform::drawSeeker() { - m_seeker.fill(s_emptyColor); + m_seeker.fill(s_waveformSeekerBgColor); if (m_slicerTParent->m_originalSample.sampleSize() <= 1) { return; } QPainter brush(&m_seeker); + brush.drawPixmap(0, 0, m_seekerWaveform); brush.setPen(s_sliceColor); for (float sliceValue : m_slicerTParent->m_slicePoints) { float xPos = sliceValue * m_seekerWidth; - brush.drawLine(xPos, 0, xPos, s_seekerHeight); + brush.drawLine(xPos, 0, xPos, m_seekerHeight); } float seekerStartPosX = m_seekerStart * m_seekerWidth; @@ -122,16 +158,16 @@ void SlicerTWaveform::drawSeeker() float noteEndPosX = (m_noteEnd - m_noteStart) * m_seekerWidth; brush.setPen(s_playColor); - brush.drawLine(noteCurrentPosX, 0, noteCurrentPosX, s_seekerHeight); - brush.fillRect(noteStartPosX, 0, noteEndPosX, s_seekerHeight, s_playHighlightColor); + brush.drawLine(noteCurrentPosX, 0, noteCurrentPosX, m_seekerHeight); + brush.fillRect(noteStartPosX, 0, noteEndPosX, m_seekerHeight, s_playHighlightColor); - brush.fillRect(seekerStartPosX, 0, seekerMiddleWidth - 1, s_seekerHeight, s_seekerHighlightColor); + brush.fillRect(seekerStartPosX, 0, seekerMiddleWidth - 1, m_seekerHeight, s_seekerHighlightColor); - brush.fillRect(0, 0, seekerStartPosX, s_seekerHeight, s_seekerShadowColor); - brush.fillRect(seekerEndPosX - 1, 0, m_seekerWidth, s_seekerHeight, s_seekerShadowColor); + brush.fillRect(0, 0, seekerStartPosX, m_seekerHeight, s_seekerShadowColor); + brush.fillRect(seekerEndPosX - 1, 0, m_seekerWidth, m_seekerHeight, s_seekerShadowColor); brush.setPen(QPen(s_seekerColor, 1)); - brush.drawRect(seekerStartPosX, 0, seekerMiddleWidth - 1, s_seekerHeight - 1); // -1 needed + brush.drawRoundedRect(seekerStartPosX, 0, seekerMiddleWidth - 1, m_seekerHeight - 1, 2, 2); } void SlicerTWaveform::drawEditorWaveform() @@ -144,12 +180,21 @@ void SlicerTWaveform::drawEditorWaveform() size_t endFrame = m_seekerEnd * m_slicerTParent->m_originalSample.sampleSize(); brush.setPen(s_waveformColor); - float zoomOffset = (m_editorHeight - m_zoomLevel * m_editorHeight) / 2; + long zoomOffset = (m_editorHeight - m_zoomLevel * m_editorHeight) / 2; const auto& sample = m_slicerTParent->m_originalSample; - const auto waveform = SampleWaveform::Parameters{sample.data() + startFrame, endFrame - startFrame, sample.amplification(), sample.reversed()}; - const auto rect = QRect(0, zoomOffset, m_editorWidth, m_zoomLevel * m_editorHeight); - SampleWaveform::visualize(waveform, brush, rect); + + m_sampleThumbnail = SampleThumbnail{sample}; + + const auto param = SampleThumbnail::VisualizeParameters{ + .sampleRect = QRect(0, zoomOffset, m_editorWidth, static_cast(m_zoomLevel * m_editorHeight)), + .amplification = sample.amplification(), + .sampleStart = static_cast(startFrame) / sample.sampleSize(), + .sampleEnd = static_cast(endFrame) / sample.sampleSize(), + .reversed = sample.reversed(), + }; + + m_sampleThumbnail.visualize(param, brush); // increase brightness in inner color QBitmap innerMask = m_editorWaveform.createMaskFromColor(s_waveformMaskColor, Qt::MaskMode::MaskOutColor); @@ -159,7 +204,7 @@ void SlicerTWaveform::drawEditorWaveform() void SlicerTWaveform::drawEditor() { - m_sliceEditor.fill(s_waveformBgColor); + m_sliceEditor.fill(s_waveformEditorBgColor); QPainter brush(&m_sliceEditor); // No sample loaded @@ -185,13 +230,16 @@ void SlicerTWaveform::drawEditor() float noteLength = (m_noteEnd - m_noteStart) / (m_seekerEnd - m_seekerStart) * m_editorWidth; brush.setPen(s_playHighlightColor); - brush.drawLine(0, m_editorHeight / 2, m_editorWidth, m_editorHeight / 2); + int middleY = m_editorHeight / 2 + s_arrowHeight; + brush.drawLine(0, middleY, m_editorWidth, middleY); - brush.drawPixmap(0, 0, m_editorWaveform); + brush.drawPixmap(0, s_arrowHeight, m_editorWaveform); + + brush.fillRect(0, 0, m_editorWidth, s_arrowHeight, s_waveformSeekerBgColor); brush.setPen(s_playColor); - brush.drawLine(noteCurrentPos, 0, noteCurrentPos, m_editorHeight); - brush.fillRect(noteStartPos, 0, noteLength, m_editorHeight, s_playHighlightColor); + brush.drawLine(noteCurrentPos, s_arrowHeight, noteCurrentPos, m_editorHeight); + brush.fillRect(noteStartPos, s_arrowHeight, noteLength, m_editorHeight, s_playHighlightColor); brush.setPen(QPen(s_sliceColor, 2)); @@ -215,6 +263,11 @@ void SlicerTWaveform::drawEditor() brush.drawPixmap(xPos - m_sliceArrow.width() / 2.0f, 0, m_sliceArrow); } } + + // decor + brush.setPen(s_editorBounding); + brush.drawLine(0, s_arrowHeight, m_editorWidth, s_arrowHeight); + brush.drawLine(0, m_editorHeight - 1, m_editorWidth, m_editorHeight - 1); } void SlicerTWaveform::isPlaying(float current, float start, float end) @@ -248,7 +301,7 @@ void SlicerTWaveform::updateClosest(QMouseEvent* me) m_closestObject = UIObjects::Nothing; m_closestSlice = -1; - if (me->y() < s_seekerHeight) + if (me->y() < m_seekerHeight) { if (std::abs(normalizedClickSeeker - m_seekerStart) < s_distanceForClick) { @@ -394,7 +447,7 @@ void SlicerTWaveform::mouseMoveEvent(QMouseEvent* me) void SlicerTWaveform::mouseDoubleClickEvent(QMouseEvent* me) { - if (me->button() != Qt::MouseButton::LeftButton) { return; } + if (me->button() != Qt::MouseButton::LeftButton || me->y() < m_seekerHeight) { return; } float normalizedClickEditor = static_cast(me->x()) / m_editorWidth; float startFrame = m_seekerStart; @@ -416,9 +469,27 @@ void SlicerTWaveform::wheelEvent(QWheelEvent* we) void SlicerTWaveform::paintEvent(QPaintEvent* pe) { QPainter p(this); - p.drawPixmap(s_seekerHorMargin, 0, m_seekerWaveform); - p.drawPixmap(s_seekerHorMargin, 0, m_seeker); - p.drawPixmap(0, s_seekerHeight + s_middleMargin, m_sliceEditor); + + // top gradient + QLinearGradient bgGrad(QPointF(0, 0), QPointF(width(), height() - m_editorHeight)); + bgGrad.setColorAt(0, s_waveformEditorBgColor); + bgGrad.setColorAt(1, s_gradientEnd); + + p.setBrush(bgGrad); + p.setPen(s_emptyColor); + p.drawRect(QRect(0, 0, width(), height())); + p.setBrush(QBrush()); + + // seeker + QPainterPath path; + path.addRoundedRect( + QRect(s_seekerHorMargin - 2, s_seekerVerMargin - 2, m_seekerWidth + 4, m_seekerHeight + 4), 4, 4); + p.fillPath(path, s_seekerShadowColor); + p.drawPixmap(s_seekerHorMargin, s_seekerVerMargin, m_seeker); + + // editor + p.setPen(QColor(s_waveformColor)); + p.drawPixmap(0, m_seekerHeight + s_middleMargin + s_seekerVerMargin, m_sliceEditor); } } // namespace gui } // namespace lmms diff --git a/plugins/SlicerT/SlicerTWaveform.h b/plugins/SlicerT/SlicerTWaveform.h index 6478e7f86..029b69320 100644 --- a/plugins/SlicerT/SlicerTWaveform.h +++ b/plugins/SlicerT/SlicerTWaveform.h @@ -32,8 +32,7 @@ #include #include -#include "Instrument.h" -#include "SampleBuffer.h" +#include "SampleThumbnail.h" namespace lmms { @@ -54,8 +53,9 @@ public: // predefined sizes static constexpr int s_seekerHorMargin = 5; - static constexpr int s_seekerHeight = 38; // used to calcualte all vertical sizes + static constexpr int s_seekerVerMargin = 6; static constexpr int s_middleMargin = 6; + static constexpr int s_arrowHeight = 5; // interaction behavior values static constexpr float s_distanceForClick = 0.02f; @@ -80,11 +80,13 @@ protected: void wheelEvent(QWheelEvent* we) override; void paintEvent(QPaintEvent* pe) override; + void resizeEvent(QResizeEvent* event) override; private: int m_width; int m_height; + int m_seekerHeight; // used to calcualte all vertical sizes int m_seekerWidth; int m_editorHeight; int m_editorWidth; @@ -108,6 +110,8 @@ private: QPixmap m_editorWaveform; QPixmap m_sliceEditor; QPixmap m_emptySampleIcon; + + SampleThumbnail m_sampleThumbnail; SlicerT* m_slicerTParent; diff --git a/plugins/SlicerT/artwork.png b/plugins/SlicerT/artwork.png deleted file mode 100644 index e166273c7..000000000 Binary files a/plugins/SlicerT/artwork.png and /dev/null differ diff --git a/plugins/SlicerT/folder_icon.png b/plugins/SlicerT/folder_icon.png new file mode 100644 index 000000000..4dd60c8ff Binary files /dev/null and b/plugins/SlicerT/folder_icon.png differ diff --git a/plugins/SlicerT/full_logo.png b/plugins/SlicerT/full_logo.png new file mode 100644 index 000000000..aa8c1d26a Binary files /dev/null and b/plugins/SlicerT/full_logo.png differ diff --git a/plugins/SlicerT/sync_active.png b/plugins/SlicerT/sync_active.png new file mode 100644 index 000000000..9db13c794 Binary files /dev/null and b/plugins/SlicerT/sync_active.png differ diff --git a/plugins/SlicerT/sync_inactive.png b/plugins/SlicerT/sync_inactive.png new file mode 100644 index 000000000..573958de0 Binary files /dev/null and b/plugins/SlicerT/sync_inactive.png differ diff --git a/plugins/SlicerT/toolbox.png b/plugins/SlicerT/toolbox.png new file mode 100644 index 000000000..2b7c2a14c Binary files /dev/null and b/plugins/SlicerT/toolbox.png differ diff --git a/plugins/SpectrumAnalyzer/Analyzer.cpp b/plugins/SpectrumAnalyzer/Analyzer.cpp index dc2108eb9..7b6086ed2 100644 --- a/plugins/SpectrumAnalyzer/Analyzer.cpp +++ b/plugins/SpectrumAnalyzer/Analyzer.cpp @@ -77,7 +77,7 @@ Analyzer::~Analyzer() } // Take audio data and pass them to the spectrum processor. -bool Analyzer::processAudioBuffer(SampleFrame* buffer, const fpp_t frame_count) +Effect::ProcessStatus Analyzer::processImpl(SampleFrame* buf, const fpp_t frames) { // Measure time spent in audio thread; both average and peak should be well under 1 ms. #ifdef SA_DEBUG @@ -91,14 +91,12 @@ bool Analyzer::processAudioBuffer(SampleFrame* buffer, const fpp_t frame_count) } #endif - if (!isEnabled() || !isRunning ()) {return false;} - // Skip processing if the controls dialog isn't visible, it would only waste CPU cycles. if (m_controls.isViewVisible()) { // To avoid processing spikes on audio thread, data are stored in // a lockless ringbuffer and processed in a separate thread. - m_inputBuffer.write(buffer, frame_count, true); + m_inputBuffer.write(buf, frames, true); } #ifdef SA_DEBUG audio_time = std::chrono::high_resolution_clock::now().time_since_epoch().count() - audio_time; @@ -107,7 +105,7 @@ bool Analyzer::processAudioBuffer(SampleFrame* buffer, const fpp_t frame_count) if (audio_time / 1000000.0 > m_max_execution) {m_max_execution = audio_time / 1000000.0;} #endif - return isRunning(); + return ProcessStatus::Continue; } diff --git a/plugins/SpectrumAnalyzer/Analyzer.h b/plugins/SpectrumAnalyzer/Analyzer.h index da87ffd35..d898b1333 100644 --- a/plugins/SpectrumAnalyzer/Analyzer.h +++ b/plugins/SpectrumAnalyzer/Analyzer.h @@ -45,7 +45,8 @@ public: Analyzer(Model *parent, const Descriptor::SubPluginFeatures::Key *key); ~Analyzer() override; - bool processAudioBuffer(SampleFrame* buffer, const fpp_t frame_count) override; + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; + EffectControls *controls() override {return &m_controls;} SaProcessor *getProcessor() {return &m_processor;} diff --git a/plugins/SpectrumAnalyzer/SaControlsDialog.cpp b/plugins/SpectrumAnalyzer/SaControlsDialog.cpp index 2b0ca4fec..8b2c0f35e 100644 --- a/plugins/SpectrumAnalyzer/SaControlsDialog.cpp +++ b/plugins/SpectrumAnalyzer/SaControlsDialog.cpp @@ -341,7 +341,6 @@ SaControlsDialog::SaControlsDialog(SaControls *controls, SaProcessor *processor) m_waterfall = new SaWaterfallView(controls, processor, this); display_splitter->addWidget(m_waterfall); m_waterfall->setVisible(m_controls->m_waterfallModel.value()); - connect(&controls->m_waterfallModel, &BoolModel::dataChanged, [=] {m_waterfall->updateVisibility();}); } diff --git a/plugins/SpectrumAnalyzer/SaProcessor.cpp b/plugins/SpectrumAnalyzer/SaProcessor.cpp index d9e7ac8a4..1ea80f126 100644 --- a/plugins/SpectrumAnalyzer/SaProcessor.cpp +++ b/plugins/SpectrumAnalyzer/SaProcessor.cpp @@ -26,6 +26,7 @@ #include "SaProcessor.h" #include +#include "lmms_math.h" #ifdef SA_DEBUG #include #endif @@ -331,15 +332,15 @@ QRgb SaProcessor::makePixel(float left, float right) const const float gamma_correction = m_controls->m_waterfallGammaModel.value(); if (m_controls->m_stereoModel.value()) { - float ampL = pow(left, gamma_correction); - float ampR = pow(right, gamma_correction); + float ampL = std::pow(left, gamma_correction); + float ampR = std::pow(right, gamma_correction); return qRgb(m_controls->m_colorL.red() * ampL + m_controls->m_colorR.red() * ampR, m_controls->m_colorL.green() * ampL + m_controls->m_colorR.green() * ampR, m_controls->m_colorL.blue() * ampL + m_controls->m_colorR.blue() * ampR); } else { - float ampL = pow(left, gamma_correction); + float ampL = std::pow(left, gamma_correction); // make mono color brighter to compensate for the fact it is not summed return qRgb(m_controls->m_colorMonoW.red() * ampL, m_controls->m_colorMonoW.green() * ampL, @@ -576,9 +577,9 @@ float SaProcessor::freqToXPixel(float freq, unsigned int width) const if (m_controls->m_logXModel.value()) { if (freq <= 1) {return 0;} - float min = log10(getFreqRangeMin()); - float range = log10(getFreqRangeMax()) - min; - return (log10(freq) - min) / range * width; + float min = std::log10(getFreqRangeMin()); + float range = std::log10(getFreqRangeMax()) - min; + return (std::log10(freq) - min) / range * width; } else { @@ -594,10 +595,10 @@ float SaProcessor::xPixelToFreq(float x, unsigned int width) const { if (m_controls->m_logXModel.value()) { - float min = log10(getFreqRangeMin()); - float max = log10(getFreqRangeMax()); + float min = std::log10(getFreqRangeMin()); + float max = std::log10(getFreqRangeMax()); float range = max - min; - return pow(10, min + x / width * range); + return fastPow10f(min + x / width * range); } else { @@ -662,8 +663,8 @@ float SaProcessor::ampToYPixel(float amplitude, unsigned int height) const else { // linear scale: convert returned ranges from dB to linear scale - float max = pow(10, getAmpRangeMax() / 10); - float range = pow(10, getAmpRangeMin() / 10) - max; + float max = fastPow10f(getAmpRangeMax() / 10); + float range = fastPow10f(getAmpRangeMin() / 10) - max; return (amplitude - max) / range * height; } } @@ -683,8 +684,8 @@ float SaProcessor::yPixelToAmp(float y, unsigned int height) const else { // linear scale: convert returned ranges from dB to linear scale - float max = pow(10, getAmpRangeMax() / 10); - float range = pow(10, getAmpRangeMin() / 10) - max; + float max = fastPow10f(getAmpRangeMax() / 10); + float range = fastPow10f(getAmpRangeMin() / 10) - max; return max + range * (y / height); } } diff --git a/plugins/SpectrumAnalyzer/SaSpectrumView.cpp b/plugins/SpectrumAnalyzer/SaSpectrumView.cpp index 2d15da7f4..e8d4ff8e0 100644 --- a/plugins/SpectrumAnalyzer/SaSpectrumView.cpp +++ b/plugins/SpectrumAnalyzer/SaSpectrumView.cpp @@ -38,6 +38,7 @@ #include "MainWindow.h" #include "SaControls.h" #include "SaProcessor.h" +#include "lmms_math.h" #ifdef SA_DEBUG #include @@ -668,7 +669,7 @@ std::vector> SaSpectrumView::makeLogFreqTics(int low } } // also insert denser series if high and low values are close - if ((log10(high) - log10(low) < 2) && (i * b[j] >= low && i * b[j] <= high)) + if ((std::log10(high) - std::log10(low) < 2) && (i * b[j] >= low && i * b[j] <= high)) { if (i * b[j] < 1500) { @@ -729,11 +730,11 @@ std::vector> SaSpectrumView::makeLogAmpTics(int lo // to the sizeHint() (denser scale for bigger window). if ((high - low) < 20 * ((float)height() / sizeHint().height())) { - increment = pow(10, 0.3); // 3 dB steps when really zoomed in + increment = fastPow10f(0.3f); // 3 dB steps when really zoomed in } else if (high - low < 45 * ((float)height() / sizeHint().height())) { - increment = pow(10, 0.6); // 6 dB steps when sufficiently zoomed in + increment = fastPow10f(0.6f); // 6 dB steps when sufficiently zoomed in } else { @@ -742,11 +743,11 @@ std::vector> SaSpectrumView::makeLogAmpTics(int lo // Generate n dB increments, start checking at -90 dB. Limits are tweaked // just a little bit to make sure float comparisons do not miss edges. - for (float i = 0.000000001f; 10 * log10(i) <= (high + 0.001); i *= increment) + for (float i = 0.000000001f; 10 * std::log10(i) <= (high + 0.001); i *= increment) { - if (10 * log10(i) >= (low - 0.001)) + if (10 * std::log10(i) >= (low - 0.001)) { - result.emplace_back(i, std::to_string((int)std::round(10 * log10(i)))); + result.emplace_back(i, std::to_string((int)std::round(10 * std::log10(i)))); } } return result; @@ -766,8 +767,8 @@ std::vector> SaSpectrumView::makeLinearAmpTics(int float split = (float)height() / sizeHint().height() >= 1.5 ? 10.0 : 5.0; // convert limits to linear scale - float lin_low = pow(10, low / 10.0); - float lin_high = pow(10, high / 10.0); + float lin_low = fastPow10f(low / 10.0); + float lin_high = fastPow10f(high / 10.0); // Linear scale will vary widely, so instead of trying to craft extra nice // multiples, just generate a few evenly spaced increments across the range, diff --git a/plugins/SpectrumAnalyzer/SaWaterfallView.cpp b/plugins/SpectrumAnalyzer/SaWaterfallView.cpp index 5169a4b49..b3e57d7c0 100644 --- a/plugins/SpectrumAnalyzer/SaWaterfallView.cpp +++ b/plugins/SpectrumAnalyzer/SaWaterfallView.cpp @@ -54,6 +54,7 @@ SaWaterfallView::SaWaterfallView(SaControls *controls, SaProcessor *processor, Q setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); connect(getGUI()->mainWindow(), SIGNAL(periodicUpdate()), this, SLOT(periodicUpdate())); + connect(&controls->m_waterfallModel, &BoolModel::dataChanged, this, &SaWaterfallView::updateVisibility); m_displayTop = 1; m_displayBottom = height() -2; diff --git a/plugins/StereoEnhancer/StereoEnhancer.cpp b/plugins/StereoEnhancer/StereoEnhancer.cpp index 261c897df..f0cf830c5 100644 --- a/plugins/StereoEnhancer/StereoEnhancer.cpp +++ b/plugins/StereoEnhancer/StereoEnhancer.cpp @@ -82,28 +82,17 @@ StereoEnhancerEffect::~StereoEnhancerEffect() -bool StereoEnhancerEffect::processAudioBuffer( SampleFrame* _buf, - const fpp_t _frames ) +Effect::ProcessStatus StereoEnhancerEffect::processImpl(SampleFrame* buf, const fpp_t frames) { - - // This appears to be used for determining whether or not to continue processing - // audio with this effect - double out_sum = 0.0; - - if( !isEnabled() || !isRunning() ) - { - return( false ); - } - const float d = dryLevel(); const float w = wetLevel(); - for( fpp_t f = 0; f < _frames; ++f ) + for (fpp_t f = 0; f < frames; ++f) { // copy samples into the delay buffer - m_delayBuffer[m_currFrame][0] = _buf[f][0]; - m_delayBuffer[m_currFrame][1] = _buf[f][1]; + m_delayBuffer[m_currFrame][0] = buf[f][0]; + m_delayBuffer[m_currFrame][1] = buf[f][1]; // Get the width knob value from the Stereo Enhancer effect float width = m_seFX.wideCoeff(); @@ -117,27 +106,25 @@ bool StereoEnhancerEffect::processAudioBuffer( SampleFrame* _buf, frameIndex += DEFAULT_BUFFER_SIZE; } - //sample_t s[2] = { _buf[f][0], _buf[f][1] }; //Vanilla - auto s = std::array{_buf[f][0], m_delayBuffer[frameIndex][1]}; //Chocolate + //sample_t s[2] = { buf[f][0], buf[f][1] }; //Vanilla + auto s = std::array{buf[f][0], m_delayBuffer[frameIndex][1]}; //Chocolate m_seFX.nextSample( s[0], s[1] ); - _buf[f][0] = d * _buf[f][0] + w * s[0]; - _buf[f][1] = d * _buf[f][1] + w * s[1]; - out_sum += _buf[f][0]*_buf[f][0] + _buf[f][1]*_buf[f][1]; + buf[f][0] = d * buf[f][0] + w * s[0]; + buf[f][1] = d * buf[f][1] + w * s[1]; // Update currFrame m_currFrame += 1; m_currFrame %= DEFAULT_BUFFER_SIZE; } - checkGate( out_sum / _frames ); if( !isRunning() ) { clearMyBuffer(); } - return( isRunning() ); + return ProcessStatus::ContinueIfNotQuiet; } diff --git a/plugins/StereoEnhancer/StereoEnhancer.h b/plugins/StereoEnhancer/StereoEnhancer.h index 861187f8f..3e27330ad 100644 --- a/plugins/StereoEnhancer/StereoEnhancer.h +++ b/plugins/StereoEnhancer/StereoEnhancer.h @@ -40,8 +40,8 @@ public: StereoEnhancerEffect( Model * parent, const Descriptor::SubPluginFeatures::Key * _key ); ~StereoEnhancerEffect() override; - bool processAudioBuffer( SampleFrame* _buf, - const fpp_t _frames ) override; + + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; EffectControls * controls() override { diff --git a/plugins/StereoMatrix/StereoMatrix.cpp b/plugins/StereoMatrix/StereoMatrix.cpp index c4384fddd..038b56059 100644 --- a/plugins/StereoMatrix/StereoMatrix.cpp +++ b/plugins/StereoMatrix/StereoMatrix.cpp @@ -64,44 +64,29 @@ StereoMatrixEffect::StereoMatrixEffect( -bool StereoMatrixEffect::processAudioBuffer( SampleFrame* _buf, - const fpp_t _frames ) +Effect::ProcessStatus StereoMatrixEffect::processImpl(SampleFrame* buf, const fpp_t frames) { - - // This appears to be used for determining whether or not to continue processing - // audio with this effect - if( !isEnabled() || !isRunning() ) - { - return( false ); - } - - double out_sum = 0.0; - - for( fpp_t f = 0; f < _frames; ++f ) + for (fpp_t f = 0; f < frames; ++f) { const float d = dryLevel(); const float w = wetLevel(); - sample_t l = _buf[f][0]; - sample_t r = _buf[f][1]; + sample_t l = buf[f][0]; + sample_t r = buf[f][1]; // Init with dry-mix - _buf[f][0] = l * d; - _buf[f][1] = r * d; + buf[f][0] = l * d; + buf[f][1] = r * d; // Add it wet - _buf[f][0] += ( m_smControls.m_llModel.value( f ) * l + + buf[f][0] += ( m_smControls.m_llModel.value( f ) * l + m_smControls.m_rlModel.value( f ) * r ) * w; - _buf[f][1] += ( m_smControls.m_lrModel.value( f ) * l + + buf[f][1] += ( m_smControls.m_lrModel.value( f ) * l + m_smControls.m_rrModel.value( f ) * r ) * w; - out_sum += _buf[f][0]*_buf[f][0] + _buf[f][1]*_buf[f][1]; - } - checkGate( out_sum / _frames ); - - return( isRunning() ); + return ProcessStatus::ContinueIfNotQuiet; } diff --git a/plugins/StereoMatrix/StereoMatrix.h b/plugins/StereoMatrix/StereoMatrix.h index a254264f8..2b2b22f1a 100644 --- a/plugins/StereoMatrix/StereoMatrix.h +++ b/plugins/StereoMatrix/StereoMatrix.h @@ -39,8 +39,8 @@ public: StereoMatrixEffect( Model * parent, const Descriptor::SubPluginFeatures::Key * _key ); ~StereoMatrixEffect() override = default; - bool processAudioBuffer( SampleFrame* _buf, - const fpp_t _frames ) override; + + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; EffectControls* controls() override { diff --git a/plugins/Stk/Mallets/Mallets.cpp b/plugins/Stk/Mallets/Mallets.cpp index 00ddbf422..fecb15a76 100644 --- a/plugins/Stk/Mallets/Mallets.cpp +++ b/plugins/Stk/Mallets/Mallets.cpp @@ -41,6 +41,7 @@ #include "InstrumentTrack.h" #include "embed.h" +#include "lmms_math.h" #include "plugin_export.h" namespace lmms @@ -305,26 +306,26 @@ void MalletsInstrument::playNote( NotePlayHandle * _n, if (p < 9) { - hardness += random * (static_cast(fast_rand() % 128) - 64.0); + hardness += random * fastRand(-64.f, +64.f); hardness = std::clamp(hardness, 0.0f, 128.0f); - position += random * (static_cast(fast_rand() % 64) - 32.0); + position += random * fastRand(-32.f, +32.f); position = std::clamp(position, 0.0f, 64.0f); } else if (p == 9) { - modulator += random * (static_cast(fast_rand() % 128) - 64.0); + modulator += random * fastRand(-64.f, +64.f); modulator = std::clamp(modulator, 0.0f, 128.0f); - crossfade += random * (static_cast(fast_rand() % 128) - 64.0); + crossfade += random * fastRand(-64.f, +64.f); crossfade = std::clamp(crossfade, 0.0f, 128.0f); } else { - pressure += random * (static_cast(fast_rand() % 128) - 64.0); + pressure += random * fastRand(-64.f, +64.f); pressure = std::clamp(pressure, 0.0f, 128.0f); - speed += random * (static_cast(fast_rand() % 128) - 64.0); + speed += random * fastRand(-64.f, +64.f); speed = std::clamp(speed, 0.0f, 128.0f); } diff --git a/plugins/TapTempo/TapTempoView.cpp b/plugins/TapTempo/TapTempoView.cpp index d6c24fcf5..ed451eaa5 100644 --- a/plugins/TapTempo/TapTempoView.cpp +++ b/plugins/TapTempo/TapTempoView.cpp @@ -35,6 +35,7 @@ #include #include "Engine.h" +#include "FontHelper.h" #include "SamplePlayHandle.h" #include "Song.h" #include "TapTempo.h" @@ -47,11 +48,10 @@ TapTempoView::TapTempoView(TapTempo* plugin) setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); auto font = QFont(); - font.setPointSize(24); m_tapButton = new QPushButton(); m_tapButton->setFixedSize(200, 200); - m_tapButton->setFont(font); + m_tapButton->setFont(adjustedToPixelSize(font, 32)); m_tapButton->setText(tr("0")); auto precisionCheckBox = new QCheckBox(tr("Precision")); diff --git a/plugins/TripleOscillator/TripleOscillator.cpp b/plugins/TripleOscillator/TripleOscillator.cpp index f04cee818..61a6c4919 100644 --- a/plugins/TripleOscillator/TripleOscillator.cpp +++ b/plugins/TripleOscillator/TripleOscillator.cpp @@ -175,9 +175,8 @@ void OscillatorObject::updateVolume() void OscillatorObject::updateDetuningLeft() { - m_detuningLeft = powf( 2.0f, ( (float)m_coarseModel.value() * 100.0f - + (float)m_fineLeftModel.value() ) / 1200.0f ) - / Engine::audioEngine()->outputSampleRate(); + m_detuningLeft = std::exp2((m_coarseModel.value() * 100.0f + m_fineLeftModel.value()) / 1200.0f) + / Engine::audioEngine()->outputSampleRate(); } @@ -185,9 +184,8 @@ void OscillatorObject::updateDetuningLeft() void OscillatorObject::updateDetuningRight() { - m_detuningRight = powf( 2.0f, ( (float)m_coarseModel.value() * 100.0f - + (float)m_fineRightModel.value() ) / 1200.0f ) - / Engine::audioEngine()->outputSampleRate(); + m_detuningRight = std::exp2((m_coarseModel.value() * 100.0f + m_fineRightModel.value()) / 1200.0f) + / Engine::audioEngine()->outputSampleRate(); } diff --git a/plugins/Vectorscope/VecControls.cpp b/plugins/Vectorscope/VecControls.cpp index cd0f21f61..19158865d 100644 --- a/plugins/Vectorscope/VecControls.cpp +++ b/plugins/Vectorscope/VecControls.cpp @@ -38,15 +38,9 @@ VecControls::VecControls(Vectorscope *effect) : m_effect(effect), // initialize models and set default values - m_persistenceModel(0.5f, 0.0f, 1.0f, 0.05f, this, tr("Display persistence amount")), m_logarithmicModel(false, this, tr("Logarithmic scale")), - m_highQualityModel(false, this, tr("High quality")) + m_linesModeModel(true, this, tr("Lines rendering")) { - // Colors (percentages include sRGB gamma correction) - m_colorFG = QColor(60, 255, 130, 255); // ~LMMS green - m_colorGrid = QColor(76, 80, 84, 128); // ~60 % gray (slightly cold / blue), 50 % transparent - m_colorLabels = QColor(76, 80, 84, 255); // ~60 % gray (slightly cold / blue) - m_colorOutline = QColor(30, 34, 38, 255); // ~40 % gray (slightly cold / blue) } @@ -59,17 +53,15 @@ gui::EffectControlDialog* VecControls::createView() void VecControls::loadSettings(const QDomElement &element) { - m_persistenceModel.loadSettings(element, "Persistence"); m_logarithmicModel.loadSettings(element, "Logarithmic"); - m_highQualityModel.loadSettings(element, "HighQuality"); + m_linesModeModel.loadSettings(element, "LinesMode"); } void VecControls::saveSettings(QDomDocument &document, QDomElement &element) { - m_persistenceModel.saveSettings(document, element, "Persistence"); m_logarithmicModel.saveSettings(document, element, "Logarithmic"); - m_highQualityModel.saveSettings(document, element, "HighQuality"); + m_linesModeModel.saveSettings(document, element, "LinesMode"); } diff --git a/plugins/Vectorscope/VecControls.h b/plugins/Vectorscope/VecControls.h index 71b1c122e..2bdb3b157 100644 --- a/plugins/Vectorscope/VecControls.h +++ b/plugins/Vectorscope/VecControls.h @@ -57,20 +57,16 @@ public: QString nodeName() const override {return "Vectorscope";} int controlCount() override {return 3;} + const BoolModel& getLogarithmicModel() const { return m_logarithmicModel; } + const BoolModel& getLinesModel() const { return m_linesModeModel; } + private: Vectorscope *m_effect; - FloatModel m_persistenceModel; BoolModel m_logarithmicModel; - BoolModel m_highQualityModel; - - QColor m_colorFG; - QColor m_colorGrid; - QColor m_colorLabels; - QColor m_colorOutline; + BoolModel m_linesModeModel; friend class gui::VecControlsDialog; - friend class gui::VectorView; }; diff --git a/plugins/Vectorscope/VecControlsDialog.cpp b/plugins/Vectorscope/VecControlsDialog.cpp index 9aa2cfd8d..16cf7f8bd 100644 --- a/plugins/Vectorscope/VecControlsDialog.cpp +++ b/plugins/Vectorscope/VecControlsDialog.cpp @@ -44,47 +44,31 @@ VecControlsDialog::VecControlsDialog(VecControls *controls) : m_controls(controls) { auto master_layout = new QVBoxLayout; - master_layout->setContentsMargins(0, 2, 0, 0); + master_layout->setContentsMargins(0, 0, 0, 0); setLayout(master_layout); // Visualizer widget - // The size of 768 pixels seems to offer a good balance of speed, accuracy and trace thickness. - auto display = new VectorView(controls, m_controls->m_effect->getBuffer(), 768, this); + auto display = new VectorView(controls, m_controls->m_effect->getBuffer(), this); master_layout->addWidget(display); - // Config area located inside visualizer - auto internal_layout = new QVBoxLayout(display); - auto config_layout = new QHBoxLayout(); - auto switch_layout = new QVBoxLayout(); - internal_layout->addStretch(); - internal_layout->addLayout(config_layout); - config_layout->addLayout(switch_layout); - - // High-quality switch - auto highQualityButton = new LedCheckBox(tr("HQ"), this); - highQualityButton->setToolTip(tr("Double the resolution and simulate continuous analog-like trace.")); - highQualityButton->setCheckable(true); - highQualityButton->setMinimumSize(70, 12); - highQualityButton->setModel(&controls->m_highQualityModel); - switch_layout->addWidget(highQualityButton); + auto controlLayout = new QHBoxLayout(); + master_layout->addLayout(controlLayout); // Log. scale switch auto logarithmicButton = new LedCheckBox(tr("Log. scale"), this); logarithmicButton->setToolTip(tr("Display amplitude on logarithmic scale to better see small values.")); logarithmicButton->setCheckable(true); - logarithmicButton->setMinimumSize(70, 12); logarithmicButton->setModel(&controls->m_logarithmicModel); - switch_layout->addWidget(logarithmicButton); + controlLayout->addWidget(logarithmicButton); - config_layout->addStretch(); + controlLayout->addStretch(); - // Persistence knob - auto persistenceKnob = new Knob(KnobType::Small17, this); - persistenceKnob->setModel(&controls->m_persistenceModel); - persistenceKnob->setLabel(tr("Persist.")); - persistenceKnob->setToolTip(tr("Trace persistence: higher amount means the trace will stay bright for longer time.")); - persistenceKnob->setHintText(tr("Trace persistence"), ""); - config_layout->addWidget(persistenceKnob); + // Switch between lines mode and point mode + auto linesMode = new LedCheckBox(tr("Lines"), this); + linesMode->setToolTip(tr("Render with lines.")); + linesMode->setCheckable(true); + linesMode->setModel(&controls->m_linesModeModel); + controlLayout->addWidget(linesMode); } @@ -94,5 +78,4 @@ QSize VecControlsDialog::sizeHint() const return QSize(275, 300); } - } // namespace lmms::gui \ No newline at end of file diff --git a/plugins/Vectorscope/VectorView.cpp b/plugins/Vectorscope/VectorView.cpp index 2077d12cd..e10d6845e 100644 --- a/plugins/Vectorscope/VectorView.cpp +++ b/plugins/Vectorscope/VectorView.cpp @@ -1,6 +1,7 @@ /* VectorView.cpp - implementation of VectorView class. * * Copyright (c) 2019 Martin Pavelek + * Copyright (c) 2025- Michael Gregorius * * This file is part of LMMS - https://lmms.io * This program is free software; you can redistribute it and/or @@ -25,11 +26,13 @@ #include #include #include + #include #include #include "ColorChooser.h" #include "GuiApplication.h" +#include "FontHelper.h" #include "MainWindow.h" #include "VecControls.h" @@ -37,32 +40,24 @@ namespace lmms::gui { -VectorView::VectorView(VecControls *controls, LocklessRingBuffer *inputBuffer, unsigned short displaySize, QWidget *parent) : +VectorView::VectorView(VecControls* controls, LocklessRingBuffer* inputBuffer, QWidget* parent) : QWidget(parent), m_controls(controls), m_inputBuffer(inputBuffer), m_bufferReader(*inputBuffer), - m_displaySize(displaySize), m_zoom(1.f), - m_persistTimestamp(0), - m_zoomTimestamp(0), - m_oldHQ(m_controls->m_highQualityModel.value()), - m_oldX(m_displaySize / 2), - m_oldY(m_displaySize / 2) + m_zoomTimestamp(0) { setMinimumSize(200, 200); setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); connect(getGUI()->mainWindow(), SIGNAL(periodicUpdate()), this, SLOT(periodicUpdate())); - m_displayBuffer.resize(sizeof qRgb(0,0,0) * m_displaySize * m_displaySize, 0); - #ifdef VEC_DEBUG m_executionAvg = 0; #endif } - // Compose and draw all the content; called by Qt. void VectorView::paintEvent(QPaintEvent *event) { @@ -70,229 +65,153 @@ void VectorView::paintEvent(QPaintEvent *event) unsigned int drawTime = std::chrono::high_resolution_clock::now().time_since_epoch().count(); #endif - // All drawing done in this method, local variables are sufficient for the boundary - const int displayTop = 2; - const int displayBottom = height() - 2; - const int displayLeft = 2; - const int displayRight = width() - 2; - const int displayWidth = displayRight - displayLeft; - const int displayHeight = displayBottom - displayTop; + const bool logScale = m_controls->getLogarithmicModel().value(); + const bool linesMode = m_controls->getLinesModel().value(); - const float centerX = displayLeft + (displayWidth / 2.f); - const float centerY = displayTop + (displayWidth / 2.f); - - const int margin = 4; - const int gridCorner = 30; - - // Setup QPainter and font sizes QPainter painter(this); painter.setRenderHint(QPainter::Antialiasing, true); - QFont normalFont, boldFont; - boldFont.setPixelSize(26); - boldFont.setBold(true); - const int labelWidth = 26; - const int labelHeight = 26; + // Paint background + painter.fillRect(rect(), Qt::black); - bool hq = m_controls->m_highQualityModel.value(); + const qreal widthF = qreal(width()); + const qreal heightF = qreal(height()); - // Clear display buffer if quality setting was changed - if (hq != m_oldHQ) - { - m_oldHQ = hq; - for (std::size_t i = 0; i < m_displayBuffer.size(); i++) - { - m_displayBuffer.data()[i] = 0; - } - } + const auto minOfWidthAndHeight = std::min(widthF, heightF); + // If we would divide by 4 then the circle would go to the boundaries + // of the widget. We increase the value at bit more to get some margin. + const auto scaleValue = minOfWidthAndHeight / 4.1; - // Dim stored image based on persistence setting and elapsed time. - // Update period is limited to 50 ms (20 FPS) for non-HQ mode and 10 ms (100 FPS) for HQ mode. - const unsigned int currentTimestamp = std::chrono::duration_cast - ( - std::chrono::high_resolution_clock::now().time_since_epoch() - ).count(); - const unsigned int elapsed = currentTimestamp - m_persistTimestamp; - const unsigned int threshold = hq ? 10 : 50; - if (elapsed > threshold) - { - m_persistTimestamp = currentTimestamp; - // Non-HQ mode uses half the resolution → use limited buffer space. - const std::size_t useableBuffer = hq ? m_displayBuffer.size() : m_displayBuffer.size() / 4; - // The knob value is interpreted on log. scale, otherwise the effect would ramp up too slowly. - // Persistence value specifies fraction of light intensity that remains after 10 ms. - // → Compensate it based on elapsed time (exponential decay). - const float persist = log10(1 + 9 * m_controls->m_persistenceModel.value()); - const float persistPerFrame = pow(persist, elapsed / 10.f); - // Note that for simplicity and performance reasons, this implementation only dims all stored - // values by a given factor. A true simulation would also do the inverse of desaturation that - // occurs in high-intensity traces in HQ mode. - for (std::size_t i = 0; i < useableBuffer; i++) - { - m_displayBuffer.data()[i] *= persistPerFrame; - } - } + // Compute several transforms that are used to paint various elements + + // This transform moves the origin/center to the middle of the widget width and to the correct height + QTransform centerTransform; + centerTransform.translate(widthF / 2., minOfWidthAndHeight / 2.); + + // This transform is used to center and scale the painting of data and of the grid and labels + QTransform gridAndLabelTransform(centerTransform); + // Invert the Y axis while we are at it so that we can paint in a "normal" coordinate system + gridAndLabelTransform.scale(scaleValue, -scaleValue); + + // This transform is used to paint the traces. It takes the zoom factor as an "extra" scale into account as well. + QTransform tracePaintingTransform(gridAndLabelTransform); + tracePaintingTransform.scale(m_zoom, m_zoom); + + const auto traceWidth = 2. / (scaleValue * m_zoom); + + // This will add colors so that line intersections produce lighter colors/intensities + painter.setCompositionMode(QPainter::CompositionMode_Plus); + painter.setTransform(tracePaintingTransform); // Get new samples from the lockless input FIFO buffer - auto inBuffer = m_bufferReader.read_max(m_inputBuffer->capacity()); - std::size_t frameCount = inBuffer.size(); + const auto inBuffer = m_bufferReader.read_max(m_inputBuffer->capacity()); + const std::size_t frameCount = inBuffer.size(); - // Draw new points on top - - const bool logScale = m_controls->m_logarithmicModel.value(); - const unsigned short activeSize = hq ? m_displaySize : m_displaySize / 2; - - // Helper lambda functions for better readability - // Make sure pixel stays within display bounds: - auto saturate = [=](short pixelPos) {return qBound((short)0, pixelPos, (short)(activeSize - 1));}; - // Take existing pixel and brigthen it. Very bright light should reduce saturation and become - // white. This effect is easily approximated by capping elementary colors to 255 individually. - auto updatePixel = [&](unsigned short x, unsigned short y, QColor addedColor) + for (std::size_t frame = 0; frame < frameCount; ++frame) { - QColor currentColor = ((QRgb*)m_displayBuffer.data())[x + y * activeSize]; - currentColor.setRed(std::min(currentColor.red() + addedColor.red(), 255)); - currentColor.setGreen(std::min(currentColor.green() + addedColor.green(), 255)); - currentColor.setBlue(std::min(currentColor.blue() + addedColor.blue(), 255)); - ((QRgb*)m_displayBuffer.data())[x + y * activeSize] = currentColor.rgb(); - }; + auto sampleFrame = inBuffer[frame]; - if (hq) - { - // High quality mode: check distance between points and draw a line. - // The longer the line is, the dimmer, simulating real electron trace on luminescent screen. - for (std::size_t frame = 0; frame < frameCount; frame++) + if (logScale) { - float left = 0.0f; - float right = 0.0f; - float inLeft = inBuffer[frame][0] * m_zoom; - float inRight = inBuffer[frame][1] * m_zoom; - // Scale left and right channel from (-1.0, 1.0) to display range - if (logScale) + const float distance = std::sqrt(sampleFrame.sumOfSquaredAmplitudes()); + const float distanceLog = std::log10(1 + 9 * std::abs(distance)); + + if (distance != 0) { - // To better preserve shapes, the log scale is applied to the distance from origin, - // not the individual channels. - const float distance = sqrt(inLeft * inLeft + inRight * inRight); - const float distanceLog = log10(1 + 9 * std::abs(distance)); - const float angleCos = inLeft / distance; - const float angleSin = inRight / distance; - left = distanceLog * angleCos * (activeSize - 1) / 4; - right = distanceLog * angleSin * (activeSize - 1) / 4; + const float factor = distanceLog / distance; + sampleFrame *= factor; } - else - { - left = inLeft * (activeSize - 1) / 4; - right = inRight * (activeSize - 1) / 4; - } - - // Rotate display coordinates 45 degrees, flip Y axis and make sure the result stays within bounds - int x = saturate(right - left + activeSize / 2.f); - int y = saturate(activeSize - (right + left + activeSize / 2.f)); - - // Estimate number of points needed to fill space between the old and new pixel. Cap at 100. - unsigned char points = std::min((int)sqrt((m_oldX - x) * (m_oldX - x) + (m_oldY - y) * (m_oldY - y)), 100); - - // Large distance = dim trace. The curve for darker() is choosen so that: - // - no movement (0 points) actually _increases_ brightness slightly, - // - one point between samples = returns exactly the specified color, - // - one to 99 points between samples = follows a sharp "1/x" decaying curve, - // - 100 points between samples = returns approximately 5 % brightness. - // Everything else is discarded (by the 100 point cap) because there is not much to see anyway. - QColor addedColor = m_controls->m_colorFG.darker(75 + 20 * points).rgb(); - - // Draw the new pixel: the beam sweeps across area that may have been excited before - // → add new value to existing pixel state. - updatePixel(x, y, addedColor); - - // Draw interpolated points between the old pixel and the new one - int newX = right - left + activeSize / 2.f; - int newY = activeSize - (right + left + activeSize / 2.f); - for (unsigned char i = 1; i < points; i++) - { - x = saturate(((points - i) * m_oldX + i * newX) / points); - y = saturate(((points - i) * m_oldY + i * newY) / points); - updatePixel(x, y, addedColor); - } - m_oldX = newX; - m_oldY = newY; } - } - else - { - // To improve performance, non-HQ mode uses smaller display size and only - // one full-color pixel per sample. - for (std::size_t frame = 0; frame < frameCount; frame++) + + // Perform a mid/side split which will potentially boost signals + // + // Represent the side by the x coordinate and the mid by the y coordinate. + // + // A mono signal which just contains a mid signal will just show as a line + // along the y axis because it carries the same information in the left and right channel. + // So we can say: left == right. So lets replace "right" with "left" in the formula below: + // (left - left, -(left + left)) = (0, -2*left). + // If two signals are completely out of phase the show as a line along the x axis. That's because + // each signal is the opposite of the other one, e.g. right = -left. Let's replace again: + // (left - (-left), -(left - left)) = (2*left, 0). + // + const auto mid = sampleFrame.left() + sampleFrame.right(); + const auto side = sampleFrame.left() - sampleFrame.right(); + + // We negate the mid value of the coordinate so that it tilts correctly if we pan hard left and hard right + QPointF currentPoint(side, -mid); + + const auto darkenedColor(m_colorTrace.darker(100 + frame)); + painter.setPen(QPen(darkenedColor, traceWidth)); + + // Only draw a line if we can draw a line, i.e. if the point really changes. + // Otherwise just produce a point. + // Without this check Qt will draw horizontal lines when silence is processed. + if (linesMode && m_lastPoint != currentPoint) { - float left = 0.0f; - float right = 0.0f; - float inLeft = inBuffer[frame][0] * m_zoom; - float inRight = inBuffer[frame][1] * m_zoom; - if (logScale) { - const float distance = sqrt(inLeft * inLeft + inRight * inRight); - const float distanceLog = log10(1 + 9 * std::abs(distance)); - const float angleCos = inLeft / distance; - const float angleSin = inRight / distance; - left = distanceLog * angleCos * (activeSize - 1) / 4; - right = distanceLog * angleSin * (activeSize - 1) / 4; - } else { - left = inLeft * (activeSize - 1) / 4; - right = inRight * (activeSize - 1) / 4; - } - int x = saturate(right - left + activeSize / 2.f); - int y = saturate(activeSize - (right + left + activeSize / 2.f)); - ((QRgb*)m_displayBuffer.data())[x + y * activeSize] = m_controls->m_colorFG.rgb(); + painter.drawLine(QLineF(m_lastPoint, currentPoint)); } + else + { + painter.drawPoint(currentPoint); + } + + m_lastPoint = currentPoint; } - // Draw background - painter.fillRect(displayLeft, displayTop, displayWidth, displayHeight, QColor(0,0,0)); + // Draw grid and labels overlay + painter.setCompositionMode(QPainter::CompositionMode_SourceOver); + painter.setTransform(gridAndLabelTransform); - // Draw the final image - QImage temp = QImage(m_displayBuffer.data(), - activeSize, - activeSize, - QImage::Format_RGB32); - temp.setDevicePixelRatio(devicePixelRatio()); - painter.drawImage(displayLeft, displayTop, - temp.scaledToWidth(displayWidth * devicePixelRatio(), - Qt::SmoothTransformation)); + const QPointF origin(0, 0); + painter.setPen(QPen(m_colorGrid, 2.5 / scaleValue, Qt::SolidLine, Qt::RoundCap, Qt::BevelJoin)); + painter.drawEllipse(origin, 2.f, 2.f); - // Draw the grid and labels - painter.setPen(QPen(m_controls->m_colorGrid, 1.5, Qt::SolidLine, Qt::RoundCap, Qt::BevelJoin)); - painter.drawEllipse(QPointF(centerX, centerY), displayWidth / 2.f, displayWidth / 2.f); - painter.setPen(QPen(m_controls->m_colorGrid, 1.5, Qt::DotLine, Qt::RoundCap, Qt::BevelJoin)); - painter.drawLine(QPointF(centerX, centerY), QPointF(displayLeft + gridCorner, displayTop + gridCorner)); - painter.drawLine(QPointF(centerX, centerY), QPointF(displayRight - gridCorner, displayTop + gridCorner)); + const qreal root = std::sqrt(qreal(2.1)); + painter.setPen(QPen(m_colorGrid, 2.5 / scaleValue, Qt::DotLine, Qt::RoundCap, Qt::BevelJoin)); + painter.drawLine(origin, QPointF(-root, root)); + painter.drawLine(origin, QPointF(root, root)); - painter.setPen(QPen(m_controls->m_colorLabels, 1, Qt::SolidLine, Qt::RoundCap, Qt::BevelJoin)); + painter.resetTransform(); + + // Draw L/R text + const auto lText = QString("L"); + const auto rText = QString("R"); + + QFont boldFont = adjustedToPixelSize(painter.font(), 26); + boldFont.setBold(true); + + QFontMetrics fm(boldFont); + const auto boundingRectL = fm.boundingRect(lText); + const auto boundingRectR = fm.boundingRect(rText); + + painter.setPen(QPen(m_colorLabels, 1, Qt::SolidLine, Qt::RoundCap, Qt::BevelJoin)); painter.setFont(boldFont); - painter.drawText(displayLeft + margin, displayTop, - labelWidth, labelHeight, Qt::AlignLeft | Qt::AlignTop | Qt::TextDontClip, - QString("L")); - painter.drawText(displayRight - margin - labelWidth, displayTop, - labelWidth, labelHeight, Qt::AlignRight| Qt::AlignTop | Qt::TextDontClip, - QString("R")); - // Draw the outline - painter.setPen(QPen(m_controls->m_colorOutline, 2, Qt::SolidLine, Qt::RoundCap, Qt::BevelJoin)); - painter.drawRoundedRect(1, 1, width() - 2, height() - 2, 2.f, 2.f); + QTransform transformL(centerTransform); + transformL.rotate(-45.); + transformL.translate(-boundingRectL.width() / 2, -(minOfWidthAndHeight / 2) - 10); + painter.setTransform(transformL); + painter.drawText(0, 0, lText); - // Draw zoom info if changed within last second (re-using timestamp acquired for dimming) - if (currentTimestamp - m_zoomTimestamp < 1000) - { - painter.setPen(QPen(m_controls->m_colorLabels, 1, Qt::SolidLine, Qt::RoundCap, Qt::BevelJoin)); - painter.setFont(normalFont); - painter.drawText(displayWidth / 2 - 50, displayBottom - 20, 100, 16, Qt::AlignCenter, - QString("Zoom: ").append(std::to_string((int)round(m_zoom * 100)).c_str()).append(" %")); - } + QTransform transformR(centerTransform); + transformR.rotate(45.); + transformR.translate(-boundingRectR.width() / 2, -(minOfWidthAndHeight / 2) - 10); + painter.setTransform(transformR); + painter.drawText(0, 0, rText); - // Optionally measure drawing performance + drawZoomInfo(); + + // Optionally measure drawing performance #ifdef VEC_DEBUG + QPainter debugPainter(this); + drawTime = std::chrono::high_resolution_clock::now().time_since_epoch().count() - drawTime; m_executionAvg = 0.95f * m_executionAvg + 0.05f * drawTime / 1000000.f; - painter.setPen(QPen(m_controls->m_colorLabels, 1, Qt::SolidLine, Qt::RoundCap, Qt::BevelJoin)); - painter.setFont(normalFont); - painter.drawText(displayWidth / 2 - 50, displayBottom - 16, 100, 16, Qt::AlignLeft, - QString("Exec avg.: ").append(std::to_string(m_executionAvg).substr(0, 5).c_str()).append(" ms")); + + QString debugText = tr("Exec avg.: %1 ms").arg(static_cast(round(m_executionAvg))); + debugPainter.setPen(QPen(m_controls->m_colorLabels, 1, Qt::SolidLine, Qt::RoundCap, Qt::BevelJoin)); + debugPainter.drawText(0, height(), debugText); #endif } @@ -300,8 +219,10 @@ void VectorView::paintEvent(QPaintEvent *event) // Periodically trigger repaint and check if the widget is visible void VectorView::periodicUpdate() { - m_visible = isVisible(); - if (m_visible) {update();} + if (isVisible()) + { + update(); + } } @@ -309,10 +230,10 @@ void VectorView::periodicUpdate() // More of an Easter egg, to avoid cluttering the interface with non-essential functionality. void VectorView::mouseDoubleClickEvent(QMouseEvent *event) { - auto colorDialog = new ColorChooser(m_controls->m_colorFG, this); + auto colorDialog = new ColorChooser(m_colorTrace, this); if (colorDialog->exec()) { - m_controls->m_colorFG = colorDialog->currentColor(); + m_colorTrace = colorDialog->currentColor(); } } @@ -333,5 +254,29 @@ void VectorView::wheelEvent(QWheelEvent *event) } +void VectorView::drawZoomInfo() +{ + const unsigned int currentTimestamp = std::chrono::duration_cast + ( + std::chrono::high_resolution_clock::now().time_since_epoch() + ).count(); -} // namespace lmms::gui \ No newline at end of file + if (currentTimestamp - m_zoomTimestamp < 1000) + { + QPainter painter(this); + + const auto zoomValue = static_cast(std::round(m_zoom * 100.)); + const auto text = tr("Zoom: %1 %").arg(zoomValue); + + // Measure text + const auto fm = painter.fontMetrics(); + const auto boundingRect = fm.boundingRect(text); + const auto descent = fm.descent(); + + painter.setPen(QPen(m_colorLabels, 1, Qt::SolidLine, Qt::RoundCap, Qt::BevelJoin)); + painter.drawText((width() - boundingRect.width()) / 2, height() - descent - 2, text); + } +} + + +} // namespace lmms::gui diff --git a/plugins/Vectorscope/VectorView.h b/plugins/Vectorscope/VectorView.h index c828fd139..88604cbe0 100644 --- a/plugins/Vectorscope/VectorView.h +++ b/plugins/Vectorscope/VectorView.h @@ -1,6 +1,7 @@ /* VectorView.h - declaration of VectorView class. * * Copyright (c) 2019 Martin Pavelek + * Copyright (c) 2025- Michael Gregorius * * This file is part of LMMS - https://lmms.io * @@ -44,11 +45,15 @@ class VectorView : public QWidget { Q_OBJECT public: - explicit VectorView(VecControls *controls, LocklessRingBuffer *inputBuffer, unsigned short displaySize, QWidget *parent = 0); + VectorView(VecControls* controls, LocklessRingBuffer* inputBuffer, QWidget* parent = nullptr); ~VectorView() override = default; QSize sizeHint() const override {return QSize(300, 300);} + Q_PROPERTY(QColor colorTrace MEMBER m_colorTrace) + Q_PROPERTY(QColor colorGrid MEMBER m_colorGrid) + Q_PROPERTY(QColor colorLabels MEMBER m_colorLabels) + protected: void paintEvent(QPaintEvent *event) override; void mouseDoubleClickEvent(QMouseEvent *event) override; @@ -57,25 +62,25 @@ protected: private slots: void periodicUpdate(); +private: + void drawZoomInfo(); + private: VecControls *m_controls; LocklessRingBuffer *m_inputBuffer; LocklessRingBufferReader m_bufferReader; - std::vector m_displayBuffer; - const unsigned short m_displaySize; - - bool m_visible; - float m_zoom; // State variables for comparison with previous repaint - unsigned int m_persistTimestamp; unsigned int m_zoomTimestamp; - bool m_oldHQ; - int m_oldX; - int m_oldY; + + QPointF m_lastPoint = QPoint(); + + QColor m_colorTrace = QColor(60, 255, 130, 255); // ~LMMS green + QColor m_colorGrid = QColor(76, 80, 84, 128); // ~60 % gray (slightly cold / blue), 50 % transparent + QColor m_colorLabels = QColor(76, 80, 84, 255); // ~60 % gray (slightly cold / blue) #ifdef VEC_DEBUG float m_executionAvg = 0; diff --git a/plugins/Vectorscope/Vectorscope.cpp b/plugins/Vectorscope/Vectorscope.cpp index c94eb5d28..106116c84 100644 --- a/plugins/Vectorscope/Vectorscope.cpp +++ b/plugins/Vectorscope/Vectorscope.cpp @@ -58,18 +58,17 @@ Vectorscope::Vectorscope(Model *parent, const Plugin::Descriptor::SubPluginFeatu // Take audio data and store them for processing and display in the GUI thread. -bool Vectorscope::processAudioBuffer(SampleFrame* buffer, const fpp_t frame_count) +Effect::ProcessStatus Vectorscope::processImpl(SampleFrame* buf, const fpp_t frames) { - if (!isEnabled() || !isRunning ()) {return false;} - // Skip processing if the controls dialog isn't visible, it would only waste CPU cycles. if (m_controls.isViewVisible()) { // To avoid processing spikes on audio thread, data are stored in // a lockless ringbuffer and processed in a separate thread. - m_inputBuffer.write(buffer, frame_count); + m_inputBuffer.write(buf, frames); } - return isRunning(); + + return ProcessStatus::Continue; } diff --git a/plugins/Vectorscope/Vectorscope.h b/plugins/Vectorscope/Vectorscope.h index 66d20e639..528b23690 100644 --- a/plugins/Vectorscope/Vectorscope.h +++ b/plugins/Vectorscope/Vectorscope.h @@ -39,7 +39,8 @@ public: Vectorscope(Model *parent, const Descriptor::SubPluginFeatures::Key *key); ~Vectorscope() override = default; - bool processAudioBuffer(SampleFrame* buffer, const fpp_t frame_count) override; + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; + EffectControls *controls() override {return &m_controls;} LocklessRingBuffer *getBuffer() {return &m_inputBuffer;} diff --git a/plugins/Vestige/Vestige.cpp b/plugins/Vestige/Vestige.cpp index ffed82af7..05716008e 100644 --- a/plugins/Vestige/Vestige.cpp +++ b/plugins/Vestige/Vestige.cpp @@ -46,7 +46,7 @@ #include "Engine.h" #include "FileDialog.h" #include "GuiApplication.h" -#include "gui_templates.h" +#include "FontHelper.h" #include "InstrumentPlayHandle.h" #include "InstrumentTrack.h" #include "LocaleHelper.h" @@ -226,7 +226,7 @@ void VestigeInstrument::loadSettings( const QDomElement & _this ) QStringList s_dumpValues; for( int i = 0; i < paramCount; i++ ) { - sprintf(paramStr.data(), "param%d", i); + std::snprintf(paramStr.data(), paramStr.size(), "param%d", i); s_dumpValues = dump[paramStr.data()].split(":"); knobFModel[i] = new FloatModel( 0.0f, 0.0f, 1.0f, 0.01f, this, QString::number(i) ); @@ -290,7 +290,7 @@ void VestigeInstrument::saveSettings( QDomDocument & _doc, QDomElement & _this ) for( int i = 0; i < paramCount; i++ ) { if (knobFModel[i]->isAutomated() || knobFModel[i]->controllerConnection()) { - sprintf(paramStr.data(), "param%d", i); + std::snprintf(paramStr.data(), paramStr.size(), "param%d", i); knobFModel[i]->saveSettings(_doc, _this, paramStr.data()); } @@ -583,12 +583,10 @@ VestigeInstrumentView::VestigeInstrumentView( Instrument * _instrument, m_selPresetButton->setMenu(menu); - constexpr int buttonFontSize = 12; - m_toggleGUIButton = new QPushButton( tr( "Show/hide GUI" ), this ); m_toggleGUIButton->setGeometry( 20, 130, 200, 24 ); m_toggleGUIButton->setIcon( embed::getIconPixmap( "zoom" ) ); - m_toggleGUIButton->setFont(adjustedToPixelSize(m_toggleGUIButton->font(), buttonFontSize)); + m_toggleGUIButton->setFont(adjustedToPixelSize(m_toggleGUIButton->font(), LARGE_FONT_SIZE)); connect( m_toggleGUIButton, SIGNAL( clicked() ), this, SLOT( toggleGUI() ) ); @@ -597,7 +595,7 @@ VestigeInstrumentView::VestigeInstrumentView( Instrument * _instrument, this); note_off_all_btn->setGeometry( 20, 160, 200, 24 ); note_off_all_btn->setIcon( embed::getIconPixmap( "stop" ) ); - note_off_all_btn->setFont(adjustedToPixelSize(note_off_all_btn->font(), buttonFontSize)); + note_off_all_btn->setFont(adjustedToPixelSize(note_off_all_btn->font(), LARGE_FONT_SIZE)); connect( note_off_all_btn, SIGNAL( clicked() ), this, SLOT( noteOffAll() ) ); @@ -882,7 +880,7 @@ void VestigeInstrumentView::paintEvent( QPaintEvent * ) tr( "No VST plugin loaded" ); QFont f = p.font(); f.setBold( true ); - p.setFont(adjustedToPixelSize(f, 10)); + p.setFont(adjustedToPixelSize(f, DEFAULT_FONT_SIZE)); p.setPen( QColor( 255, 255, 255 ) ); p.drawText( 10, 100, plugin_name ); @@ -894,7 +892,7 @@ void VestigeInstrumentView::paintEvent( QPaintEvent * ) { p.setPen( QColor( 0, 0, 0 ) ); f.setBold( false ); - p.setFont(adjustedToPixelSize(f, 8)); + p.setFont(adjustedToPixelSize(f, SMALL_FONT_SIZE)); p.drawText( 10, 114, tr( "by " ) + m_vi->m_plugin->vendorString() ); p.setPen( QColor( 255, 255, 255 ) ); @@ -989,7 +987,7 @@ ManageVestigeInstrumentView::ManageVestigeInstrumentView( Instrument * _instrume for( int i = 0; i < m_vi->paramCount; i++ ) { - sprintf(paramStr.data(), "param%d", i); + std::snprintf(paramStr.data(), paramStr.size(), "param%d", i); s_dumpValues = dump[paramStr.data()].split(":"); vstKnobs[ i ] = new CustomTextKnob( KnobType::Bright26, this, s_dumpValues.at( 1 ) ); @@ -998,7 +996,7 @@ ManageVestigeInstrumentView::ManageVestigeInstrumentView( Instrument * _instrume if( !hasKnobModel ) { - sprintf(paramStr.data(), "%d", i); + std::snprintf(paramStr.data(), paramStr.size(), "%d", i); m_vi->knobFModel[i] = new FloatModel(LocaleHelper::toFloat(s_dumpValues.at(2)), 0.0f, 1.0f, 0.01f, castModel(), paramStr.data()); } @@ -1061,8 +1059,8 @@ void ManageVestigeInstrumentView::syncPlugin( void ) // those auto-setted values are not jurnaled, tracked for undo / redo if( !( m_vi->knobFModel[ i ]->isAutomated() || m_vi->knobFModel[ i ]->controllerConnection() ) ) { - sprintf(paramStr.data(), "param%d", i); - s_dumpValues = dump[paramStr.data()].split(":"); + std::snprintf(paramStr.data(), paramStr.size(), "param%d", i); + s_dumpValues = dump[paramStr.data()].split(":"); float f_value = LocaleHelper::toFloat(s_dumpValues.at(2)); m_vi->knobFModel[ i ]->setAutomatedValue( f_value ); m_vi->knobFModel[ i ]->setInitValue( f_value ); diff --git a/plugins/Vibed/NineButtonSelector.cpp b/plugins/Vibed/NineButtonSelector.cpp index 3a68e5ee6..38c890d80 100644 --- a/plugins/Vibed/NineButtonSelector.cpp +++ b/plugins/Vibed/NineButtonSelector.cpp @@ -47,7 +47,7 @@ NineButtonSelector::NineButtonSelector(std::array onOffIcons, int d m_buttons[i]->setActiveGraphic(onOffIcons[i * 2]); m_buttons[i]->setInactiveGraphic(onOffIcons[(i * 2) + 1]); m_buttons[i]->setChecked(false); - connect(m_buttons[i].get(), &PixmapButton::clicked, this, [=](){ this->buttonClicked(i); }); + connect(m_buttons[i].get(), &PixmapButton::clicked, this, [=, this](){ buttonClicked(i); }); } m_lastBtn = m_buttons[defaultButton].get(); diff --git a/plugins/Vibed/VibratingString.cpp b/plugins/Vibed/VibratingString.cpp index e4bb760e2..5a09a4549 100644 --- a/plugins/Vibed/VibratingString.cpp +++ b/plugins/Vibed/VibratingString.cpp @@ -40,7 +40,7 @@ VibratingString::VibratingString(float pitch, float pick, float pickup, const fl m_oversample{2 * oversample / static_cast(sampleRate / Engine::audioEngine()->baseSampleRate())}, m_randomize{randomize}, m_stringLoss{1.0f - stringLoss}, - m_choice{static_cast(m_oversample * static_cast(std::rand()) / RAND_MAX)}, + m_choice{static_cast(m_oversample * static_cast(std::rand()) / static_cast(RAND_MAX))}, m_state{0.1f}, m_outsamp{std::make_unique(m_oversample)} { @@ -78,7 +78,7 @@ std::unique_ptr VibratingString::initDelayLine(int l dl->data = std::make_unique(len); for (int i = 0; i < dl->length; ++i) { - float r = static_cast(std::rand()) / RAND_MAX; + float r = static_cast(std::rand()) / static_cast(RAND_MAX); float offset = (m_randomize / 2.0f - m_randomize) * r; dl->data[i] = offset; } diff --git a/plugins/Vibed/VibratingString.h b/plugins/Vibed/VibratingString.h index 0ad5a6e6e..d1691415b 100644 --- a/plugins/Vibed/VibratingString.h +++ b/plugins/Vibed/VibratingString.h @@ -107,13 +107,13 @@ private: { for (int i = 0; i < pick; ++i) { - float r = static_cast(std::rand()) / RAND_MAX; + float r = static_cast(std::rand()) / static_cast(RAND_MAX); float offset = (m_randomize / 2.0f - m_randomize) * r; dl->data[i] = scale * values[dl->length - i - 1] + offset; } for (int i = pick; i < dl->length; ++i) { - float r = static_cast(std::rand()) / RAND_MAX; + float r = static_cast(std::rand()) / static_cast(RAND_MAX); float offset = (m_randomize / 2.0f - m_randomize) * r; dl->data[i] = scale * values[i - pick] + offset; } @@ -124,7 +124,7 @@ private: { for (int i = pick; i < dl->length; ++i) { - float r = static_cast(std::rand()) / RAND_MAX; + float r = static_cast(std::rand()) / static_cast(RAND_MAX); float offset = (m_randomize / 2.0f - m_randomize) * r; dl->data[i] = scale * values[i - pick] + offset; } @@ -133,7 +133,7 @@ private: { for (int i = 0; i < len; ++i) { - float r = static_cast(std::rand()) / RAND_MAX; + float r = static_cast(std::rand()) / static_cast(RAND_MAX); float offset = (m_randomize / 2.0f - m_randomize) * r; dl->data[i+pick] = scale * values[i] + offset; } diff --git a/plugins/VstBase/RemoteVstPlugin64.cmake b/plugins/VstBase/RemoteVstPlugin64.cmake index 2f4a745ac..a36d1777f 100644 --- a/plugins/VstBase/RemoteVstPlugin64.cmake +++ b/plugins/VstBase/RemoteVstPlugin64.cmake @@ -1,12 +1,15 @@ IF(LMMS_BUILD_WIN64) ADD_SUBDIRECTORY(RemoteVstPlugin) ELSEIF(LMMS_BUILD_LINUX) + if(LMMS_HOST_X86_64) + set(CXX_FLAGS -m64) + endif() ExternalProject_Add(RemoteVstPlugin64 "${EXTERNALPROJECT_ARGS}" CMAKE_ARGS "${EXTERNALPROJECT_CMAKE_ARGS}" "-DCMAKE_CXX_COMPILER=${WINEGCC}" - "-DCMAKE_CXX_FLAGS=-m64" + "-DCMAKE_CXX_FLAGS=${CXX_FLAGS}" ) INSTALL(PROGRAMS "${CMAKE_CURRENT_BINARY_DIR}/../RemoteVstPlugin64" "${CMAKE_CURRENT_BINARY_DIR}/../RemoteVstPlugin64.exe.so" DESTINATION "${PLUGIN_DIR}") ENDIF() diff --git a/plugins/VstEffect/VstEffect.cpp b/plugins/VstEffect/VstEffect.cpp index ecb8240c8..53de4f4cc 100644 --- a/plugins/VstEffect/VstEffect.cpp +++ b/plugins/VstEffect/VstEffect.cpp @@ -65,63 +65,47 @@ VstEffect::VstEffect( Model * _parent, m_key( *_key ), m_vstControls( this ) { + bool loaded = false; if( !m_key.attributes["file"].isEmpty() ) { - openPlugin( m_key.attributes["file"] ); + loaded = openPlugin(m_key.attributes["file"]); } setDisplayName( m_key.attributes["file"].section( ".dll", 0, 0 ).isEmpty() ? m_key.name : m_key.attributes["file"].section( ".dll", 0, 0 ) ); + + setDontRun(!loaded); } -bool VstEffect::processAudioBuffer( SampleFrame* _buf, const fpp_t _frames ) +Effect::ProcessStatus VstEffect::processImpl(SampleFrame* buf, const fpp_t frames) { - if( !isEnabled() || !isRunning () ) + assert(m_plugin != nullptr); + static thread_local auto tempBuf = std::array(); + + std::memcpy(tempBuf.data(), buf, sizeof(SampleFrame) * frames); + if (m_pluginMutex.tryLock(Engine::getSong()->isExporting() ? -1 : 0)) { - return false; + m_plugin->process(tempBuf.data(), tempBuf.data()); + m_pluginMutex.unlock(); } - if( m_plugin ) + const float w = wetLevel(); + const float d = dryLevel(); + for (fpp_t f = 0; f < frames; ++f) { - const float d = dryLevel(); -#ifdef __GNUC__ - SampleFrame buf[_frames]; -#else - SampleFrame* buf = new SampleFrame[_frames]; -#endif - memcpy( buf, _buf, sizeof( SampleFrame ) * _frames ); - if (m_pluginMutex.tryLock(Engine::getSong()->isExporting() ? -1 : 0)) - { - m_plugin->process( buf, buf ); - m_pluginMutex.unlock(); - } - - double out_sum = 0.0; - const float w = wetLevel(); - for( fpp_t f = 0; f < _frames; ++f ) - { - _buf[f][0] = w*buf[f][0] + d*_buf[f][0]; - _buf[f][1] = w*buf[f][1] + d*_buf[f][1]; - } - for( fpp_t f = 0; f < _frames; ++f ) - { - out_sum += _buf[f][0]*_buf[f][0] + _buf[f][1]*_buf[f][1]; - } -#ifndef __GNUC__ - delete[] buf; -#endif - - checkGate( out_sum / _frames ); + buf[f][0] = w * tempBuf[f][0] + d * buf[f][0]; + buf[f][1] = w * tempBuf[f][1] + d * buf[f][1]; } - return isRunning(); + + return ProcessStatus::ContinueIfNotQuiet; } -void VstEffect::openPlugin( const QString & _plugin ) +bool VstEffect::openPlugin(const QString& plugin) { gui::TextFloat* tf = nullptr; if( gui::getGUI() != nullptr ) @@ -133,18 +117,19 @@ void VstEffect::openPlugin( const QString & _plugin ) } QMutexLocker ml( &m_pluginMutex ); Q_UNUSED( ml ); - m_plugin = QSharedPointer(new VstPlugin( _plugin )); + m_plugin = QSharedPointer(new VstPlugin(plugin)); if( m_plugin->failed() ) { m_plugin.clear(); delete tf; - collectErrorForUI( VstPlugin::tr( "The VST plugin %1 could not be loaded." ).arg( _plugin ) ); - return; + collectErrorForUI(VstPlugin::tr("The VST plugin %1 could not be loaded.").arg(plugin)); + return false; } delete tf; - m_key.attributes["file"] = _plugin; + m_key.attributes["file"] = plugin; + return true; } diff --git a/plugins/VstEffect/VstEffect.h b/plugins/VstEffect/VstEffect.h index c3f6e8091..a8fbd410b 100644 --- a/plugins/VstEffect/VstEffect.h +++ b/plugins/VstEffect/VstEffect.h @@ -45,8 +45,7 @@ public: const Descriptor::SubPluginFeatures::Key * _key ); ~VstEffect() override = default; - bool processAudioBuffer( SampleFrame* _buf, - const fpp_t _frames ) override; + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; EffectControls * controls() override { @@ -55,7 +54,8 @@ public: private: - void openPlugin( const QString & _plugin ); + //! Returns true if plugin was loaded (m_plugin != nullptr) + bool openPlugin(const QString& plugin); void closePlugin(); QSharedPointer m_plugin; diff --git a/plugins/VstEffect/VstEffectControlDialog.cpp b/plugins/VstEffect/VstEffectControlDialog.cpp index 0fb4913a3..a5b67f5f3 100644 --- a/plugins/VstEffect/VstEffectControlDialog.cpp +++ b/plugins/VstEffect/VstEffectControlDialog.cpp @@ -33,7 +33,7 @@ #include "PixmapButton.h" #include "embed.h" -#include "gui_templates.h" +#include "FontHelper.h" #include #include @@ -246,7 +246,7 @@ VstEffectControlDialog::VstEffectControlDialog( VstEffectControls * _ctl ) : tb->addWidget(space1); tbLabel = new QLabel( tr( "Effect by: " ), this ); - tbLabel->setFont(adjustedToPixelSize(f, 7)); + tbLabel->setFont(adjustedToPixelSize(f, SMALL_FONT_SIZE)); tbLabel->setTextFormat(Qt::RichText); tbLabel->setAlignment( Qt::AlignTop | Qt::AlignLeft ); tb->addWidget( tbLabel ); diff --git a/plugins/VstEffect/VstEffectControls.cpp b/plugins/VstEffect/VstEffectControls.cpp index c9eb49234..ef8bd38d0 100644 --- a/plugins/VstEffect/VstEffectControls.cpp +++ b/plugins/VstEffect/VstEffectControls.cpp @@ -87,7 +87,7 @@ void VstEffectControls::loadSettings( const QDomElement & _this ) QStringList s_dumpValues; for( int i = 0; i < paramCount; i++ ) { - sprintf(paramStr.data(), "param%d", i); + std::snprintf(paramStr.data(), paramStr.size(), "param%d", i); s_dumpValues = dump[paramStr.data()].split(":"); knobFModel[i] = new FloatModel( 0.0f, 0.0f, 1.0f, 0.01f, this, QString::number(i) ); @@ -137,7 +137,7 @@ void VstEffectControls::saveSettings( QDomDocument & _doc, QDomElement & _this ) for( int i = 0; i < paramCount; i++ ) { if (knobFModel[i]->isAutomated() || knobFModel[i]->controllerConnection()) { - sprintf(paramStr.data(), "param%d", i); + std::snprintf(paramStr.data(), paramStr.size(), "param%d", i); knobFModel[i]->saveSettings(_doc, _this, paramStr.data()); } } @@ -386,7 +386,7 @@ ManageVSTEffectView::ManageVSTEffectView( VstEffect * _eff, VstEffectControls * for( int i = 0; i < m_vi->paramCount; i++ ) { - sprintf(paramStr.data(), "param%d", i); + std::snprintf(paramStr.data(), paramStr.size(), "param%d", i); s_dumpValues = dump[paramStr.data()].split(":"); vstKnobs[ i ] = new CustomTextKnob( KnobType::Bright26, widget, s_dumpValues.at( 1 ) ); @@ -395,7 +395,7 @@ ManageVSTEffectView::ManageVSTEffectView( VstEffect * _eff, VstEffectControls * if( !hasKnobModel ) { - sprintf(paramStr.data(), "%d", i); + std::snprintf(paramStr.data(), paramStr.size(), "%d", i); m_vi->knobFModel[i] = new FloatModel(LocaleHelper::toFloat(s_dumpValues.at(2)), 0.0f, 1.0f, 0.01f, _eff, paramStr.data()); } @@ -460,7 +460,7 @@ void ManageVSTEffectView::syncPlugin() if( !( m_vi2->knobFModel[ i ]->isAutomated() || m_vi2->knobFModel[ i ]->controllerConnection() ) ) { - sprintf(paramStr.data(), "param%d", i); + std::snprintf(paramStr.data(), paramStr.size(), "param%d", i); s_dumpValues = dump[paramStr.data()].split(":"); float f_value = LocaleHelper::toFloat(s_dumpValues.at(2)); m_vi2->knobFModel[ i ]->setAutomatedValue( f_value ); diff --git a/plugins/Watsyn/Watsyn.cpp b/plugins/Watsyn/Watsyn.cpp index 2749b2daf..272ba5d46 100644 --- a/plugins/Watsyn/Watsyn.cpp +++ b/plugins/Watsyn/Watsyn.cpp @@ -32,7 +32,6 @@ #include "PixmapButton.h" #include "Song.h" #include "lmms_math.h" -#include "interpolation.h" #include "embed.h" #include "plugin_export.h" @@ -122,38 +121,50 @@ void WatsynObject::renderOutput( fpp_t _frames ) ///////////// A-series ///////////////// // A2 - sample_t A2_L = linearInterpolate( m_A2wave[ static_cast( m_lphase[A2_OSC] ) ], - m_A2wave[ static_cast( m_lphase[A2_OSC] + 1 ) % WAVELEN ], - fraction( m_lphase[A2_OSC] ) ) * m_parent->m_lvol[A2_OSC]; - sample_t A2_R = linearInterpolate( m_A2wave[ static_cast( m_rphase[A2_OSC] ) ], - m_A2wave[ static_cast( m_rphase[A2_OSC] + 1 ) % WAVELEN ], - fraction( m_rphase[A2_OSC] ) ) * m_parent->m_rvol[A2_OSC]; + sample_t A2_L = m_parent->m_lvol[A2_OSC] * std::lerp( + m_A2wave[static_cast(m_lphase[A2_OSC])], + m_A2wave[static_cast(m_lphase[A2_OSC] + 1) % WAVELEN], + fraction(m_lphase[A2_OSC]) + ); + sample_t A2_R = m_parent->m_rvol[A2_OSC] * std::lerp( + m_A2wave[static_cast(m_rphase[A2_OSC])], + m_A2wave[static_cast(m_rphase[A2_OSC] + 1) % WAVELEN], + fraction(m_rphase[A2_OSC]) + ); // if phase mod, add to phases if( m_amod == MOD_PM ) { - A1_lphase = fmodf( A1_lphase + A2_L * PMOD_AMT, WAVELEN ); + A1_lphase = std::fmod(A1_lphase + A2_L * PMOD_AMT, WAVELEN); if( A1_lphase < 0 ) A1_lphase += WAVELEN; - A1_rphase = fmodf( A1_rphase + A2_R * PMOD_AMT, WAVELEN ); + A1_rphase = std::fmod(A1_rphase + A2_R * PMOD_AMT, WAVELEN); if( A1_rphase < 0 ) A1_rphase += WAVELEN; } // A1 - sample_t A1_L = linearInterpolate( m_A1wave[ static_cast( A1_lphase ) ], - m_A1wave[ static_cast( A1_lphase + 1 ) % WAVELEN ], - fraction( A1_lphase ) ) * m_parent->m_lvol[A1_OSC]; - sample_t A1_R = linearInterpolate( m_A1wave[ static_cast( A1_rphase ) ], - m_A1wave[ static_cast( A1_rphase + 1 ) % WAVELEN ], - fraction( A1_rphase ) ) * m_parent->m_rvol[A1_OSC]; + sample_t A1_L = m_parent->m_lvol[A1_OSC] * std::lerp( + m_A1wave[static_cast(A1_lphase)], + m_A1wave[static_cast(A1_lphase + 1) % WAVELEN], + fraction(A1_lphase) + ); + sample_t A1_R = m_parent->m_rvol[A1_OSC] * std::lerp( + m_A1wave[static_cast(A1_rphase)], + m_A1wave[static_cast(A1_rphase + 1) % WAVELEN], + fraction(A1_rphase) + ); ///////////// B-series ///////////////// // B2 - sample_t B2_L = linearInterpolate( m_B2wave[ static_cast( m_lphase[B2_OSC] ) ], - m_B2wave[ static_cast( m_lphase[B2_OSC] + 1 ) % WAVELEN ], - fraction( m_lphase[B2_OSC] ) ) * m_parent->m_lvol[B2_OSC]; - sample_t B2_R = linearInterpolate( m_B2wave[ static_cast( m_rphase[B2_OSC] ) ], - m_B2wave[ static_cast( m_rphase[B2_OSC] + 1 ) % WAVELEN ], - fraction( m_rphase[B2_OSC] ) ) * m_parent->m_rvol[B2_OSC]; + sample_t B2_L = m_parent->m_lvol[B2_OSC] * std::lerp( + m_B2wave[static_cast(m_lphase[B2_OSC])], + m_B2wave[static_cast(m_lphase[B2_OSC] + 1) % WAVELEN], + fraction(m_lphase[B2_OSC]) + ); + sample_t B2_R = m_parent->m_rvol[B2_OSC] * std::lerp( + m_B2wave[static_cast(m_rphase[B2_OSC])], + m_B2wave[static_cast(m_rphase[B2_OSC] + 1) % WAVELEN], + fraction(m_rphase[B2_OSC]) + ); // if crosstalk active, add a1 const float xt = m_parent->m_xtalk.value(); @@ -166,18 +177,22 @@ void WatsynObject::renderOutput( fpp_t _frames ) // if phase mod, add to phases if( m_bmod == MOD_PM ) { - B1_lphase = fmodf( B1_lphase + B2_L * PMOD_AMT, WAVELEN ); + B1_lphase = std::fmod(B1_lphase + B2_L * PMOD_AMT, WAVELEN); if( B1_lphase < 0 ) B1_lphase += WAVELEN; - B1_rphase = fmodf( B1_rphase + B2_R * PMOD_AMT, WAVELEN ); + B1_rphase = std::fmod(B1_rphase + B2_R * PMOD_AMT, WAVELEN); if( B1_rphase < 0 ) B1_rphase += WAVELEN; } // B1 - sample_t B1_L = linearInterpolate( m_B1wave[ static_cast( B1_lphase ) % WAVELEN ], - m_B1wave[ static_cast( B1_lphase + 1 ) % WAVELEN ], - fraction( B1_lphase ) ) * m_parent->m_lvol[B1_OSC]; - sample_t B1_R = linearInterpolate( m_B1wave[ static_cast( B1_rphase ) % WAVELEN ], - m_B1wave[ static_cast( B1_rphase + 1 ) % WAVELEN ], - fraction( B1_rphase ) ) * m_parent->m_rvol[B1_OSC]; + sample_t B1_L = m_parent->m_lvol[B1_OSC] * std::lerp( + m_B1wave[static_cast(B1_lphase) % WAVELEN], + m_B1wave[static_cast(B1_lphase + 1) % WAVELEN], + fraction(B1_lphase) + ); + sample_t B1_R = m_parent->m_rvol[B1_OSC] * std::lerp( + m_B1wave[static_cast(B1_rphase) % WAVELEN], + m_B1wave[static_cast(B1_rphase + 1) % WAVELEN], + fraction(B1_rphase) + ); // A-series modulation) @@ -222,9 +237,9 @@ void WatsynObject::renderOutput( fpp_t _frames ) for( int i = 0; i < NUM_OSCS; i++ ) { m_lphase[i] += ( static_cast( WAVELEN ) / ( m_samplerate / ( m_nph->frequency() * m_parent->m_lfreq[i] ) ) ); - m_lphase[i] = fmodf( m_lphase[i], WAVELEN ); + m_lphase[i] = std::fmod(m_lphase[i], WAVELEN); m_rphase[i] += ( static_cast( WAVELEN ) / ( m_samplerate / ( m_nph->frequency() * m_parent->m_rfreq[i] ) ) ); - m_rphase[i] = fmodf( m_rphase[i], WAVELEN ); + m_rphase[i] = std::fmod(m_rphase[i], WAVELEN); } } @@ -596,32 +611,32 @@ void WatsynInstrument::updateVolumes() void WatsynInstrument::updateFreqA1() { // calculate frequencies - m_lfreq[A1_OSC] = ( a1_mult.value() / 8 ) * powf( 2, a1_ltune.value() / 1200 ); - m_rfreq[A1_OSC] = ( a1_mult.value() / 8 ) * powf( 2, a1_rtune.value() / 1200 ); + m_lfreq[A1_OSC] = (a1_mult.value() / 8) * std::exp2(a1_ltune.value() / 1200); + m_rfreq[A1_OSC] = (a1_mult.value() / 8) * std::exp2(a1_rtune.value() / 1200); } void WatsynInstrument::updateFreqA2() { // calculate frequencies - m_lfreq[A2_OSC] = ( a2_mult.value() / 8 ) * powf( 2, a2_ltune.value() / 1200 ); - m_rfreq[A2_OSC] = ( a2_mult.value() / 8 ) * powf( 2, a2_rtune.value() / 1200 ); + m_lfreq[A2_OSC] = (a2_mult.value() / 8) * std::exp2(a2_ltune.value() / 1200); + m_rfreq[A2_OSC] = (a2_mult.value() / 8) * std::exp2(a2_rtune.value() / 1200); } void WatsynInstrument::updateFreqB1() { // calculate frequencies - m_lfreq[B1_OSC] = ( b1_mult.value() / 8 ) * powf( 2, b1_ltune.value() / 1200 ); - m_rfreq[B1_OSC] = ( b1_mult.value() / 8 ) * powf( 2, b1_rtune.value() / 1200 ); + m_lfreq[B1_OSC] = (b1_mult.value() / 8) * std::exp2(b1_ltune.value() / 1200); + m_rfreq[B1_OSC] = (b1_mult.value() / 8) * std::exp2(b1_rtune.value() / 1200); } void WatsynInstrument::updateFreqB2() { // calculate frequencies - m_lfreq[B2_OSC] = ( b2_mult.value() / 8 ) * powf( 2, b2_ltune.value() / 1200 ); - m_rfreq[B2_OSC] = ( b2_mult.value() / 8 ) * powf( 2, b2_rtune.value() / 1200 ); + m_lfreq[B2_OSC] = (b2_mult.value() / 8) * std::exp2(b2_ltune.value() / 1200); + m_rfreq[B2_OSC] = (b2_mult.value() / 8) * std::exp2(b2_rtune.value() / 1200); } diff --git a/plugins/WaveShaper/WaveShaper.cpp b/plugins/WaveShaper/WaveShaper.cpp index 373785408..4915e40af 100644 --- a/plugins/WaveShaper/WaveShaper.cpp +++ b/plugins/WaveShaper/WaveShaper.cpp @@ -27,7 +27,6 @@ #include "WaveShaper.h" #include "lmms_math.h" #include "embed.h" -#include "interpolation.h" #include "plugin_export.h" @@ -66,18 +65,11 @@ WaveShaperEffect::WaveShaperEffect( Model * _parent, -bool WaveShaperEffect::processAudioBuffer( SampleFrame* _buf, - const fpp_t _frames ) +Effect::ProcessStatus WaveShaperEffect::processImpl(SampleFrame* buf, const fpp_t frames) { - if( !isEnabled() || !isRunning () ) - { - return( false ); - } - // variables for effect int i = 0; - double out_sum = 0.0; const float d = dryLevel(); const float w = wetLevel(); float input = m_wsControls.m_inputModel.value(); @@ -94,9 +86,9 @@ bool WaveShaperEffect::processAudioBuffer( SampleFrame* _buf, const float *inputPtr = inputBuffer ? &( inputBuffer->values()[ 0 ] ) : &input; const float *outputPtr = outputBufer ? &( outputBufer->values()[ 0 ] ) : &output; - for( fpp_t f = 0; f < _frames; ++f ) + for (fpp_t f = 0; f < frames; ++f) { - auto s = std::array{_buf[f][0], _buf[f][1]}; + auto s = std::array{buf[f][0], buf[f][1]}; // apply input gain s[0] *= *inputPtr; @@ -123,9 +115,7 @@ bool WaveShaperEffect::processAudioBuffer( SampleFrame* _buf, } else if( lookup < 200 ) { - s[i] = linearInterpolate( samples[ lookup - 1 ], - samples[ lookup ], frac ) - * posneg; + s[i] = std::lerp(samples[lookup - 1], samples[lookup], frac) * posneg; } else { @@ -138,17 +128,14 @@ bool WaveShaperEffect::processAudioBuffer( SampleFrame* _buf, s[1] *= *outputPtr; // mix wet/dry signals - _buf[f][0] = d * _buf[f][0] + w * s[0]; - _buf[f][1] = d * _buf[f][1] + w * s[1]; - out_sum += _buf[f][0] * _buf[f][0] + _buf[f][1] * _buf[f][1]; + buf[f][0] = d * buf[f][0] + w * s[0]; + buf[f][1] = d * buf[f][1] + w * s[1]; outputPtr += outputInc; inputPtr += inputInc; } - checkGate( out_sum / _frames ); - - return( isRunning() ); + return ProcessStatus::ContinueIfNotQuiet; } diff --git a/plugins/WaveShaper/WaveShaper.h b/plugins/WaveShaper/WaveShaper.h index 4c9d6e962..773419de8 100644 --- a/plugins/WaveShaper/WaveShaper.h +++ b/plugins/WaveShaper/WaveShaper.h @@ -40,8 +40,8 @@ public: WaveShaperEffect( Model * _parent, const Descriptor::SubPluginFeatures::Key * _key ); ~WaveShaperEffect() override = default; - bool processAudioBuffer( SampleFrame* _buf, - const fpp_t _frames ) override; + + ProcessStatus processImpl(SampleFrame* buf, const fpp_t frames) override; EffectControls * controls() override { diff --git a/plugins/Xpressive/ExprSynth.cpp b/plugins/Xpressive/ExprSynth.cpp index c48b94ec8..347bb6d80 100644 --- a/plugins/Xpressive/ExprSynth.cpp +++ b/plugins/Xpressive/ExprSynth.cpp @@ -29,9 +29,8 @@ #include #include #include +#include - -#include "interpolation.h" #include "lmms_math.h" #include "NotePlayHandle.h" #include "SampleFrame.h" @@ -83,9 +82,10 @@ struct IntegrateFunction : public exprtk::ifunction IntegrateFunction(const unsigned int* frame, unsigned int sample_rate,unsigned int max_counters) : exprtk::ifunction(1), + m_firstValue(0), m_frame(frame), - m_sample_rate(sample_rate), - m_max_counters(max_counters), + m_sampleRate(sample_rate), + m_maxCounters(max_counters), m_nCounters(0), m_nCountersCalls(0), m_cc(0) @@ -96,15 +96,26 @@ struct IntegrateFunction : public exprtk::ifunction inline T operator()(const T& x) override { - if (*m_frame == 0) + if (m_frame) { - ++m_nCountersCalls; - if (m_nCountersCalls > m_max_counters) + if (m_nCountersCalls == 0) { - return 0; + m_firstValue = *m_frame; + } + if (m_firstValue == *m_frame) + { + ++m_nCountersCalls; + if (m_nCountersCalls > m_maxCounters) + { + return 0; + } + m_cc = m_nCounters; + ++m_nCounters; + } + else // we moved to the next frame + { + m_frame = 0; // this will indicate that we are no longer in init phase. } - m_cc = m_nCounters; - ++m_nCounters; } T res = 0; @@ -114,13 +125,16 @@ struct IntegrateFunction : public exprtk::ifunction m_counters[m_cc] += x; } m_cc = (m_cc + 1) % m_nCountersCalls; - return res / m_sample_rate; + return res / m_sampleRate; } - - const unsigned int* const m_frame; - const unsigned int m_sample_rate; - const unsigned int m_max_counters; + unsigned int m_firstValue; + const unsigned int* m_frame; + const unsigned int m_sampleRate; + // number of counters allocated + const unsigned int m_maxCounters; + // number of integrate instances that has counters allocated unsigned int m_nCounters; + // real number of integrate instances unsigned int m_nCountersCalls; unsigned int m_cc; double *m_counters; @@ -205,7 +219,7 @@ struct WaveValueFunctionInterpolate : public exprtk::ifunction const T x = positiveFraction(index) * m_size; const int ix = (int)x; const float xfrc = fraction(x); - return linearInterpolate(m_vec[ix], m_vec[(ix + 1) % m_size], xfrc); + return std::lerp(m_vec[ix], m_vec[(ix + 1) % m_size], xfrc); } const T *m_vec; const std::size_t m_size; @@ -398,7 +412,7 @@ struct sin_wave static inline float process(float x) { x = positiveFraction(x); - return sinf(x * F_2PI); + return std::sin(x * 2 * std::numbers::pi_v); } }; static freefunc1 sin_wave_func; @@ -496,7 +510,7 @@ struct harmonic_cent { static inline float process(float x) { - return powf(2, x / 1200); + return std::exp2(x / 1200); } }; static freefunc1 harmonic_cent_func; @@ -504,7 +518,7 @@ struct harmonic_semitone { static inline float process(float x) { - return powf(2, x / 12); + return std::exp2(x / 12); } }; static freefunc1 harmonic_semitone_func; @@ -520,7 +534,7 @@ ExprFront::ExprFront(const char * expr, int last_func_samples) m_data->m_expression_string = expr; m_data->m_symbol_table.add_pi(); - m_data->m_symbol_table.add_constant("e", F_E); + m_data->m_symbol_table.add_constant("e", std::numbers::e_v); m_data->m_symbol_table.add_constant("seed", SimpleRandom::generator() & max_float_integer_mask); diff --git a/plugins/Xpressive/Xpressive.cpp b/plugins/Xpressive/Xpressive.cpp index 23a76b228..37dcb16fa 100644 --- a/plugins/Xpressive/Xpressive.cpp +++ b/plugins/Xpressive/Xpressive.cpp @@ -40,8 +40,6 @@ #include "Song.h" #include "base64.h" -#include "lmms_constants.h" - #include "embed.h" #include "ExprSynth.h" @@ -252,14 +250,15 @@ void Xpressive::smooth(float smoothness,const graphModel * in,graphModel * out) const int guass_size = (int)(smoothness * 5) | 1; const int guass_center = guass_size/2; const float delta = smoothness; - const float a= 1.0f / (sqrtf(2.0f * F_PI) * delta); + constexpr float inv_sqrt2pi = std::numbers::inv_sqrtpi_v / std::numbers::sqrt2_v; + const float a = inv_sqrt2pi / delta; auto const guassian = new float[guass_size]; float sum = 0.0f; float temp = 0.0f; for (int i = 0; i < guass_size; i++) { temp = (i - guass_center) / delta; - sum += guassian[i] = a * powf(F_E, -0.5f * temp * temp); + sum += guassian[i] = a * std::exp(-0.5f * temp * temp); } for (int i = 0; i < guass_size; i++) { @@ -553,7 +552,7 @@ void XpressiveView::expressionChanged() { ExprFront expr(text.constData(),sample_rate); float t=0; const float f=10,key=5,v=0.5; - unsigned int i; + unsigned int frame_counter = 0; expr.add_variable("t", t); if (m_output_expr) @@ -572,20 +571,24 @@ void XpressiveView::expressionChanged() { expr.add_cyclic_vector("W2",e->graphW2().samples(),e->graphW2().length()); expr.add_cyclic_vector("W3",e->graphW3().samples(),e->graphW3().length()); } - expr.setIntegrate(&i,sample_rate); + expr.setIntegrate(&frame_counter,sample_rate); expr.add_constant("srate",sample_rate); const bool parse_ok=expr.compile(); if (parse_ok) { e->exprValid().setValue(0); - const auto length = static_cast(m_raw_graph->length()); + const unsigned int length = static_cast(m_raw_graph->length()); auto const samples = new float[length]; - for (auto i = std::size_t{0}; i < length; i++) { - t = i / (float) length; - samples[i] = expr.evaluate(); - if (std::isinf(samples[i]) != 0 || std::isnan(samples[i]) != 0) - samples[i] = 0; + // frame_counter's reference is used in the integrate function. + for (frame_counter = 0; frame_counter < length; ++frame_counter) + { + t = frame_counter / (float) length; + samples[frame_counter] = expr.evaluate(); + if (std::isinf(samples[frame_counter]) != 0 || std::isnan(samples[frame_counter]) != 0) + { + samples[frame_counter] = 0; + } } m_raw_graph->setSamples(samples); delete[] samples; diff --git a/plugins/Xpressive/exprtk b/plugins/Xpressive/exprtk index f46bffcd6..a4b17d543 160000 --- a/plugins/Xpressive/exprtk +++ b/plugins/Xpressive/exprtk @@ -1 +1 @@ -Subproject commit f46bffcd6966d38a09023fb37ba9335214c9b959 +Subproject commit a4b17d543f072d2e3ba564e4bc5c3a0d2b05c338 diff --git a/plugins/ZynAddSubFx/ZynAddSubFx.cpp b/plugins/ZynAddSubFx/ZynAddSubFx.cpp index 51610d877..19864932d 100644 --- a/plugins/ZynAddSubFx/ZynAddSubFx.cpp +++ b/plugins/ZynAddSubFx/ZynAddSubFx.cpp @@ -48,6 +48,7 @@ #include "Clipboard.h" #include "embed.h" +#include "FontHelper.h" #include "plugin_export.h" namespace lmms @@ -546,8 +547,7 @@ ZynAddSubFxView::ZynAddSubFxView( Instrument * _instrument, QWidget * _parent ) m_toggleUIButton->setChecked( false ); m_toggleUIButton->setIcon( embed::getIconPixmap( "zoom" ) ); QFont f = m_toggleUIButton->font(); - f.setPointSizeF(12); - m_toggleUIButton->setFont(f); + m_toggleUIButton->setFont(adjustedToPixelSize(f, DEFAULT_FONT_SIZE)); connect( m_toggleUIButton, SIGNAL( toggled( bool ) ), this, SLOT( toggleUI() ) ); diff --git a/plugins/ZynAddSubFx/zynaddsubfx b/plugins/ZynAddSubFx/zynaddsubfx index d958c3668..9903fc44f 160000 --- a/plugins/ZynAddSubFx/zynaddsubfx +++ b/plugins/ZynAddSubFx/zynaddsubfx @@ -1 +1 @@ -Subproject commit d958c3668cc163805d581e97eb4d742168b6aad9 +Subproject commit 9903fc44ff61c932914fc5b43358c06b1946c446 diff --git a/src/3rdparty/CMakeLists.txt b/src/3rdparty/CMakeLists.txt index e5cb62527..a959e3c7b 100644 --- a/src/3rdparty/CMakeLists.txt +++ b/src/3rdparty/CMakeLists.txt @@ -15,7 +15,7 @@ ADD_SUBDIRECTORY(weakjack) add_library(ringbuffer OBJECT ringbuffer/src/lib/ringbuffer.cpp ) -target_compile_features(ringbuffer PUBLIC cxx_std_17) +target_compile_features(ringbuffer PUBLIC cxx_std_20) target_include_directories(ringbuffer PUBLIC ringbuffer/include "${CMAKE_CURRENT_BINARY_DIR}" diff --git a/src/3rdparty/hiir/CMakeLists.txt b/src/3rdparty/hiir/CMakeLists.txt index e954ff187..248322adb 100644 --- a/src/3rdparty/hiir/CMakeLists.txt +++ b/src/3rdparty/hiir/CMakeLists.txt @@ -1,3 +1,3 @@ add_library(hiir INTERFACE) target_include_directories(hiir INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}) -target_compile_features(hiir INTERFACE cxx_std_17) +target_compile_features(hiir INTERFACE cxx_std_20) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 7645e49e3..9612190bf 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -9,8 +9,8 @@ SET(CMAKE_AUTOMOC ON) SET(CMAKE_AUTOUIC ON) SET(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}) -# Enable C++17 -SET(CMAKE_CXX_STANDARD 17) +# Enable C++20 +SET(CMAKE_CXX_STANDARD 20) IF(LMMS_BUILD_APPLE AND CMAKE_CXX_COMPILER_ID MATCHES "Clang") SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++") @@ -60,19 +60,19 @@ include_directories(SYSTEM ${FFTW3F_INCLUDE_DIRS} ) -IF(NOT ("${PULSEAUDIO_INCLUDE_DIR}" STREQUAL "")) +IF(PULSEAUDIO_INCLUDE_DIR) include_directories(SYSTEM "${PULSEAUDIO_INCLUDE_DIR}") ENDIF() -IF(NOT ("${LV2_INCLUDE_DIRS}" STREQUAL "")) +IF(LV2_INCLUDE_DIRS) include_directories(SYSTEM ${LV2_INCLUDE_DIRS}) ENDIF() -IF(NOT ("${LILV_INCLUDE_DIRS}" STREQUAL "")) - include_directories(SYSTEM ${LILV_INCLUDE_DIRS}) +IF(Lilv_INCLUDE_DIRS) + include_directories(SYSTEM ${Lilv_INCLUDE_DIRS}) ENDIF() -IF(NOT ("${SUIL_INCLUDE_DIRS}" STREQUAL "")) +IF(SUIL_INCLUDE_DIRS) include_directories(SYSTEM ${SUIL_INCLUDE_DIRS}) ENDIF() @@ -181,11 +181,11 @@ set_target_properties(lmms PROPERTIES set_target_properties(lmmsobjs PROPERTIES AUTOUIC_SEARCH_PATHS "gui/modals") -IF(NOT WIN32) +IF(NOT WIN32 AND NOT LMMS_BUILD_APPLE) if(CMAKE_INSTALL_MANDIR) SET(INSTALL_MANDIR ${CMAKE_INSTALL_MANDIR}) ELSE(CMAKE_INSTALL_MANDIR) - SET(INSTALL_MANDIR ${CMAKE_INSTALL_PREFIX}/share/man) + SET(INSTALL_MANDIR share/man) ENDIF(CMAKE_INSTALL_MANDIR) INSTALL(FILES "${CMAKE_BINARY_DIR}/lmms.1.gz" DESTINATION "${INSTALL_MANDIR}/man1/" diff --git a/src/common/SharedMemory.cpp b/src/common/SharedMemory.cpp index 19d3dba1b..6ef815c6d 100644 --- a/src/common/SharedMemory.cpp +++ b/src/common/SharedMemory.cpp @@ -23,6 +23,7 @@ #include "SharedMemory.h" +#include #include #include @@ -75,7 +76,7 @@ class SharedMemoryImpl { public: SharedMemoryImpl(const std::string& key, bool readOnly) : - m_key{"/" + key} + m_key{'/' + key} { const auto openFlags = readOnly ? O_RDONLY : O_RDWR; const auto fd = FileDescriptor{ @@ -93,7 +94,7 @@ public: } SharedMemoryImpl(const std::string& key, std::size_t size, bool readOnly) : - m_key{"/" + key}, + m_key{'/' + key}, m_size{size} { const auto fd = FileDescriptor{ @@ -120,11 +121,12 @@ public: } auto get() const noexcept -> void* { return m_mapping; } + auto size_bytes() const noexcept -> std::size_t { return m_size; } private: std::string m_key; - std::size_t m_size; - void* m_mapping; + std::size_t m_size = 0; + void* m_mapping = nullptr; ShmObject m_object; }; @@ -163,9 +165,18 @@ public: m_view.reset(MapViewOfFile(m_mapping.get(), access, 0, 0, 0)); if (!m_view) { throwLastError("SharedMemoryImpl: MapViewOfFile() failed"); } + + MEMORY_BASIC_INFORMATION mbi; + if (VirtualQuery(m_view.get(), &mbi, sizeof(mbi)) == 0) + { + throwLastError("SharedMemoryImpl: VirtualQuery() failed"); + } + + m_size = static_cast(mbi.RegionSize); } - SharedMemoryImpl(const std::string& key, std::size_t size, bool readOnly) + SharedMemoryImpl(const std::string& key, std::size_t size, bool readOnly) : + m_size{size} { const auto [high, low] = sizeToHighAndLow(size); m_mapping.reset(CreateFileMappingA(INVALID_HANDLE_VALUE, nullptr, PAGE_READWRITE, high, low, key.c_str())); @@ -186,14 +197,39 @@ public: auto operator=(const SharedMemoryImpl&) -> SharedMemoryImpl& = delete; auto get() const noexcept -> void* { return m_view.get(); } + auto size_bytes() const noexcept -> std::size_t { return m_size; } private: UniqueHandle m_mapping; FileView m_view; + std::size_t m_size = 0; }; #endif +namespace { + +auto createKey() -> std::string +{ + // Max length (minus prepended '/') on macOS (PSHMNAMLEN=31) + constexpr int length = 30; + + std::string key; + std::random_device rd; + auto gen = std::mt19937{rd()}; // mersenne twister, seeded + auto distrib = std::uniform_int_distribution{0, 15}; // hex range (0-15) + + key.reserve(length + 1); + for (int i = 0; i < length; ++i) + { + key += "0123456789ABCDEF"[distrib(gen)]; + } + + return key; +} + +} // namespace + SharedMemoryData::SharedMemoryData() noexcept = default; SharedMemoryData::SharedMemoryData(std::string&& key, bool readOnly) : @@ -208,6 +244,10 @@ SharedMemoryData::SharedMemoryData(std::string&& key, std::size_t size, bool rea m_ptr{m_impl->get()} { } +SharedMemoryData::SharedMemoryData(std::size_t size, bool readOnly) : + SharedMemoryData{createKey(), size, readOnly} +{ } + SharedMemoryData::~SharedMemoryData() = default; SharedMemoryData::SharedMemoryData(SharedMemoryData&& other) noexcept : @@ -216,4 +256,9 @@ SharedMemoryData::SharedMemoryData(SharedMemoryData&& other) noexcept : m_ptr{std::exchange(other.m_ptr, nullptr)} { } +auto SharedMemoryData::size_bytes() const noexcept -> std::size_t +{ + return m_impl ? m_impl->size_bytes() : 0; +} + } // namespace lmms::detail diff --git a/src/core/AudioBusHandle.cpp b/src/core/AudioBusHandle.cpp new file mode 100644 index 000000000..e27a8c8ad --- /dev/null +++ b/src/core/AudioBusHandle.cpp @@ -0,0 +1,254 @@ +/* + * AudioBusHandle.cpp - ThreadableJob between PlayHandle and MixerChannel + * + * Copyright (c) 2004-2014 Tobias Doerffel + * Copyright (c) 2025 Johannes Lorenz + * + * This file is part of LMMS - https://lmms.io + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program (see COPYING); if not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA. + * + */ + +#include + +#include "AudioBusHandle.h" +#include "AudioDevice.h" +#include "AudioEngine.h" +#include "EffectChain.h" +#include "Mixer.h" +#include "Engine.h" +#include "MixHelpers.h" +#include "BufferManager.h" + +namespace lmms +{ + +AudioBusHandle::AudioBusHandle(const QString& name, bool hasEffectChain, + FloatModel* volumeModel, FloatModel* panningModel, + BoolModel* mutedModel) : + m_bufferUsage(false), + m_buffer(BufferManager::acquire()), + m_extOutputEnabled(false), + m_nextMixerChannel(0), + m_name(name), + m_effects(hasEffectChain ? new EffectChain(nullptr) : nullptr), + m_volumeModel(volumeModel), + m_panningModel(panningModel), + m_mutedModel(mutedModel) +{ + Engine::audioEngine()->addAudioBusHandle(this); + setExtOutputEnabled(true); +} + + + + +AudioBusHandle::~AudioBusHandle() +{ + setExtOutputEnabled(false); + Engine::audioEngine()->removeAudioBusHandle(this); + BufferManager::release(m_buffer); +} + + + + +void AudioBusHandle::setExtOutputEnabled(bool enabled) +{ + if (enabled != m_extOutputEnabled) + { + m_extOutputEnabled = enabled; + if (m_extOutputEnabled) + { + Engine::audioEngine()->audioDev()->registerPort(this); + } + else + { + Engine::audioEngine()->audioDev()->unregisterPort(this); + } + } +} + + + + +void AudioBusHandle::setName(const QString& newName) +{ + m_name = newName; + Engine::audioEngine()->audioDev()->renamePort(this); +} + + + + +bool AudioBusHandle::processEffects() +{ + if (m_effects) + { + bool more = m_effects->processAudioBuffer(m_buffer, Engine::audioEngine()->framesPerPeriod(), m_bufferUsage); + return more; + } + return false; +} + + +void AudioBusHandle::doProcessing() +{ + if (m_mutedModel && m_mutedModel->value()) + { + return; + } + + const fpp_t fpp = Engine::audioEngine()->framesPerPeriod(); + + // clear the buffer + zeroSampleFrames(m_buffer, fpp); + + //qDebug( "Playhandles: %d", m_playHandles.size() ); + for (PlayHandle* ph : m_playHandles) // now we mix all playhandle buffers into our internal buffer + { + if (ph->buffer()) + { + if (ph->usesBuffer() + && (ph->type() == PlayHandle::Type::NotePlayHandle + || !MixHelpers::isSilent(ph->buffer(), fpp))) + { + m_bufferUsage = true; + MixHelpers::add(m_buffer, ph->buffer(), fpp); + } + ph->releaseBuffer(); // gets rid of playhandle's buffer and sets + // pointer to null, so if it doesn't get re-acquired we know to skip it next time + } + } + + if (m_bufferUsage) + { + // handle volume and panning + // has both vol and pan models + if (m_volumeModel && m_panningModel) + { + ValueBuffer* volBuf = m_volumeModel->valueBuffer(); + ValueBuffer* panBuf = m_panningModel->valueBuffer(); + + // both vol and pan have s.ex.data: + if (volBuf && panBuf) + { + for (f_cnt_t f = 0; f < fpp; ++f) + { + float v = volBuf->values()[f] * 0.01f; + float p = panBuf->values()[f] * 0.01f; + m_buffer[f][0] *= (p <= 0 ? 1.0f : 1.0f - p) * v; + m_buffer[f][1] *= (p >= 0 ? 1.0f : 1.0f + p) * v; + } + } + + // only vol has s.ex.data: + else if (volBuf) + { + float p = m_panningModel->value() * 0.01f; + float l = (p <= 0 ? 1.0f : 1.0f - p); + float r = (p >= 0 ? 1.0f : 1.0f + p); + for (f_cnt_t f = 0; f < fpp; ++f) + { + float v = volBuf->values()[f] * 0.01f; + m_buffer[f][0] *= v * l; + m_buffer[f][1] *= v * r; + } + } + + // only pan has s.ex.data: + else if (panBuf) + { + float v = m_volumeModel->value() * 0.01f; + for (f_cnt_t f = 0; f < fpp; ++f) + { + float p = panBuf->values()[f] * 0.01f; + m_buffer[f][0] *= (p <= 0 ? 1.0f : 1.0f - p) * v; + m_buffer[f][1] *= (p >= 0 ? 1.0f : 1.0f + p) * v; + } + } + + // neither has s.ex.data: + else + { + float p = m_panningModel->value() * 0.01f; + float v = m_volumeModel->value() * 0.01f; + for (f_cnt_t f = 0; f < fpp; ++f) + { + m_buffer[f][0] *= (p <= 0 ? 1.0f : 1.0f - p) * v; + m_buffer[f][1] *= (p >= 0 ? 1.0f : 1.0f + p) * v; + } + } + } + + // has vol model only + else if (m_volumeModel) + { + ValueBuffer* volBuf = m_volumeModel->valueBuffer(); + + if (volBuf) + { + for (f_cnt_t f = 0; f < fpp; ++f) + { + float v = volBuf->values()[f] * 0.01f; + m_buffer[f][0] *= v; + m_buffer[f][1] *= v; + } + } + else + { + float v = m_volumeModel->value() * 0.01f; + for (f_cnt_t f = 0; f < fpp; ++f) + { + m_buffer[f][0] *= v; + m_buffer[f][1] *= v; + } + } + } + } + // as of now there's no situation where we only have panning model but no volume model + // if we have neither, we don't have to do anything here - just pass the audio as is + + // handle effects + const bool anyOutputAfterEffects = processEffects(); + if (anyOutputAfterEffects || m_bufferUsage) + { + Engine::mixer()->mixToChannel(m_buffer, m_nextMixerChannel); // send output to mixer + // TODO: improve the flow here - convert to pull model + m_bufferUsage = false; + } +} + + +void AudioBusHandle::addPlayHandle(PlayHandle* handle) +{ + QMutexLocker lockGuard(&m_playHandleLock); + m_playHandles.append(handle); +} + + +void AudioBusHandle::removePlayHandle(PlayHandle* handle) +{ + QMutexLocker lockGuard(&m_playHandleLock); + PlayHandleList::Iterator it = std::find(m_playHandles.begin(), m_playHandles.end(), handle); + if (it != m_playHandles.end()) + { + m_playHandles.erase(it); + } +} + +} // namespace lmms diff --git a/src/core/AudioEngine.cpp b/src/core/AudioEngine.cpp index e4d02c217..b7f95018e 100644 --- a/src/core/AudioEngine.cpp +++ b/src/core/AudioEngine.cpp @@ -30,7 +30,7 @@ #include "lmmsconfig.h" #include "AudioEngineWorkerThread.h" -#include "AudioPort.h" +#include "AudioBusHandle.h" #include "Mixer.h" #include "Song.h" #include "EnvelopeAndLfoParameters.h" @@ -74,6 +74,7 @@ static thread_local bool s_renderingThread = false; AudioEngine::AudioEngine( bool renderOnly ) : m_renderOnly( renderOnly ), m_framesPerPeriod( DEFAULT_BUFFER_SIZE ), + m_baseSampleRate(std::max(ConfigManager::inst()->value("audioengine", "samplerate").toInt(), 44100)), m_inputBufferRead( 0 ), m_inputBufferWrite( 1 ), m_outputBufferRead(nullptr), @@ -87,7 +88,6 @@ AudioEngine::AudioEngine( bool renderOnly ) : m_oldAudioDev( nullptr ), m_audioDevStartFailed( false ), m_profiler(), - m_metronomeActive(false), m_clearSignal(false) { for( int i = 0; i < 2; ++i ) @@ -242,34 +242,6 @@ void AudioEngine::stopProcessing() -sample_rate_t AudioEngine::baseSampleRate() const -{ - sample_rate_t sr = ConfigManager::inst()->value( "audioengine", "samplerate" ).toInt(); - if( sr < 44100 ) - { - sr = 44100; - } - return sr; -} - - - - -sample_rate_t AudioEngine::outputSampleRate() const -{ - return m_audioDev != nullptr ? m_audioDev->sampleRate() : - baseSampleRate(); -} - - - - -sample_rate_t AudioEngine::inputSampleRate() const -{ - return m_audioDev != nullptr ? m_audioDev->sampleRate() : - baseSampleRate(); -} - bool AudioEngine::criticalXRuns() const { return cpuLoad() >= 99 && Engine::getSong()->isExporting() == false; @@ -327,13 +299,13 @@ void AudioEngine::renderStageNoteSetup() if( it != m_playHandles.end() ) { - if ((*it)->audioPort()) { (*it)->audioPort()->removePlayHandle(*it); } - if( ( *it )->type() == PlayHandle::Type::NotePlayHandle ) + if ((*it)->audioBusHandle()) { (*it)->audioBusHandle()->removePlayHandle(*it); } + if((*it)->type() == PlayHandle::Type::NotePlayHandle) { - NotePlayHandleManager::release( (NotePlayHandle*) *it ); + NotePlayHandleManager::release((NotePlayHandle*)*it); } else delete *it; - m_playHandles.erase( it ); + m_playHandles.erase(it); } it_rem = m_playHandlesToRemove.erase( it_rem ); @@ -345,8 +317,6 @@ void AudioEngine::renderStageNoteSetup() Mixer * mixer = Engine::mixer(); mixer->prepareMasterMix(); - handleMetronome(); - // create play-handles for new notes, samples etc. Engine::getSong()->processNextBuffer(); @@ -377,7 +347,7 @@ void AudioEngine::renderStageEffects() AudioEngineProfiler::Probe profilerProbe(m_profiler, AudioEngineProfiler::DetailType::Effects); // STAGE 2: process effects of all instrument- and sampletracks - AudioEngineWorkerThread::fillJobQueue(m_audioPorts); + AudioEngineWorkerThread::fillJobQueue(m_audioBusHandles); AudioEngineWorkerThread::startAndWaitForJobs(); // removed all play handles which are done @@ -392,13 +362,13 @@ void AudioEngine::renderStageEffects() } if( ( *it )->isFinished() ) { - if ((*it)->audioPort()) { (*it)->audioPort()->removePlayHandle(*it); } - if( ( *it )->type() == PlayHandle::Type::NotePlayHandle ) + if ((*it)->audioBusHandle()) { (*it)->audioBusHandle()->removePlayHandle(*it); } + if((*it)->type() == PlayHandle::Type::NotePlayHandle) { - NotePlayHandleManager::release( (NotePlayHandle*) *it ); + NotePlayHandleManager::release((NotePlayHandle*)*it); } else delete *it; - it = m_playHandles.erase( it ); + it = m_playHandles.erase(it); } else { @@ -459,55 +429,6 @@ void AudioEngine::swapBuffers() zeroSampleFrames(m_outputBufferWrite.get(), m_framesPerPeriod); } - - - -void AudioEngine::handleMetronome() -{ - static tick_t lastMetroTicks = -1; - - Song * song = Engine::getSong(); - Song::PlayMode currentPlayMode = song->playMode(); - - bool metronomeSupported = - currentPlayMode == Song::PlayMode::MidiClip - || currentPlayMode == Song::PlayMode::Song - || currentPlayMode == Song::PlayMode::Pattern; - - if (!metronomeSupported || !m_metronomeActive || song->isExporting()) - { - return; - } - - // stop crash with metronome if empty project - if (song->countTracks() == 0) - { - return; - } - - tick_t ticks = song->getPlayPos(currentPlayMode).getTicks(); - tick_t ticksPerBar = TimePos::ticksPerBar(); - int numerator = song->getTimeSigModel().getNumerator(); - - if (ticks == lastMetroTicks) - { - return; - } - - if (ticks % (ticksPerBar / 1) == 0) - { - addPlayHandle(new SamplePlayHandle("misc/metronome02.ogg")); - } - else if (ticks % (ticksPerBar / numerator) == 0) - { - addPlayHandle(new SamplePlayHandle("misc/metronome01.ogg")); - } - - lastMetroTicks = ticks; -} - - - void AudioEngine::clear() { m_clearSignal = true; @@ -639,14 +560,14 @@ bool AudioEngine::captureDeviceAvailable() const } -void AudioEngine::removeAudioPort(AudioPort * port) +void AudioEngine::removeAudioBusHandle(AudioBusHandle* busHandle) { requestChangeInModel(); - auto it = std::find(m_audioPorts.begin(), m_audioPorts.end(), port); - if (it != m_audioPorts.end()) + auto it = std::find(m_audioBusHandles.begin(), m_audioBusHandles.end(), busHandle); + if (it != m_audioBusHandles.end()) { - m_audioPorts.erase(it); + m_audioBusHandles.erase(it); } doneChangeInModel(); } @@ -660,7 +581,7 @@ bool AudioEngine::addPlayHandle( PlayHandle* handle ) if (handle->type() == PlayHandle::Type::InstrumentPlayHandle || !criticalXRuns()) { m_newPlayHandles.push( handle ); - if (handle->audioPort()) { handle->audioPort()->addPlayHandle(handle); } + if (handle->audioBusHandle()) { handle->audioBusHandle()->addPlayHandle(handle); } return true; } @@ -681,7 +602,7 @@ void AudioEngine::removePlayHandle(PlayHandle * ph) // which were created in a thread different than the audio engine thread if (ph->affinityMatters() && ph->affinity() == QThread::currentThread()) { - if (ph->audioPort()) { ph->audioPort()->removePlayHandle(ph); } + if (ph->audioBusHandle()) { ph->audioBusHandle()->removePlayHandle(ph); } bool removedFromList = false; // Check m_newPlayHandles first because doing it the other way around // creates a race condition @@ -740,13 +661,13 @@ void AudioEngine::removePlayHandlesOfTypes(Track * track, PlayHandle::Types type { if ((*it)->isFromTrack(track) && ((*it)->type() & types)) { - if ((*it)->audioPort()) { (*it)->audioPort()->removePlayHandle(*it); } - if( ( *it )->type() == PlayHandle::Type::NotePlayHandle ) + if ((*it)->audioBusHandle()) { (*it)->audioBusHandle()->removePlayHandle(*it); } + if((*it)->type() == PlayHandle::Type::NotePlayHandle) { - NotePlayHandleManager::release( (NotePlayHandle*) *it ); + NotePlayHandleManager::release((NotePlayHandle*)*it); } else delete *it; - it = m_playHandles.erase( it ); + it = m_playHandles.erase(it); } else { @@ -1187,17 +1108,6 @@ void AudioEngine::fifoWriter::run() { disable_denormals(); -#if 0 -#if defined(LMMS_BUILD_LINUX) || defined(LMMS_BUILD_FREEBSD) -#ifdef LMMS_HAVE_SCHED_H - cpu_set_t mask; - CPU_ZERO( &mask ); - CPU_SET( 0, &mask ); - sched_setaffinity( 0, sizeof( mask ), &mask ); -#endif -#endif -#endif - const fpp_t frames = m_audioEngine->framesPerPeriod(); while( m_writing ) { diff --git a/src/core/AutomatableModel.cpp b/src/core/AutomatableModel.cpp index 5ce259dc2..e006be651 100644 --- a/src/core/AutomatableModel.cpp +++ b/src/core/AutomatableModel.cpp @@ -350,18 +350,6 @@ float AutomatableModel::inverseScaledValue( float value ) const -//! @todo: this should be moved into a maths header -template -void roundAt( T& value, const T& where, const T& step_size ) -{ - if (std::abs(value - where) < F_EPSILON * std::abs(step_size)) - { - value = where; - } -} - - - template void AutomatableModel::roundAt( T& value, const T& where ) const diff --git a/src/core/AutomationClip.cpp b/src/core/AutomationClip.cpp index dc496fa04..ef57a60d5 100644 --- a/src/core/AutomationClip.cpp +++ b/src/core/AutomationClip.cpp @@ -29,6 +29,7 @@ #include "AutomationNode.h" #include "AutomationClipView.h" #include "AutomationTrack.h" +#include "KeyboardShortcuts.h" #include "LocaleHelper.h" #include "Note.h" #include "PatternStore.h" @@ -647,8 +648,7 @@ float AutomationClip::valueAt( timeMap::const_iterator v, int offset ) const float m1 = OUTTAN(v) * numValues * m_tension; float m2 = INTAN(v + 1) * numValues * m_tension; - auto t2 = pow(t, 2); - auto t3 = pow(t, 3); + auto t2 = t * t, t3 = t2 * t; return (2 * t3 - 3 * t2 + 1) * OUTVAL(v) + (t3 - 2 * t2 + t) * m1 + (-2 * t3 + 3 * t2) * INVAL(v + 1) @@ -953,7 +953,7 @@ QString AutomationClip::name() const { return m_objects.front()->fullDisplayName(); } - return tr( "Drag a control while pressing <%1>" ).arg(UI_CTRL_KEY); + return tr( "Drag a control while pressing <%1>" ).arg(UI_COPY_KEY); } diff --git a/src/core/BandLimitedWave.cpp b/src/core/BandLimitedWave.cpp index 060ff510a..50b386786 100644 --- a/src/core/BandLimitedWave.cpp +++ b/src/core/BandLimitedWave.cpp @@ -64,6 +64,7 @@ QDataStream& operator>> ( QDataStream &in, WaveMipMap &waveMipMap ) void BandLimitedWave::generateWaves() { + using namespace std::numbers; // don't generate if they already exist if( s_wavesGenerated ) return; @@ -103,8 +104,8 @@ void BandLimitedWave::generateWaves() { hlen = static_cast( len ) / static_cast( harm ); const double amp = -1.0 / static_cast( harm ); - //const double a2 = cos( om * harm * F_2PI ); - s += amp * /*a2 **/sin( static_cast( ph * harm ) / static_cast( len ) * F_2PI ); + //const double a2 = std::cos(om * harm * 2 * pi_v); + s += amp * /*a2 **/ std::sin(static_cast(ph * harm) / static_cast(len) * 2 * pi_v); harm++; } while( hlen > 2.0 ); s_waveforms[static_cast(BandLimitedWave::Waveform::BLSaw)].setSampleAt( i, ph, s ); @@ -145,8 +146,8 @@ void BandLimitedWave::generateWaves() { hlen = static_cast( len ) / static_cast( harm ); const double amp = 1.0 / static_cast( harm ); - //const double a2 = cos( om * harm * F_2PI ); - s += amp * /*a2 **/ sin( static_cast( ph * harm ) / static_cast( len ) * F_2PI ); + //const double a2 = std::cos(om * harm * 2 * pi_v); + s += amp * /*a2 **/ std::sin(static_cast(ph * harm) / static_cast(len) * 2 * pi_v); harm += 2; } while( hlen > 2.0 ); s_waveforms[static_cast(BandLimitedWave::Waveform::BLSquare)].setSampleAt( i, ph, s ); @@ -186,9 +187,9 @@ void BandLimitedWave::generateWaves() { hlen = static_cast( len ) / static_cast( harm ); const double amp = 1.0 / static_cast( harm * harm ); - //const double a2 = cos( om * harm * F_2PI ); - s += amp * /*a2 **/ sin( ( static_cast( ph * harm ) / static_cast( len ) + - ( ( harm + 1 ) % 4 == 0 ? 0.5 : 0.0 ) ) * F_2PI ); + //const double a2 = std::cos(om * harm * 2 * pi_v); + s += amp * /*a2 **/ std::sin((static_cast(ph * harm) / static_cast(len) + + ((harm + 1) % 4 == 0 ? 0.5 : 0.0)) * 2 * pi_v); harm += 2; } while( hlen > 2.0 ); s_waveforms[static_cast(BandLimitedWave::Waveform::BLTriangle)].setSampleAt( i, ph, s ); @@ -273,4 +274,4 @@ moogfile.close(); } -} // namespace lmms \ No newline at end of file +} // namespace lmms diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 3608d2848..74e3bf1b5 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -1,6 +1,7 @@ set(LMMS_SRCS ${LMMS_SRCS} + core/AudioBusHandle.cpp core/AudioEngine.cpp core/AudioEngineProfiler.cpp core/AudioEngineWorkerThread.cpp @@ -40,6 +41,7 @@ set(LMMS_SRCS core/LinkedModelGroups.cpp core/LocklessAllocator.cpp core/MeterModel.cpp + core/Metronome.cpp core/MicroTimer.cpp core/Microtuner.cpp core/MixHelpers.cpp @@ -99,7 +101,6 @@ set(LMMS_SRCS core/audio/AudioJack.cpp core/audio/AudioOss.cpp core/audio/AudioSndio.cpp - core/audio/AudioPort.cpp core/audio/AudioPortAudio.cpp core/audio/AudioSoundIo.cpp core/audio/AudioPulseAudio.cpp diff --git a/src/core/ComboBoxModel.cpp b/src/core/ComboBoxModel.cpp index f1b1c6b2e..80d1027de 100644 --- a/src/core/ComboBoxModel.cpp +++ b/src/core/ComboBoxModel.cpp @@ -29,20 +29,17 @@ namespace lmms { -using std::unique_ptr; -using std::move; - -void ComboBoxModel::addItem( QString item, unique_ptr loader ) +void ComboBoxModel::addItem(QString item, std::unique_ptr loader) { - m_items.emplace_back( move(item), move(loader) ); + m_items.emplace_back(std::move(item), std::move(loader)); setRange( 0, m_items.size() - 1 ); } -void ComboBoxModel::replaceItem(std::size_t index, QString item, unique_ptr loader) +void ComboBoxModel::replaceItem(std::size_t index, QString item, std::unique_ptr loader) { assert(index < m_items.size()); - m_items[index] = Item(move(item), move(loader)); + m_items[index] = Item(std::move(item), std::move(loader)); emit propertiesChanged(); } diff --git a/src/core/DataFile.cpp b/src/core/DataFile.cpp index 85946461f..cbbabf5ed 100644 --- a/src/core/DataFile.cpp +++ b/src/core/DataFile.cpp @@ -85,7 +85,8 @@ const std::vector DataFile::UPGRADE_METHODS = { &DataFile::upgrade_sampleAndHold , &DataFile::upgrade_midiCCIndexing, &DataFile::upgrade_loopsRename , &DataFile::upgrade_noteTypes, &DataFile::upgrade_fixCMTDelays , &DataFile::upgrade_fixBassLoopsTypo, - &DataFile::findProblematicLadspaPlugins + &DataFile::findProblematicLadspaPlugins, + &DataFile::upgrade_noHiddenAutomationTracks }; // Vector of all versions that have upgrade routines. @@ -353,7 +354,7 @@ bool DataFile::writeFile(const QString& filename, bool withResources) if (QDir(bundleDir).exists()) { showError(SongEditor::tr("Operation denied"), - SongEditor::tr("A bundle folder with that name already eists on the " + SongEditor::tr("A bundle folder with that name already exists on the " "selected path. Can't overwrite a project bundle. Please select a different " "name.")); @@ -414,7 +415,7 @@ bool DataFile::writeFile(const QString& filename, bool withResources) if (!outfile.commit()) { showError(SongEditor::tr("Could not write file"), - SongEditor::tr("An unknown error has occured and the file could not be saved.")); + SongEditor::tr("An unknown error has occurred and the file could not be saved.")); return false; } @@ -1648,6 +1649,51 @@ void DataFile::upgrade_1_3_0() } } +void DataFile::upgrade_noHiddenAutomationTracks() +{ + // convert global automation tracks to non-hidden + QDomElement song = firstChildElement("lmms-project") + .firstChildElement("song"); + QDomElement trackContainer = song.firstChildElement("trackcontainer"); + QDomElement globalAutomationTrack = song.firstChildElement("track"); + if (!globalAutomationTrack.isNull() + && globalAutomationTrack.attribute("type").toInt() == static_cast(Track::Type::HiddenAutomation)) + { + // global automation clips + QDomNodeList automationClips = globalAutomationTrack.elementsByTagName("automationclip"); + QList tracksToInsert; + for (int i = 0; i < automationClips.length(); ++i) + { + QDomElement automationClip = automationClips.item(i).toElement(); + // If automationClip has time nodes, move it to trackcontainer + // There are times when an node is present without an + // object with the same ID in the file, so we ignore that node + if (automationClip.elementsByTagName("time").length() > 1) + { + QDomElement automationTrackForClip = createElement("track"); + automationTrackForClip.setAttribute("muted", QString::number(false)); + automationTrackForClip.setAttribute("solo", QString::number(false)); + automationTrackForClip.setAttribute("type", + QString::number(static_cast(Track::Type::Automation))); + automationTrackForClip.setAttribute("name", + automationClip.attribute("name", "Automation Track")); + QDomElement at = createElement("automationtrack"); + automationTrackForClip.appendChild(at); + automationTrackForClip.appendChild(automationClips.item(i).cloneNode()); + tracksToInsert.prepend(automationTrackForClip); // To preserve orders + } + } + + // Insert the tracks at the beginning of trackContainer, preserving their order + for (const auto& track : tracksToInsert) { + trackContainer.insertBefore(track, trackContainer.firstChild()); + } + + // Remove the track object just in case + globalAutomationTrack.parentNode().removeChild(globalAutomationTrack); + } +} + void DataFile::upgrade_noHiddenClipNames() { QDomNodeList tracks = elementsByTagName("track"); diff --git a/src/core/DrumSynth.cpp b/src/core/DrumSynth.cpp index f855639cb..e54476a19 100644 --- a/src/core/DrumSynth.cpp +++ b/src/core/DrumSynth.cpp @@ -30,6 +30,8 @@ #include #include +#include "lmms_math.h" + #ifdef _MSC_VER // not #if LMMS_BUILD_WIN32 because we have strncasecmp in mingw #define strcasecmp _stricmp @@ -40,7 +42,6 @@ namespace lmms { using namespace std; // const int Fs = 44100; -const float TwoPi = 6.2831853f; const int MAX = 0; const int ENV = 1; const int PNT = 2; @@ -170,37 +171,18 @@ void DrumSynth::GetEnv(int env, const char* sec, const char* key, QString ini) float DrumSynth::waveform(float ph, int form) { - float w; - - switch (form) - { - case 0: - w = static_cast(sin(fmod(ph, TwoPi))); - break; // sine - case 1: - w = static_cast(fabs(2.0f * static_cast(sin(fmod(0.5f * ph, TwoPi))) - 1.f)); - break; // sine^2 - case 2: - while (ph < TwoPi) - { - ph += TwoPi; - } - w = 0.6366197f * static_cast(fmod(ph, TwoPi) - 1.f); // tri - if (w > 1.f) - { - w = 2.f - w; - } - break; - case 3: - w = ph - TwoPi * static_cast(static_cast(ph / TwoPi)); // saw - w = (0.3183098f * w) - 1.f; - break; - default: - w = (sin(fmod(ph, TwoPi)) > 0.0) ? 1.f : -1.f; - break; // square - } - - return w; + // sine + if (form == 0) { return std::sin(ph); } + // sine^2 + if (form == 1) { return std::abs(2.f * std::sin(0.5f * ph)) - 1.f; } + // sawtooth with range [0, 1], used to generate triangle, sawtooth, and square + auto saw01 = absFraction(ph / (2 * std::numbers::pi_v)); + // triangle + if (form == 2) { return 1.f - 4.f * std::abs(saw01 - 0.5f); } + // sawtooth + if (form == 3) { return 2.f * saw01 - 1.f; } + // square + return (saw01 < 0.5f) ? 1.f : -1.f; } int DrumSynth::GetPrivateProfileString( @@ -321,6 +303,7 @@ float DrumSynth::GetPrivateProfileFloat(const char* sec, const char* key, float int DrumSynth::GetDSFileSamples(QString dsfile, int16_t*& wave, int channels, sample_rate_t Fs) { + using namespace std::numbers; // input file char sec[32]; char ver[32]; @@ -403,13 +386,13 @@ int DrumSynth::GetDSFileSamples(QString dsfile, int16_t*& wave, int channels, sa timestretch *= Fs / 44100.f; DGain = 1.0f; // leave this here! - DGain = static_cast(std::pow(10.0, 0.05 * GetPrivateProfileFloat(sec, "Level", 0, dsfile))); + DGain = fastPow10f(0.05 * GetPrivateProfileFloat(sec, "Level", 0, dsfile)); MasterTune = GetPrivateProfileFloat(sec, "Tuning", 0.0, dsfile); - MasterTune = static_cast(std::pow(1.0594631f, MasterTune + mem_tune)); + MasterTune = std::pow(1.0594631f, MasterTune + mem_tune); MainFilter = 2 * GetPrivateProfileInt(sec, "Filter", 0, dsfile); MFres = 0.0101f * GetPrivateProfileFloat(sec, "Resonance", 0.0, dsfile); - MFres = static_cast(std::pow(MFres, 0.5f)); + MFres = std::sqrt(MFres); HighPass = GetPrivateProfileInt(sec, "HighPass", 0, dsfile); GetEnv(7, sec, "FilterEnv", dsfile); @@ -432,7 +415,7 @@ int DrumSynth::GetDSFileSamples(QString dsfile, int16_t*& wave, int channels, sa { a = 1.f; b = -NT / 50.f; - c = static_cast(fabs(static_cast(NT))) / 100.f; + c = std::abs(static_cast(NT)) / 100.f; g = NL; } @@ -446,19 +429,19 @@ int DrumSynth::GetDSFileSamples(QString dsfile, int16_t*& wave, int channels, sa sliLev[0] = GetPrivateProfileInt(sec, "Level", 128, dsfile); TL = static_cast(sliLev[0] * sliLev[0]) * mem_t; GetEnv(1, sec, "Envelope", dsfile); - F1 = MasterTune * TwoPi * GetPrivateProfileFloat(sec, "F1", 200.0, dsfile) / Fs; - if (fabs(F1) < 0.001f) + F1 = MasterTune * 2 * pi_v * GetPrivateProfileFloat(sec, "F1", 200.0, dsfile) / Fs; + if (std::abs(F1) < 0.001f) { F1 = 0.001f; // to prevent overtone ratio div0 } - F2 = MasterTune * TwoPi * GetPrivateProfileFloat(sec, "F2", 120.0, dsfile) / Fs; + F2 = MasterTune * 2 * pi_v * GetPrivateProfileFloat(sec, "F2", 120.0, dsfile) / Fs; TDroopRate = GetPrivateProfileFloat(sec, "Droop", 0.f, dsfile); if (TDroopRate > 0.f) { - TDroopRate = static_cast(std::pow(10.0f, (TDroopRate - 20.0f) / 30.0f)); + TDroopRate = fastPow10f((TDroopRate - 20.0f) / 30.0f); TDroopRate = TDroopRate * -4.f / envData[1][MAX]; TDroop = 1; - F2 = F1 + ((F2 - F1) / (1.f - static_cast(exp(TDroopRate * envData[1][MAX])))); + F2 = F1 + ((F2 - F1) / (1.f - std::exp(TDroopRate * envData[1][MAX]))); ddF = F1 - F2; } else @@ -477,12 +460,12 @@ int DrumSynth::GetDSFileSamples(QString dsfile, int16_t*& wave, int channels, sa GetEnv(3, sec, "Envelope1", dsfile); GetEnv(4, sec, "Envelope2", dsfile); OMode = GetPrivateProfileInt(sec, "Method", 2, dsfile); - OF1 = MasterTune * TwoPi * GetPrivateProfileFloat(sec, "F1", 200.0, dsfile) / Fs; - OF2 = MasterTune * TwoPi * GetPrivateProfileFloat(sec, "F2", 120.0, dsfile) / Fs; + OF1 = MasterTune * 2 * pi_v * GetPrivateProfileFloat(sec, "F1", 200.0, dsfile) / Fs; + OF2 = MasterTune * 2 * pi_v * GetPrivateProfileFloat(sec, "F2", 120.0, dsfile) / Fs; OW1 = GetPrivateProfileInt(sec, "Wave1", 0, dsfile); OW2 = GetPrivateProfileInt(sec, "Wave2", 0, dsfile); OBal2 = static_cast(GetPrivateProfileInt(sec, "Param", 50, dsfile)); - ODrive = static_cast(std::pow(OBal2, 3.0f)) / std::pow(50.0f, 3.0f); + ODrive = (OBal2 * OBal2 * OBal2) / 125000.0f; OBal2 *= 0.01f; OBal1 = 1.f - OBal2; Ophi1 = Tphi; @@ -506,8 +489,8 @@ int DrumSynth::GetDSFileSamples(QString dsfile, int16_t*& wave, int channels, sa OcQ = OcA * OcA; OcF = (1.8f - 0.7f * OcQ) * 0.92f; // multiply by env 2 OcA *= 1.0f + 4.0f * OBal1; // level is a compromise! - Ocf1 = TwoPi / OF1; - Ocf2 = TwoPi / OF2; + Ocf1 = 2 * pi_v / OF1; + Ocf2 = 2 * pi_v / OF2; for (i = 0; i < 6; i++) { Oc[i][0] = Oc[i][1] = Ocf1 + (Ocf2 - Ocf1) * 0.2f * static_cast(i); @@ -519,12 +502,12 @@ int DrumSynth::GetDSFileSamples(QString dsfile, int16_t*& wave, int channels, sa BON = chkOn[3]; sliLev[3] = GetPrivateProfileInt(sec, "Level", 128, dsfile); BL = static_cast(sliLev[3] * sliLev[3]) * mem_b; - BF = MasterTune * TwoPi * GetPrivateProfileFloat(sec, "F", 1000.0, dsfile) / Fs; - BPhi = TwoPi / 8.f; + BF = MasterTune * 2 * pi_v * GetPrivateProfileFloat(sec, "F", 1000.0, dsfile) / Fs; + BPhi = pi_v / 4.f; GetEnv(5, sec, "Envelope", dsfile); BFStep = GetPrivateProfileInt(sec, "dF", 50, dsfile); BQ = static_cast(BFStep); - BQ = BQ * BQ / (10000.f - 6600.f * (static_cast(sqrt(BF)) - 0.19f)); + BQ = BQ * BQ / (10000.f - 6600.f * (std::sqrt(BF) - 0.19f)); BFStep = 1 + static_cast((40.f - (BFStep / 2.5f)) / (BQ + 1.f + (1.f * BF))); strcpy(sec, "NoiseBand2"); @@ -532,12 +515,12 @@ int DrumSynth::GetDSFileSamples(QString dsfile, int16_t*& wave, int channels, sa BON2 = chkOn[4]; sliLev[4] = GetPrivateProfileInt(sec, "Level", 128, dsfile); BL2 = static_cast(sliLev[4] * sliLev[4]) * mem_b; - BF2 = MasterTune * TwoPi * GetPrivateProfileFloat(sec, "F", 1000.0, dsfile) / Fs; - BPhi2 = TwoPi / 8.f; + BF2 = MasterTune * 2 * pi_v * GetPrivateProfileFloat(sec, "F", 1000.0, dsfile) / Fs; + BPhi2 = pi_v / 4.f; GetEnv(6, sec, "Envelope", dsfile); BFStep2 = GetPrivateProfileInt(sec, "dF", 50, dsfile); BQ2 = static_cast(BFStep2); - BQ2 = BQ2 * BQ2 / (10000.f - 6600.f * (static_cast(sqrt(BF2)) - 0.19f)); + BQ2 = BQ2 * BQ2 / (10000.f - 6600.f * (std::sqrt(BF2) - 0.19f)); BFStep2 = 1 + static_cast((40 - (BFStep2 / 2.5)) / (BQ2 + 1 + (1 * BF2))); // read distortion parameters @@ -556,9 +539,8 @@ int DrumSynth::GetDSFileSamples(QString dsfile, int16_t*& wave, int channels, sa { DAtten = DGain * static_cast(LoudestEnv()); clippoint = DAtten > 32700 ? 32700 : static_cast(DAtten); - DAtten = static_cast(std::pow(2.0, 2.0 * GetPrivateProfileInt(sec, "Bits", 0, dsfile))); - DGain = DAtten * DGain - * static_cast(std::pow(10.0, 0.05 * GetPrivateProfileInt(sec, "Clipping", 0, dsfile))); + DAtten = std::exp2(2.0 * GetPrivateProfileInt(sec, "Bits", 0, dsfile)); + DGain = DAtten * DGain * fastPow10f(0.05 * GetPrivateProfileInt(sec, "Clipping", 0, dsfile)); } // prepare envelopes @@ -658,7 +640,7 @@ int DrumSynth::GetDSFileSamples(QString dsfile, int16_t*& wave, int channels, sa { for (t = tpos; t <= tplus; t++) { - phi[t - tpos] = F2 + (ddF * static_cast(exp(t * TDroopRate))); + phi[t - tpos] = F2 + (ddF * std::exp(t * TDroopRate)); } } else @@ -680,7 +662,7 @@ int DrumSynth::GetDSFileSamples(QString dsfile, int16_t*& wave, int channels, sa UpdateEnv(1, t); } Tphi = Tphi + phi[totmp]; - DF[totmp] += TL * envData[1][ENV] * static_cast(sin(fmod(Tphi, TwoPi))); // overflow? + DF[totmp] += TL * envData[1][ENV] * std::sin(Tphi); // overflow? } if (t >= envData[1][MAX]) { @@ -713,7 +695,7 @@ int DrumSynth::GetDSFileSamples(QString dsfile, int16_t*& wave, int channels, sa } BPhi = BPhi + BF + BQ * BdF; botmp = t - tpos; - DF[botmp] = DF[botmp] + static_cast(cos(fmod(BPhi, TwoPi))) * envData[5][ENV] * BL; + DF[botmp] = DF[botmp] + std::cos(BPhi) * envData[5][ENV] * BL; } if (t >= envData[5][MAX]) { @@ -739,7 +721,7 @@ int DrumSynth::GetDSFileSamples(QString dsfile, int16_t*& wave, int channels, sa } BPhi2 = BPhi2 + BF2 + BQ2 * BdF2; botmp = t - tpos; - DF[botmp] = DF[botmp] + static_cast(cos(fmod(BPhi2, TwoPi))) * envData[6][ENV] * BL2; + DF[botmp] = DF[botmp] + std::cos(BPhi2) * envData[6][ENV] * BL2; } if (t >= envData[6][MAX]) { @@ -856,7 +838,7 @@ int DrumSynth::GetDSFileSamples(QString dsfile, int16_t*& wave, int channels, sa MFtmp = envData[7][ENV]; if (MFtmp > 0.2f) { - MFfb = 1.001f - static_cast(std::pow(10.0f, MFtmp - 1)); + MFfb = 1.001f - fastPow10f(MFtmp - 1); } else { @@ -883,7 +865,7 @@ int DrumSynth::GetDSFileSamples(QString dsfile, int16_t*& wave, int channels, sa MFtmp = envData[7][ENV]; if (MFtmp > 0.2f) { - MFfb = 1.001f - static_cast(std::pow(10.0f, MFtmp - 1)); + MFfb = 1.001f - fastPow10f(MFtmp - 1); } else { diff --git a/src/core/Effect.cpp b/src/core/Effect.cpp index b6b284051..83df28b24 100644 --- a/src/core/Effect.cpp +++ b/src/core/Effect.cpp @@ -32,7 +32,7 @@ #include "ConfigManager.h" #include "SampleFrame.h" -#include "lmms_constants.h" +#include "lmms_math.h" namespace lmms { @@ -122,6 +122,41 @@ void Effect::loadSettings( const QDomElement & _this ) +bool Effect::processAudioBuffer(SampleFrame* buf, const fpp_t frames) +{ + if (!isOkay() || dontRun() || !isEnabled() || !isRunning()) + { + processBypassedImpl(); + return false; + } + + const auto status = processImpl(buf, frames); + switch (status) + { + case ProcessStatus::Continue: + break; + case ProcessStatus::ContinueIfNotQuiet: + { + double outSum = 0.0; + for (std::size_t idx = 0; idx < frames; ++idx) + { + outSum += buf[idx].sumOfSquaredAmplitudes(); + } + + checkGate(outSum / frames); + break; + } + case ProcessStatus::Sleep: + return false; + default: + break; + } + + return isRunning(); +} + + + Effect * Effect::instantiate( const QString& pluginName, Model * _parent, @@ -146,7 +181,7 @@ Effect * Effect::instantiate( const QString& pluginName, -void Effect::checkGate( double _out_sum ) +void Effect::checkGate(double outSum) { if( m_autoQuitDisabled ) { @@ -155,7 +190,7 @@ void Effect::checkGate( double _out_sum ) // Check whether we need to continue processing input. Restart the // counter if the threshold has been exceeded. - if (_out_sum - gate() <= F_EPSILON) + if (approximatelyEqual(outSum, gate())) { incrementBufferCount(); if( bufferCount() > timeout() ) diff --git a/src/core/Instrument.cpp b/src/core/Instrument.cpp index 9237ad70d..cae16dee8 100644 --- a/src/core/Instrument.cpp +++ b/src/core/Instrument.cpp @@ -25,12 +25,11 @@ #include "Instrument.h" #include +#include #include "DummyInstrument.h" #include "InstrumentTrack.h" #include "lmms_basics.h" -#include "lmms_constants.h" - namespace lmms { @@ -152,7 +151,7 @@ void Instrument::applyFadeIn(SampleFrame* buf, NotePlayHandle * n) { for (ch_cnt_t ch = 0; ch < DEFAULT_CHANNELS; ++ch) { - buf[offset + f][ch] *= 0.5 - 0.5 * cosf(F_PI * (float) f / (float) n->m_fadeInLength); + buf[offset + f][ch] *= 0.5 - 0.5 * std::cos(std::numbers::pi_v * static_cast(f) / static_cast(n->m_fadeInLength)); } } } @@ -168,7 +167,7 @@ void Instrument::applyFadeIn(SampleFrame* buf, NotePlayHandle * n) for (ch_cnt_t ch = 0; ch < DEFAULT_CHANNELS; ++ch) { float currentLength = n->m_fadeInLength * (1.0f - (float) f / frames) + new_length * ((float) f / frames); - buf[f][ch] *= 0.5 - 0.5 * cosf(F_PI * (float) (total + f) / currentLength); + buf[f][ch] *= 0.5 - 0.5 * std::cos(std::numbers::pi_v * static_cast(total + f) / currentLength); if (total + f >= currentLength) { n->m_fadeInLength = currentLength; diff --git a/src/core/InstrumentPlayHandle.cpp b/src/core/InstrumentPlayHandle.cpp index afae852a0..0405944a9 100644 --- a/src/core/InstrumentPlayHandle.cpp +++ b/src/core/InstrumentPlayHandle.cpp @@ -37,7 +37,7 @@ InstrumentPlayHandle::InstrumentPlayHandle(Instrument * instrument, InstrumentTr PlayHandle(Type::InstrumentPlayHandle), m_instrument(instrument) { - setAudioPort(instrumentTrack->audioPort()); + setAudioBusHandle(instrumentTrack->audioBusHandle()); } void InstrumentPlayHandle::play(SampleFrame* working_buffer) diff --git a/src/core/InstrumentSoundShaping.cpp b/src/core/InstrumentSoundShaping.cpp index eca06f9a2..93f4fb45b 100644 --- a/src/core/InstrumentSoundShaping.cpp +++ b/src/core/InstrumentSoundShaping.cpp @@ -30,7 +30,6 @@ #include "BasicFilters.h" #include "embed.h" #include "Engine.h" -#include "EnvelopeAndLfoParameters.h" #include "Instrument.h" #include "InstrumentTrack.h" @@ -43,42 +42,21 @@ const float RES_MULTIPLIER = 2.0f; const float RES_PRECISION = 1000.0f; -// names for env- and lfo-targets - first is name being displayed to user -// and second one is used internally, e.g. for saving/restoring settings -const char *const InstrumentSoundShaping::targetNames[InstrumentSoundShaping::NumTargets][3] = -{ - { QT_TRANSLATE_NOOP("InstrumentSoundShaping", "VOLUME"), "vol", - QT_TRANSLATE_NOOP("InstrumentSoundShaping", "Volume") }, - { QT_TRANSLATE_NOOP("InstrumentSoundShaping", "CUTOFF"), "cut", - QT_TRANSLATE_NOOP("InstrumentSoundShaping", "Cutoff frequency") }, - { QT_TRANSLATE_NOOP("InstrumentSoundShaping", "RESO"), "res", - QT_TRANSLATE_NOOP("InstrumentSoundShaping", "Resonance") } -} ; - - - InstrumentSoundShaping::InstrumentSoundShaping( InstrumentTrack * _instrument_track ) : Model( _instrument_track, tr( "Envelopes/LFOs" ) ), m_instrumentTrack( _instrument_track ), + m_volumeParameters(1., this), + m_cutoffParameters(0., this), + m_resonanceParameters(0., this), m_filterEnabledModel( false, this ), m_filterModel( this, tr( "Filter type" ) ), m_filterCutModel( 14000.0, 1.0, 14000.0, 1.0, this, tr( "Cutoff frequency" ) ), m_filterResModel(0.5f, BasicFilters<>::minQ(), 10.f, 0.01f, this, tr("Q/Resonance")) { - for (auto i = std::size_t{0}; i < NumTargets; ++i) - { - float value_for_zero_amount = 0.0; - if( static_cast(i) == Target::Volume ) - { - value_for_zero_amount = 1.0; - } - m_envLfoParameters[i] = new EnvelopeAndLfoParameters( - value_for_zero_amount, - this ); - m_envLfoParameters[i]->setDisplayName( - tr( targetNames[i][2] ) ); - } + m_volumeParameters.setDisplayName(tr("Volume")); + m_cutoffParameters.setDisplayName(tr("Cutoff frequency")); + m_resonanceParameters.setDisplayName(tr("Resonance")); m_filterModel.addItem( tr( "Low-pass" ), std::make_unique( "filter_lp" ) ); m_filterModel.addItem( tr( "Hi-pass" ), std::make_unique( "filter_hp" ) ); @@ -119,7 +97,7 @@ float InstrumentSoundShaping::volumeLevel( NotePlayHandle* n, const f_cnt_t fram } float level; - m_envLfoParameters[static_cast(Target::Volume)]->fillLevel( &level, frame, envReleaseBegin, 1 ); + getVolumeParameters().fillLevel(&level, frame, envReleaseBegin, 1); return level; } @@ -148,6 +126,9 @@ void InstrumentSoundShaping::processAudioBuffer( SampleFrame* buffer, // only use filter, if it is really needed + auto& cutoffParameters = getCutoffParameters(); + auto& resonanceParameters = getResonanceParameters(); + if( m_filterEnabledModel.value() ) { QVarLengthArray cutBuffer(frames); @@ -162,20 +143,20 @@ void InstrumentSoundShaping::processAudioBuffer( SampleFrame* buffer, } n->m_filter->setFilterType( static_cast::FilterType>(m_filterModel.value()) ); - if( m_envLfoParameters[static_cast(Target::Cut)]->isUsed() ) + if (cutoffParameters.isUsed()) { - m_envLfoParameters[static_cast(Target::Cut)]->fillLevel( cutBuffer.data(), envTotalFrames, envReleaseBegin, frames ); + cutoffParameters.fillLevel(cutBuffer.data(), envTotalFrames, envReleaseBegin, frames); } - if( m_envLfoParameters[static_cast(Target::Resonance)]->isUsed() ) + + if (resonanceParameters.isUsed()) { - m_envLfoParameters[static_cast(Target::Resonance)]->fillLevel( resBuffer.data(), envTotalFrames, envReleaseBegin, frames ); + resonanceParameters.fillLevel(resBuffer.data(), envTotalFrames, envReleaseBegin, frames); } const float fcv = m_filterCutModel.value(); const float frv = m_filterResModel.value(); - if( m_envLfoParameters[static_cast(Target::Cut)]->isUsed() && - m_envLfoParameters[static_cast(Target::Resonance)]->isUsed() ) + if (cutoffParameters.isUsed() && resonanceParameters.isUsed()) { for( fpp_t frame = 0; frame < frames; ++frame ) { @@ -196,7 +177,7 @@ void InstrumentSoundShaping::processAudioBuffer( SampleFrame* buffer, buffer[frame][1] = n->m_filter->update( buffer[frame][1], 1 ); } } - else if( m_envLfoParameters[static_cast(Target::Cut)]->isUsed() ) + else if (cutoffParameters.isUsed()) { for( fpp_t frame = 0; frame < frames; ++frame ) { @@ -213,7 +194,7 @@ void InstrumentSoundShaping::processAudioBuffer( SampleFrame* buffer, buffer[frame][1] = n->m_filter->update( buffer[frame][1], 1 ); } } - else if( m_envLfoParameters[static_cast(Target::Resonance)]->isUsed() ) + else if(resonanceParameters.isUsed() ) { for( fpp_t frame = 0; frame < frames; ++frame ) { @@ -241,10 +222,12 @@ void InstrumentSoundShaping::processAudioBuffer( SampleFrame* buffer, } } - if( m_envLfoParameters[static_cast(Target::Volume)]->isUsed() ) + auto& volumeParameters = getVolumeParameters(); + + if (volumeParameters.isUsed()) { QVarLengthArray volBuffer(frames); - m_envLfoParameters[static_cast(Target::Volume)]->fillLevel( volBuffer.data(), envTotalFrames, envReleaseBegin, frames ); + volumeParameters.fillLevel(volBuffer.data(), envTotalFrames, envReleaseBegin, frames); for( fpp_t frame = 0; frame < frames; ++frame ) { @@ -275,19 +258,23 @@ void InstrumentSoundShaping::processAudioBuffer( SampleFrame* buffer, f_cnt_t InstrumentSoundShaping::envFrames( const bool _only_vol ) const { - f_cnt_t ret_val = m_envLfoParameters[static_cast(Target::Volume)]->PAHD_Frames(); + f_cnt_t ret_val = getVolumeParameters().PAHD_Frames(); - if( _only_vol == false ) + if (!_only_vol) { - for (auto i = static_cast(Target::Volume) + 1; i < NumTargets; ++i) + auto& cutoffParameters = getCutoffParameters(); + if (cutoffParameters.isUsed()) { - if( m_envLfoParameters[i]->isUsed() && - m_envLfoParameters[i]->PAHD_Frames() > ret_val ) - { - ret_val = m_envLfoParameters[i]->PAHD_Frames(); - } + ret_val = std::max(ret_val, cutoffParameters.PAHD_Frames()); + } + + auto& resonanceParameters = getResonanceParameters(); + if (resonanceParameters.isUsed()) + { + ret_val = std::max(ret_val, resonanceParameters.PAHD_Frames()); } } + return ret_val; } @@ -308,23 +295,33 @@ f_cnt_t InstrumentSoundShaping::releaseFrames() const return ret_val; } - if( m_envLfoParameters[static_cast(Target::Volume)]->isUsed() ) + auto& volumeParameters = getVolumeParameters(); + + if (volumeParameters.isUsed()) { - return m_envLfoParameters[static_cast(Target::Volume)]->releaseFrames(); + return volumeParameters.releaseFrames(); } - for (auto i = static_cast(Target::Volume) + 1; i < NumTargets; ++i) + auto& cutoffParameters = getCutoffParameters(); + if (cutoffParameters.isUsed()) { - if( m_envLfoParameters[i]->isUsed() ) - { - ret_val = std::max(ret_val, m_envLfoParameters[i]->releaseFrames()); - } + ret_val = std::max(ret_val, cutoffParameters.releaseFrames()); } + + auto& resonanceParameters = getResonanceParameters(); + if (resonanceParameters.isUsed()) + { + ret_val = std::max(ret_val, resonanceParameters.releaseFrames()); + } + return ret_val; } - +static void saveEnvelopeAndLFOParameters(EnvelopeAndLfoParameters& p, const QString & tagName, QDomDocument & _doc, QDomElement & _this) +{ + p.saveState(_doc, _this).setTagName(tagName); +} void InstrumentSoundShaping::saveSettings( QDomDocument & _doc, QDomElement & _this ) { @@ -333,12 +330,9 @@ void InstrumentSoundShaping::saveSettings( QDomDocument & _doc, QDomElement & _t m_filterResModel.saveSettings( _doc, _this, "fres" ); m_filterEnabledModel.saveSettings( _doc, _this, "fwet" ); - for (auto i = std::size_t{0}; i < NumTargets; ++i) - { - m_envLfoParameters[i]->saveState( _doc, _this ).setTagName( - m_envLfoParameters[i]->nodeName() + - QString( targetNames[i][1] ).toLower() ); - } + saveEnvelopeAndLFOParameters(getVolumeParameters(), getVolumeNodeName(), _doc, _this); + saveEnvelopeAndLFOParameters(getCutoffParameters(), getCutoffNodeName(), _doc, _this); + saveEnvelopeAndLFOParameters(getResonanceParameters(), getResonanceNodeName(), _doc, _this); } @@ -352,27 +346,42 @@ void InstrumentSoundShaping::loadSettings( const QDomElement & _this ) m_filterEnabledModel.loadSettings( _this, "fwet" ); QDomNode node = _this.firstChild(); - while( !node.isNull() ) + while (!node.isNull()) { - if( node.isElement() ) + if (node.isElement()) { - for (auto i = std::size_t{0}; i < NumTargets; ++i) + const auto nodeName = node.nodeName(); + if (nodeName == getVolumeNodeName()) { - if( node.nodeName() == - m_envLfoParameters[i]->nodeName() + - QString( targetNames[i][1] ). - toLower() ) - { - m_envLfoParameters[i]->restoreState( node.toElement() ); - } + getVolumeParameters().restoreState(node.toElement()); + } + else if (nodeName == getCutoffNodeName()) + { + getCutoffParameters().restoreState(node.toElement()); + } + else if (nodeName == getResonanceNodeName()) + { + getResonanceParameters().restoreState(node.toElement()); } } + node = node.nextSibling(); } } +QString InstrumentSoundShaping::getVolumeNodeName() const +{ + return getVolumeParameters().nodeName() + "vol"; +} +QString InstrumentSoundShaping::getCutoffNodeName() const +{ + return getCutoffParameters().nodeName() + "cut"; +} - +QString InstrumentSoundShaping::getResonanceNodeName() const +{ + return getResonanceParameters().nodeName() + "res"; +} } // namespace lmms diff --git a/src/core/Keymap.cpp b/src/core/Keymap.cpp index 6683919fe..be422991a 100644 --- a/src/core/Keymap.cpp +++ b/src/core/Keymap.cpp @@ -147,7 +147,7 @@ void Keymap::loadSettings(const QDomElement &element) QDomNode node = element.firstChild(); m_map.clear(); - for (int i = 0; !node.isNull(); i++) + while (!node.isNull()) { m_map.push_back(node.toElement().attribute("value").toInt()); node = node.nextSibling(); diff --git a/src/core/LadspaManager.cpp b/src/core/LadspaManager.cpp index e4d472bd1..5b94cac3f 100644 --- a/src/core/LadspaManager.cpp +++ b/src/core/LadspaManager.cpp @@ -28,6 +28,8 @@ #include #include #include +#include +#include #include @@ -45,6 +47,8 @@ LadspaManager::LadspaManager() // Make sure plugin search paths are set up PluginFactory::setupSearchPaths(); + QList excludePatterns = PluginFactory::getExcludePatterns("LMMS_EXCLUDE_LADSPA"); + QStringList ladspaDirectories = QString( getenv( "LADSPA_PATH" ) ). split( LADSPA_PATH_SEPERATOR ); ladspaDirectories += ConfigManager::inst()->ladspaDir().split( ',' ); @@ -67,7 +71,15 @@ LadspaManager::LadspaManager() QFileInfoList list = directory.entryInfoList(); for (const auto& f : list) { - if(!f.isFile() || f.fileName().right( 3 ).toLower() != + bool exclude = false; + for (const auto& pattern : excludePatterns) { + if (pattern.match(f.filePath()).hasMatch()) { + exclude = true; + break; + } + } + + if (exclude || !f.isFile() || f.fileName().right(3).toLower() != #ifdef LMMS_BUILD_WIN32 "dll" #else @@ -436,8 +448,8 @@ float LadspaManager::getDefaultSetting( const ladspa_key_t & _plugin, if( LADSPA_IS_HINT_LOGARITHMIC ( hintDescriptor ) ) { - return( exp( log( portRangeHint->LowerBound ) * 0.75 + - log( portRangeHint->UpperBound ) * 0.25 ) ); + return std::exp(std::log(portRangeHint->LowerBound) + * 0.75 + std::log(portRangeHint->UpperBound) * 0.25); } else { @@ -448,8 +460,7 @@ float LadspaManager::getDefaultSetting( const ladspa_key_t & _plugin, if( LADSPA_IS_HINT_LOGARITHMIC ( hintDescriptor ) ) { - return( sqrt( portRangeHint->LowerBound - * portRangeHint->UpperBound ) ); + return std::sqrt(portRangeHint->LowerBound * portRangeHint->UpperBound); } else { @@ -460,8 +471,8 @@ float LadspaManager::getDefaultSetting( const ladspa_key_t & _plugin, if( LADSPA_IS_HINT_LOGARITHMIC ( hintDescriptor ) ) { - return( exp( log( portRangeHint->LowerBound ) * 0.25 + - log( portRangeHint->UpperBound ) * 0.75 ) ); + return std::exp(std::log(portRangeHint->LowerBound) + * 0.25 + std::log(portRangeHint->UpperBound) * 0.75); } else { diff --git a/include/panning_constants.h b/src/core/Metronome.cpp similarity index 58% rename from include/panning_constants.h rename to src/core/Metronome.cpp index 8f40219f8..8afc6afa4 100644 --- a/include/panning_constants.h +++ b/src/core/Metronome.cpp @@ -1,8 +1,7 @@ /* - * panning_constants.h - declaration of some constants, concerning the - * panning of a note + * Metronome.cpp * - * Copyright (c) 2004-2009 Tobias Doerffel + * Copyright (c) 2024 saker * * This file is part of LMMS - https://lmms.io * @@ -23,19 +22,20 @@ * */ -#ifndef LMMS_PANNING_CONSTANTS_H -#define LMMS_PANNING_CONSTANTS_H +#include "Metronome.h" -namespace lmms +#include "Engine.h" +#include "SamplePlayHandle.h" + +namespace lmms { +void Metronome::processTick(int currentTick, int ticksPerBar, int beatsPerBar, size_t bufferOffset) { + const auto ticksPerBeat = ticksPerBar / beatsPerBar; + if (currentTick % ticksPerBeat != 0 || !m_active) { return; } - -constexpr panning_t PanningRight = ( 0 + 100 ); -constexpr panning_t PanningLeft = - PanningRight; -constexpr panning_t PanningCenter = 0; -constexpr panning_t DefaultPanning = PanningCenter; - - + const auto handle = currentTick % ticksPerBar == 0 ? new SamplePlayHandle("misc/metronome02.ogg") + : new SamplePlayHandle("misc/metronome01.ogg"); + handle->setOffset(bufferOffset); + Engine::audioEngine()->addPlayHandle(handle); +} } // namespace lmms - -#endif // LMMS_PANNING_CONSTANTS_H diff --git a/src/core/Microtuner.cpp b/src/core/Microtuner.cpp index 46d83017f..59f550141 100644 --- a/src/core/Microtuner.cpp +++ b/src/core/Microtuner.cpp @@ -102,10 +102,10 @@ float Microtuner::keyToFreq(int key, int userBaseNote) const // Compute frequency of the middle note and return the final frequency const double octaveRatio = intervals[octaveDegree].getRatio(); - const float middleFreq = (keymap->getBaseFreq() / pow(octaveRatio, (baseScaleOctave + baseKeymapOctave))) - / intervals[baseScaleDegree].getRatio(); + const float middleFreq = (keymap->getBaseFreq() / std::pow(octaveRatio, baseScaleOctave + baseKeymapOctave)) + / intervals[baseScaleDegree].getRatio(); - return middleFreq * intervals[scaleDegree].getRatio() * pow(octaveRatio, keymapOctave + scaleOctave); + return middleFreq * intervals[scaleDegree].getRatio() * std::pow(octaveRatio, keymapOctave + scaleOctave); } int Microtuner::octaveSize() const diff --git a/src/core/MixHelpers.cpp b/src/core/MixHelpers.cpp index 01ea0386e..c10e4c50c 100644 --- a/src/core/MixHelpers.cpp +++ b/src/core/MixHelpers.cpp @@ -71,7 +71,7 @@ bool isSilent( const SampleFrame* src, int frames ) for( int i = 0; i < frames; ++i ) { - if( fabsf( src[i][0] ) >= silenceThreshold || fabsf( src[i][1] ) >= silenceThreshold ) + if (std::abs(src[i][0]) >= silenceThreshold || std::abs(src[i][1]) >= silenceThreshold) { return false; } diff --git a/src/core/Mixer.cpp b/src/core/Mixer.cpp index 7e3fc1f60..0add6008d 100644 --- a/src/core/Mixer.cpp +++ b/src/core/Mixer.cpp @@ -44,7 +44,7 @@ MixerRoute::MixerRoute( MixerChannel * from, MixerChannel * to, float amount ) : m_from( from ), m_to( to ), m_amount(amount, 0, 1, 0.001f, nullptr, - tr("Amount to send from channel %1 to channel %2").arg(m_from->m_channelIndex).arg(m_to->m_channelIndex)) + tr("Amount to send from channel %1 to channel %2").arg(m_from->index()).arg(m_to->index())) { //qDebug( "created: %d to %d", m_from->m_channelIndex, m_to->m_channelIndex ); // create send amount model @@ -54,7 +54,7 @@ MixerRoute::MixerRoute( MixerChannel * from, MixerChannel * to, float amount ) : void MixerRoute::updateName() { m_amount.setDisplayName( - tr( "Amount to send from channel %1 to channel %2" ).arg( m_from->m_channelIndex ).arg( m_to->m_channelIndex ) ); + tr("Amount to send from channel %1 to channel %2").arg(m_from->index()).arg(m_to->index())); } @@ -70,9 +70,9 @@ MixerChannel::MixerChannel( int idx, Model * _parent ) : m_volumeModel(1.f, 0.f, 2.f, 0.001f, _parent), m_name(), m_lock(), - m_channelIndex( idx ), m_queued( false ), - m_dependenciesMet(0) + m_dependenciesMet(0), + m_channelIndex(idx) { zeroSampleFrames(m_buffer, Engine::audioEngine()->framesPerPeriod()); } @@ -109,8 +109,55 @@ void MixerChannel::incrementDeps() void MixerChannel::unmuteForSolo() { - //TODO: Recursively activate every channel, this channel sends to m_muteModel.setValue(false); + + // if channel is not master, unmute also every channel it sends to/receives from + if (!isMaster()) + { + for (const MixerRoute* sendsRoute : m_sends) + { + sendsRoute->receiver()->unmuteSenderForSolo(); + } + + for (const MixerRoute* receiverRoute : m_receives) + { + receiverRoute->sender()->unmuteReceiverForSolo(); + } + } +} + +void MixerChannel::unmuteSenderForSolo() +{ + m_muteModel.setValue(false); + + // if channel is not master, unmute every channel it sends to + if (!isMaster()) + { + for (const MixerRoute* sendsRoute : m_sends) + { + sendsRoute->receiver()->unmuteSenderForSolo(); + } + } +} + + +void MixerChannel::unmuteReceiverForSolo() +{ + m_muteModel.setValue(false); + + // if channel is not master, unmute every channel it receives from, and of those, unmute the channels they send to + if (!isMaster()) + { + for (const MixerRoute* receiverRoute : m_receives) + { + receiverRoute->sender()->unmuteReceiverForSolo(); + } + + for (const MixerRoute* sendsRoute : m_sends) + { + sendsRoute->receiver()->unmuteSenderForSolo(); + } + } } @@ -275,7 +322,7 @@ void Mixer::toggledSolo() } else { activateSolo(); } - // unmute the soloed chan and every channel it sends to + // unmute the soloed chan and every channel it sends to/receives from m_mixerChannels[soloedChan]->unmuteForSolo(); } else { deactivateSolo(); @@ -360,7 +407,7 @@ void Mixer::deleteChannel( int index ) validateChannelName( i, i + 1 ); // set correct channel index - m_mixerChannels[i]->m_channelIndex = i; + m_mixerChannels[i]->setIndex(i); // now check all routes and update names of the send models for( MixerRoute * r : m_mixerChannels[i]->m_sends ) @@ -433,8 +480,8 @@ void Mixer::moveChannelLeft( int index ) qSwap(m_mixerChannels[index], m_mixerChannels[index - 1]); // Update m_channelIndex of both channels - m_mixerChannels[index]->m_channelIndex = index; - m_mixerChannels[index - 1]->m_channelIndex = index -1; + m_mixerChannels[index]->setIndex(index); + m_mixerChannels[index - 1]->setIndex(index - 1); } diff --git a/src/core/NotePlayHandle.cpp b/src/core/NotePlayHandle.cpp index 7d649e1dd..0c27529df 100644 --- a/src/core/NotePlayHandle.cpp +++ b/src/core/NotePlayHandle.cpp @@ -26,12 +26,12 @@ #include "NotePlayHandle.h" #include "AudioEngine.h" -#include "BasicFilters.h" #include "DetuningHelper.h" #include "InstrumentSoundShaping.h" #include "InstrumentTrack.h" #include "Instrument.h" #include "Song.h" +#include "lmms_math.h" namespace lmms { @@ -114,7 +114,7 @@ NotePlayHandle::NotePlayHandle( InstrumentTrack* instrumentTrack, setUsesBuffer( false ); } - setAudioPort( instrumentTrack->audioPort() ); + setAudioBusHandle(instrumentTrack->audioBusHandle()); unlock(); } @@ -532,8 +532,8 @@ void NotePlayHandle::updateFrequency() if (m_instrumentTrack->isKeyMapped(transposedKey)) { const auto frequency = m_instrumentTrack->m_microtuner.keyToFreq(transposedKey, baseNote); - m_frequency = frequency * powf(2.f, (detune + instrumentPitch / 100) / 12.f); - m_unpitchedFrequency = frequency * powf(2.f, detune / 12.f); + m_frequency = frequency * std::exp2((detune + instrumentPitch / 100) / 12.f); + m_unpitchedFrequency = frequency * std::exp2(detune / 12.f); } else { @@ -544,8 +544,8 @@ void NotePlayHandle::updateFrequency() { // default key mapping and 12-TET frequency computation with default 440 Hz base note frequency const float pitch = (key() - baseNote + masterPitch + detune) / 12.0f; - m_frequency = DefaultBaseFreq * powf(2.0f, pitch + instrumentPitch / (100 * 12.0f)); - m_unpitchedFrequency = DefaultBaseFreq * powf(2.0f, pitch); + m_frequency = DefaultBaseFreq * std::exp2(pitch + instrumentPitch / (100 * 12.0f)); + m_unpitchedFrequency = DefaultBaseFreq * std::exp2(pitch); } for (auto it : m_subNotes) diff --git a/src/core/Oscillator.cpp b/src/core/Oscillator.cpp index a875cf2d4..5b48ddf3e 100644 --- a/src/core/Oscillator.cpp +++ b/src/core/Oscillator.cpp @@ -29,6 +29,7 @@ #if !defined(__MINGW32__) && !defined(__MINGW64__) #include #endif +#include #include "BufferManager.h" #include "Engine.h" @@ -118,6 +119,7 @@ void Oscillator::update(SampleFrame* ab, const fpp_t frames, const ch_cnt_t chnl void Oscillator::generateSawWaveTable(int bands, sample_t* table, int firstBand) { + using namespace std::numbers; // sawtooth wave contain both even and odd harmonics // hence sinewaves are added for all bands // https://en.wikipedia.org/wiki/Sawtooth_wave @@ -127,7 +129,7 @@ void Oscillator::generateSawWaveTable(int bands, sample_t* table, int firstBand) const float imod = (i - OscillatorConstants::WAVETABLE_LENGTH / 2.f) / OscillatorConstants::WAVETABLE_LENGTH; for (int n = firstBand; n <= bands; n++) { - table[i] += (n % 2 ? 1.0f : -1.0f) / n * sinf(F_2PI * n * imod) / F_PI_2; + table[i] += (n % 2 ? 1.0f : -1.0f) / n * std::sin(2 * pi_v * n * imod) / (pi_v * 0.5f); } } } @@ -135,6 +137,8 @@ void Oscillator::generateSawWaveTable(int bands, sample_t* table, int firstBand) void Oscillator::generateTriangleWaveTable(int bands, sample_t* table, int firstBand) { + using namespace std::numbers; + constexpr float pi_sqr = pi_v * pi_v; // triangle waves contain only odd harmonics // hence sinewaves are added for alternate bands // https://en.wikipedia.org/wiki/Triangle_wave @@ -142,8 +146,8 @@ void Oscillator::generateTriangleWaveTable(int bands, sample_t* table, int first { for (int n = firstBand | 1; n <= bands; n += 2) { - table[i] += (n & 2 ? -1.0f : 1.0f) / powf(n, 2.0f) * - sinf(F_2PI * n * i / (float)OscillatorConstants::WAVETABLE_LENGTH) / (F_PI_SQR / 8); + table[i] += (n & 2 ? -1.0f : 1.0f) / (n * n) + * std::sin(2 * pi_v * n * i / (float)OscillatorConstants::WAVETABLE_LENGTH) / (pi_sqr / 8.f); } } } @@ -151,6 +155,7 @@ void Oscillator::generateTriangleWaveTable(int bands, sample_t* table, int first void Oscillator::generateSquareWaveTable(int bands, sample_t* table, int firstBand) { + using namespace std::numbers; // square waves only contain odd harmonics, // at diffrent levels when compared to triangle waves // https://en.wikipedia.org/wiki/Square_wave @@ -158,7 +163,9 @@ void Oscillator::generateSquareWaveTable(int bands, sample_t* table, int firstBa { for (int n = firstBand | 1; n <= bands; n += 2) { - table[i] += (1.0f / n) * sinf(F_2PI * i * n / OscillatorConstants::WAVETABLE_LENGTH) / (F_PI / 4); + table[i] += (1.0f / n) + * std::sin(2 * pi_v * i * n / OscillatorConstants::WAVETABLE_LENGTH) + / (pi_v / 4.f); } } } diff --git a/src/core/PeakController.cpp b/src/core/PeakController.cpp index 1c38cf4cb..1b819982a 100644 --- a/src/core/PeakController.cpp +++ b/src/core/PeakController.cpp @@ -80,9 +80,7 @@ void PeakController::updateValueBuffer() { if( m_coeffNeedsUpdate ) { - const float ratio = 44100.0f / Engine::audioEngine()->outputSampleRate(); - m_attackCoeff = 1.0f - powf( 2.0f, -0.3f * ( 1.0f - m_peakEffect->attackModel()->value() ) * ratio ); - m_decayCoeff = 1.0f - powf( 2.0f, -0.3f * ( 1.0f - m_peakEffect->decayModel()->value() ) * ratio ); + m_coeff = 100.0f / Engine::audioEngine()->outputSampleRate(); m_coeffNeedsUpdate = false; } @@ -97,14 +95,7 @@ void PeakController::updateValueBuffer() for( f_cnt_t f = 0; f < frames; ++f ) { const float diff = ( targetSample - m_currentSample ); - if( m_currentSample < targetSample ) // going up... - { - m_currentSample += diff * m_attackCoeff; - } - else if( m_currentSample > targetSample ) // going down - { - m_currentSample += diff * m_decayCoeff; - } + m_currentSample += diff * m_coeff; values[f] = m_currentSample; } } diff --git a/src/core/PlayHandle.cpp b/src/core/PlayHandle.cpp index af485dd0c..ddb36b56d 100644 --- a/src/core/PlayHandle.cpp +++ b/src/core/PlayHandle.cpp @@ -40,7 +40,7 @@ PlayHandle::PlayHandle(const Type type, f_cnt_t offset) : m_playHandleBuffer(BufferManager::acquire()), m_bufferReleased(true), m_usesBuffer(true), - m_audioPort{nullptr} + m_audioBusHandle{nullptr} { } @@ -76,4 +76,4 @@ SampleFrame* PlayHandle::buffer() return m_bufferReleased ? nullptr : m_playHandleBuffer; }; -} // namespace lmms \ No newline at end of file +} // namespace lmms diff --git a/src/core/PluginFactory.cpp b/src/core/PluginFactory.cpp index ec0f4ec4e..38cd2dc58 100644 --- a/src/core/PluginFactory.cpp +++ b/src/core/PluginFactory.cpp @@ -28,6 +28,7 @@ #include #include #include +#include #include #include "lmmsconfig.h" @@ -157,6 +158,9 @@ void PluginFactory::discoverPlugins() #endif } + // Apply any plugin filters from environment LMMS_EXCLUDE_PLUGINS + filterPlugins(files); + // Cheap dependency handling: zynaddsubfx needs ZynAddSubFxCore. By loading // all libraries twice we ensure that libZynAddSubFxCore is found. for (const QFileInfo& file : files) @@ -245,7 +249,59 @@ void PluginFactory::discoverPlugins() m_descriptors = descriptors; } +// Builds QList based on environment variable envVar +QList PluginFactory::getExcludePatterns(const char* envVar) { + QList excludePatterns; + QString excludePatternString = std::getenv(envVar); + if (!excludePatternString.isEmpty()) { + QStringList patterns = excludePatternString.split(','); + for (const QString& pattern : patterns) { + if (pattern.trimmed().isEmpty()) { + continue; + } + QRegularExpression regex(pattern.trimmed()); + if (regex.isValid()) { + excludePatterns << regex; + } else { + qWarning() << "Invalid regular expression:" << pattern; + } + } + } + return excludePatterns; +} + +// Filter plugins based on environment variable, e.g. export LMMS_EXCLUDE_PLUGINS="libcarla" +void PluginFactory::filterPlugins(QSet& files) { + // Get filter + QList excludePatterns = getExcludePatterns("LMMS_EXCLUDE_PLUGINS"); + if (excludePatterns.isEmpty()) { + return; + } + + // Get files to remove + QSet filesToRemove; + for (const QFileInfo& fileInfo : files) { + bool exclude = false; + QString filePath = fileInfo.filePath(); + + for (const QRegularExpression& pattern : excludePatterns) { + if (pattern.match(filePath).hasMatch()) { + exclude = true; + break; + } + } + + if (exclude) { + filesToRemove.insert(fileInfo); + } + } + + // Remove them + for (const QFileInfo& fileInfo : filesToRemove) { + files.remove(fileInfo); + } +} QString PluginFactory::PluginInfo::name() const { diff --git a/src/core/PresetPreviewPlayHandle.cpp b/src/core/PresetPreviewPlayHandle.cpp index e7e67185e..1d6b00e4f 100644 --- a/src/core/PresetPreviewPlayHandle.cpp +++ b/src/core/PresetPreviewPlayHandle.cpp @@ -178,7 +178,7 @@ PresetPreviewPlayHandle::PresetPreviewPlayHandle( const QString & _preset_file, std::numeric_limits::max() / 2, Note( 0, 0, DefaultKey, 100 ) ); - setAudioPort( s_previewTC->previewInstrumentTrack()->audioPort() ); + setAudioBusHandle(s_previewTC->previewInstrumentTrack()->audioBusHandle()); s_previewTC->setPreviewNote( m_previewNote ); diff --git a/src/core/ProjectRenderer.cpp b/src/core/ProjectRenderer.cpp index 3d83515f2..c56c34068 100644 --- a/src/core/ProjectRenderer.cpp +++ b/src/core/ProjectRenderer.cpp @@ -159,17 +159,6 @@ void ProjectRenderer::startProcessing() void ProjectRenderer::run() { -#if 0 -#if defined(LMMS_BUILD_LINUX) || defined(LMMS_BUILD_FREEBSD) -#ifdef LMMS_HAVE_SCHED_H - cpu_set_t mask; - CPU_ZERO( &mask ); - CPU_SET( 0, &mask ); - sched_setaffinity( 0, sizeof( mask ), &mask ); -#endif -#endif -#endif - PerfLogTimer perfLog("Project Render"); Engine::getSong()->startExport(); @@ -221,7 +210,7 @@ void ProjectRenderer::abortProcessing() void ProjectRenderer::updateConsoleProgress() { - const int cols = 50; + constexpr int cols = 50; static int rot = 0; auto buf = std::array{}; auto prog = std::array{}; @@ -232,9 +221,9 @@ void ProjectRenderer::updateConsoleProgress() } prog[cols] = 0; - const auto activity = (const char*)"|/-\\"; + const auto activity = "|/-\\"; std::fill(buf.begin(), buf.end(), 0); - sprintf(buf.data(), "\r|%s| %3d%% %c ", prog.data(), m_progress, + std::snprintf(buf.data(), buf.size(), "\r|%s| %3d%% %c ", prog.data(), m_progress, activity[rot] ); rot = ( rot+1 ) % 4; diff --git a/src/core/RemotePlugin.cpp b/src/core/RemotePlugin.cpp index dc26bf2b5..e0eeff524 100644 --- a/src/core/RemotePlugin.cpp +++ b/src/core/RemotePlugin.cpp @@ -235,6 +235,11 @@ bool RemotePlugin::init(const QString &pluginExecutable, m_failed = false; } QString exec = QFileInfo(QDir("plugins:"), pluginExecutable).absoluteFilePath(); + + // We may have received a directory via a environment variable + if (const char* env_path = std::getenv("LMMS_PLUGIN_DIR")) + exec = QFileInfo(QDir(env_path), pluginExecutable).absoluteFilePath(); + #ifdef LMMS_BUILD_APPLE // search current directory first QString curDir = QCoreApplication::applicationDirPath() + "/" + pluginExecutable; @@ -252,7 +257,7 @@ bool RemotePlugin::init(const QString &pluginExecutable, if( ! QFile( exec ).exists() ) { - qWarning( "Remote plugin '%s' not found.", + qWarning( "Remote plugin '%s' not found", exec.toUtf8().constData() ); m_failed = true; invalidate(); @@ -480,7 +485,7 @@ void RemotePlugin::resizeSharedProcessingMemory() const size_t s = (m_inputCount + m_outputCount) * Engine::audioEngine()->framesPerPeriod(); try { - m_audioBuffer.create(QUuid::createUuid().toString().toStdString(), s); + m_audioBuffer.create(s); } catch (const std::runtime_error& error) { diff --git a/src/core/SamplePlayHandle.cpp b/src/core/SamplePlayHandle.cpp index f2ddc2a4a..eed727fc1 100644 --- a/src/core/SamplePlayHandle.cpp +++ b/src/core/SamplePlayHandle.cpp @@ -24,7 +24,7 @@ #include "SamplePlayHandle.h" #include "AudioEngine.h" -#include "AudioPort.h" +#include "AudioBusHandle.h" #include "Engine.h" #include "Note.h" #include "PatternTrack.h" @@ -35,20 +35,20 @@ namespace lmms { -SamplePlayHandle::SamplePlayHandle(Sample* sample, bool ownAudioPort) : - PlayHandle( Type::SamplePlayHandle ), +SamplePlayHandle::SamplePlayHandle(Sample* sample, bool ownAudioBusHandle) : + PlayHandle(Type::SamplePlayHandle), m_sample(sample), - m_doneMayReturnTrue( true ), - m_frame( 0 ), - m_ownAudioPort( ownAudioPort ), - m_defaultVolumeModel( DefaultVolume, MinVolume, MaxVolume, 1 ), - m_volumeModel( &m_defaultVolumeModel ), - m_track( nullptr ), - m_patternTrack( nullptr ) + m_doneMayReturnTrue(true), + m_frame(0), + m_ownAudioBusHandle(ownAudioBusHandle), + m_defaultVolumeModel(DefaultVolume, MinVolume, MaxVolume, 1), + m_volumeModel(&m_defaultVolumeModel), + m_track(nullptr), + m_patternTrack(nullptr) { - if (ownAudioPort) + if (ownAudioBusHandle) { - setAudioPort( new AudioPort( "SamplePlayHandle", false ) ); + setAudioBusHandle(new AudioBusHandle("SamplePlayHandle", false)); } } @@ -67,7 +67,7 @@ SamplePlayHandle::SamplePlayHandle( SampleClip* clip ) : SamplePlayHandle(&clip->sample(), false) { m_track = clip->getTrack(); - setAudioPort( ( (SampleTrack *)clip->getTrack() )->audioPort() ); + setAudioBusHandle(((SampleTrack *)clip->getTrack())->audioBusHandle()); } @@ -75,9 +75,9 @@ SamplePlayHandle::SamplePlayHandle( SampleClip* clip ) : SamplePlayHandle::~SamplePlayHandle() { - if( m_ownAudioPort ) + if(m_ownAudioBusHandle) { - delete audioPort(); + delete audioBusHandle(); delete m_sample; } } diff --git a/src/core/Scale.cpp b/src/core/Scale.cpp index df0effe6b..6f5c8a59c 100644 --- a/src/core/Scale.cpp +++ b/src/core/Scale.cpp @@ -36,7 +36,7 @@ Interval::Interval(float cents) : m_denominator(0), m_cents(cents) { - m_ratio = powf(2.f, m_cents / 1200.f); + m_ratio = std::exp2(m_cents / 1200.f); } Interval::Interval(uint32_t numerator, uint32_t denominator) : @@ -68,7 +68,7 @@ void Interval::loadSettings(const QDomElement &element) m_denominator = element.attribute("den", "0").toULong(); m_cents = element.attribute("cents", "0").toDouble(); if (m_denominator) {m_ratio = static_cast(m_numerator) / m_denominator;} - else {m_ratio = powf(2.f, m_cents / 1200.f);} + else { m_ratio = std::exp2(m_cents / 1200.f); } } @@ -116,7 +116,7 @@ void Scale::loadSettings(const QDomElement &element) QDomNode node = element.firstChild(); m_intervals.clear(); - for (int i = 0; !node.isNull(); i++) + while (!node.isNull()) { Interval temp; temp.restoreState(node.toElement()); diff --git a/src/core/Song.cpp b/src/core/Song.cpp index 92cb2ba30..ea60e349b 100644 --- a/src/core/Song.cpp +++ b/src/core/Song.cpp @@ -235,9 +235,6 @@ void Song::processNextBuffer() return; } - // If we have no tracks to play, there is nothing to do - if (trackList.empty()) { return; } - // If the playback position is outside of the range [begin, end), move it to // begin and inform interested parties. // Returns true if the playback position was moved, else false. @@ -335,6 +332,8 @@ void Song::processNextBuffer() { // First frame of tick: process automation and play tracks processAutomations(trackList, getPlayPos(), framesToPlay); + processMetronome(frameOffsetInPeriod); + for (const auto track : trackList) { track->play(getPlayPos(), framesToPlay, frameOffsetInPeriod, clipNum); @@ -429,6 +428,17 @@ void Song::processAutomations(const TrackList &tracklist, TimePos timeStart, fpp } } +void Song::processMetronome(size_t bufferOffset) +{ + const auto currentPlayMode = playMode(); + const auto supported = currentPlayMode == PlayMode::MidiClip + || currentPlayMode == PlayMode::Song + || currentPlayMode == PlayMode::Pattern; + + if (!supported || m_exporting) { return; } + m_metronome.processTick(currentTick(), ticksPerBar(), m_timeSigModel.getNumerator(), bufferOffset); +} + void Song::setModified(bool value) { if( !m_loadingProject && m_modified != value) @@ -1069,12 +1079,6 @@ void Song::loadProject( const QString & fileName ) getTimeline(PlayMode::Song).setLoopEnabled(false); - if( !dataFile.content().firstChildElement( "track" ).isNull() ) - { - m_globalAutomationTrack->restoreState( dataFile.content(). - firstChildElement( "track" ) ); - } - //Backward compatibility for LMMS <= 0.4.15 PeakController::initGetControllerBySetting(); @@ -1229,7 +1233,6 @@ bool Song::saveProjectFile(const QString & filename, bool withResources) saveState( dataFile, dataFile.content() ); - m_globalAutomationTrack->saveState( dataFile, dataFile.content() ); Engine::mixer()->saveState( dataFile, dataFile.content() ); if( getGUI() != nullptr ) { @@ -1545,6 +1548,4 @@ void Song::setKeymap(unsigned int index, std::shared_ptr newMap) emit keymapListChanged(index); Engine::audioEngine()->doneChangeInModel(); } - - } // namespace lmms diff --git a/src/core/TimePos.cpp b/src/core/TimePos.cpp index 09c1019bc..6e5e034fd 100644 --- a/src/core/TimePos.cpp +++ b/src/core/TimePos.cpp @@ -43,20 +43,6 @@ TimeSig::TimeSig( const MeterModel &model ) : { } - -int TimeSig::numerator() const -{ - return m_num; -} - -int TimeSig::denominator() const -{ - return m_denom; -} - - - - TimePos::TimePos( const bar_t bar, const tick_t ticks ) : m_ticks( bar * s_ticksPerBar + ticks ) { @@ -86,140 +72,4 @@ TimePos TimePos::quantize(float bars) const return (lowPos + snapUp) * interval; } - -TimePos TimePos::toAbsoluteBar() const -{ - return getBar() * s_ticksPerBar; -} - - -TimePos& TimePos::operator+=( const TimePos& time ) -{ - m_ticks += time.m_ticks; - return *this; -} - - -TimePos& TimePos::operator-=( const TimePos& time ) -{ - m_ticks -= time.m_ticks; - return *this; -} - - -bar_t TimePos::getBar() const -{ - return m_ticks / s_ticksPerBar; -} - - -bar_t TimePos::nextFullBar() const -{ - return ( m_ticks + ( s_ticksPerBar - 1 ) ) / s_ticksPerBar; -} - - -void TimePos::setTicks( tick_t ticks ) -{ - m_ticks = ticks; -} - - -tick_t TimePos::getTicks() const -{ - return m_ticks; -} - - -TimePos::operator int() const -{ - return m_ticks; -} - - -tick_t TimePos::ticksPerBeat( const TimeSig &sig ) const -{ - // (number of ticks per bar) divided by (number of beats per bar) - return ticksPerBar(sig) / sig.numerator(); -} - - -tick_t TimePos::getTickWithinBar( const TimeSig &sig ) const -{ - return m_ticks % ticksPerBar( sig ); -} - -tick_t TimePos::getBeatWithinBar( const TimeSig &sig ) const -{ - return getTickWithinBar( sig ) / ticksPerBeat( sig ); -} - -tick_t TimePos::getTickWithinBeat( const TimeSig &sig ) const -{ - return getTickWithinBar( sig ) % ticksPerBeat( sig ); -} - - -f_cnt_t TimePos::frames( const float framesPerTick ) const -{ - // Before, step notes used to have negative length. This - // assert is a safeguard against negative length being - // introduced again (now using Note Types instead #5902) - assert(m_ticks >= 0); - return static_cast(m_ticks * framesPerTick); -} - -double TimePos::getTimeInMilliseconds( bpm_t beatsPerMinute ) const -{ - return ticksToMilliseconds( getTicks(), beatsPerMinute ); -} - -TimePos TimePos::fromFrames( const f_cnt_t frames, const float framesPerTick ) -{ - return TimePos( static_cast( frames / framesPerTick ) ); -} - - -tick_t TimePos::ticksPerBar() -{ - return s_ticksPerBar; -} - - -tick_t TimePos::ticksPerBar( const TimeSig &sig ) -{ - return DefaultTicksPerBar * sig.numerator() / sig.denominator(); -} - - -int TimePos::stepsPerBar() -{ - int steps = ticksPerBar() / DefaultBeatsPerBar; - return std::max(1, steps); -} - - -void TimePos::setTicksPerBar( tick_t tpb ) -{ - s_ticksPerBar = tpb; -} - - -TimePos TimePos::stepPosition( int step ) -{ - return step * ticksPerBar() / stepsPerBar(); -} - -double TimePos::ticksToMilliseconds( tick_t ticks, bpm_t beatsPerMinute ) -{ - return TimePos::ticksToMilliseconds( static_cast(ticks), beatsPerMinute ); -} - -double TimePos::ticksToMilliseconds(double ticks, bpm_t beatsPerMinute) -{ - // 60 * 1000 / 48 = 1250 - return ( ticks * 1250 ) / beatsPerMinute; -} - - } // namespace lmms diff --git a/src/core/Track.cpp b/src/core/Track.cpp index 7ff73e718..e44475d93 100644 --- a/src/core/Track.cpp +++ b/src/core/Track.cpp @@ -63,7 +63,6 @@ Track::Track( Type type, TrackContainer * tc ) : m_name(), /*!< The track's name */ m_mutedModel( false, this, tr( "Mute" ) ), /*!< For controlling track muting */ m_soloModel( false, this, tr( "Solo" ) ), /*!< For controlling track soloing */ - m_simpleSerializingMode( false ), m_clips() /*!< The clips (segments) */ { m_trackContainer->addTrack( this ); @@ -174,10 +173,6 @@ Track* Track::clone() } - - - - /*! \brief Save this track's settings to file * * We save the track type and its muted state and solo state, then append the track- @@ -186,12 +181,13 @@ Track* Track::clone() * * \param doc The QDomDocument to use to save * \param element The The QDomElement to save into + * \param presetMode Describes whether to save the track as a preset or not. * \todo Does this accurately describe the parameters? I think not!? * \todo Save the track height */ -void Track::saveSettings( QDomDocument & doc, QDomElement & element ) +void Track::saveTrack(QDomDocument& doc, QDomElement& element, bool presetMode) { - if( !m_simpleSerializingMode ) + if (!presetMode) { element.setTagName( "track" ); } @@ -215,11 +211,10 @@ void Track::saveSettings( QDomDocument & doc, QDomElement & element ) QDomElement tsDe = doc.createElement( nodeName() ); // let actual track (InstrumentTrack, PatternTrack, SampleTrack etc.) save its settings element.appendChild( tsDe ); - saveTrackSpecificSettings( doc, tsDe ); + saveTrackSpecificSettings(doc, tsDe, presetMode); - if( m_simpleSerializingMode ) + if (presetMode) { - m_simpleSerializingMode = false; return; } @@ -230,9 +225,6 @@ void Track::saveSettings( QDomDocument & doc, QDomElement & element ) } } - - - /*! \brief Load the settings from a file * * We load the track's type and muted state and solo state, then clear out our @@ -243,9 +235,10 @@ void Track::saveSettings( QDomDocument & doc, QDomElement & element ) * one at a time. * * \param element the QDomElement to load track settings from + * \param presetMode Indicates if a preset or a full track is loaded * \todo Load the track height. */ -void Track::loadSettings( const QDomElement & element ) +void Track::loadTrack(const QDomElement& element, bool presetMode) { if( static_cast(element.attribute( "type" ).toInt()) != type() ) { @@ -267,7 +260,7 @@ void Track::loadSettings( const QDomElement & element ) setColor(QColor{element.attribute("color")}); } - if( m_simpleSerializingMode ) + if (presetMode) { QDomNode node = element.firstChild(); while( !node.isNull() ) @@ -279,7 +272,7 @@ void Track::loadSettings( const QDomElement & element ) } node = node.nextSibling(); } - m_simpleSerializingMode = false; + return; } @@ -316,6 +309,28 @@ void Track::loadSettings( const QDomElement & element ) } } +void Track::savePreset(QDomDocument & doc, QDomElement & element) +{ + saveTrack(doc, element, true); +} + +void Track::loadPreset(const QDomElement & element) +{ + loadTrack(element, true); +} + +void Track::saveSettings(QDomDocument& doc, QDomElement& element) +{ + // Assume that everything should be saved if we are called through SerializingObject::saveSettings + saveTrack(doc, element, false); +} + +void Track::loadSettings(const QDomElement& element) +{ + // Assume that everything should be loaded if we are called through SerializingObject::loadSettings + loadTrack(element, false); +} + diff --git a/src/core/ValueBuffer.cpp b/src/core/ValueBuffer.cpp index 01003dc3b..b77464023 100644 --- a/src/core/ValueBuffer.cpp +++ b/src/core/ValueBuffer.cpp @@ -1,6 +1,7 @@ #include "ValueBuffer.h" -#include "interpolation.h" +#include +#include namespace lmms { @@ -38,9 +39,7 @@ int ValueBuffer::length() const void ValueBuffer::interpolate(float start, float end_) { float i = 0; - std::generate(begin(), end(), [&]() { - return linearInterpolate( start, end_, i++ / length()); - }); + std::generate(begin(), end(), [&]() { return std::lerp(start, end_, i++ / length()); }); } diff --git a/src/core/VstSyncController.cpp b/src/core/VstSyncController.cpp index 79344a5b5..984b1b32c 100644 --- a/src/core/VstSyncController.cpp +++ b/src/core/VstSyncController.cpp @@ -28,7 +28,6 @@ #include #include -#include #include "AudioEngine.h" #include "ConfigManager.h" @@ -44,7 +43,7 @@ VstSyncController::VstSyncController() { try { - m_syncData.create(QUuid::createUuid().toString().toStdString()); + m_syncData.create(); } catch (const std::runtime_error& error) { diff --git a/src/core/audio/AudioDevice.cpp b/src/core/audio/AudioDevice.cpp index 2047fffe9..c02ce5f99 100644 --- a/src/core/audio/AudioDevice.cpp +++ b/src/core/audio/AudioDevice.cpp @@ -109,21 +109,21 @@ void AudioDevice::stopProcessingThread( QThread * thread ) -void AudioDevice::registerPort( AudioPort * ) +void AudioDevice::registerPort(AudioBusHandle*) { } -void AudioDevice::unregisterPort( AudioPort * _port ) +void AudioDevice::unregisterPort(AudioBusHandle*) { } -void AudioDevice::renamePort( AudioPort * ) +void AudioDevice::renamePort(AudioBusHandle*) { } @@ -172,4 +172,4 @@ void AudioDevice::clearS16Buffer( int_sample_t * _outbuf, const fpp_t _frames ) memset( _outbuf, 0, _frames * channels() * BYTES_PER_INT_SAMPLE ); } -} // namespace lmms \ No newline at end of file +} // namespace lmms diff --git a/src/core/audio/AudioFileMP3.cpp b/src/core/audio/AudioFileMP3.cpp index 4d1dbc020..9cd8b43bb 100644 --- a/src/core/audio/AudioFileMP3.cpp +++ b/src/core/audio/AudioFileMP3.cpp @@ -113,8 +113,7 @@ bool AudioFileMP3::initEncoder() lame_set_mode(m_lame, mapToMPEG_mode(stereoMode)); // Handle bit rate settings - OutputSettings::BitRateSettings bitRateSettings = getOutputSettings().getBitRateSettings(); - int bitRate = static_cast(bitRateSettings.getBitRate()); + int bitRate = static_cast(getOutputSettings().bitrate()); lame_set_VBR(m_lame, vbr_off); lame_set_brate(m_lame, bitRate); diff --git a/src/core/audio/AudioFileOgg.cpp b/src/core/audio/AudioFileOgg.cpp index 59b796730..165db430a 100644 --- a/src/core/audio/AudioFileOgg.cpp +++ b/src/core/audio/AudioFileOgg.cpp @@ -30,10 +30,6 @@ #ifdef LMMS_HAVE_OGGVORBIS -#if (QT_VERSION >= QT_VERSION_CHECK(5,10,0)) -#include -#endif -#include #include #include "AudioEngine.h" @@ -41,224 +37,93 @@ namespace lmms { -AudioFileOgg::AudioFileOgg( OutputSettings const & outputSettings, - const ch_cnt_t channels, - bool & successful, - const QString & file, - AudioEngine* audioEngine ) : - AudioFileDevice( outputSettings, channels, file, audioEngine ) +AudioFileOgg::AudioFileOgg(OutputSettings const& outputSettings, const ch_cnt_t channels, bool& successful, + const QString& file, AudioEngine* audioEngine) + : AudioFileDevice(outputSettings, channels, file, audioEngine) { - m_ok = successful = outputFileOpened() && startEncoding(); + vorbis_info_init(&m_vi); + + const auto bitrate = outputSettings.bitrate(); + static constexpr auto maxBitrate = 320; + + if (vorbis_encode_init_vbr(&m_vi, channels, sampleRate(), static_cast(bitrate) / maxBitrate)) + { + successful = false; + return; + } + + vorbis_analysis_init(&m_vds, &m_vi); + vorbis_comment_init(&m_vc); + vorbis_comment_add_tag(&m_vc, "Cool", "This song has been made using LMMS"); + + auto headerPackets = std::array{}; + vorbis_analysis_headerout(&m_vds, &m_vc, &headerPackets[0], &headerPackets[1], &headerPackets[2]); + + srand(time(nullptr)); + ogg_stream_init(&m_oss, rand()); + + ogg_stream_packetin(&m_oss, &headerPackets[0]); + ogg_stream_packetin(&m_oss, &headerPackets[1]); + ogg_stream_packetin(&m_oss, &headerPackets[2]); + + while (ogg_stream_flush(&m_oss, &m_page)) + { + writeData(m_page.header, m_page.header_len); + writeData(m_page.body, m_page.body_len); + } + + vorbis_block_init(&m_vds, &m_vb); + successful = true; } - - - AudioFileOgg::~AudioFileOgg() { - finishEncoding(); -} - - - - -inline int AudioFileOgg::writePage() -{ - int written = writeData( m_og.header, m_og.header_len ); - written += writeData( m_og.body, m_og.body_len ); - return written; -} - - - - -bool AudioFileOgg::startEncoding() -{ - vorbis_comment vc; - const char * comments = "Cool=This song has been made using LMMS"; - std::string user_comments_str(comments); - int comment_length = user_comments_str.size(); - char * user_comments = &user_comments_str[0]; - - vc.user_comments = &user_comments; - vc.comment_lengths = &comment_length; - vc.comments = 1; - vc.vendor = nullptr; - - m_channels = channels(); - - bool useVariableBitRate = getOutputSettings().getBitRateSettings().isVariableBitRate(); - bitrate_t minimalBitrate = nominalBitrate(); - bitrate_t maximumBitrate = nominalBitrate(); - - if( useVariableBitRate ) - { - minimalBitrate = minBitrate(); // min for vbr - maximumBitrate = maxBitrate(); // max for vbr - } - - - m_rate = sampleRate(); // default-samplerate - if( m_rate > 48000 ) - { - m_rate = 48000; - setSampleRate( 48000 ); - } - - m_comments = &vc; // comments for ogg-file - - // Have vorbisenc choose a mode for us - vorbis_info_init( &m_vi ); - - if( vorbis_encode_setup_managed( &m_vi, m_channels, m_rate, - ( maximumBitrate > 0 )? maximumBitrate * 1000 : -1, - nominalBitrate() * 1000, - ( minimalBitrate > 0 )? minimalBitrate * 1000 : -1 ) ) - { - printf( "Mode initialization failed: invalid parameters for " - "bitrate\n" ); - vorbis_info_clear( &m_vi ); - return false; - } - - if( useVariableBitRate ) - { - // Turn off management entirely (if it was turned on). - vorbis_encode_ctl( &m_vi, OV_ECTL_RATEMANAGE_SET, nullptr ); - } - else - { - vorbis_encode_ctl( &m_vi, OV_ECTL_RATEMANAGE_AVG, nullptr ); - } - - vorbis_encode_setup_init( &m_vi ); - - // Now, set up the analysis engine, stream encoder, and other - // preparation before the encoding begins. - vorbis_analysis_init( &m_vd, &m_vi ); - vorbis_block_init( &m_vd, &m_vb ); - - // We give our ogg file a random serial number and avoid - // 0 and UINT32_MAX which can get you into trouble. -#if (QT_VERSION >= QT_VERSION_CHECK(5,10,0)) - // QRandomGenerator::global() is already initialized, and we can't seed() it. - m_serialNo = 0xD0000000 + QRandomGenerator::global()->generate() % 0x0FFFFFFF; -#else - qsrand(time(0)); - m_serialNo = 0xD0000000 + qrand() % 0x0FFFFFFF; -#endif - ogg_stream_init( &m_os, m_serialNo ); - - // Now, build the three header packets and send through to the stream - // output stage (but defer actual file output until the main encode - // loop) - - ogg_packet header_main; - ogg_packet header_comments; - ogg_packet header_codebooks; - - // Build the packets - vorbis_analysis_headerout( &m_vd, m_comments, &header_main, - &header_comments, &header_codebooks ); - - // And stream them out - ogg_stream_packetin( &m_os, &header_main ); - ogg_stream_packetin( &m_os, &header_comments ); - ogg_stream_packetin( &m_os, &header_codebooks ); - - while (ogg_stream_flush(&m_os, &m_og)) - { - if (int ret = writePage(); ret != m_og.header_len + m_og.body_len) - { - // clean up - finishEncoding(); - return false; - } - } - - return true; + vorbis_analysis_wrote(&m_vds, 0); + ogg_stream_clear(&m_oss); + vorbis_block_clear(&m_vb); + vorbis_dsp_clear(&m_vds); + vorbis_comment_clear(&m_vc); + vorbis_info_clear(&m_vi); } void AudioFileOgg::writeBuffer(const SampleFrame* _ab, const fpp_t _frames) { - int eos = 0; + const auto vab = vorbis_analysis_buffer(&m_vds, _frames); - float * * buffer = vorbis_analysis_buffer( &m_vd, _frames * - BYTES_PER_SAMPLE * - channels() ); - for( fpp_t frame = 0; frame < _frames; ++frame ) + for (auto c = 0; c < channels(); ++c) { - for( ch_cnt_t chnl = 0; chnl < channels(); ++chnl ) + if (c < DEFAULT_CHANNELS) { - buffer[chnl][frame] = _ab[frame][chnl]; - } - } - - vorbis_analysis_wrote( &m_vd, _frames ); - - // While we can get enough data from the library to analyse, - // one block at a time... - while( vorbis_analysis_blockout( &m_vd, &m_vb ) == 1 ) - { - // Do the main analysis, creating a packet - vorbis_analysis( &m_vb, nullptr ); - vorbis_bitrate_addblock( &m_vb ); - - while( vorbis_bitrate_flushpacket( &m_vd, &m_op ) ) - { - // Add packet to bitstream - ogg_stream_packetin( &m_os, &m_op ); - - // If we've gone over a page boundary, we can do - // actual output, so do so (for however many pages - // are available) - while( !eos ) + for (auto i = std::size_t{0}; i < _frames; ++i) { - int result = ogg_stream_pageout( &m_os, - &m_og ); - if( !result ) - { - break; - } - - int ret = writePage(); - if( ret != m_og.header_len + - m_og.body_len ) - { - printf( "failed writing to " - "outstream\n" ); - return; - } - - if( ogg_page_eos( &m_og ) ) - { - eos = 1; - } + vab[c][i] = _ab[i][c]; } } + else { std::fill_n(vab[c], _frames, 0.0f); } } -} + vorbis_analysis_wrote(&m_vds, _frames); - - -void AudioFileOgg::finishEncoding() -{ - if( m_ok ) + while (vorbis_analysis_blockout(&m_vds, &m_vb) == 1) { - // just for flushing buffers... - writeBuffer(nullptr, 0); + vorbis_analysis(&m_vb, nullptr); + vorbis_bitrate_addblock(&m_vb); - // clean up - ogg_stream_clear( &m_os ); + while (vorbis_bitrate_flushpacket(&m_vds, &m_packet)) + { + ogg_stream_packetin(&m_oss, &m_packet); - vorbis_block_clear( &m_vb ); - vorbis_dsp_clear( &m_vd ); - vorbis_info_clear( &m_vi ); + while (ogg_stream_pageout(&m_oss, &m_page)) + { + writeData(m_page.header, m_page.header_len); + writeData(m_page.body, m_page.body_len); + } + } + + if (ogg_page_eos(&m_page)) { break; } } } - } // namespace lmms #endif // LMMS_HAVE_OGGVORBIS diff --git a/src/core/audio/AudioJack.cpp b/src/core/audio/AudioJack.cpp index bd5b8e514..b6da7c845 100644 --- a/src/core/audio/AudioJack.cpp +++ b/src/core/audio/AudioJack.cpp @@ -74,7 +74,7 @@ AudioJack::AudioJack(bool& successful, AudioEngine* audioEngineParam) AudioJack::~AudioJack() { AudioJack::stopProcessing(); -#ifdef AUDIO_PORT_SUPPORT +#ifdef AUDIO_BUS_HANDLE_SUPPORT while (m_portMap.size()) { unregisterPort(m_portMap.begin().key()); @@ -229,9 +229,9 @@ void AudioJack::stopProcessing() m_stopped = true; } -void AudioJack::registerPort(AudioPort* port) +void AudioJack::registerPort(AudioBusHandle* port) { -#ifdef AUDIO_PORT_SUPPORT +#ifdef AUDIO_BUS_HANDLE_SUPPORT // make sure, port is not already registered unregisterPort(port); const QString name[2] = {port->name() + " L", port->name() + " R"}; @@ -249,9 +249,9 @@ void AudioJack::registerPort(AudioPort* port) -void AudioJack::unregisterPort(AudioPort* port) +void AudioJack::unregisterPort(AudioBusHandle* port) { -#ifdef AUDIO_PORT_SUPPORT +#ifdef AUDIO_BUS_HANDLE_SUPPORT if (m_portMap.contains(port)) { for (ch_cnt_t ch = 0; ch < DEFAULT_CHANNELS; ++ch) @@ -265,9 +265,9 @@ void AudioJack::unregisterPort(AudioPort* port) #endif } -void AudioJack::renamePort(AudioPort* port) +void AudioJack::renamePort(AudioBusHandle* port) { -#ifdef AUDIO_PORT_SUPPORT +#ifdef AUDIO_BUS_HANDLE_SUPPORT if (m_portMap.contains(port)) { const QString name[2] = {port->name() + " L", port->name() + " R"}; @@ -282,7 +282,7 @@ void AudioJack::renamePort(AudioPort* port) } #else (void)port; -#endif // AUDIO_PORT_SUPPORT +#endif // AUDIO_BUS_HANDLE_SUPPORT } @@ -304,7 +304,7 @@ int AudioJack::processCallback(jack_nframes_t nframes) m_tempOutBufs[c] = (jack_default_audio_sample_t*)jack_port_get_buffer(m_outputPorts[c], nframes); } -#ifdef AUDIO_PORT_SUPPORT +#ifdef AUDIO_BUS_HANDLE_SUPPORT const int frames = std::min(nframes, audioEngine()->framesPerPeriod()); for (JackPortMap::iterator it = m_portMap.begin(); it != m_portMap.end(); ++it) { diff --git a/src/core/audio/AudioPort.cpp b/src/core/audio/AudioPort.cpp deleted file mode 100644 index 8efdd2c11..000000000 --- a/src/core/audio/AudioPort.cpp +++ /dev/null @@ -1,253 +0,0 @@ -/* - * AudioPort.cpp - base-class for objects providing sound at a port - * - * Copyright (c) 2004-2014 Tobias Doerffel - * - * This file is part of LMMS - https://lmms.io - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public - * License along with this program (see COPYING); if not, write to the - * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301 USA. - * - */ - -#include "AudioPort.h" -#include "AudioDevice.h" -#include "AudioEngine.h" -#include "EffectChain.h" -#include "Mixer.h" -#include "Engine.h" -#include "MixHelpers.h" -#include "BufferManager.h" - -namespace lmms -{ - -AudioPort::AudioPort( const QString & _name, bool _has_effect_chain, - FloatModel * volumeModel, FloatModel * panningModel, - BoolModel * mutedModel ) : - m_bufferUsage( false ), - m_portBuffer( BufferManager::acquire() ), - m_extOutputEnabled( false ), - m_nextMixerChannel( 0 ), - m_name( "unnamed port" ), - m_effects( _has_effect_chain ? new EffectChain( nullptr ) : nullptr ), - m_volumeModel( volumeModel ), - m_panningModel( panningModel ), - m_mutedModel( mutedModel ) -{ - Engine::audioEngine()->addAudioPort( this ); - setExtOutputEnabled( true ); -} - - - - -AudioPort::~AudioPort() -{ - setExtOutputEnabled( false ); - Engine::audioEngine()->removeAudioPort( this ); - BufferManager::release( m_portBuffer ); -} - - - - -void AudioPort::setExtOutputEnabled( bool _enabled ) -{ - if( _enabled != m_extOutputEnabled ) - { - m_extOutputEnabled = _enabled; - if( m_extOutputEnabled ) - { - Engine::audioEngine()->audioDev()->registerPort( this ); - } - else - { - Engine::audioEngine()->audioDev()->unregisterPort( this ); - } - } -} - - - - -void AudioPort::setName( const QString & _name ) -{ - m_name = _name; - Engine::audioEngine()->audioDev()->renamePort( this ); -} - - - - -bool AudioPort::processEffects() -{ - if( m_effects ) - { - bool more = m_effects->processAudioBuffer( m_portBuffer, Engine::audioEngine()->framesPerPeriod(), m_bufferUsage ); - return more; - } - return false; -} - - -void AudioPort::doProcessing() -{ - if( m_mutedModel && m_mutedModel->value() ) - { - return; - } - - const fpp_t fpp = Engine::audioEngine()->framesPerPeriod(); - - // clear the buffer - zeroSampleFrames(m_portBuffer, fpp); - - //qDebug( "Playhandles: %d", m_playHandles.size() ); - for( PlayHandle * ph : m_playHandles ) // now we mix all playhandle buffers into the audioport buffer - { - if( ph->buffer() ) - { - if( ph->usesBuffer() - && ( ph->type() == PlayHandle::Type::NotePlayHandle - || !MixHelpers::isSilent( ph->buffer(), fpp ) ) ) - { - m_bufferUsage = true; - MixHelpers::add( m_portBuffer, ph->buffer(), fpp ); - } - ph->releaseBuffer(); // gets rid of playhandle's buffer and sets - // pointer to null, so if it doesn't get re-acquired we know to skip it next time - } - } - - if( m_bufferUsage ) - { - // handle volume and panning - // has both vol and pan models - if( m_volumeModel && m_panningModel ) - { - ValueBuffer * volBuf = m_volumeModel->valueBuffer(); - ValueBuffer * panBuf = m_panningModel->valueBuffer(); - - // both vol and pan have s.ex.data: - if( volBuf && panBuf ) - { - for( f_cnt_t f = 0; f < fpp; ++f ) - { - float v = volBuf->values()[ f ] * 0.01f; - float p = panBuf->values()[ f ] * 0.01f; - m_portBuffer[f][0] *= ( p <= 0 ? 1.0f : 1.0f - p ) * v; - m_portBuffer[f][1] *= ( p >= 0 ? 1.0f : 1.0f + p ) * v; - } - } - - // only vol has s.ex.data: - else if( volBuf ) - { - float p = m_panningModel->value() * 0.01f; - float l = ( p <= 0 ? 1.0f : 1.0f - p ); - float r = ( p >= 0 ? 1.0f : 1.0f + p ); - for( f_cnt_t f = 0; f < fpp; ++f ) - { - float v = volBuf->values()[ f ] * 0.01f; - m_portBuffer[f][0] *= v * l; - m_portBuffer[f][1] *= v * r; - } - } - - // only pan has s.ex.data: - else if( panBuf ) - { - float v = m_volumeModel->value() * 0.01f; - for( f_cnt_t f = 0; f < fpp; ++f ) - { - float p = panBuf->values()[ f ] * 0.01f; - m_portBuffer[f][0] *= ( p <= 0 ? 1.0f : 1.0f - p ) * v; - m_portBuffer[f][1] *= ( p >= 0 ? 1.0f : 1.0f + p ) * v; - } - } - - // neither has s.ex.data: - else - { - float p = m_panningModel->value() * 0.01f; - float v = m_volumeModel->value() * 0.01f; - for( f_cnt_t f = 0; f < fpp; ++f ) - { - m_portBuffer[f][0] *= ( p <= 0 ? 1.0f : 1.0f - p ) * v; - m_portBuffer[f][1] *= ( p >= 0 ? 1.0f : 1.0f + p ) * v; - } - } - } - - // has vol model only - else if( m_volumeModel ) - { - ValueBuffer * volBuf = m_volumeModel->valueBuffer(); - - if( volBuf ) - { - for( f_cnt_t f = 0; f < fpp; ++f ) - { - float v = volBuf->values()[ f ] * 0.01f; - m_portBuffer[f][0] *= v; - m_portBuffer[f][1] *= v; - } - } - else - { - float v = m_volumeModel->value() * 0.01f; - for( f_cnt_t f = 0; f < fpp; ++f ) - { - m_portBuffer[f][0] *= v; - m_portBuffer[f][1] *= v; - } - } - } - } - // as of now there's no situation where we only have panning model but no volume model - // if we have neither, we don't have to do anything here - just pass the audio as is - - // handle effects - const bool me = processEffects(); - if( me || m_bufferUsage ) - { - Engine::mixer()->mixToChannel( m_portBuffer, m_nextMixerChannel ); // send output to mixer - // TODO: improve the flow here - convert to pull model - m_bufferUsage = false; - } -} - - -void AudioPort::addPlayHandle( PlayHandle * handle ) -{ - m_playHandleLock.lock(); - m_playHandles.append( handle ); - m_playHandleLock.unlock(); -} - - -void AudioPort::removePlayHandle( PlayHandle * handle ) -{ - m_playHandleLock.lock(); - PlayHandleList::Iterator it = std::find( m_playHandles.begin(), m_playHandles.end(), handle ); - if( it != m_playHandles.end() ) - { - m_playHandles.erase( it ); - } - m_playHandleLock.unlock(); -} - -} // namespace lmms \ No newline at end of file diff --git a/src/core/audio/AudioSoundIo.cpp b/src/core/audio/AudioSoundIo.cpp index c7fa380e4..851592018 100644 --- a/src/core/audio/AudioSoundIo.cpp +++ b/src/core/audio/AudioSoundIo.cpp @@ -152,7 +152,7 @@ AudioSoundIo::AudioSoundIo( bool & outSuccessful, AudioEngine * _audioEngine ) : break; } if (closestSupportedSampleRate == -1 || - abs(range->max - currentSampleRate) < abs(closestSupportedSampleRate - currentSampleRate)) + std::abs(range->max - currentSampleRate) < std::abs(closestSupportedSampleRate - currentSampleRate)) { closestSupportedSampleRate = range->max; } @@ -467,7 +467,8 @@ AudioSoundIo::setupWidget::setupWidget( QWidget * _parent ) : reconnectSoundIo(); - bool ok = connect( &m_backendModel, SIGNAL(dataChanged()), &m_setupUtil, SLOT(reconnectSoundIo())); + [[maybe_unused]] bool ok = connect(&m_backendModel, &ComboBoxModel::dataChanged, + &m_setupUtil, &AudioSoundIoSetupUtil::reconnectSoundIo); assert(ok); m_backend->setModel( &m_backendModel ); @@ -476,7 +477,8 @@ AudioSoundIo::setupWidget::setupWidget( QWidget * _parent ) : AudioSoundIo::setupWidget::~setupWidget() { - bool ok = disconnect( &m_backendModel, SIGNAL(dataChanged()), &m_setupUtil, SLOT(reconnectSoundIo())); + [[maybe_unused]] bool ok = disconnect(&m_backendModel, &ComboBoxModel::dataChanged, + &m_setupUtil, &AudioSoundIoSetupUtil::reconnectSoundIo); assert(ok); if (m_soundio) { diff --git a/src/core/fft_helpers.cpp b/src/core/fft_helpers.cpp index c24310341..e4fd87aeb 100644 --- a/src/core/fft_helpers.cpp +++ b/src/core/fft_helpers.cpp @@ -27,7 +27,7 @@ #include "fft_helpers.h" #include -#include "lmms_constants.h" +#include namespace lmms { @@ -104,6 +104,7 @@ int notEmpty(const std::vector &spectrum) */ int precomputeWindow(float *window, unsigned int length, FFTWindow type, bool normalized) { + using namespace std::numbers; if (window == nullptr) {return -1;} float gain = 0; @@ -144,9 +145,9 @@ int precomputeWindow(float *window, unsigned int length, FFTWindow type, bool no // common computation for cosine-sum based windows for (unsigned int i = 0; i < length; i++) { - window[i] = (a0 - a1 * cos(2 * F_PI * i / ((float)length - 1.0)) - + a2 * cos(4 * F_PI * i / ((float)length - 1.0)) - - a3 * cos(6 * F_PI * i / ((float)length - 1.0))); + window[i] = (a0 - a1 * std::cos(2 * pi_v * i / (static_cast(length) - 1.0)) + + a2 * std::cos(4 * pi_v * i / (static_cast(length) - 1.0)) + - a3 * std::cos(6 * pi_v * i / (static_cast(length) - 1.0))); gain += window[i]; } diff --git a/src/core/lv2/Lv2Proc.cpp b/src/core/lv2/Lv2Proc.cpp index 7cd9d3a50..e656f0cf1 100644 --- a/src/core/lv2/Lv2Proc.cpp +++ b/src/core/lv2/Lv2Proc.cpp @@ -591,7 +591,7 @@ void Lv2Proc::createPort(std::size_t portNum) // make multiples of 0.01 (or 0.1 for larger values) float minStep = (stepSize >= 1.0f) ? 0.1f : 0.01f; - stepSize -= fmodf(stepSize, minStep); + stepSize -= std::fmod(stepSize, minStep); stepSize = std::max(stepSize, minStep); ctrl->m_connectedModel.reset( diff --git a/src/core/main.cpp b/src/core/main.cpp index 3e6c2c85f..995b49d2c 100644 --- a/src/core/main.cpp +++ b/src/core/main.cpp @@ -367,10 +367,6 @@ int main( int argc, char * * argv ) printf( "LMMS cannot be run as root.\nUse \"--allowroot\" to override.\n\n" ); return EXIT_FAILURE; } -#endif -#ifdef LMMS_BUILD_LINUX - // don't let OS steal the menu bar. FIXME: only effective on Qt4 - QCoreApplication::setAttribute( Qt::AA_DontUseNativeMenuBar ); #endif QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling); QCoreApplication * app = coreOnly ? @@ -378,7 +374,7 @@ int main( int argc, char * * argv ) new gui::MainApplication(argc, argv); AudioEngine::qualitySettings qs(AudioEngine::qualitySettings::Interpolation::Linear); - OutputSettings os( 44100, OutputSettings::BitRateSettings(160, false), OutputSettings::BitDepth::Depth16Bit, OutputSettings::StereoMode::JointStereo ); + OutputSettings os(44100, 160, OutputSettings::BitDepth::Depth16Bit, OutputSettings::StereoMode::JointStereo); ProjectRenderer::ExportFileFormat eff = ProjectRenderer::ExportFileFormat::Wave; // second of two command-line parsing stages @@ -578,9 +574,7 @@ int main( int argc, char * * argv ) if( br >= 64 && br <= 384 ) { - OutputSettings::BitRateSettings bitRateSettings = os.getBitRateSettings(); - bitRateSettings.setBitRate(br); - os.setBitRateSettings(bitRateSettings); + os.setBitrate(br); } else { diff --git a/src/core/midi/MidiApple.cpp b/src/core/midi/MidiApple.cpp index 444f093e5..14930ed84 100644 --- a/src/core/midi/MidiApple.cpp +++ b/src/core/midi/MidiApple.cpp @@ -159,7 +159,7 @@ void MidiApple::removePort( MidiPort* port ) QString MidiApple::sourcePortName( const MidiEvent& event ) const { - qDebug("sourcePortName return '%s'?\n", event.sourcePort()); + qDebug("sourcePortName"); /* if( event.sourcePort() ) { @@ -501,7 +501,7 @@ void MidiApple::openDevices() void MidiApple::openMidiReference( MIDIEndpointRef reference, QString refName, bool isIn ) { char * registeredName = (char*) malloc(refName.length()+1); - sprintf(registeredName, "%s",refName.toLatin1().constData()); + std::snprintf(registeredName, refName.length() + 1, "%s",refName.toLatin1().constData()); qDebug("openMidiReference refName '%s'",refName.toLatin1().constData()); MIDIClientRef mClient = getMidiClientRef(); @@ -623,7 +623,7 @@ char * MidiApple::getFullName(MIDIEndpointRef &endpoint_ref) size_t deviceNameLen = deviceName == nullptr ? 0 : strlen(deviceName); size_t endPointNameLen = endPointName == nullptr ? 0 : strlen(endPointName); char * fullName = (char *)malloc(deviceNameLen + endPointNameLen + 2); - sprintf(fullName, "%s:%s", deviceName,endPointName); + std::snprintf(fullName, deviceNameLen + endPointNameLen + 2, "%s:%s", deviceName,endPointName); if (deviceName != nullptr) { free(deviceName); } if (endPointName != nullptr) { free(endPointName); } return fullName; diff --git a/src/core/midi/MidiJack.cpp b/src/core/midi/MidiJack.cpp index 29e7e27ec..a549059ab 100644 --- a/src/core/midi/MidiJack.cpp +++ b/src/core/midi/MidiJack.cpp @@ -57,7 +57,7 @@ static void JackMidiShutdown(void *arg) //: When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) QString msg_short = MidiJack::tr("JACK server down"); //: When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - QString msg_long = MidiJack::tr("The JACK server seems to be shuted down."); + QString msg_long = MidiJack::tr("The JACK server seems to be shut down."); QMessageBox::information(gui::getGUI()->mainWindow(), msg_short, msg_long); } diff --git a/src/gui/AutomatableModelView.cpp b/src/gui/AutomatableModelView.cpp index 0e364993f..2faf74064 100644 --- a/src/gui/AutomatableModelView.cpp +++ b/src/gui/AutomatableModelView.cpp @@ -31,6 +31,7 @@ #include "ControllerConnection.h" #include "embed.h" #include "GuiApplication.h" +#include "KeyboardShortcuts.h" #include "MainWindow.h" #include "StringPairDrag.h" #include "Clipboard.h" @@ -171,7 +172,7 @@ void AutomatableModelView::unsetModel() void AutomatableModelView::mousePressEvent( QMouseEvent* event ) { - if( event->button() == Qt::LeftButton && event->modifiers() & Qt::ControlModifier ) + if (event->button() == Qt::LeftButton && event->modifiers() & KBD_COPY_MODIFIER) { new gui::StringPairDrag( "automatable_model", QString::number( modelUntyped()->id() ), QPixmap(), widget() ); event->accept(); diff --git a/src/gui/CMakeLists.txt b/src/gui/CMakeLists.txt index 4195ec58c..f5e01a11c 100644 --- a/src/gui/CMakeLists.txt +++ b/src/gui/CMakeLists.txt @@ -14,6 +14,7 @@ SET(LMMS_SRCS gui/EffectView.cpp gui/embed.cpp gui/FileBrowser.cpp + gui/FileRevealer.cpp gui/GuiApplication.cpp gui/LadspaControlView.cpp gui/LfoControllerDialog.cpp @@ -35,7 +36,7 @@ SET(LMMS_SRCS gui/RowTableView.cpp gui/SampleLoader.cpp gui/SampleTrackWindow.cpp - gui/SampleWaveform.cpp + gui/SampleThumbnail.cpp gui/SendButtonIndicator.cpp gui/SideBar.cpp gui/SideBarWidget.cpp @@ -94,6 +95,7 @@ SET(LMMS_SRCS gui/tracks/TrackLabelButton.cpp gui/tracks/TrackOperationsWidget.cpp gui/tracks/TrackRenameLineEdit.cpp + gui/tracks/TrackGrip.cpp gui/tracks/TrackView.cpp gui/widgets/AutomatableButton.cpp diff --git a/src/gui/ControllerRackView.cpp b/src/gui/ControllerRackView.cpp index e7d2efebd..1cc80c08f 100644 --- a/src/gui/ControllerRackView.cpp +++ b/src/gui/ControllerRackView.cpp @@ -23,6 +23,8 @@ * */ +#include "ControllerRackView.h" + #include #include #include @@ -30,13 +32,13 @@ #include #include -#include "Song.h" +#include "ControllerView.h" +#include "DeprecationHelper.h" #include "embed.h" #include "GuiApplication.h" -#include "MainWindow.h" -#include "ControllerRackView.h" -#include "ControllerView.h" #include "LfoController.h" +#include "MainWindow.h" +#include "Song.h" #include "SubWindow.h" namespace lmms::gui @@ -167,13 +169,13 @@ void ControllerRackView::addController(Controller* controller) connect(controllerView, &ControllerView::removedController, this, &ControllerRackView::deleteController, Qt::QueuedConnection); auto moveUpAction = new QAction(controllerView); - moveUpAction->setShortcut(Qt::Key_Up | Qt::AltModifier); + moveUpAction->setShortcut(combine(Qt::Key_Up, Qt::AltModifier)); moveUpAction->setShortcutContext(Qt::WidgetShortcut); connect(moveUpAction, &QAction::triggered, controllerView, &ControllerView::moveUp); controllerView->addAction(moveUpAction); auto moveDownAction = new QAction(controllerView); - moveDownAction->setShortcut(Qt::Key_Down | Qt::AltModifier); + moveDownAction->setShortcut(combine(Qt::Key_Down, Qt::AltModifier)); moveDownAction->setShortcutContext(Qt::WidgetShortcut); connect(moveDownAction, &QAction::triggered, controllerView, &ControllerView::moveDown); controllerView->addAction(moveDownAction); diff --git a/src/gui/EffectRackView.cpp b/src/gui/EffectRackView.cpp index eb8c6c43e..6a4b3124d 100644 --- a/src/gui/EffectRackView.cpp +++ b/src/gui/EffectRackView.cpp @@ -23,13 +23,15 @@ * */ +#include "EffectRackView.h" + #include #include #include #include #include -#include "EffectRackView.h" +#include "DeprecationHelper.h" #include "EffectSelectDialog.h" #include "EffectView.h" #include "GroupBox.h" @@ -176,13 +178,13 @@ void EffectRackView::update() connect(view, &EffectView::deletedPlugin, this, &EffectRackView::deletePlugin, Qt::QueuedConnection); QAction* moveUpAction = new QAction(view); - moveUpAction->setShortcut(Qt::Key_Up | Qt::AltModifier); + moveUpAction->setShortcut(combine(Qt::Key_Up, Qt::AltModifier)); moveUpAction->setShortcutContext(Qt::WidgetShortcut); connect(moveUpAction, &QAction::triggered, view, &EffectView::moveUp); view->addAction(moveUpAction); QAction* moveDownAction = new QAction(view); - moveDownAction->setShortcut(Qt::Key_Down | Qt::AltModifier); + moveDownAction->setShortcut(combine(Qt::Key_Down, Qt::AltModifier)); moveDownAction->setShortcutContext(Qt::WidgetShortcut); connect(moveDownAction, &QAction::triggered, view, &EffectView::moveDown); view->addAction(moveDownAction); @@ -223,7 +225,7 @@ void EffectRackView::update() } } - w->setFixedSize( EffectView::DEFAULT_WIDTH + 2*EffectViewMargin, m_lastY); + w->setFixedSize(EffectView::DEFAULT_WIDTH + 2 * EffectViewMargin, m_lastY); QWidget::update(); } diff --git a/src/gui/EffectView.cpp b/src/gui/EffectView.cpp index 6f2b984c3..a5095ee6d 100644 --- a/src/gui/EffectView.cpp +++ b/src/gui/EffectView.cpp @@ -34,7 +34,7 @@ #include "CaptionMenu.h" #include "embed.h" #include "GuiApplication.h" -#include "gui_templates.h" +#include "FontHelper.h" #include "Knob.h" #include "LedCheckBox.h" #include "MainWindow.h" @@ -91,7 +91,7 @@ EffectView::EffectView( Effect * _model, QWidget * _parent ) : { auto ctls_btn = new QPushButton(tr("Controls"), this); QFont f = ctls_btn->font(); - ctls_btn->setFont(adjustedToPixelSize(f, 10)); + ctls_btn->setFont(adjustedToPixelSize(f, DEFAULT_FONT_SIZE)); ctls_btn->setGeometry( 150, 14, 50, 20 ); connect( ctls_btn, SIGNAL(clicked()), this, SLOT(editControls())); @@ -258,7 +258,7 @@ void EffectView::paintEvent( QPaintEvent * ) QPainter p( this ); p.drawPixmap( 0, 0, m_bg ); - QFont f = adjustedToPixelSize(font(), 10); + QFont f = adjustedToPixelSize(font(), DEFAULT_FONT_SIZE); f.setBold( true ); p.setFont( f ); diff --git a/src/gui/FileBrowser.cpp b/src/gui/FileBrowser.cpp index e5168fac8..5e8c84e33 100644 --- a/src/gui/FileBrowser.cpp +++ b/src/gui/FileBrowser.cpp @@ -26,15 +26,14 @@ #include "FileBrowser.h" #include -#include #include #include -#include #include #include #include #include #include +#include #include #include #include @@ -45,13 +44,14 @@ #include "ConfigManager.h" #include "DataFile.h" #include "Engine.h" -#include "FileBrowser.h" +#include "FileRevealer.h" #include "FileSearch.h" #include "GuiApplication.h" #include "ImportFilter.h" #include "Instrument.h" #include "InstrumentTrack.h" #include "InstrumentTrackWindow.h" +#include "KeyboardShortcuts.h" #include "MainWindow.h" #include "PatternStore.h" #include "PluginFactory.h" @@ -623,28 +623,35 @@ void FileBrowserTreeWidget::focusOutEvent(QFocusEvent* fe) QTreeWidget::focusOutEvent(fe); } - - - -void FileBrowserTreeWidget::contextMenuEvent(QContextMenuEvent * e ) +void FileBrowserTreeWidget::contextMenuEvent(QContextMenuEvent* e) { - auto file = dynamic_cast(itemAt(e->pos())); - if( file != nullptr && file->isTrack() ) +#ifdef LMMS_BUILD_APPLE + QString fileManager = tr("Finder"); +#elif defined(LMMS_BUILD_WIN32) + QString fileManager = tr("Explorer"); +#else + QString fileManager = tr("file manager"); +#endif + + QTreeWidgetItem* item = itemAt(e->pos()); + if (item == nullptr) { return; } // program hangs when right-clicking on empty space otherwise + + QMenu contextMenu(this); + + switch (item->type()) { - QMenu contextMenu( this ); + case TypeFileItem: { + auto file = dynamic_cast(item); - contextMenu.addAction( - tr( "Send to active instrument-track" ), - [=]{ sendToActiveInstrumentTrack(file); } - ); + if (file->isTrack()) + { + contextMenu.addAction( + tr("Send to active instrument-track"), [=, this] { sendToActiveInstrumentTrack(file); }); + contextMenu.addSeparator(); + } - contextMenu.addSeparator(); - - contextMenu.addAction( - QIcon(embed::getIconPixmap("folder")), - tr("Open containing folder"), - [=]{ openContainingFolder(file); } - ); + contextMenu.addAction(QIcon(embed::getIconPixmap("folder")), tr("Show in %1").arg(fileManager), + [=] { FileRevealer::reveal(file->fullName()); }); auto songEditorHeader = new QAction(tr("Song Editor"), nullptr); songEditorHeader->setDisabled(true); @@ -655,15 +662,21 @@ void FileBrowserTreeWidget::contextMenuEvent(QContextMenuEvent * e ) patternEditorHeader->setDisabled(true); contextMenu.addAction(patternEditorHeader); contextMenu.addActions( getContextActions(file, false) ); - - // We should only show the menu if it contains items - if (!contextMenu.isEmpty()) { contextMenu.exec( e->globalPos() ); } + break; } + case TypeDirectoryItem: { + auto dir = dynamic_cast(item); + contextMenu.addAction(QIcon(embed::getIconPixmap("folder")), tr("Open in %1").arg(fileManager), [=] { + FileRevealer::openDir(dir->fullName()); + }); + break; + } + } + + // Only show the menu if it contains items + if (!contextMenu.isEmpty()) { contextMenu.exec(e->globalPos()); } } - - - QList FileBrowserTreeWidget::getContextActions(FileItem* file, bool songEditor) { QList result = QList(); @@ -676,14 +689,14 @@ QList FileBrowserTreeWidget::getContextActions(FileItem* file, bool so auto toInstrument = new QAction(instrumentAction + tr(" (%2Enter)").arg(shortcutMod), nullptr); connect(toInstrument, &QAction::triggered, - [=]{ openInNewInstrumentTrack(file, songEditor); }); + [=, this]{ openInNewInstrumentTrack(file, songEditor); }); result.append(toInstrument); if (songEditor && fileIsSample) { auto toSampleTrack = new QAction(tr("Send to new sample track (Shift + Enter)"), nullptr); connect(toSampleTrack, &QAction::triggered, - [=]{ openInNewSampleTrack(file); }); + [=, this]{ openInNewSampleTrack(file); }); result.append(toSampleTrack); } @@ -990,22 +1003,6 @@ bool FileBrowserTreeWidget::openInNewSampleTrack(FileItem* item) - -void FileBrowserTreeWidget::openContainingFolder(FileItem* item) -{ - // Delegate to QDesktopServices::openUrl with the directory of the selected file. Please note that - // this will only open the directory but not select the file as this is much more complicated due - // to different implementations that are needed for different platforms (Linux/Windows/MacOS). - - // Using QDesktopServices::openUrl seems to be the most simple cross platform way which uses - // functionality that's already available in Qt. - QFileInfo fileInfo(item->fullName()); - QDesktopServices::openUrl(QUrl::fromLocalFile(fileInfo.dir().path())); -} - - - - void FileBrowserTreeWidget::sendToActiveInstrumentTrack( FileItem* item ) { // get all windows opened in the workspace diff --git a/src/gui/FileRevealer.cpp b/src/gui/FileRevealer.cpp new file mode 100644 index 000000000..e93cc7aed --- /dev/null +++ b/src/gui/FileRevealer.cpp @@ -0,0 +1,183 @@ +/* + * FileRevealer.cpp - Helper file for cross platform file revealing + * + * Copyright (c) 2025 Andrew Wiltshire + * + * This file is part of LMMS - https://lmms.io + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program (see COPYING); if not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA. + * + */ + +#include "FileRevealer.h" + +#include +#include +#include +#include +#include +#include +#include +#include + +#include "lmmsconfig.h" + +namespace lmms { +bool FileRevealer::s_canSelect = false; + +const QString& FileRevealer::getDefaultFileManager() +{ + static std::optional fileManagerCache; + if (fileManagerCache.has_value()) { return fileManagerCache.value(); } +#if defined(LMMS_BUILD_WIN32) + fileManagerCache = "explorer"; +#elif defined(LMMS_BUILD_APPLE) + fileManagerCache = "open"; +#else + + QString desktopEnv = qgetenv("XDG_CURRENT_DESKTOP").trimmed().toLower(); + + if (desktopEnv.contains("xfce")) + { + fileManagerCache = "exo-open"; + return fileManagerCache.value(); + } + + QProcess process; + if (desktopEnv.contains("gnome")) + { + process.start("gio", {"mime", "inode/directory"}); + } + else + { + process.start("xdg-mime", {"query", "default", "inode/directory"}); + } + + process.waitForFinished(3000); + + QString fileManager = QString::fromUtf8(process.readAllStandardOutput()).toLower().trimmed(); + + if (fileManager.contains("inode/directory")) + { + // gio format: split on ":" or "\n", take second element + QStringList fileManagers = fileManager.split(QRegularExpression("[:\n]"), Qt::SkipEmptyParts); + if (fileManagers.length() >= 2) + { + fileManagers.removeFirst(); + fileManager = fileManagers.first().trimmed(); + } + else + { + // Fallback to something sane + fileManager = "xdg-open"; + } + } + else + { + // xdg-mime format: split on ";", take the last non-empty element + QStringList fileManagers = fileManager.split(';', Qt::SkipEmptyParts); + if (!fileManagers.isEmpty()) + { + // The highest priority file manager is last + fileManager = fileManagers.last(); + } + } + + if (fileManager.endsWith(".desktop")) { fileManager.chop(8); } + + // If the fileManager contains dots (e.g., "org.kde.dolphin"), extract only the last part + fileManager = fileManager.section('.', -1); + fileManagerCache = fileManager; +#endif + qDebug() << "FileRevealer: Default app for inode/directory:" << fileManagerCache.value(); + return fileManagerCache.value(); +} + +void FileRevealer::openDir(const QFileInfo item) +{ + QString nativePath = QDir::toNativeSeparators(item.canonicalFilePath()); + + QProcess::startDetached(getDefaultFileManager(), {nativePath}); +} + +const QStringList& FileRevealer::getSelectCommand() +{ + static std::optional selectCommandCache; + + if (selectCommandCache.has_value()) { return selectCommandCache.value(); } + + static const std::map argMap = { + {"open", {"-R"}}, + {"explorer", {"/select,"}}, + {"nemo", {}}, + {"thunar", {}}, + {"exo-open", {"--launch", "FileManager"}}, + }; + + // Skip calling "--help" for file managers that we know + for (const auto& [fileManager, arg] : argMap) + { + if (fileManager == getDefaultFileManager()) + { + s_canSelect = true; + selectCommandCache = arg; + return selectCommandCache.value(); + } + } + + // Parse " --help" and look for the "--select" for file managers that we don't know + if (supportsArg(getDefaultFileManager(), "--select")) + { + s_canSelect = true; + selectCommandCache = {"--select"}; + return selectCommandCache.value(); + } + + // Fallback to empty list + selectCommandCache = {}; + return selectCommandCache.value(); +} + +void FileRevealer::reveal(const QFileInfo item) +{ + // Sets selectCommandCache, canSelect + const QStringList& selectCommand = getSelectCommand(); + if (!s_canSelect) + { + QDesktopServices::openUrl(QUrl::fromLocalFile(item.canonicalPath())); + return; + } + + QString path = QDir::toNativeSeparators(item.canonicalFilePath()); + QStringList params; + + if (!selectCommand.isEmpty()) { params << selectCommand; } + + params << path; + QProcess::startDetached(getDefaultFileManager(), params); +} + +bool FileRevealer::supportsArg(const QString& command, const QString& arg) +{ + QProcess process; + process.start(command, {"--help"}); + process.waitForFinished(3000); + + QString output = process.readAllStandardOutput() + process.readAllStandardError(); + return output.contains(arg); +} + +} // namespace lmms diff --git a/src/gui/GuiApplication.cpp b/src/gui/GuiApplication.cpp index 5c4bdd19a..8c674112d 100644 --- a/src/gui/GuiApplication.cpp +++ b/src/gui/GuiApplication.cpp @@ -106,6 +106,7 @@ GuiApplication::GuiApplication() // Show splash screen QSplashScreen splashScreen( embed::getIconPixmap( "splash" ) ); + splashScreen.setFixedSize(splashScreen.pixmap().size()); splashScreen.show(); QHBoxLayout layout; @@ -252,7 +253,7 @@ QFont GuiApplication::getWin32SystemFont() { // height is in pixels, convert to points HDC hDC = GetDC( nullptr ); - pointSize = MulDiv( abs( pointSize ), 72, GetDeviceCaps( hDC, LOGPIXELSY ) ); + pointSize = MulDiv(std::abs(pointSize), 72, GetDeviceCaps(hDC, LOGPIXELSY)); ReleaseDC( nullptr, hDC ); } diff --git a/src/gui/LmmsStyle.cpp b/src/gui/LmmsStyle.cpp index 50a2a9de4..26f4c853c 100644 --- a/src/gui/LmmsStyle.cpp +++ b/src/gui/LmmsStyle.cpp @@ -25,14 +25,17 @@ #include -#include #include +#include +#include #include #include #include #include +#include "embed.h" #include "LmmsStyle.h" +#include "TextFloat.h" namespace lmms::gui @@ -137,6 +140,29 @@ LmmsStyle::LmmsStyle() : file.open( QIODevice::ReadOnly ); qApp->setStyleSheet( file.readAll() ); + m_styleReloader.addPath(QFileInfo{file}.absoluteFilePath()); + connect(&m_styleReloader, &QFileSystemWatcher::fileChanged, this, + [this](const QString& path) + { + if (auto file = QFile{path}; file.exists()) + { + file.open(QIODevice::ReadOnly); + qApp->setStyleSheet(file.readAll()); + TextFloat::displayMessage( + tr("Theme updated"), + tr("LMMS theme file %1 has been reloaded.").arg(file.fileName()), + embed::getIconPixmap("colorize"), + 3000 + ); + // Handle delete + overwrite events + if (!m_styleReloader.files().contains(path)) + { + m_styleReloader.addPath(path); + } + } + } + ); + if( s_palette != nullptr ) { qApp->setPalette( *s_palette ); } setBaseStyle( QStyleFactory::create( "Fusion" ) ); diff --git a/src/gui/Lv2ViewBase.cpp b/src/gui/Lv2ViewBase.cpp index fc025e268..d6a25af83 100644 --- a/src/gui/Lv2ViewBase.cpp +++ b/src/gui/Lv2ViewBase.cpp @@ -38,7 +38,7 @@ #include "Engine.h" #include "GuiApplication.h" #include "embed.h" -#include "gui_templates.h" +#include "FontHelper.h" #include "lmms_math.h" #include "Lv2ControlBase.h" #include "Lv2Manager.h" @@ -157,7 +157,7 @@ Lv2ViewBase::Lv2ViewBase(QWidget* meAsWidget, Lv2ControlBase *ctrlBase) : m_toggleUIButton->setCheckable(true); m_toggleUIButton->setChecked(false); m_toggleUIButton->setIcon(embed::getIconPixmap("zoom")); - m_toggleUIButton->setFont(adjustedToPixelSize(m_toggleUIButton->font(), 8)); + m_toggleUIButton->setFont(adjustedToPixelSize(m_toggleUIButton->font(), SMALL_FONT_SIZE)); btnBox->addWidget(m_toggleUIButton, 0); } btnBox->addStretch(1); diff --git a/src/gui/MainWindow.cpp b/src/gui/MainWindow.cpp index d534be96f..275ef4d29 100644 --- a/src/gui/MainWindow.cpp +++ b/src/gui/MainWindow.cpp @@ -38,11 +38,13 @@ #include "AboutDialog.h" #include "AutomationEditor.h" #include "ControllerRackView.h" +#include "DeprecationHelper.h" #include "embed.h" #include "Engine.h" #include "ExportProjectDialog.h" #include "FileBrowser.h" #include "FileDialog.h" +#include "Metronome.h" #include "MixerView.h" #include "GuiApplication.h" #include "ImportFilter.h" @@ -157,7 +159,7 @@ MainWindow::MainWindow() : sideBar->appendTab(new FileBrowser(root_paths.join("*"), FileItem::defaultFilters(), title, embed::getIconPixmap("computer").transformed(QTransform().rotate(90)), splitter, dirs_as_items)); - m_workspace = new QMdiArea(splitter); + m_workspace = new MovableQMdiArea(splitter); // Load background emit initProgress(tr("Loading background picture")); @@ -177,8 +179,8 @@ MainWindow::MainWindow() : } m_workspace->setOption( QMdiArea::DontMaximizeSubWindowOnActivation ); - m_workspace->setHorizontalScrollBarPolicy( Qt::ScrollBarAsNeeded ); - m_workspace->setVerticalScrollBarPolicy( Qt::ScrollBarAsNeeded ); + m_workspace->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); + m_workspace->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); hbox->addWidget(sideBar); hbox->addWidget(splitter); @@ -292,11 +294,11 @@ void MainWindow::finalize() project_menu->addAction( embed::getIconPixmap( "project_save" ), tr( "Save &As..." ), this, SLOT(saveProjectAs()), - Qt::CTRL + Qt::SHIFT + Qt::Key_S ); + combine(Qt::CTRL, Qt::SHIFT, Qt::Key_S)); project_menu->addAction( embed::getIconPixmap( "project_save" ), tr( "Save as New &Version" ), this, SLOT(saveProjectAsNewVersion()), - Qt::CTRL + Qt::ALT + Qt::Key_S ); + combine(Qt::CTRL, Qt::ALT, Qt::Key_S)); project_menu->addAction( embed::getIconPixmap( "project_save" ), tr( "Save as default template" ), @@ -311,23 +313,23 @@ void MainWindow::finalize() tr( "E&xport..." ), this, SLOT(onExportProject()), - Qt::CTRL + Qt::Key_E ); + combine(Qt::CTRL, Qt::Key_E)); project_menu->addAction( embed::getIconPixmap( "project_export" ), tr( "E&xport Tracks..." ), this, SLOT(onExportProjectTracks()), - Qt::CTRL + Qt::SHIFT + Qt::Key_E ); + combine(Qt::CTRL, Qt::SHIFT, Qt::Key_E)); project_menu->addAction( embed::getIconPixmap( "midi_file" ), tr( "Export &MIDI..." ), this, SLOT(onExportProjectMidi()), - Qt::CTRL + Qt::Key_M ); + combine(Qt::CTRL, Qt::Key_M)); project_menu->addSeparator(); project_menu->addAction( embed::getIconPixmap( "exit" ), tr( "&Quit" ), qApp, SLOT(closeAllWindows()), - Qt::CTRL + Qt::Key_Q ); + combine(Qt::CTRL, Qt::Key_Q)); auto edit_menu = new QMenu(this); menuBar()->addMenu( edit_menu )->setText( tr( "&Edit" ) ); @@ -340,13 +342,13 @@ void MainWindow::finalize() this, SLOT(redo()), QKeySequence::Redo ); // Ensure that both (Ctrl+Y) and (Ctrl+Shift+Z) activate redo shortcut regardless of OS defaults - if (QKeySequence(QKeySequence::Redo) != QKeySequence(Qt::CTRL + Qt::Key_Y)) + if (QKeySequence(QKeySequence::Redo) != QKeySequence(combine(Qt::CTRL, Qt::Key_Y))) { - new QShortcut( QKeySequence( Qt::CTRL + Qt::Key_Y ), this, SLOT(redo())); + new QShortcut(QKeySequence(combine(Qt::CTRL, Qt::Key_Y)), this, SLOT(redo())); } - if (QKeySequence(QKeySequence::Redo) != QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_Z )) + if (QKeySequence(QKeySequence::Redo) != QKeySequence(combine(Qt::CTRL, Qt::SHIFT, Qt::Key_Z))) { - new QShortcut( QKeySequence( Qt::CTRL + Qt::SHIFT + Qt::Key_Z ), this, SLOT(redo())); + new QShortcut(QKeySequence(combine(Qt::CTRL, Qt::SHIFT, Qt::Key_Z)), this, SLOT(redo())); } edit_menu->addSeparator(); @@ -430,7 +432,7 @@ void MainWindow::finalize() this, SLOT(onToggleMetronome()), m_toolBar ); m_metronomeToggle->setCheckable(true); - m_metronomeToggle->setChecked(Engine::audioEngine()->isMetronomeActive()); + m_metronomeToggle->setChecked(Engine::getSong()->metronome().active()); m_toolBarLayout->setColumnMinimumWidth( 0, 5 ); m_toolBarLayout->addWidget( project_new, 0, 1 ); @@ -445,31 +447,31 @@ void MainWindow::finalize() // window-toolbar auto song_editor_window = new ToolButton(embed::getIconPixmap("songeditor"), tr("Song Editor") + " (Ctrl+1)", this, SLOT(toggleSongEditorWin()), m_toolBar); - song_editor_window->setShortcut( Qt::CTRL + Qt::Key_1 ); + song_editor_window->setShortcut(combine(Qt::CTRL, Qt::Key_1)); auto pattern_editor_window = new ToolButton(embed::getIconPixmap("pattern_track_btn"), tr("Pattern Editor") + " (Ctrl+2)", this, SLOT(togglePatternEditorWin()), m_toolBar); - pattern_editor_window->setShortcut(Qt::CTRL + Qt::Key_2); + pattern_editor_window->setShortcut(combine(Qt::CTRL, Qt::Key_2)); auto piano_roll_window = new ToolButton( embed::getIconPixmap("piano"), tr("Piano Roll") + " (Ctrl+3)", this, SLOT(togglePianoRollWin()), m_toolBar); - piano_roll_window->setShortcut( Qt::CTRL + Qt::Key_3 ); + piano_roll_window->setShortcut(combine(Qt::CTRL, Qt::Key_3)); auto automation_editor_window = new ToolButton(embed::getIconPixmap("automation"), tr("Automation Editor") + " (Ctrl+4)", this, SLOT(toggleAutomationEditorWin()), m_toolBar); - automation_editor_window->setShortcut( Qt::CTRL + Qt::Key_4 ); + automation_editor_window->setShortcut(combine(Qt::CTRL, Qt::Key_4)); auto mixer_window = new ToolButton( embed::getIconPixmap("mixer"), tr("Mixer") + " (Ctrl+5)", this, SLOT(toggleMixerWin()), m_toolBar); - mixer_window->setShortcut( Qt::CTRL + Qt::Key_5 ); + mixer_window->setShortcut(combine(Qt::CTRL, Qt::Key_5)); auto controllers_window = new ToolButton(embed::getIconPixmap("controller"), tr("Show/hide controller rack") + " (Ctrl+6)", this, SLOT(toggleControllerRack()), m_toolBar); - controllers_window->setShortcut( Qt::CTRL + Qt::Key_6 ); + controllers_window->setShortcut(combine(Qt::CTRL, Qt::Key_6)); auto project_notes_window = new ToolButton(embed::getIconPixmap("project_notes"), tr("Show/hide project notes") + " (Ctrl+7)", this, SLOT(toggleProjectNotesWin()), m_toolBar); - project_notes_window->setShortcut( Qt::CTRL + Qt::Key_7 ); + project_notes_window->setShortcut(combine(Qt::CTRL, Qt::Key_7)); m_toolBarLayout->addWidget( song_editor_window, 1, 1 ); m_toolBarLayout->addWidget( pattern_editor_window, 1, 2 ); @@ -529,8 +531,6 @@ void MainWindow::finalize() } - - int MainWindow::addWidgetToToolBar( QWidget * _w, int _row, int _col ) { int col = ( _col == -1 ) ? m_toolBarLayout->columnCount() + 7 : _col; @@ -942,12 +942,6 @@ void MainWindow::toggleWindow( QWidget *window, bool forceShow ) parent->hide(); refocus(); } - - // Workaround for Qt Bug #260116 - m_workspace->setHorizontalScrollBarPolicy( Qt::ScrollBarAlwaysOff ); - m_workspace->setVerticalScrollBarPolicy( Qt::ScrollBarAlwaysOff ); - m_workspace->setHorizontalScrollBarPolicy( Qt::ScrollBarAsNeeded ); - m_workspace->setVerticalScrollBarPolicy( Qt::ScrollBarAsNeeded ); } @@ -974,26 +968,21 @@ void MainWindow::toggleFullscreen() */ void MainWindow::refocus() { - QList editors; - editors - << getGUI()->songEditor()->parentWidget() - << getGUI()->patternEditor()->parentWidget() - << getGUI()->pianoRoll()->parentWidget() - << getGUI()->automationEditor()->parentWidget(); + const auto gui = getGUI(); - bool found = false; - QList::Iterator editor; - for( editor = editors.begin(); editor != editors.end(); ++editor ) + // Attempt to set the focus on the first of these editors that is not hidden... + for (auto editorParent : { gui->songEditor()->parentWidget(), gui->patternEditor()->parentWidget(), + gui->pianoRoll()->parentWidget(), gui->automationEditor()->parentWidget() }) { - if( ! (*editor)->isHidden() ) { - (*editor)->setFocus(); - found = true; - break; + if (!editorParent->isHidden()) + { + editorParent->setFocus(); + return; } } - if( ! found ) - this->setFocus(); + // ... otherwise set the focus on the main window. + this->setFocus(); } @@ -1102,13 +1091,7 @@ void MainWindow::updateViewMenu() // Here we should put all look&feel -stuff from configmanager // that is safe to change on the fly. There is probably some // more elegant way to do this. - auto qa = new QAction(tr("Volume as dBFS"), this); - qa->setData("displaydbfs"); - qa->setCheckable( true ); - qa->setChecked( ConfigManager::inst()->value( "app", "displaydbfs" ).toInt() ); - m_viewMenu->addAction(qa); - - qa = new QAction(tr( "Smooth scroll" ), this); + auto qa = new QAction(tr("Smooth scroll"), this); qa->setData("smoothscroll"); qa->setCheckable( true ); qa->setChecked( ConfigManager::inst()->value( "ui", "smoothscroll" ).toInt() ); @@ -1138,12 +1121,7 @@ void MainWindow::updateConfig( QAction * _who ) QString tag = _who->data().toString(); bool checked = _who->isChecked(); - if( tag == "displaydbfs" ) - { - ConfigManager::inst()->setValue( "app", "displaydbfs", - QString::number(checked) ); - } - else if ( tag == "tooltips" ) + if (tag == "tooltips") { ConfigManager::inst()->setValue( "tooltips", "disabled", QString::number(!checked) ); @@ -1173,7 +1151,7 @@ void MainWindow::updateConfig( QAction * _who ) void MainWindow::onToggleMetronome() { - Engine::audioEngine()->setMetronomeActive( m_metronomeToggle->isChecked() ); + Engine::getSong()->metronome().setActive(m_metronomeToggle->isChecked()); } @@ -1615,4 +1593,64 @@ void MainWindow::onProjectFileNameChanged() } +MainWindow::MovableQMdiArea::MovableQMdiArea(QWidget* parent) : + QMdiArea(parent), + m_isBeingMoved(false), + m_lastX(0), + m_lastY(0) +{} + +void MainWindow::MovableQMdiArea::mousePressEvent(QMouseEvent* event) +{ + m_lastX = event->x(); + m_lastY = event->y(); + m_isBeingMoved = true; + setCursor(Qt::ClosedHandCursor); +} + +void MainWindow::MovableQMdiArea::mouseMoveEvent(QMouseEvent* event) +{ + if (m_isBeingMoved == false) { return; } + + int minXBoundary = window()->width() - 100; + int maxXBoundary = 100; + int minYBoundary = window()->height() - 100; + int maxYBoundary = 100; + + int minX = minXBoundary; + int maxX = maxXBoundary; + int minY = minYBoundary; + int maxY = maxYBoundary; + + auto subWindows = subWindowList(); + for (auto* curWindow : subWindows) + { + if (curWindow->isVisible()) + { + minX = std::min(minX, curWindow->x()); + maxX = std::max(maxX, curWindow->x() + curWindow->width()); + minY = std::min(minY, curWindow->y()); + maxY = std::max(maxY, curWindow->y() + curWindow->height()); + } + } + + int scrollX = m_lastX - event->x(); + int scrollY = m_lastY - event->y(); + + scrollX = scrollX < 0 && minX >= minXBoundary ? 0 : scrollX; + scrollX = scrollX > 0 && maxX <= maxXBoundary ? 0 : scrollX; + scrollY = scrollY < 0 && minY >= minYBoundary ? 0 : scrollY; + scrollY = scrollY > 0 && maxY <= maxYBoundary ? 0 : scrollY; + + scrollContentsBy(-scrollX, -scrollY); + m_lastX = event->x(); + m_lastY = event->y(); +} + +void MainWindow::MovableQMdiArea::mouseReleaseEvent(QMouseEvent* event) +{ + setCursor(Qt::ArrowCursor); + m_isBeingMoved = false; +} + } // namespace lmms::gui diff --git a/src/gui/MicrotunerConfig.cpp b/src/gui/MicrotunerConfig.cpp index 20660df41..3b952ba0a 100644 --- a/src/gui/MicrotunerConfig.cpp +++ b/src/gui/MicrotunerConfig.cpp @@ -94,7 +94,7 @@ MicrotunerConfig::MicrotunerConfig() : auto scaleCombo = new ComboBox(); scaleCombo->setModel(&m_scaleComboModel); microtunerLayout->addWidget(scaleCombo, 1, 0, 1, 2); - connect(&m_scaleComboModel, &ComboBoxModel::dataChanged, [=] {updateScaleForm();}); + connect(&m_scaleComboModel, &ComboBoxModel::dataChanged, this, &MicrotunerConfig::updateScaleForm); m_scaleNameEdit = new QLineEdit("12-TET"); m_scaleNameEdit->setToolTip(tr("Scale description. Cannot start with \"!\" and cannot contain a newline character.")); @@ -106,8 +106,8 @@ MicrotunerConfig::MicrotunerConfig() : saveScaleButton->setToolTip(tr("Save scale definition to a file.")); microtunerLayout->addWidget(loadScaleButton, 3, 0, 1, 1); microtunerLayout->addWidget(saveScaleButton, 3, 1, 1, 1); - connect(loadScaleButton, &QPushButton::clicked, [=] {loadScaleFromFile();}); - connect(saveScaleButton, &QPushButton::clicked, [=] {saveScaleToFile();}); + connect(loadScaleButton, &QPushButton::clicked, this, &MicrotunerConfig::loadScaleFromFile); + connect(saveScaleButton, &QPushButton::clicked, this, &MicrotunerConfig::saveScaleToFile); m_scaleTextEdit = new QPlainTextEdit(); m_scaleTextEdit->setPlainText("100.0\n200.0\n300.0\n400.0\n500.0\n600.0\n700.0\n800.0\n900.0\n1000.0\n1100.0\n1200.0"); @@ -117,7 +117,7 @@ MicrotunerConfig::MicrotunerConfig() : auto applyScaleButton = new QPushButton(tr("Apply scale changes")); applyScaleButton->setToolTip(tr("Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument.")); microtunerLayout->addWidget(applyScaleButton, 6, 0, 1, 2); - connect(applyScaleButton, &QPushButton::clicked, [=] {applyScale();}); + connect(applyScaleButton, &QPushButton::clicked, this, &MicrotunerConfig::applyScale); // ---------------------------------- // Mapping sub-column @@ -132,7 +132,7 @@ MicrotunerConfig::MicrotunerConfig() : auto keymapCombo = new ComboBox(); keymapCombo->setModel(&m_keymapComboModel); microtunerLayout->addWidget(keymapCombo, 1, 2, 1, 2); - connect(&m_keymapComboModel, &ComboBoxModel::dataChanged, [=] {updateKeymapForm();}); + connect(&m_keymapComboModel, &ComboBoxModel::dataChanged, this, &MicrotunerConfig::updateKeymapForm); m_keymapNameEdit = new QLineEdit("default"); m_keymapNameEdit->setToolTip(tr("Keymap description. Cannot start with \"!\" and cannot contain a newline character.")); @@ -144,8 +144,8 @@ MicrotunerConfig::MicrotunerConfig() : saveKeymapButton->setToolTip(tr("Save key mapping definition to a file.")); microtunerLayout->addWidget(loadKeymapButton, 3, 2, 1, 1); microtunerLayout->addWidget(saveKeymapButton, 3, 3, 1, 1); - connect(loadKeymapButton, &QPushButton::clicked, [=] {loadKeymapFromFile();}); - connect(saveKeymapButton, &QPushButton::clicked, [=] {saveKeymapToFile();}); + connect(loadKeymapButton, &QPushButton::clicked, this, &MicrotunerConfig::loadKeymapFromFile); + connect(saveKeymapButton, &QPushButton::clicked, this, &MicrotunerConfig::saveKeymapToFile); m_keymapTextEdit = new QPlainTextEdit(); m_keymapTextEdit->setPlainText("0\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11"); @@ -189,7 +189,7 @@ MicrotunerConfig::MicrotunerConfig() : auto applyKeymapButton = new QPushButton(tr("Apply keymap changes")); applyKeymapButton->setToolTip(tr("Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument.")); microtunerLayout->addWidget(applyKeymapButton, 6, 2, 1, 2); - connect(applyKeymapButton, &QPushButton::clicked, [=] {applyKeymap();}); + connect(applyKeymapButton, &QPushButton::clicked, this, &MicrotunerConfig::applyKeymap); updateScaleForm(); updateKeymapForm(); @@ -325,7 +325,7 @@ void MicrotunerConfig::updateKeymapForm() */ bool MicrotunerConfig::validateScaleForm() { - auto fail = [=](QString message) {QMessageBox::critical(this, tr("Scale parsing error"), message);}; + auto fail = [this](const QString& message){ QMessageBox::critical(this, tr("Scale parsing error"), message); }; // check name QString name = m_scaleNameEdit->text(); @@ -373,7 +373,7 @@ bool MicrotunerConfig::validateScaleForm() */ bool MicrotunerConfig::validateKeymapForm() { - auto fail = [=](QString message) {QMessageBox::critical(this, tr("Keymap parsing error"), message);}; + auto fail = [this](const QString& message){ QMessageBox::critical(this, tr("Keymap parsing error"), message); }; // check name QString name = m_keymapNameEdit->text(); diff --git a/src/gui/MixerChannelView.cpp b/src/gui/MixerChannelView.cpp index 2a1fe0928..1eb2fd1bb 100644 --- a/src/gui/MixerChannelView.cpp +++ b/src/gui/MixerChannelView.cpp @@ -22,474 +22,382 @@ * */ -#include "CaptionMenu.h" -#include "ColorChooser.h" -#include "GuiApplication.h" -#include "Mixer.h" #include "MixerChannelView.h" -#include "MixerView.h" -#include "PeakIndicator.h" -#include "Song.h" -#include "ConfigManager.h" - -#include "gui_templates.h" -#include "lmms_math.h" +#include +#include #include #include #include -#include -#include #include -#include - +#include #include -namespace lmms::gui +#include "CaptionMenu.h" +#include "ColorChooser.h" +#include "ConfigManager.h" +#include "FontHelper.h" +#include "GuiApplication.h" +#include "Mixer.h" +#include "MixerView.h" +#include "PeakIndicator.h" +#include "Song.h" + +namespace lmms::gui { +MixerChannelView::MixerChannelView(QWidget* parent, MixerView* mixerView, int channelIndex) + : QWidget(parent) + , m_mixerView(mixerView) + , m_channelIndex(channelIndex) { - MixerChannelView::MixerChannelView(QWidget* parent, MixerView* mixerView, int channelIndex) : - QWidget(parent), - m_mixerView(mixerView), - m_channelIndex(channelIndex) - { - auto retainSizeWhenHidden = [](QWidget* widget) - { - auto sizePolicy = widget->sizePolicy(); - sizePolicy.setRetainSizeWhenHidden(true); - widget->setSizePolicy(sizePolicy); - }; - - m_sendButton = new SendButtonIndicator{this, this, mixerView}; - retainSizeWhenHidden(m_sendButton); - - m_sendKnob = new Knob{KnobType::Bright26, this, tr("Channel send amount")}; - retainSizeWhenHidden(m_sendKnob); - - m_channelNumberLcd = new LcdWidget{2, this}; - m_channelNumberLcd->setValue(channelIndex); - retainSizeWhenHidden(m_channelNumberLcd); - - const auto mixerChannel = Engine::mixer()->mixerChannel(channelIndex); - const auto mixerName = mixerChannel->m_name; - setToolTip(mixerName); - - m_renameLineEdit = new QLineEdit{mixerName, nullptr}; - m_renameLineEdit->setFixedWidth(65); - m_renameLineEdit->setFont(adjustedToPixelSize(font(), 12)); - m_renameLineEdit->setReadOnly(true); - m_renameLineEdit->installEventFilter(this); - - auto renameLineEditScene = new QGraphicsScene{}; - m_renameLineEditView = new QGraphicsView{}; - m_renameLineEditView->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); - m_renameLineEditView->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); - m_renameLineEditView->setAttribute(Qt::WA_TransparentForMouseEvents, true); - m_renameLineEditView->setScene(renameLineEditScene); - - auto renameLineEditProxy = renameLineEditScene->addWidget(m_renameLineEdit); - renameLineEditProxy->setRotation(-90); - m_renameLineEditView->setFixedSize(m_renameLineEdit->height() + 5, m_renameLineEdit->width() + 5); - - m_sendArrow = new QLabel{}; - m_sendArrow->setPixmap(embed::getIconPixmap("send_bg_arrow")); - retainSizeWhenHidden(m_sendArrow); - m_sendArrow->setVisible(m_sendReceiveState == SendReceiveState::SendToThis); - - m_receiveArrow = new QLabel{}; - m_receiveArrow->setPixmap(embed::getIconPixmap("receive_bg_arrow")); - retainSizeWhenHidden(m_receiveArrow); - m_receiveArrow->setVisible(m_sendReceiveState == SendReceiveState::ReceiveFromThis); - - m_muteButton = new PixmapButton(this, tr("Mute")); - m_muteButton->setModel(&mixerChannel->m_muteModel); - m_muteButton->setActiveGraphic(embed::getIconPixmap("led_off")); - m_muteButton->setInactiveGraphic(embed::getIconPixmap("led_green")); - m_muteButton->setCheckable(true); - m_muteButton->setToolTip(tr("Mute this channel")); - - m_soloButton = new PixmapButton(this, tr("Solo")); - m_soloButton->setModel(&mixerChannel->m_soloModel); - m_soloButton->setActiveGraphic(embed::getIconPixmap("led_red")); - m_soloButton->setInactiveGraphic(embed::getIconPixmap("led_off")); - m_soloButton->setCheckable(true); - m_soloButton->setToolTip(tr("Solo this channel")); - - QVBoxLayout* soloMuteLayout = new QVBoxLayout(); - soloMuteLayout->setContentsMargins(0, 0, 0, 0); - soloMuteLayout->setSpacing(0); - soloMuteLayout->addWidget(m_soloButton, 0, Qt::AlignHCenter); - soloMuteLayout->addWidget(m_muteButton, 0, Qt::AlignHCenter); - - m_fader = new Fader{&mixerChannel->m_volumeModel, tr("Fader %1").arg(channelIndex), this}; - - m_peakIndicator = new PeakIndicator(this); - connect(m_fader, &Fader::peakChanged, m_peakIndicator, &PeakIndicator::updatePeak); - - m_effectRackView = new EffectRackView{&mixerChannel->m_fxChain, mixerView->m_racksWidget}; - m_effectRackView->setFixedWidth(EffectRackView::DEFAULT_WIDTH); - - auto mainLayout = new QVBoxLayout{this}; - mainLayout->setContentsMargins(4, 4, 4, 4); - mainLayout->addWidget(m_receiveArrow, 0, Qt::AlignHCenter); - mainLayout->addWidget(m_sendButton, 0, Qt::AlignHCenter); - mainLayout->addWidget(m_sendKnob, 0, Qt::AlignHCenter); - mainLayout->addWidget(m_sendArrow, 0, Qt::AlignHCenter); - mainLayout->addWidget(m_channelNumberLcd, 0, Qt::AlignHCenter); - mainLayout->addWidget(m_renameLineEditView, 0, Qt::AlignHCenter); - mainLayout->addLayout(soloMuteLayout, 0); - mainLayout->addWidget(m_peakIndicator); - mainLayout->addWidget(m_fader, 1, Qt::AlignHCenter); - - connect(m_renameLineEdit, &QLineEdit::editingFinished, this, &MixerChannelView::renameFinished); - } - - void MixerChannelView::contextMenuEvent(QContextMenuEvent*) - { - auto contextMenu = new CaptionMenu(mixerChannel()->m_name, this); - - if (!isMasterChannel()) // no move-options in master - { - contextMenu->addAction(tr("Move &left"), this, &MixerChannelView::moveChannelLeft); - contextMenu->addAction(tr("Move &right"), this, &MixerChannelView::moveChannelRight); - } - - contextMenu->addAction(tr("Rename &channel"), this, &MixerChannelView::renameChannel); - contextMenu->addSeparator(); - - if (!isMasterChannel()) // no remove-option in master - { - contextMenu->addAction(embed::getIconPixmap("cancel"), tr("R&emove channel"), this, &MixerChannelView::removeChannel); - contextMenu->addSeparator(); - } - - contextMenu->addAction(embed::getIconPixmap("cancel"), tr("Remove &unused channels"), this, &MixerChannelView::removeUnusedChannels); - contextMenu->addSeparator(); - - auto colorMenu = QMenu{tr("Color"), this}; - colorMenu.setIcon(embed::getIconPixmap("colorize")); - colorMenu.addAction(tr("Change"), this, &MixerChannelView::selectColor); - colorMenu.addAction(tr("Reset"), this, &MixerChannelView::resetColor); - colorMenu.addAction(tr("Pick random"), this, &MixerChannelView::randomizeColor); - contextMenu->addMenu(&colorMenu); - - contextMenu->exec(QCursor::pos()); - delete contextMenu; - } - - void MixerChannelView::paintEvent(QPaintEvent* event) - { - auto * mixer = Engine::mixer(); - const auto channel = mixerChannel(); - const bool muted = channel->m_muteModel.value(); - const auto name = channel->m_name; - const auto elidedName = elideName(name); - const auto * mixerChannelView = m_mixerView->currentMixerChannel(); - const auto isActive = mixerChannelView == this; - - if (!m_inRename && m_renameLineEdit->text() != elidedName) - { - m_renameLineEdit->setText(elidedName); - } - - const auto width = rect().width(); - const auto height = rect().height(); - auto painter = QPainter{this}; - - if (channel->color().has_value() && !muted) - { - painter.fillRect(rect(), channel->color()->darker(isActive ? 120 : 150)); - } - else - { - painter.fillRect(rect(), isActive ? backgroundActive().color() : painter.background().color()); - } - - // inner border - painter.setPen(isActive ? strokeInnerActive() : strokeInnerInactive()); - painter.drawRect(1, 1, width - MIXER_CHANNEL_INNER_BORDER_SIZE, height - MIXER_CHANNEL_INNER_BORDER_SIZE); - - // outer border - painter.setPen(isActive ? strokeOuterActive() : strokeOuterInactive()); - painter.drawRect(0, 0, width - MIXER_CHANNEL_OUTER_BORDER_SIZE, height - MIXER_CHANNEL_OUTER_BORDER_SIZE); - - const auto & currentMixerChannelIndex = mixerChannelView->m_channelIndex; - const auto sendToThis = mixer->channelSendModel(currentMixerChannelIndex, m_channelIndex) != nullptr; - const auto receiveFromThis = mixer->channelSendModel(m_channelIndex, currentMixerChannelIndex) != nullptr; - const auto sendReceiveStateNone = !sendToThis && !receiveFromThis; - - // Only one or none of them can be on - assert(sendToThis ^ receiveFromThis || sendReceiveStateNone); - - m_sendArrow->setVisible(sendToThis); - m_receiveArrow->setVisible(receiveFromThis); - - if (sendReceiveStateNone) - { - setSendReceiveState(SendReceiveState::None); - } - else - { - setSendReceiveState(sendToThis ? SendReceiveState::SendToThis : SendReceiveState::ReceiveFromThis); - } - - QWidget::paintEvent(event); - } - - void MixerChannelView::mousePressEvent(QMouseEvent*) - { - if (m_mixerView->currentMixerChannel() != this) - { - m_mixerView->setCurrentMixerChannel(this); - } - } - - void MixerChannelView::mouseDoubleClickEvent(QMouseEvent*) - { - renameChannel(); - } - - bool MixerChannelView::eventFilter(QObject* dist, QEvent* event) - { - // If we are in a rename, capture the enter/return events and handle them - if (event->type() == QEvent::KeyPress) - { - auto keyEvent = static_cast(event); - if (keyEvent->key() == Qt::Key_Enter || keyEvent->key() == Qt::Key_Return) - { - if (m_inRename) - { - renameFinished(); - event->accept(); // Stop the event from propagating - return true; - } - } - } - return false; - } - - int MixerChannelView::channelIndex() const - { - return m_channelIndex; - } - - void MixerChannelView::setChannelIndex(int index) - { - MixerChannel* mixerChannel = Engine::mixer()->mixerChannel(index); - m_fader->setModel(&mixerChannel->m_volumeModel); - m_muteButton->setModel(&mixerChannel->m_muteModel); - m_soloButton->setModel(&mixerChannel->m_soloModel); - m_effectRackView->setModel(&mixerChannel->m_fxChain); - m_channelNumberLcd->setValue(index); - m_channelIndex = index; - } - - MixerChannelView::SendReceiveState MixerChannelView::sendReceiveState() const - { - return m_sendReceiveState; - } - - void MixerChannelView::setSendReceiveState(const SendReceiveState& state) - { - m_sendReceiveState = state; - m_sendArrow->setVisible(state == SendReceiveState::SendToThis); - m_receiveArrow->setVisible(state == SendReceiveState::ReceiveFromThis); - } - - QBrush MixerChannelView::backgroundActive() const - { - return m_backgroundActive; - } - - void MixerChannelView::setBackgroundActive(const QBrush& c) - { - m_backgroundActive = c; - } - - QColor MixerChannelView::strokeOuterActive() const - { - return m_strokeOuterActive; - } - - void MixerChannelView::setStrokeOuterActive(const QColor& c) - { - m_strokeOuterActive = c; - } - - QColor MixerChannelView::strokeOuterInactive() const - { - return m_strokeOuterInactive; - } - - void MixerChannelView::setStrokeOuterInactive(const QColor& c) - { - m_strokeOuterInactive = c; - } - - QColor MixerChannelView::strokeInnerActive() const - { - return m_strokeInnerActive; - } - - void MixerChannelView::setStrokeInnerActive(const QColor& c) - { - m_strokeInnerActive = c; - } - - QColor MixerChannelView::strokeInnerInactive() const - { - return m_strokeInnerInactive; - } - - void MixerChannelView::setStrokeInnerInactive(const QColor& c) - { - m_strokeInnerInactive = c; - } - - void MixerChannelView::reset() - { - m_peakIndicator->resetPeakToMinusInf(); - } - - void MixerChannelView::renameChannel() - { - m_inRename = true; - setToolTip(""); - m_renameLineEdit->setReadOnly(false); - - m_channelNumberLcd->hide(); - m_renameLineEdit->setFixedWidth(m_renameLineEdit->width()); - m_renameLineEdit->setText(mixerChannel()->m_name); - - m_renameLineEditView->setFocus(); - m_renameLineEdit->selectAll(); - m_renameLineEdit->setFocus(); - } - - void MixerChannelView::renameFinished() - { - m_inRename = false; - - m_renameLineEdit->deselect(); - m_renameLineEdit->setReadOnly(true); - m_renameLineEdit->setFixedWidth(m_renameLineEdit->width()); - m_channelNumberLcd->show(); - - auto newName = m_renameLineEdit->text(); - setFocus(); - - const auto mc = mixerChannel(); - if (!newName.isEmpty() && mc->m_name != newName) - { - mc->m_name = newName; - m_renameLineEdit->setText(elideName(newName)); - Engine::getSong()->setModified(); - } - - setToolTip(mc->m_name); - } - - void MixerChannelView::resetColor() - { - mixerChannel()->setColor(std::nullopt); - Engine::getSong()->setModified(); - update(); - } - - void MixerChannelView::selectColor() - { - const auto channel = mixerChannel(); - - const auto initialColor = channel->color().value_or(backgroundActive().color()); - const auto * colorChooser = ColorChooser{this}.withPalette(ColorChooser::Palette::Mixer); - const auto newColor = colorChooser->getColor(initialColor); - - if (!newColor.isValid()) { return; } - - channel->setColor(newColor); - - Engine::getSong()->setModified(); - update(); - } - - void MixerChannelView::randomizeColor() - { - auto channel = mixerChannel(); - channel->setColor(ColorChooser::getPalette(ColorChooser::Palette::Mixer)[rand() % 48]); - Engine::getSong()->setModified(); - update(); - } - - bool MixerChannelView::confirmRemoval(int index) + auto retainSizeWhenHidden = [](QWidget* widget) { + auto sizePolicy = widget->sizePolicy(); + sizePolicy.setRetainSizeWhenHidden(true); + widget->setSizePolicy(sizePolicy); + }; + + auto receiveArrowContainer = new QWidget{}; + auto receiveArrowLayout = new QVBoxLayout{receiveArrowContainer}; + m_receiveArrow = new QLabel{}; + m_receiveArrow->setPixmap(embed::getIconPixmap("receive_bg_arrow")); + receiveArrowLayout->setContentsMargins(0, 0, 0, 0); + receiveArrowLayout->setSpacing(0); + receiveArrowLayout->addWidget(m_receiveArrow, 0, Qt::AlignHCenter); + + auto sendButtonContainer = new QWidget{}; + auto sendButtonLayout = new QVBoxLayout{sendButtonContainer}; + m_sendButton = new SendButtonIndicator{this, this, mixerView}; + sendButtonLayout->setContentsMargins(0, 0, 0, 0); + sendButtonLayout->setSpacing(0); + sendButtonLayout->addWidget(m_sendButton, 0, Qt::AlignHCenter); + + m_receiveArrowOrSendButton = new QStackedWidget{this}; + m_receiveArrowStackedIndex = m_receiveArrowOrSendButton->addWidget(receiveArrowContainer); + m_sendButtonStackedIndex = m_receiveArrowOrSendButton->addWidget(sendButtonContainer); + retainSizeWhenHidden(m_receiveArrowOrSendButton); + + m_sendKnob = new Knob{KnobType::Bright26, this, tr("Channel send amount")}; + retainSizeWhenHidden(m_sendKnob); + + m_sendArrow = new QLabel{}; + m_sendArrow->setPixmap(embed::getIconPixmap("send_bg_arrow")); + retainSizeWhenHidden(m_sendArrow); + + m_channelNumberLcd = new LcdWidget{2, this}; + m_channelNumberLcd->setValue(channelIndex); + retainSizeWhenHidden(m_channelNumberLcd); + + const auto mixerChannel = Engine::mixer()->mixerChannel(channelIndex); + const auto mixerName = mixerChannel->m_name; + setToolTip(mixerName); + + m_renameLineEdit = new QLineEdit{mixerName, nullptr}; + m_renameLineEdit->setFixedWidth(65); + m_renameLineEdit->setFont(adjustedToPixelSize(font(), LARGE_FONT_SIZE)); + m_renameLineEdit->setReadOnly(true); + m_renameLineEdit->installEventFilter(this); + + auto renameLineEditScene = new QGraphicsScene{}; + m_renameLineEditView = new QGraphicsView{}; + m_renameLineEditView->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); + m_renameLineEditView->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); + m_renameLineEditView->setAttribute(Qt::WA_TransparentForMouseEvents, true); + m_renameLineEditView->setScene(renameLineEditScene); + + auto renameLineEditProxy = renameLineEditScene->addWidget(m_renameLineEdit); + renameLineEditProxy->setRotation(-90); + m_renameLineEditView->setFixedSize(m_renameLineEdit->height() + 5, m_renameLineEdit->width() + 5); + + m_muteButton = new PixmapButton(this, tr("Mute")); + m_muteButton->setModel(&mixerChannel->m_muteModel); + m_muteButton->setActiveGraphic(embed::getIconPixmap("mute_active")); + m_muteButton->setInactiveGraphic(embed::getIconPixmap("mute_inactive")); + m_muteButton->setCheckable(true); + m_muteButton->setToolTip(tr("Mute this channel")); + + m_soloButton = new PixmapButton(this, tr("Solo")); + m_soloButton->setModel(&mixerChannel->m_soloModel); + m_soloButton->setActiveGraphic(embed::getIconPixmap("solo_active")); + m_soloButton->setInactiveGraphic(embed::getIconPixmap("solo_inactive")); + m_soloButton->setCheckable(true); + m_soloButton->setToolTip(tr("Solo this channel")); + + auto soloMuteLayout = new QVBoxLayout(); + soloMuteLayout->setContentsMargins(0, 2, 0, 2); + soloMuteLayout->setSpacing(2); + soloMuteLayout->addWidget(m_soloButton, 0, Qt::AlignHCenter); + soloMuteLayout->addWidget(m_muteButton, 0, Qt::AlignHCenter); + + m_fader = new Fader{&mixerChannel->m_volumeModel, tr("Fader %1").arg(channelIndex), this}; + + m_peakIndicator = new PeakIndicator(this); + connect(m_fader, &Fader::peakChanged, m_peakIndicator, &PeakIndicator::updatePeak); + + m_effectRackView = new EffectRackView{&mixerChannel->m_fxChain, mixerView->m_racksWidget}; + m_effectRackView->setFixedWidth(EffectRackView::DEFAULT_WIDTH); + + auto mainLayout = new QVBoxLayout{this}; + mainLayout->setContentsMargins(4, 4, 4, 4); + mainLayout->setSpacing(2); + + mainLayout->addWidget(m_receiveArrowOrSendButton, 0, Qt::AlignHCenter); + mainLayout->addWidget(m_sendKnob, 0, Qt::AlignHCenter); + mainLayout->addWidget(m_sendArrow, 0, Qt::AlignHCenter); + mainLayout->addWidget(m_channelNumberLcd, 0, Qt::AlignHCenter); + mainLayout->addWidget(m_renameLineEditView, 0, Qt::AlignHCenter); + mainLayout->addLayout(soloMuteLayout); + mainLayout->addWidget(m_peakIndicator); + mainLayout->addWidget(m_fader, 1, Qt::AlignHCenter); + + connect(m_renameLineEdit, &QLineEdit::editingFinished, this, &MixerChannelView::renameFinished); +} + +void MixerChannelView::contextMenuEvent(QContextMenuEvent*) +{ + auto contextMenu = new CaptionMenu(mixerChannel()->m_name, this); + + if (!isMasterChannel()) // no move-options in master { - // if config variable is set to false, there is no need for user confirmation - bool needConfirm = ConfigManager::inst()->value("ui", "mixerchanneldeletionwarning", "1").toInt(); - if (!needConfirm) { return true; } - - // is the channel is not in use, there is no need for user confirmation - if (!getGUI()->mixerView()->getMixer()->isChannelInUse(index)) { return true; } - - QString messageRemoveTrack = tr("This Mixer Channel is being used.\n" - "Are you sure you want to remove this channel?\n\n" - "Warning: This operation can not be undone."); - - QString messageTitleRemoveTrack = tr("Confirm removal"); - QString askAgainText = tr("Don't ask again"); - auto askAgainCheckBox = new QCheckBox(askAgainText, nullptr); - connect(askAgainCheckBox, &QCheckBox::stateChanged, [](int state) { - // Invert button state, if it's checked we *shouldn't* ask again - ConfigManager::inst()->setValue("ui", "mixerchanneldeletionwarning", state ? "0" : "1"); - }); - - QMessageBox mb(this); - mb.setText(messageRemoveTrack); - mb.setWindowTitle(messageTitleRemoveTrack); - mb.setIcon(QMessageBox::Warning); - mb.addButton(QMessageBox::Cancel); - mb.addButton(QMessageBox::Ok); - mb.setCheckBox(askAgainCheckBox); - mb.setDefaultButton(QMessageBox::Cancel); - - int answer = mb.exec(); - - return answer == QMessageBox::Ok; + contextMenu->addAction(tr("Move &left"), this, &MixerChannelView::moveChannelLeft); + contextMenu->addAction(tr("Move &right"), this, &MixerChannelView::moveChannelRight); } - void MixerChannelView::removeChannel() - { - if (!confirmRemoval(m_channelIndex)) { return; } - auto mix = getGUI()->mixerView(); - mix->deleteChannel(m_channelIndex); - } + contextMenu->addAction(tr("Rename &channel"), this, &MixerChannelView::renameChannel); + contextMenu->addSeparator(); - void MixerChannelView::removeUnusedChannels() - { - auto mix = getGUI()->mixerView(); - mix->deleteUnusedChannels(); - } + if (!isMasterChannel()) // no remove-option in master + { + contextMenu->addAction( + embed::getIconPixmap("cancel"), tr("R&emove channel"), this, &MixerChannelView::removeChannel); + contextMenu->addSeparator(); + } - void MixerChannelView::moveChannelLeft() - { - auto mix = getGUI()->mixerView(); - mix->moveChannelLeft(m_channelIndex); - } + contextMenu->addAction( + embed::getIconPixmap("cancel"), tr("Remove &unused channels"), this, &MixerChannelView::removeUnusedChannels); + contextMenu->addSeparator(); - void MixerChannelView::moveChannelRight() - { - auto mix = getGUI()->mixerView(); - mix->moveChannelRight(m_channelIndex); - } + auto colorMenu = QMenu{tr("Color"), this}; + colorMenu.setIcon(embed::getIconPixmap("colorize")); + colorMenu.addAction(tr("Change"), this, &MixerChannelView::selectColor); + colorMenu.addAction(tr("Reset"), this, &MixerChannelView::resetColor); + colorMenu.addAction(tr("Pick random"), this, &MixerChannelView::randomizeColor); + contextMenu->addMenu(&colorMenu); - QString MixerChannelView::elideName(const QString& name) - { - const auto maxTextHeight = m_renameLineEdit->width(); - const auto metrics = QFontMetrics{m_renameLineEdit->font()}; - const auto elidedName = metrics.elidedText(name, Qt::ElideRight, maxTextHeight); - return elidedName; - } + contextMenu->exec(QCursor::pos()); + delete contextMenu; +} - MixerChannel* MixerChannelView::mixerChannel() const - { - return Engine::mixer()->mixerChannel(m_channelIndex); - } +void MixerChannelView::paintEvent(QPaintEvent*) +{ + static constexpr auto innerBorderSize = 3; + static constexpr auto outerBorderSize = 1; -} // namespace lmms::gui \ No newline at end of file + const auto channel = mixerChannel(); + const auto isActive = m_mixerView->currentMixerChannel() == this; + const auto width = rect().width(); + const auto height = rect().height(); + auto painter = QPainter{this}; + + if (channel->color().has_value() && !channel->m_muteModel.value()) + { + painter.fillRect(rect(), channel->color()->darker(isActive ? 120 : 150)); + } + else { painter.fillRect(rect(), isActive ? backgroundActive().color() : painter.background().color()); } + + // inner border + painter.setPen(isActive ? strokeInnerActive() : strokeInnerInactive()); + painter.drawRect(1, 1, width - innerBorderSize, height - innerBorderSize); + + // outer border + painter.setPen(isActive ? strokeOuterActive() : strokeOuterInactive()); + painter.drawRect(0, 0, width - outerBorderSize, height - outerBorderSize); +} + +void MixerChannelView::mousePressEvent(QMouseEvent*) +{ + if (m_mixerView->currentMixerChannel() != this) { m_mixerView->setCurrentMixerChannel(this); } +} + +void MixerChannelView::mouseDoubleClickEvent(QMouseEvent*) +{ + renameChannel(); +} + +bool MixerChannelView::eventFilter(QObject*, QEvent* event) +{ + // If we are in a rename, capture the enter/return events and handle them + if (event->type() == QEvent::KeyPress) + { + auto keyEvent = static_cast(event); + if (keyEvent->key() == Qt::Key_Enter || keyEvent->key() == Qt::Key_Return) + { + if (m_inRename) + { + renameFinished(); + event->accept(); // Stop the event from propagating + return true; + } + } + } + return false; +} + +void MixerChannelView::setChannelIndex(int index) +{ + MixerChannel* mixerChannel = Engine::mixer()->mixerChannel(index); + m_fader->setModel(&mixerChannel->m_volumeModel); + m_muteButton->setModel(&mixerChannel->m_muteModel); + m_soloButton->setModel(&mixerChannel->m_soloModel); + m_effectRackView->setModel(&mixerChannel->m_fxChain); + m_channelNumberLcd->setValue(index); + m_renameLineEdit->setText(elideName(mixerChannel->m_name)); + m_channelIndex = index; +} + +void MixerChannelView::renameChannel() +{ + m_inRename = true; + setToolTip(""); + m_renameLineEdit->setReadOnly(false); + + m_channelNumberLcd->hide(); + m_renameLineEdit->setFixedWidth(m_renameLineEdit->width()); + m_renameLineEdit->setText(mixerChannel()->m_name); + + m_renameLineEditView->setFocus(); + m_renameLineEdit->selectAll(); + m_renameLineEdit->setFocus(); +} + +void MixerChannelView::renameFinished() +{ + m_inRename = false; + + m_renameLineEdit->deselect(); + m_renameLineEdit->setReadOnly(true); + m_renameLineEdit->setFixedWidth(m_renameLineEdit->width()); + m_channelNumberLcd->show(); + + auto newName = m_renameLineEdit->text(); + setFocus(); + + const auto mc = mixerChannel(); + if (!newName.isEmpty() && mc->m_name != newName) + { + mc->m_name = newName; + m_renameLineEdit->setText(elideName(newName)); + Engine::getSong()->setModified(); + } + + setToolTip(mc->m_name); +} + +void MixerChannelView::resetColor() +{ + mixerChannel()->setColor(std::nullopt); + Engine::getSong()->setModified(); + update(); +} + +void MixerChannelView::selectColor() +{ + const auto channel = mixerChannel(); + + const auto initialColor = channel->color().value_or(backgroundActive().color()); + const auto* colorChooser = ColorChooser{this}.withPalette(ColorChooser::Palette::Mixer); + const auto newColor = colorChooser->getColor(initialColor); + + if (!newColor.isValid()) { return; } + + channel->setColor(newColor); + + Engine::getSong()->setModified(); + update(); +} + +void MixerChannelView::randomizeColor() +{ + auto channel = mixerChannel(); + channel->setColor(ColorChooser::getPalette(ColorChooser::Palette::Mixer)[rand() % 48]); + Engine::getSong()->setModified(); + update(); +} + +bool MixerChannelView::confirmRemoval(int index) +{ + // if config variable is set to false, there is no need for user confirmation + bool needConfirm = ConfigManager::inst()->value("ui", "mixerchanneldeletionwarning", "1").toInt(); + if (!needConfirm) { return true; } + + // is the channel is not in use, there is no need for user confirmation + if (!getGUI()->mixerView()->getMixer()->isChannelInUse(index)) { return true; } + + QString messageRemoveTrack = tr("This Mixer Channel is being used.\n" + "Are you sure you want to remove this channel?\n\n" + "Warning: This operation can not be undone."); + + QString messageTitleRemoveTrack = tr("Confirm removal"); + QString askAgainText = tr("Don't ask again"); + auto askAgainCheckBox = new QCheckBox(askAgainText, nullptr); + connect(askAgainCheckBox, &QCheckBox::stateChanged, [](int state) { + // Invert button state, if it's checked we *shouldn't* ask again + ConfigManager::inst()->setValue("ui", "mixerchanneldeletionwarning", state ? "0" : "1"); + }); + + QMessageBox mb; + mb.setText(messageRemoveTrack); + mb.setWindowTitle(messageTitleRemoveTrack); + mb.setIcon(QMessageBox::Warning); + mb.addButton(QMessageBox::Cancel); + mb.addButton(QMessageBox::Ok); + mb.setCheckBox(askAgainCheckBox); + mb.setDefaultButton(QMessageBox::Cancel); + + int answer = mb.exec(); + + return answer == QMessageBox::Ok; +} + +void MixerChannelView::removeChannel() +{ + if (!confirmRemoval(m_channelIndex)) { return; } + auto mix = getGUI()->mixerView(); + mix->deleteChannel(m_channelIndex); +} + +void MixerChannelView::removeUnusedChannels() +{ + auto mix = getGUI()->mixerView(); + mix->deleteUnusedChannels(); +} + +void MixerChannelView::moveChannelLeft() +{ + auto mix = getGUI()->mixerView(); + mix->moveChannelLeft(m_channelIndex); +} + +void MixerChannelView::moveChannelRight() +{ + auto mix = getGUI()->mixerView(); + mix->moveChannelRight(m_channelIndex); +} + +QString MixerChannelView::elideName(const QString& name) +{ + const auto maxTextHeight = m_renameLineEdit->width(); + const auto metrics = QFontMetrics{m_renameLineEdit->font()}; + const auto elidedName = metrics.elidedText(name, Qt::ElideRight, maxTextHeight); + return elidedName; +} + +MixerChannel* MixerChannelView::mixerChannel() const +{ + return Engine::mixer()->mixerChannel(m_channelIndex); +} + +void MixerChannelView::reset() +{ + m_peakIndicator->resetPeakToMinusInf(); +} + +} // namespace lmms::gui diff --git a/src/gui/MixerView.cpp b/src/gui/MixerView.cpp index 8152509f8..d05ff097d 100644 --- a/src/gui/MixerView.cpp +++ b/src/gui/MixerView.cpp @@ -150,6 +150,7 @@ MixerView::MixerView(Mixer* mixer) : newChannelBtn->setObjectName("newChannelBtn"); newChannelBtn->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Expanding); newChannelBtn->setFixedWidth(mixerChannelSize.width()); + newChannelBtn->setFocusPolicy(Qt::NoFocus); connect(newChannelBtn, SIGNAL(clicked()), this, SLOT(addNewChannel())); ml->addWidget(newChannelBtn, 0); @@ -343,28 +344,37 @@ void MixerView::setCurrentMixerChannel(MixerChannelView* channel) void MixerView::updateMixerChannel(int index) { - Mixer * mix = getMixer(); + const auto mixer = getMixer(); - // does current channel send to this channel? - int selIndex = m_currentMixerChannel->channelIndex(); - auto thisLine = m_mixerChannelViews[index]; + const auto currentIndex = m_currentMixerChannel->channelIndex(); + const auto thisLine = m_mixerChannelViews[index]; thisLine->setToolTip(getMixer()->mixerChannel(index)->m_name); - FloatModel * sendModel = mix->channelSendModel(selIndex, index); - if (sendModel == nullptr) + const auto sendModelCurrentToThis = mixer->channelSendModel(currentIndex, index); + if (sendModelCurrentToThis == nullptr) { - // does not send, hide send knob thisLine->m_sendKnob->setVisible(false); + thisLine->m_sendArrow->setVisible(false); } else { - // it does send, show knob and connect thisLine->m_sendKnob->setVisible(true); - thisLine->m_sendKnob->setModel(sendModel); + thisLine->m_sendKnob->setModel(sendModelCurrentToThis); + thisLine->m_sendArrow->setVisible(true); + } + + const auto sendModelThisToCurrent = mixer->channelSendModel(index, currentIndex); + if (sendModelThisToCurrent) + { + thisLine->m_receiveArrowOrSendButton->setVisible(true); + thisLine->m_receiveArrowOrSendButton->setCurrentIndex(thisLine->m_receiveArrowStackedIndex); + } + else + { + thisLine->m_receiveArrowOrSendButton->setVisible(!mixer->isInfiniteLoop(currentIndex, index)); + thisLine->m_receiveArrowOrSendButton->setCurrentIndex(thisLine->m_sendButtonStackedIndex); } - // disable the send button if it would cause an infinite loop - thisLine->m_sendButton->setVisible(!mix->isInfiniteLoop(selIndex, index)); thisLine->m_sendButton->updateLightStatus(); thisLine->update(); } @@ -471,6 +481,16 @@ void MixerView::renameChannel(int index) void MixerView::keyPressEvent(QKeyEvent * e) { + auto adjustCurrentFader = [this](const Qt::KeyboardModifiers& modifiers, Fader::AdjustmentDirection direction) + { + auto* mixerChannel = currentMixerChannel(); + + if (mixerChannel) + { + mixerChannel->fader()->adjust(modifiers, direction); + } + }; + switch(e->key()) { case Qt::Key_Delete: @@ -498,6 +518,14 @@ void MixerView::keyPressEvent(QKeyEvent * e) setCurrentMixerChannel(m_currentMixerChannel->channelIndex() + 1); } break; + case Qt::Key_Up: + case Qt::Key_Plus: + adjustCurrentFader(e->modifiers(), Fader::AdjustmentDirection::Up); + break; + case Qt::Key_Down: + case Qt::Key_Minus: + adjustCurrentFader(e->modifiers(), Fader::AdjustmentDirection::Down); + break; case Qt::Key_Insert: if (e->modifiers() & Qt::ShiftModifier) { @@ -509,6 +537,16 @@ void MixerView::keyPressEvent(QKeyEvent * e) case Qt::Key_F2: renameChannel(m_currentMixerChannel->channelIndex()); break; + case Qt::Key_Space: + { + auto* mixerChannel = currentMixerChannel(); + + if (mixerChannel) + { + mixerChannel->fader()->adjustByDialog(); + } + } + break; } } diff --git a/src/gui/PluginBrowser.cpp b/src/gui/PluginBrowser.cpp index 2594bdab3..4bf62d4ea 100644 --- a/src/gui/PluginBrowser.cpp +++ b/src/gui/PluginBrowser.cpp @@ -297,7 +297,7 @@ void PluginDescWidget::contextMenuEvent(QContextMenuEvent* e) QMenu contextMenu(this); contextMenu.addAction( tr("Send to new instrument track"), - [=]{ openInNewInstrumentTrack(m_pluginKey.desc->name); } + [=, this]{ openInNewInstrumentTrack(m_pluginKey.desc->name); } ); contextMenu.exec(e->globalPos()); } diff --git a/src/gui/ProjectNotes.cpp b/src/gui/ProjectNotes.cpp index a71f146c6..bf760ec21 100644 --- a/src/gui/ProjectNotes.cpp +++ b/src/gui/ProjectNotes.cpp @@ -40,6 +40,7 @@ #include "embed.h" #include "Engine.h" #include "GuiApplication.h" +#include "KeyboardShortcuts.h" #include "MainWindow.h" #include "Song.h" diff --git a/src/gui/SampleLoader.cpp b/src/gui/SampleLoader.cpp index f2340852d..d72b0ba5c 100644 --- a/src/gui/SampleLoader.cpp +++ b/src/gui/SampleLoader.cpp @@ -39,7 +39,7 @@ namespace lmms::gui { QString SampleLoader::openAudioFile(const QString& previousFile) { auto openFileDialog = FileDialog(nullptr, QObject::tr("Open audio file")); - auto dir = !previousFile.isEmpty() ? PathUtil::toAbsolute(previousFile) : ConfigManager::inst()->userSamplesDir(); + auto dir = !previousFile.isEmpty() ? QFileInfo(PathUtil::toAbsolute(previousFile)).absolutePath() : ConfigManager::inst()->userSamplesDir(); // change dir to position of previously opened file openFileDialog.setDirectory(dir); diff --git a/src/gui/SampleThumbnail.cpp b/src/gui/SampleThumbnail.cpp new file mode 100644 index 000000000..c31c0d93e --- /dev/null +++ b/src/gui/SampleThumbnail.cpp @@ -0,0 +1,157 @@ +/* + * SampleThumbnail.cpp + * + * Copyright (c) 2024 Khoi Dau + * Copyright (c) 2024 Sotonye Atemie + * + * This file is part of LMMS - https://lmms.io + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program (see COPYING); if not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA. + * + */ + +#include "SampleThumbnail.h" + +#include +#include + +namespace { + constexpr auto MaxSampleThumbnailCacheSize = 32; + constexpr auto AggregationPerZoomStep = 10; +} + +namespace lmms { + +SampleThumbnail::Thumbnail::Thumbnail(std::vector peaks, double samplesPerPeak) + : m_peaks(std::move(peaks)) + , m_samplesPerPeak(samplesPerPeak) +{ +} + +SampleThumbnail::Thumbnail::Thumbnail(const float* buffer, size_t size, size_t width) + : m_peaks(width) + , m_samplesPerPeak(std::max(static_cast(size) / width, 1.0)) +{ + for (auto peakIndex = std::size_t{0}; peakIndex < width; ++peakIndex) + { + const auto beginSample = buffer + static_cast(std::floor(peakIndex * m_samplesPerPeak)); + const auto endSample = buffer + static_cast(std::ceil((peakIndex + 1) * m_samplesPerPeak)); + const auto [min, max] = std::minmax_element(beginSample, endSample); + m_peaks[peakIndex] = Peak{*min, *max}; + } +} + +SampleThumbnail::Thumbnail SampleThumbnail::Thumbnail::zoomOut(float factor) const +{ + assert(factor >= 1 && "Invalid zoom out factor"); + + auto peaks = std::vector(m_peaks.size() / factor); + for (auto peakIndex = std::size_t{0}; peakIndex < peaks.size(); ++peakIndex) + { + const auto beginAggregationAt = m_peaks.begin() + static_cast(std::floor(peakIndex * factor)); + const auto endAggregationAt = m_peaks.begin() + static_cast(std::ceil((peakIndex + 1) * factor)); + peaks[peakIndex] = std::accumulate(beginAggregationAt, endAggregationAt, Peak{}); + } + + return Thumbnail{std::move(peaks), m_samplesPerPeak * factor}; +} + +SampleThumbnail::SampleThumbnail(const Sample& sample) +{ + auto entry = SampleThumbnailEntry{sample.sampleFile(), QFileInfo{sample.sampleFile()}.lastModified()}; + if (!entry.filePath.isEmpty()) + { + const auto it = s_sampleThumbnailCacheMap.find(entry); + if (it != s_sampleThumbnailCacheMap.end()) + { + m_thumbnailCache = it->second; + return; + } + + if (s_sampleThumbnailCacheMap.size() == MaxSampleThumbnailCacheSize) + { + const auto leastUsed = std::min_element(s_sampleThumbnailCacheMap.begin(), s_sampleThumbnailCacheMap.end(), + [](const auto& a, const auto& b) { return a.second.use_count() < b.second.use_count(); }); + s_sampleThumbnailCacheMap.erase(leastUsed->first); + } + + s_sampleThumbnailCacheMap[std::move(entry)] = m_thumbnailCache; + } + + if (!sample.buffer()) { throw std::runtime_error{"Cannot create a sample thumbnail with no buffer"}; } + if (sample.sampleSize() == 0) { return; } + + const auto fullResolutionWidth = sample.sampleSize() * DEFAULT_CHANNELS; + m_thumbnailCache->emplace_back(&sample.buffer()->data()->left(), fullResolutionWidth, fullResolutionWidth); + + while (m_thumbnailCache->back().width() >= AggregationPerZoomStep) + { + auto zoomedOutThumbnail = m_thumbnailCache->back().zoomOut(AggregationPerZoomStep); + m_thumbnailCache->emplace_back(std::move(zoomedOutThumbnail)); + } +} + +void SampleThumbnail::visualize(VisualizeParameters parameters, QPainter& painter) const +{ + const auto& sampleRect = parameters.sampleRect; + const auto& drawRect = parameters.drawRect.isNull() ? sampleRect : parameters.drawRect; + const auto& viewportRect = parameters.viewportRect.isNull() ? drawRect : parameters.viewportRect; + + const auto renderRect = sampleRect.intersected(drawRect).intersected(viewportRect); + if (renderRect.isNull()) { return; } + + const auto sampleRange = parameters.sampleEnd - parameters.sampleStart; + if (sampleRange <= 0 || sampleRange > 1) { return; } + + const auto targetThumbnailWidth = static_cast(static_cast(sampleRect.width()) / sampleRange); + const auto finerThumbnail = std::find_if(m_thumbnailCache->rbegin(), m_thumbnailCache->rend(), + [&](const auto& thumbnail) { return thumbnail.width() >= targetThumbnailWidth; }); + + if (finerThumbnail == m_thumbnailCache->rend()) + { + qDebug() << "Could not find closest finer thumbnail for a target width of" << targetThumbnailWidth; + return; + } + + painter.save(); + painter.setRenderHint(QPainter::Antialiasing, true); + + const auto thumbnailBeginForward = std::max(renderRect.x() - sampleRect.x(), static_cast(parameters.sampleStart * targetThumbnailWidth)); + const auto thumbnailEndForward = std::max(renderRect.x() + renderRect.width() - sampleRect.x(), static_cast(parameters.sampleEnd * targetThumbnailWidth)); + const auto thumbnailBegin = parameters.reversed ? targetThumbnailWidth - thumbnailBeginForward - 1 : thumbnailBeginForward; + const auto thumbnailEnd = parameters.reversed ? targetThumbnailWidth - thumbnailEndForward : thumbnailEndForward; + const auto advanceThumbnailBy = parameters.reversed ? -1 : 1; + + const auto finerThumbnailScaleFactor = static_cast(finerThumbnail->width()) / targetThumbnailWidth; + const auto yScale = drawRect.height() / 2 * parameters.amplification; + + for (auto x = renderRect.x(), i = thumbnailBegin; x < renderRect.x() + renderRect.width() && i != thumbnailEnd; + ++x, i += advanceThumbnailBy) + { + const auto beginAggregationAt = &(*finerThumbnail)[static_cast(std::floor(i * finerThumbnailScaleFactor))]; + const auto endAggregationAt = &(*finerThumbnail)[static_cast(std::ceil((i + 1) * finerThumbnailScaleFactor))]; + const auto peak = std::accumulate(beginAggregationAt, endAggregationAt, Thumbnail::Peak{}); + + const auto yMin = drawRect.center().y() - peak.min * yScale; + const auto yMax = drawRect.center().y() - peak.max * yScale; + + painter.drawLine(x, yMin, x, yMax); + } + + painter.restore(); +} + +} // namespace lmms diff --git a/src/gui/SampleTrackWindow.cpp b/src/gui/SampleTrackWindow.cpp index 81a2ca89b..e8bd5970d 100644 --- a/src/gui/SampleTrackWindow.cpp +++ b/src/gui/SampleTrackWindow.cpp @@ -32,6 +32,7 @@ #include #include "EffectRackView.h" +#include "PixmapButton.h" #include "embed.h" #include "GuiApplication.h" #include "Knob.h" @@ -92,54 +93,74 @@ SampleTrackWindow::SampleTrackWindow(SampleTrackView * tv) : basicControlsLayout->setVerticalSpacing(0); basicControlsLayout->setContentsMargins(0, 0, 0, 0); - QString labelStyleSheet = "font-size: 6pt;"; + QString labelStyleSheet = "font-size: 10px;"; Qt::Alignment labelAlignment = Qt::AlignHCenter | Qt::AlignTop; Qt::Alignment widgetAlignment = Qt::AlignHCenter | Qt::AlignCenter; + + auto soloMuteLayout = new QVBoxLayout(); + soloMuteLayout->setContentsMargins(0, 0, 2, 0); + soloMuteLayout->setSpacing(2); + + m_muteBtn = new PixmapButton(this, tr("Mute")); + m_muteBtn->setModel(&m_track->m_mutedModel); + m_muteBtn->setActiveGraphic(embed::getIconPixmap("mute_active")); + m_muteBtn->setInactiveGraphic(embed::getIconPixmap("mute_inactive")); + m_muteBtn->setCheckable(true); + m_muteBtn->setToolTip(tr("Mute this sample track")); + soloMuteLayout->addWidget(m_muteBtn, 0, widgetAlignment); + + m_soloBtn = new PixmapButton(this, tr("Solo")); + m_soloBtn->setModel(&m_track->m_soloModel); + m_soloBtn->setActiveGraphic(embed::getIconPixmap("solo_active")); + m_soloBtn->setInactiveGraphic(embed::getIconPixmap("solo_inactive")); + m_soloBtn->setCheckable(true); + m_soloBtn->setToolTip(tr("Solo this sample track")); + soloMuteLayout->addWidget(m_soloBtn, 0, widgetAlignment); + + basicControlsLayout->addLayout(soloMuteLayout, 0, 0, 2, 1, widgetAlignment); // set up volume knob m_volumeKnob = new Knob(KnobType::Bright26, nullptr, tr("Sample volume")); m_volumeKnob->setVolumeKnob(true); m_volumeKnob->setHintText(tr("Volume:"), "%"); - basicControlsLayout->addWidget(m_volumeKnob, 0, 0); + basicControlsLayout->addWidget(m_volumeKnob, 0, 1); basicControlsLayout->setAlignment(m_volumeKnob, widgetAlignment); auto label = new QLabel(tr("VOL"), this); label->setStyleSheet(labelStyleSheet); - basicControlsLayout->addWidget(label, 1, 0); + basicControlsLayout->addWidget(label, 1, 1); basicControlsLayout->setAlignment(label, labelAlignment); - // set up panning knob m_panningKnob = new Knob(KnobType::Bright26, nullptr, tr("Panning")); m_panningKnob->setHintText(tr("Panning:"), ""); - basicControlsLayout->addWidget(m_panningKnob, 0, 1); + basicControlsLayout->addWidget(m_panningKnob, 0, 2); basicControlsLayout->setAlignment(m_panningKnob, widgetAlignment); label = new QLabel(tr("PAN"),this); label->setStyleSheet(labelStyleSheet); - basicControlsLayout->addWidget(label, 1, 1); + basicControlsLayout->addWidget(label, 1, 2); basicControlsLayout->setAlignment(label, labelAlignment); - - basicControlsLayout->setColumnStretch(2, 1); + basicControlsLayout->setColumnStretch(3, 1); // setup spinbox for selecting Mixer-channel m_mixerChannelNumber = new MixerChannelLcdSpinBox(2, nullptr, tr("Mixer channel"), m_stv); - basicControlsLayout->addWidget(m_mixerChannelNumber, 0, 3); + basicControlsLayout->addWidget(m_mixerChannelNumber, 0, 4); basicControlsLayout->setAlignment(m_mixerChannelNumber, widgetAlignment); - label = new QLabel(tr("CHANNEL"), this); + label = new QLabel(tr("CHAN"), this); label->setStyleSheet(labelStyleSheet); - basicControlsLayout->addWidget(label, 1, 3); + basicControlsLayout->addWidget(label, 1, 4); basicControlsLayout->setAlignment(label, labelAlignment); generalSettingsLayout->addLayout(basicControlsLayout); - m_effectRack = new EffectRackView(tv->model()->audioPort()->effects()); + m_effectRack = new EffectRackView(tv->model()->audioBusHandle()->effects()); m_effectRack->setFixedSize(EffectRackView::DEFAULT_WIDTH, 242); vlayout->addWidget(generalSettingsWidget); diff --git a/src/gui/SampleWaveform.cpp b/src/gui/SampleWaveform.cpp deleted file mode 100644 index ca356e727..000000000 --- a/src/gui/SampleWaveform.cpp +++ /dev/null @@ -1,98 +0,0 @@ -/* - * SampleWaveform.cpp - * - * Copyright (c) 2023 saker - * - * This file is part of LMMS - https://lmms.io - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public - * License along with this program (see COPYING); if not, write to the - * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301 USA. - * - */ - -#include "SampleWaveform.h" - -namespace lmms::gui { - -void SampleWaveform::visualize(Parameters parameters, QPainter& painter, const QRect& rect) -{ - const int x = rect.x(); - const int height = rect.height(); - const int width = rect.width(); - const int centerY = rect.center().y(); - - const int halfHeight = height / 2; - - const auto color = painter.pen().color(); - const auto rmsColor = color.lighter(123); - - const float framesPerPixel = std::max(1.0f, static_cast(parameters.size) / width); - - constexpr float maxFramesPerPixel = 512.0f; - const float resolution = std::max(1.0f, framesPerPixel / maxFramesPerPixel); - const float framesPerResolution = framesPerPixel / resolution; - - const size_t numPixels = std::min(parameters.size, width); - auto min = std::vector(numPixels, 1); - auto max = std::vector(numPixels, -1); - auto squared = std::vector(numPixels, 0); - - const size_t maxFrames = numPixels * static_cast(framesPerPixel); - - auto pixelIndex = std::size_t{0}; - - for (auto i = std::size_t{0}; i < maxFrames; i += static_cast(resolution)) - { - pixelIndex = i / framesPerPixel; - const auto frameIndex = !parameters.reversed ? i : maxFrames - i; - - const auto& frame = parameters.buffer[frameIndex]; - const auto value = frame.average(); - - if (value > max[pixelIndex]) { max[pixelIndex] = value; } - if (value < min[pixelIndex]) { min[pixelIndex] = value; } - - squared[pixelIndex] += value * value; - } - - while (pixelIndex < numPixels) - { - max[pixelIndex] = 0.0; - min[pixelIndex] = 0.0; - - pixelIndex++; - } - - for (auto i = std::size_t{0}; i < numPixels; i++) - { - const int lineY1 = centerY - max[i] * halfHeight * parameters.amplification; - const int lineY2 = centerY - min[i] * halfHeight * parameters.amplification; - const int lineX = static_cast(i) + x; - painter.drawLine(lineX, lineY1, lineX, lineY2); - - const float rms = std::sqrt(squared[i] / framesPerResolution); - const float maxRMS = std::clamp(rms, min[i], max[i]); - const float minRMS = std::clamp(-rms, min[i], max[i]); - - const int rmsLineY1 = centerY - maxRMS * halfHeight * parameters.amplification; - const int rmsLineY2 = centerY - minRMS * halfHeight * parameters.amplification; - - painter.setPen(rmsColor); - painter.drawLine(lineX, rmsLineY1, lineX, rmsLineY2); - painter.setPen(color); - } -} - -} // namespace lmms::gui diff --git a/src/gui/SideBarWidget.cpp b/src/gui/SideBarWidget.cpp index c218bedd3..5439b2791 100644 --- a/src/gui/SideBarWidget.cpp +++ b/src/gui/SideBarWidget.cpp @@ -29,6 +29,7 @@ #include #include "embed.h" +#include "FontHelper.h" namespace lmms::gui { @@ -49,7 +50,7 @@ SideBarWidget::SideBarWidget( const QString & _title, const QPixmap & _icon, m_closeBtn->resize(m_buttonSize); m_closeBtn->setToolTip(tr("Close")); connect(m_closeBtn, &QPushButton::clicked, - [=]() { this->closeButtonClicked(); }); + [this]() { this->closeButtonClicked(); }); } @@ -63,8 +64,7 @@ void SideBarWidget::paintEvent( QPaintEvent * ) QFont f = p.font(); f.setBold( true ); f.setUnderline(false); - f.setPointSize( f.pointSize() + 2 ); - p.setFont( f ); + p.setFont(adjustedToPixelSize(f, LARGE_FONT_SIZE)); p.setPen( palette().highlightedText().color() ); diff --git a/src/gui/StringPairDrag.cpp b/src/gui/StringPairDrag.cpp index 54f52c784..7dc123c36 100644 --- a/src/gui/StringPairDrag.cpp +++ b/src/gui/StringPairDrag.cpp @@ -61,7 +61,7 @@ StringPairDrag::StringPairDrag( const QString & _key, const QString & _value, auto m = new QMimeData(); m->setData( mimeType( MimeType::StringPair ), txt.toUtf8() ); setMimeData( m ); - exec( Qt::LinkAction, Qt::LinkAction ); + exec( Qt::CopyAction, Qt::CopyAction ); } diff --git a/src/gui/SubWindow.cpp b/src/gui/SubWindow.cpp index dc6e49297..a76f4055e 100644 --- a/src/gui/SubWindow.cpp +++ b/src/gui/SubWindow.cpp @@ -58,28 +58,13 @@ SubWindow::SubWindow(QWidget *parent, Qt::WindowFlags windowFlags) : m_borderColor = Qt::black; // close, maximize and restore (after maximizing) buttons - m_closeBtn = new QPushButton( embed::getIconPixmap( "close" ), QString(), this ); - m_closeBtn->resize( m_buttonSize ); - m_closeBtn->setFocusPolicy( Qt::NoFocus ); - m_closeBtn->setCursor( Qt::ArrowCursor ); - m_closeBtn->setAttribute( Qt::WA_NoMousePropagation ); - m_closeBtn->setToolTip( tr( "Close" ) ); + m_closeBtn = addTitleButton("close", tr("Close")); connect( m_closeBtn, SIGNAL(clicked(bool)), this, SLOT(close())); - m_maximizeBtn = new QPushButton( embed::getIconPixmap( "maximize" ), QString(), this ); - m_maximizeBtn->resize( m_buttonSize ); - m_maximizeBtn->setFocusPolicy( Qt::NoFocus ); - m_maximizeBtn->setCursor( Qt::ArrowCursor ); - m_maximizeBtn->setAttribute( Qt::WA_NoMousePropagation ); - m_maximizeBtn->setToolTip( tr( "Maximize" ) ); + m_maximizeBtn = addTitleButton("maximize", tr("Maximize")); connect( m_maximizeBtn, SIGNAL(clicked(bool)), this, SLOT(showMaximized())); - m_restoreBtn = new QPushButton( embed::getIconPixmap( "restore" ), QString(), this ); - m_restoreBtn->resize( m_buttonSize ); - m_restoreBtn->setFocusPolicy( Qt::NoFocus ); - m_restoreBtn->setCursor( Qt::ArrowCursor ); - m_restoreBtn->setAttribute( Qt::WA_NoMousePropagation ); - m_restoreBtn->setToolTip( tr( "Restore" ) ); + m_restoreBtn = addTitleButton("restore", tr("Restore")); connect( m_restoreBtn, SIGNAL(clicked(bool)), this, SLOT(showNormal())); // QLabel for the window title and the shadow effect @@ -93,10 +78,9 @@ SubWindow::SubWindow(QWidget *parent, Qt::WindowFlags windowFlags) : m_windowTitle->setAttribute( Qt::WA_TransparentForMouseEvents, true ); m_windowTitle->setGraphicsEffect( m_shadow ); - // disable the minimize button - setWindowFlags( Qt::SubWindow | Qt::WindowMaximizeButtonHint | - Qt::WindowSystemMenuHint | Qt::WindowCloseButtonHint | - Qt::CustomizeWindowHint ); + // Disable the minimize button and make sure that the custom window hint is set + setWindowFlags((this->windowFlags() & ~Qt::WindowMinimizeButtonHint) | Qt::CustomizeWindowHint); + connect( mdiArea(), SIGNAL(subWindowActivated(QMdiSubWindow*)), this, SLOT(focusChanged(QMdiSubWindow*))); } @@ -111,12 +95,14 @@ SubWindow::SubWindow(QWidget *parent, Qt::WindowFlags windowFlags) : */ void SubWindow::paintEvent( QPaintEvent * ) { + // Don't paint any of the other stuff if the sub window is maximized + // so that only its child content is painted. + if (isMaximized()) { return; } + QPainter p( this ); QRect rect( 0, 0, width(), m_titleBarHeight ); - bool isActive = mdiArea() - ? mdiArea()->activeSubWindow() == this - : false; + const bool isActive = windowState() & Qt::WindowActive; p.fillRect( rect, isActive ? activeColor() : p.pen().brush() ); @@ -260,6 +246,10 @@ int SubWindow::frameWidth() const } +void SubWindow::updateTitleBar() +{ + adjustTitleBar(); +} /** @@ -295,9 +285,28 @@ void SubWindow::moveEvent( QMoveEvent * event ) */ void SubWindow::adjustTitleBar() { + // Don't show the title or any button if the sub window is maximized. Otherwise they + // might show up behind the actual maximized content of the child widget. + if (isMaximized()) + { + m_closeBtn->hide(); + m_maximizeBtn->hide(); + m_restoreBtn->hide(); + m_windowTitle->hide(); + + return; + } + + // The sub window is not maximized, i.e. the title must be shown + // as well as some buttons. + + // Title adjustments + m_windowTitle->show(); + // button adjustments m_maximizeBtn->hide(); m_restoreBtn->hide(); + m_closeBtn->show(); const int rightSpace = 3; const int buttonGap = 1; @@ -322,12 +331,12 @@ void SubWindow::adjustTitleBar() buttonBarWidth = buttonBarWidth + m_buttonSize.width() + buttonGap; m_maximizeBtn->move( middleButtonPos ); m_restoreBtn->move( middleButtonPos ); - m_maximizeBtn->setHidden( isMaximized() ); + m_maximizeBtn->setVisible(true); } // we're keeping the restore button around if we open projects // from older versions that have saved minimized windows - m_restoreBtn->setVisible( isMaximized() || isMinimized() ); + m_restoreBtn->setVisible(isMinimized()); if( isMinimized() ) { m_restoreBtn->move( m_maximizeBtn->isHidden() ? middleButtonPos : leftButtonPos ); @@ -403,5 +412,17 @@ void SubWindow::resizeEvent( QResizeEvent * event ) } } +QPushButton* SubWindow::addTitleButton(const std::string& iconName, const QString& toolTip) +{ + auto button = new QPushButton(embed::getIconPixmap(iconName), QString(), this); + button->resize(m_buttonSize); + button->setFocusPolicy(Qt::NoFocus); + button->setCursor(Qt::ArrowCursor); + button->setAttribute(Qt::WA_NoMousePropagation); + button->setToolTip(toolTip); -} // namespace lmms::gui \ No newline at end of file + return button; +} + + +} // namespace lmms::gui diff --git a/src/gui/clips/AutomationClipView.cpp b/src/gui/clips/AutomationClipView.cpp index 9b71bb74c..e098710d9 100644 --- a/src/gui/clips/AutomationClipView.cpp +++ b/src/gui/clips/AutomationClipView.cpp @@ -55,8 +55,6 @@ AutomationClipView::AutomationClipView( AutomationClip * _clip, connect( getGUI()->automationEditor(), SIGNAL(currentClipChanged()), this, SLOT(update())); - setAttribute( Qt::WA_OpaquePaintEvent, true ); - setToolTip(m_clip->name()); setStyle( QApplication::style() ); update(); diff --git a/src/gui/clips/ClipView.cpp b/src/gui/clips/ClipView.cpp index 9eb6acb6b..f98351f37 100644 --- a/src/gui/clips/ClipView.cpp +++ b/src/gui/clips/ClipView.cpp @@ -41,6 +41,7 @@ #include "GuiApplication.h" #include "InstrumentTrack.h" #include "InstrumentTrackView.h" +#include "KeyboardShortcuts.h" #include "MidiClip.h" #include "MidiClipView.h" #include "Note.h" @@ -113,7 +114,6 @@ ClipView::ClipView( Clip * clip, s_textFloat->setPixmap( embed::getIconPixmap( "clock" ) ); } - setAttribute( Qt::WA_OpaquePaintEvent, true ); setAttribute( Qt::WA_DeleteOnClose, true ); setFocusPolicy( Qt::StrongFocus ); setCursor( m_cursorHand ); @@ -633,7 +633,7 @@ void ClipView::mousePressEvent( QMouseEvent * me ) auto pClip = dynamic_cast(m_clip); const bool knifeMode = m_trackView->trackContainerView()->knifeMode(); - if ( me->modifiers() & Qt::ControlModifier && !(sClip && knifeMode) ) + if (me->modifiers() & KBD_COPY_MODIFIER && !(sClip && knifeMode)) { if( isSelected() ) { @@ -726,7 +726,7 @@ void ClipView::mousePressEvent( QMouseEvent * me ) QString hint = m_action == Action::Move || m_action == Action::MoveSelection ? tr( "Press <%1> and drag to make a copy." ) : tr( "Press <%1> for free resizing." ); - m_hint = TextFloat::displayMessage( tr( "Hint" ), hint.arg(UI_CTRL_KEY), + m_hint = TextFloat::displayMessage( tr( "Hint" ), hint.arg(UI_COPY_KEY), embed::getIconPixmap( "hint" ), 0 ); } } @@ -824,7 +824,7 @@ void ClipView::mouseMoveEvent( QMouseEvent * me ) } } - if( me->modifiers() & Qt::ControlModifier ) + if (me->modifiers() & KBD_COPY_MODIFIER) { delete m_hint; m_hint = nullptr; @@ -1414,7 +1414,7 @@ TimePos ClipView::draggedClipPos( QMouseEvent * me ) endQ = endQ - m_clip->length(); // Select the position closest to actual position - if ( abs(newPos - startQ) < abs(newPos - endQ) ) newPos = startQ; + if (std::abs(newPos - startQ) < std::abs(newPos - endQ)) { newPos = startQ; } else newPos = endQ; } else @@ -1457,7 +1457,7 @@ TimePos ClipView::quantizeSplitPos( TimePos midiPos, bool shiftMode ) const TimePos rightOff = m_clip->length() - midiPos; const TimePos rightPos = m_clip->length() - rightOff.quantize( snapSize ); //...whichever gives a position closer to the cursor - if ( abs(leftPos - midiPos) < abs(rightPos - midiPos) ) { return leftPos; } + if (std::abs(leftPos - midiPos) < std::abs(rightPos - midiPos)) { return leftPos; } else { return rightPos; } } else diff --git a/src/gui/clips/SampleClipView.cpp b/src/gui/clips/SampleClipView.cpp index 1d4d9b78a..836a2019a 100644 --- a/src/gui/clips/SampleClipView.cpp +++ b/src/gui/clips/SampleClipView.cpp @@ -32,11 +32,11 @@ #include "GuiApplication.h" #include "AutomationEditor.h" #include "embed.h" -#include "gui_templates.h" +#include "FontHelper.h" #include "PathUtil.h" #include "SampleClip.h" #include "SampleLoader.h" -#include "SampleWaveform.h" +#include "SampleThumbnail.h" #include "Song.h" #include "StringPairDrag.h" @@ -63,6 +63,9 @@ SampleClipView::SampleClipView( SampleClip * _clip, TrackView * _tv ) : void SampleClipView::updateSample() { update(); + + m_sampleThumbnail = SampleThumbnail{m_clip->m_sample}; + // set tooltip to filename so that user can see what sample this // sample-clip contains setToolTip( @@ -272,14 +275,22 @@ void SampleClipView::paintEvent( QPaintEvent * pe ) float nom = Engine::getSong()->getTimeSigModel().getNumerator(); float den = Engine::getSong()->getTimeSigModel().getDenominator(); float ticksPerBar = DefaultTicksPerBar * nom / den; - - float offset = m_clip->startTimeOffset() / ticksPerBar * pixelsPerBar(); - QRect r = QRect( offset, spacing, - qMax( static_cast( m_clip->sampleLength() * ppb / ticksPerBar ), 1 ), rect().bottom() - 2 * spacing ); + float offsetStart = m_clip->startTimeOffset() / ticksPerBar * pixelsPerBar(); + float sampleLength = m_clip->sampleLength() * ppb / ticksPerBar; const auto& sample = m_clip->m_sample; - const auto waveform = SampleWaveform::Parameters{sample.data(), sample.sampleSize(), sample.amplification(), sample.reversed()}; - SampleWaveform::visualize(waveform, p, r); + if (sample.sampleSize() > 0) + { + const auto param = SampleThumbnail::VisualizeParameters{ + .sampleRect = QRect(offsetStart, spacing, sampleLength, height() - spacing), + .drawRect = QRect(0, spacing, width(), height() - spacing), + .viewportRect = pe->rect(), + .amplification = sample.amplification(), + .reversed = sample.reversed() + }; + + m_sampleThumbnail.visualize(param, p); + } QString name = PathUtil::cleanName(m_clip->m_sample.sampleFile()); paintTextLabel(name, p); @@ -351,6 +362,7 @@ void SampleClipView::paintEvent( QPaintEvent * pe ) void SampleClipView::reverseSample() { m_clip->m_sample.setReversed(!m_clip->m_sample.reversed()); + m_clip->setStartTimeOffset(m_clip->length() - m_clip->startTimeOffset() - m_clip->sampleLength()); Engine::getSong()->setModified(); update(); } diff --git a/src/gui/editors/AutomationEditor.cpp b/src/gui/editors/AutomationEditor.cpp index a7ca07279..78f5d112a 100644 --- a/src/gui/editors/AutomationEditor.cpp +++ b/src/gui/editors/AutomationEditor.cpp @@ -39,11 +39,7 @@ #include #include "SampleClip.h" -#include "SampleWaveform.h" - -#ifndef __USE_XOPEN -#define __USE_XOPEN -#endif +#include "SampleThumbnail.h" #include "ActionGroup.h" #include "AutomationNode.h" @@ -64,7 +60,7 @@ #include "TimeLineWidget.h" #include "debug.h" #include "embed.h" -#include "gui_templates.h" +#include "FontHelper.h" namespace lmms::gui @@ -115,8 +111,6 @@ AutomationEditor::AutomationEditor() : connect( Engine::getSong(), SIGNAL(timeSignatureChanged(int,int)), this, SLOT(update())); - setAttribute( Qt::WA_OpaquePaintEvent, true ); - //keeps the direction of the widget, undepended on the locale setLayoutDirection( Qt::LeftToRight ); @@ -1025,6 +1019,7 @@ void AutomationEditor::setGhostSample(SampleClip* newGhostSample) // Expects a pointer to a Sample buffer or nullptr. m_ghostSample = newGhostSample; m_renderSample = true; + m_sampleThumbnail = SampleThumbnail{newGhostSample->sample()}; } void AutomationEditor::paintEvent(QPaintEvent * pe ) @@ -1040,7 +1035,7 @@ void AutomationEditor::paintEvent(QPaintEvent * pe ) QBrush bgColor = p.background(); p.fillRect( 0, 0, width(), height(), bgColor ); - p.setFont(adjustedToPixelSize(p.font(), 10)); + p.setFont(adjustedToPixelSize(p.font(), DEFAULT_FONT_SIZE)); int grid_height = height() - TOP_MARGIN - SCROLLBAR_SIZE; @@ -1217,12 +1212,18 @@ void AutomationEditor::paintEvent(QPaintEvent * pe ) int yOffset = (editorHeight - sampleHeight) / 2.0f + TOP_MARGIN; p.setPen(m_ghostSampleColor); - + const auto& sample = m_ghostSample->sample(); - const auto waveform = SampleWaveform::Parameters{ - sample.data(), sample.sampleSize(), sample.amplification(), sample.reversed()}; - const auto rect = QRect(startPos, yOffset, sampleWidth, sampleHeight); - SampleWaveform::visualize(waveform, p, rect); + + const auto param = SampleThumbnail::VisualizeParameters{ + .sampleRect = QRect(startPos, yOffset, sampleWidth, sampleHeight), + .amplification = sample.amplification(), + .sampleStart = static_cast(sample.startFrame()) / sample.sampleSize(), + .sampleEnd = static_cast(sample.endFrame()) / sample.sampleSize(), + .reversed = sample.reversed() + }; + + m_sampleThumbnail.visualize(param, p); } // draw ghost notes @@ -1560,7 +1561,11 @@ void AutomationEditor::resizeEvent(QResizeEvent * re) update(); } - +void AutomationEditor::adjustLeftRightScoll(int value) +{ + m_leftRightScroll->setValue(m_leftRightScroll->value() - + value * 0.3f / m_zoomXLevels[m_zoomingXModel.value()]); +} // TODO: Move this method up so it's closer to the other mouse events @@ -1623,15 +1628,13 @@ void AutomationEditor::wheelEvent(QWheelEvent * we ) } // FIXME: Reconsider if determining orientation is necessary in Qt6. - else if(abs(we->angleDelta().x()) > abs(we->angleDelta().y())) // scrolling is horizontal + else if (std::abs(we->angleDelta().x()) > std::abs(we->angleDelta().y())) // scrolling is horizontal { - m_leftRightScroll->setValue(m_leftRightScroll->value() - - we->angleDelta().x() * 2 / 15); + adjustLeftRightScoll(we->angleDelta().x()); } else if(we->modifiers() & Qt::ShiftModifier) { - m_leftRightScroll->setValue(m_leftRightScroll->value() - - we->angleDelta().y() * 2 / 15); + adjustLeftRightScoll(we->angleDelta().y()); } else { @@ -2035,17 +2038,17 @@ AutomationEditorWindow::AutomationEditorWindow() : auto editModeGroup = new ActionGroup(this); m_drawAction = editModeGroup->addAction(embed::getIconPixmap("edit_draw"), tr("Draw mode (Shift+D)")); - m_drawAction->setShortcut(Qt::SHIFT | Qt::Key_D); + m_drawAction->setShortcut(combine(Qt::SHIFT, Qt::Key_D)); m_drawAction->setChecked(true); m_eraseAction = editModeGroup->addAction(embed::getIconPixmap("edit_erase"), tr("Erase mode (Shift+E)")); - m_eraseAction->setShortcut(Qt::SHIFT | Qt::Key_E); + m_eraseAction->setShortcut(combine(Qt::SHIFT, Qt::Key_E)); m_drawOutAction = editModeGroup->addAction(embed::getIconPixmap("edit_draw_outvalue"), tr("Draw outValues mode (Shift+C)")); - m_drawOutAction->setShortcut(Qt::SHIFT | Qt::Key_C); + m_drawOutAction->setShortcut(combine(Qt::SHIFT, Qt::Key_C)); m_editTanAction = editModeGroup->addAction(embed::getIconPixmap("edit_tangent"), tr("Edit tangents mode (Shift+T)")); - m_editTanAction->setShortcut(Qt::SHIFT | Qt::Key_T); + m_editTanAction->setShortcut(combine(Qt::SHIFT, Qt::Key_T)); m_editTanAction->setEnabled(false); m_flipYAction = new QAction(embed::getIconPixmap("flip_y"), tr("Flip vertically"), this); diff --git a/src/gui/editors/Editor.cpp b/src/gui/editors/Editor.cpp index a61c2cd60..c32fb5437 100644 --- a/src/gui/editors/Editor.cpp +++ b/src/gui/editors/Editor.cpp @@ -24,6 +24,9 @@ #include "Editor.h" +#include "DeprecationHelper.h" +#include "GuiApplication.h" +#include "MainWindow.h" #include "Song.h" #include "embed.h" @@ -116,8 +119,8 @@ Editor::Editor(bool record, bool stepRecord) : connect(m_toggleStepRecordingAction, SIGNAL(triggered()), this, SLOT(toggleStepRecording())); connect(m_stopAction, SIGNAL(triggered()), this, SLOT(stop())); new QShortcut(Qt::Key_Space, this, SLOT(togglePlayStop())); - new QShortcut(QKeySequence(Qt::SHIFT + Qt::Key_Space), this, SLOT(togglePause())); - new QShortcut(QKeySequence(Qt::SHIFT + Qt::Key_F11), this, SLOT(toggleMaximize())); + new QShortcut(QKeySequence(combine(Qt::SHIFT, Qt::Key_Space)), this, SLOT(togglePause())); + new QShortcut(QKeySequence(combine(Qt::SHIFT, Qt::Key_F11)), this, SLOT(toggleMaximize())); // Add actions to toolbar addButton(m_playAction, "playButton"); @@ -138,7 +141,7 @@ QAction *Editor::playAction() const return m_playAction; } -void Editor::closeEvent( QCloseEvent * _ce ) +void Editor::closeEvent(QCloseEvent * event) { if( parentWidget() ) { @@ -148,7 +151,8 @@ void Editor::closeEvent( QCloseEvent * _ce ) { hide(); } - _ce->accept(); + getGUI()->mainWindow()->refocus(); + event->ignore(); } DropToolBar::DropToolBar(QWidget* parent) : QToolBar(parent) diff --git a/src/gui/editors/PianoRoll.cpp b/src/gui/editors/PianoRoll.cpp index 1c89f6a0b..f0f54f0ba 100644 --- a/src/gui/editors/PianoRoll.cpp +++ b/src/gui/editors/PianoRoll.cpp @@ -41,10 +41,6 @@ #include #include -#ifndef __USE_XOPEN -#define __USE_XOPEN -#endif - #include #include @@ -59,7 +55,9 @@ #include "DetuningHelper.h" #include "embed.h" #include "GuiApplication.h" +#include "FontHelper.h" #include "InstrumentTrack.h" +#include "KeyboardShortcuts.h" #include "MainWindow.h" #include "MidiClip.h" #include "PatternStore.h" @@ -196,6 +194,9 @@ PianoRoll::PianoRoll() : m_lineColor( 0, 0, 0 ), m_noteModeColor( 0, 0, 0 ), m_noteColor( 0, 0, 0 ), + m_stepNoteColor(0, 0, 0), + m_currentStepNoteColor(245, 3, 139), + m_noteTextColor(0, 0, 0), m_ghostNoteColor( 0, 0, 0 ), m_ghostNoteTextColor( 0, 0, 0 ), m_barColor( 0, 0, 0 ), @@ -270,8 +271,6 @@ PianoRoll::PianoRoll() : s_textFloat = new SimpleTextFloat; } - setAttribute( Qt::WA_OpaquePaintEvent, true ); - // add time-line m_timeLine = new TimeLineWidget(m_whiteKeyWidth, 0, m_ppb, Engine::getSong()->getPlayPos(Song::PlayMode::MidiClip), @@ -1028,7 +1027,7 @@ void PianoRoll::drawNoteRect( QPainter & p, int x, int y, QString noteKeyString = getNoteString(n->key()); QFont noteFont(p.font()); - noteFont.setPixelSize(noteTextHeight); + noteFont = adjustedToPixelSize(noteFont, noteTextHeight); QFontMetrics fontMetrics(noteFont); QSize textSize = fontMetrics.size(Qt::TextSingleLine, noteKeyString); @@ -1609,19 +1608,8 @@ void PianoRoll::mousePressEvent(QMouseEvent * me ) // -- Knife if (m_editMode == EditMode::Knife && me->button() == Qt::LeftButton) { - NoteVector n; - Note* note = noteUnderMouse(); - - if (note) - { - n.push_back(note); - - updateKnifePos(me); - - // Call splitNotes for the note - m_midiClip->splitNotes(n, TimePos(m_knifeTickPos)); - } - + updateKnifePos(me, true); + m_knifeDown = true; update(); return; } @@ -2139,6 +2127,7 @@ void PianoRoll::setKnifeAction() m_knifeMode = m_editMode; m_editMode = EditMode::Knife; m_action = Action::Knife; + m_knifeDown = false; setCursor(Qt::ArrowCursor); update(); } @@ -2148,6 +2137,7 @@ void PianoRoll::cancelKnifeAction() { m_editMode = m_knifeMode; m_action = Action::None; + m_knifeDown = false; update(); } @@ -2276,6 +2266,13 @@ void PianoRoll::mouseReleaseEvent( QMouseEvent * me ) m_midiClip->rearrangeAllNotes(); } + else if (m_action == Action::Knife && hasValidMidiClip()) + { + bool deleteShortEnds = me->modifiers() & Qt::ShiftModifier; + const NoteVector selectedNotes = getSelectedNotes(); + m_midiClip->splitNotesAlongLine(!selectedNotes.empty() ? selectedNotes : m_midiClip->notes(), TimePos(m_knifeStartTickPos), m_knifeStartKey, TimePos(m_knifeEndTickPos), m_knifeEndKey, deleteShortEnds); + m_knifeDown = false; + } if( m_action == Action::MoveNote || m_action == Action::ResizeNote ) { @@ -2379,7 +2376,7 @@ void PianoRoll::mouseMoveEvent( QMouseEvent * me ) // Update Knife position if we are on knife mode if (m_editMode == EditMode::Knife) { - updateKnifePos(me); + updateKnifePos(me, false); } if( me->y() > PR_TOP_MARGIN || m_action != Action::None ) @@ -2760,19 +2757,27 @@ void PianoRoll::mouseMoveEvent( QMouseEvent * me ) -void PianoRoll::updateKnifePos(QMouseEvent* me) +void PianoRoll::updateKnifePos(QMouseEvent* me, bool initial) { // Calculate the TimePos from the mouse - int mouseViewportPos = me->x() - m_whiteKeyWidth; - int mouseTickPos = mouseViewportPos * TimePos::ticksPerBar() / m_ppb + m_currentPosition; + int mouseViewportPosX = me->x() - m_whiteKeyWidth; + int mouseViewportPosY = keyAreaBottom() - 1 - me->y(); + int mouseTickPos = mouseViewportPosX * TimePos::ticksPerBar() / m_ppb + m_currentPosition; + int mouseKey = std::round(1.f * mouseViewportPosY / m_keyLineHeight) + m_startKey - 1; // If ctrl is not pressed, quantize the position if (!(me->modifiers() & Qt::ControlModifier)) { - mouseTickPos = floor(mouseTickPos / quantization()) * quantization(); + mouseTickPos = std::round(1.f * mouseTickPos / quantization()) * quantization(); } - m_knifeTickPos = mouseTickPos; + if (initial) + { + m_knifeStartTickPos = mouseTickPos; + m_knifeStartKey = mouseKey; + } + m_knifeEndTickPos = mouseTickPos; + m_knifeEndKey = mouseKey; } @@ -2813,7 +2818,7 @@ void PianoRoll::dragNotes(int x, int y, bool alt, bool shift, bool ctrl) TimePos mousePosQ = mousePos.quantize(static_cast(quantization()) / DefaultTicksPerBar); TimePos mousePosEndQ = mousePosEnd.quantize(static_cast(quantization()) / DefaultTicksPerBar); - bool snapEnd = abs(mousePosEndQ - mousePosEnd) < abs(mousePosQ - mousePos); + bool snapEnd = std::abs(mousePosEndQ - mousePosEnd) < std::abs(mousePosQ - mousePos); // Set the offset noteOffset = snapEnd @@ -3017,8 +3022,8 @@ void PianoRoll::paintEvent(QPaintEvent * pe ) // set font-size to 80% of key line height QFont f = p.font(); - f.setPixelSize(m_keyLineHeight * 0.8); - p.setFont(f); // font size doesn't change without this for some reason + int keyFontSize = m_keyLineHeight * 0.8; + p.setFont(adjustedToPixelSize(f, keyFontSize)); QFontMetrics fontMetrics(p.font()); // G-1 is one of the widest; plus one pixel margin for the shadow QRect const boundingRect = fontMetrics.boundingRect(QString("G-1")) + QMargins(0, 0, 1, 0); @@ -3097,7 +3102,7 @@ void PianoRoll::paintEvent(QPaintEvent * pe ) // allow quantization grid up to 1/32 for normal notes else if (q < 6) { q = 6; } } - auto xCoordOfTick = [=](int tick) { + auto xCoordOfTick = [this](int tick) { return m_whiteKeyWidth + ( (tick - m_currentPosition) * m_ppb / TimePos::ticksPerBar() ); @@ -3345,8 +3350,7 @@ void PianoRoll::paintEvent(QPaintEvent * pe ) // display note editing info f.setBold(false); - f.setPixelSize(10); - p.setFont(f); + p.setFont(adjustedToPixelSize(f, SMALL_FONT_SIZE)); p.setPen(m_noteModeColor); p.drawText( QRect( 0, keyAreaBottom(), m_whiteKeyWidth, noteEditBottom() - keyAreaBottom()), @@ -3533,37 +3537,19 @@ void PianoRoll::paintEvent(QPaintEvent * pe ) } // -- Knife tool (draw cut line) - if (m_action == Action::Knife) + if (m_action == Action::Knife && m_knifeDown) { auto xCoordOfTick = [this](int tick) { return m_whiteKeyWidth + ( (tick - m_currentPosition) * m_ppb / TimePos::ticksPerBar()); }; - Note* n = noteUnderMouse(); - if (n) - { - const int key = n->key() - m_startKey + 1; - int y = y_base - key * m_keyLineHeight; + int x1 = xCoordOfTick(m_knifeStartTickPos); + int y1 = y_base - (m_knifeStartKey - m_startKey + 1) * m_keyLineHeight; + int x2 = xCoordOfTick(m_knifeEndTickPos); + int y2 = y_base - (m_knifeEndKey - m_startKey + 1) * m_keyLineHeight; - int x = xCoordOfTick(m_knifeTickPos); - - if (x > xCoordOfTick(n->pos()) && - x < xCoordOfTick(n->pos() + n->length())) - { - p.setPen(QPen(m_knifeCutLineColor, 1)); - p.drawLine(x, y, x, y + m_keyLineHeight); - - setCursor(Qt::BlankCursor); - } - else - { - setCursor(Qt::ArrowCursor); - } - } - else - { - setCursor(Qt::ArrowCursor); - } + p.setPen(QPen(m_knifeCutLineColor, 1)); + p.drawLine(x1, y1, x2, y2); } // -- End knife tool @@ -3596,7 +3582,7 @@ void PianoRoll::paintEvent(QPaintEvent * pe ) // we've done and checked all, let's draw the note drawNoteRect( p, x + m_whiteKeyWidth, noteYPos(note->key()), note_width, - note, m_stepRecorder.curStepNoteColor(), m_noteTextColor, m_selectedNoteColor, + note, m_currentStepNoteColor, m_noteTextColor, m_selectedNoteColor, m_noteOpacity, m_noteBorders, drawNoteNames); } } @@ -3743,6 +3729,12 @@ void PianoRoll::resizeEvent(QResizeEvent* re) } +void PianoRoll::adjustLeftRightScoll(int value) +{ + m_leftRightScroll->setValue(m_leftRightScroll->value() - + value * 0.3f / m_zoomLevels[m_zoomingModel.value()]); +} + void PianoRoll::wheelEvent(QWheelEvent * we ) @@ -3873,15 +3865,13 @@ void PianoRoll::wheelEvent(QWheelEvent * we ) } // FIXME: Reconsider if determining orientation is necessary in Qt6. - else if(abs(we->angleDelta().x()) > abs(we->angleDelta().y())) // scrolling is horizontal + else if (std::abs(we->angleDelta().x()) > std::abs(we->angleDelta().y())) // scrolling is horizontal { - m_leftRightScroll->setValue(m_leftRightScroll->value() - - we->angleDelta().x() * 2 / 15); + adjustLeftRightScoll(we->angleDelta().x()); } else if(we->modifiers() & Qt::ShiftModifier) { - m_leftRightScroll->setValue(m_leftRightScroll->value() - - we->angleDelta().y() * 2 / 15); + adjustLeftRightScoll(we->angleDelta().y()); } else { @@ -4760,10 +4750,10 @@ PianoRollWindow::PianoRollWindow() : drawAction->setChecked( true ); - drawAction->setShortcut( Qt::SHIFT | Qt::Key_D ); - eraseAction->setShortcut( Qt::SHIFT | Qt::Key_E ); - selectAction->setShortcut( Qt::SHIFT | Qt::Key_S ); - pitchBendAction->setShortcut( Qt::SHIFT | Qt::Key_T ); + drawAction->setShortcut(combine(Qt::SHIFT, Qt::Key_D)); + eraseAction->setShortcut(combine(Qt::SHIFT, Qt::Key_E)); + selectAction->setShortcut(combine(Qt::SHIFT, Qt::Key_S)); + pitchBendAction->setShortcut(combine(Qt::SHIFT, Qt::Key_T)); connect( editModeGroup, SIGNAL(triggered(int)), m_editor, SLOT(setEditMode(int))); @@ -4822,9 +4812,9 @@ PianoRollWindow::PianoRollWindow() : auto pasteAction = new QAction(embed::getIconPixmap("edit_paste"), tr("Paste (%1+V)").arg(UI_CTRL_KEY), this); - cutAction->setShortcut( Qt::CTRL | Qt::Key_X ); - copyAction->setShortcut( Qt::CTRL | Qt::Key_C ); - pasteAction->setShortcut( Qt::CTRL | Qt::Key_V ); + cutAction->setShortcut(combine(Qt::CTRL, Qt::Key_X)); + copyAction->setShortcut(combine(Qt::CTRL, Qt::Key_C)); + pasteAction->setShortcut(combine(Qt::CTRL, Qt::Key_V)); connect( cutAction, SIGNAL(triggered()), m_editor, SLOT(cutSelectedNotes())); connect( copyAction, SIGNAL(triggered()), m_editor, SLOT(copySelectedNotes())); @@ -4845,19 +4835,19 @@ PianoRollWindow::PianoRollWindow() : auto glueAction = new QAction(embed::getIconPixmap("glue"), tr("Glue"), noteToolsButton); connect(glueAction, SIGNAL(triggered()), m_editor, SLOT(glueNotes())); - glueAction->setShortcut( Qt::SHIFT | Qt::Key_G ); + glueAction->setShortcut(combine(Qt::SHIFT, Qt::Key_G)); auto knifeAction = new QAction(embed::getIconPixmap("edit_knife"), tr("Knife"), noteToolsButton); connect(knifeAction, &QAction::triggered, m_editor, &PianoRoll::setKnifeAction); - knifeAction->setShortcut( Qt::SHIFT | Qt::Key_K ); + knifeAction->setShortcut(combine(Qt::SHIFT, Qt::Key_K)); auto fillAction = new QAction(embed::getIconPixmap("fill"), tr("Fill"), noteToolsButton); connect(fillAction, &QAction::triggered, [this](){ m_editor->fitNoteLengths(true); }); - fillAction->setShortcut(Qt::SHIFT | Qt::Key_F); + fillAction->setShortcut(combine(Qt::SHIFT, Qt::Key_F)); auto cutOverlapsAction = new QAction(embed::getIconPixmap("cut_overlaps"), tr("Cut overlaps"), noteToolsButton); connect(cutOverlapsAction, &QAction::triggered, [this](){ m_editor->fitNoteLengths(false); }); - cutOverlapsAction->setShortcut(Qt::SHIFT | Qt::Key_C); + cutOverlapsAction->setShortcut(combine(Qt::SHIFT, Qt::Key_C)); auto minLengthAction = new QAction(embed::getIconPixmap("min_length"), tr("Min length as last"), noteToolsButton); connect(minLengthAction, &QAction::triggered, [this](){ m_editor->constrainNoteLengths(false); }); diff --git a/src/gui/editors/SongEditor.cpp b/src/gui/editors/SongEditor.cpp index 15adce3e6..fc6fc1463 100644 --- a/src/gui/editors/SongEditor.cpp +++ b/src/gui/editors/SongEditor.cpp @@ -515,6 +515,12 @@ void SongEditor::keyPressEvent( QKeyEvent * ke ) +void SongEditor::adjustLeftRightScoll(int value) +{ + m_leftRightScroll->setValue(m_leftRightScroll->value() + - value * DEFAULT_PIXELS_PER_BAR / pixelsPerBar()); +} + void SongEditor::wheelEvent( QWheelEvent * we ) { @@ -543,13 +549,11 @@ void SongEditor::wheelEvent( QWheelEvent * we ) // FIXME: Reconsider if determining orientation is necessary in Qt6. else if (std::abs(we->angleDelta().x()) > std::abs(we->angleDelta().y())) // scrolling is horizontal { - m_leftRightScroll->setValue(m_leftRightScroll->value() - - we->angleDelta().x()); + adjustLeftRightScoll(we->angleDelta().x()); } else if (we->modifiers() & Qt::ShiftModifier) { - m_leftRightScroll->setValue(m_leftRightScroll->value() - - we->angleDelta().y()); + adjustLeftRightScoll(we->angleDelta().y()); } else { diff --git a/src/gui/editors/StepRecorderWidget.cpp b/src/gui/editors/StepRecorderWidget.cpp index ffb45aa53..93fd59cf7 100644 --- a/src/gui/editors/StepRecorderWidget.cpp +++ b/src/gui/editors/StepRecorderWidget.cpp @@ -94,7 +94,7 @@ void StepRecorderWidget::setEndPosition(TimePos pos) void StepRecorderWidget::showHint() { - TextFloat::displayMessage(tr( "Hint" ), tr("Move recording curser using arrows"), + TextFloat::displayMessage(tr( "Hint" ), tr("Move recording cursor using arrows"), embed::getIconPixmap("hint")); } diff --git a/src/gui/editors/TimeLineWidget.cpp b/src/gui/editors/TimeLineWidget.cpp index f75b1cabf..e25ba74a3 100644 --- a/src/gui/editors/TimeLineWidget.cpp +++ b/src/gui/editors/TimeLineWidget.cpp @@ -37,6 +37,7 @@ #include "ConfigManager.h" #include "embed.h" #include "GuiApplication.h" +#include "KeyboardShortcuts.h" #include "NStateButton.h" #include "TextFloat.h" @@ -58,7 +59,6 @@ TimeLineWidget::TimeLineWidget(const int xoff, const int yoff, const float ppb, m_begin{begin}, m_mode{mode} { - setAttribute( Qt::WA_OpaquePaintEvent, true ); move( 0, yoff ); setMouseTracking(true); diff --git a/src/gui/editors/TrackContainerView.cpp b/src/gui/editors/TrackContainerView.cpp index 60a468380..e85f4e866 100644 --- a/src/gui/editors/TrackContainerView.cpp +++ b/src/gui/editors/TrackContainerView.cpp @@ -89,11 +89,15 @@ TrackContainerView::TrackContainerView( TrackContainer * _tc ) : m_tc->setHook( this ); //keeps the direction of the widget, undepended on the locale setLayoutDirection( Qt::LeftToRight ); + + // The main layout - by default it only contains the scroll area, + // but SongEditor uses the layout to add a TimeLineWidget on top auto layout = new QVBoxLayout(this); layout->setContentsMargins(0, 0, 0, 0); layout->setSpacing( 0 ); layout->addWidget( m_scrollArea ); + // The widget that will contain all TrackViews auto scrollContent = new QWidget; m_scrollLayout = new QVBoxLayout( scrollContent ); m_scrollLayout->setContentsMargins(0, 0, 0, 0); @@ -101,6 +105,7 @@ TrackContainerView::TrackContainerView( TrackContainer * _tc ) : m_scrollLayout->setSizeConstraint( QLayout::SetMinAndMaxSize ); m_scrollArea->setWidget( scrollContent ); + m_scrollArea->setWidgetResizable(true); m_scrollArea->show(); m_rubberBand->hide(); @@ -254,10 +259,6 @@ void TrackContainerView::scrollToTrackView( TrackView * _tv ) void TrackContainerView::realignTracks() { - m_scrollArea->widget()->setFixedWidth(width()); - m_scrollArea->widget()->setFixedHeight( - m_scrollArea->widget()->minimumSizeHint().height()); - for (const auto& trackView : m_trackViews) { trackView->show(); @@ -416,8 +417,8 @@ void TrackContainerView::dropEvent( QDropEvent * _de ) { DataFile dataFile( value ); auto it = dynamic_cast(Track::create(Track::Type::Instrument, m_tc)); - it->setSimpleSerializing(); - it->loadSettings( dataFile.content().toElement() ); + it->loadPreset(dataFile.content().toElement()); + //it->toggledInstrumentTrackButton( true ); _de->accept(); } @@ -447,15 +448,6 @@ void TrackContainerView::dropEvent( QDropEvent * _de ) -void TrackContainerView::resizeEvent( QResizeEvent * _re ) -{ - realignTracks(); - QWidget::resizeEvent( _re ); -} - - - - RubberBand *TrackContainerView::rubberBand() const { return m_rubberBand; diff --git a/src/gui/embed.cpp b/src/gui/embed.cpp index e912fd6d4..b47e2d75f 100644 --- a/src/gui/embed.cpp +++ b/src/gui/embed.cpp @@ -24,22 +24,74 @@ #include "embed.h" -#include #include +#include #include +#include #include #include +#include +#include namespace lmms::embed { namespace { +// QPixmapCache and HiDPI compatible SVG-->QPixmap wrapper +auto loadSvgPixmap(const QString& resourceName, int width, int height) -> QPixmap +{ + // QFile requires the file extension to be present, unlike QImageReader + QString fileName = resourceName; + if (!fileName.endsWith(".svg", Qt::CaseInsensitive)) { fileName += ".svg"; } + + QFile file(fileName); + if (!file.open(QIODevice::ReadOnly)) + { + qWarning() << "Failed to open resource for SVG: " << resourceName; + return QPixmap{1, 1}; + } + + QSvgRenderer renderer(file.readAll()); + if (!renderer.isValid()) + { + qWarning() << "Error loading SVG file: " << resourceName; + return QPixmap{1, 1}; + } + + // Get the default size of the SVG (without scaling) + QSize svgSize = renderer.defaultSize(); + + // If width/height are provided, use them + if (width > 0 && height > 0) { svgSize.scale(width, height, Qt::IgnoreAspectRatio); } + + // Scale the svg + qreal devicePixelRatio = QGuiApplication::primaryScreen()->devicePixelRatio(); + svgSize *= devicePixelRatio; + + QImage image(svgSize, QImage::Format_ARGB32); + image.fill(Qt::transparent); + QPainter painter(&image); + renderer.render(&painter); + painter.end(); + + auto pixmap = QPixmap::fromImage(image); + pixmap.setDevicePixelRatio(devicePixelRatio); + + return pixmap; +} + auto loadPixmap(const QString& name, int width, int height, const char* const* xpm) -> QPixmap { if (xpm) { return QPixmap{xpm}; } const auto resourceName = QDir::isAbsolutePath(name) ? name : "artwork:" + name; auto reader = QImageReader{resourceName}; + + if (reader.format().toLower() == "svg") + { + return loadSvgPixmap(resourceName, width, height); + } + if (width > 0 && height > 0) { reader.setScaledSize(QSize{width, height}); } const auto pixmap = QPixmap::fromImageReader(&reader); diff --git a/src/gui/instrument/EnvelopeAndLfoView.cpp b/src/gui/instrument/EnvelopeAndLfoView.cpp index 1b639e6c3..90e2aa30e 100644 --- a/src/gui/instrument/EnvelopeAndLfoView.cpp +++ b/src/gui/instrument/EnvelopeAndLfoView.cpp @@ -28,12 +28,12 @@ #include #include +#include #include "EnvelopeGraph.h" #include "LfoGraph.h" #include "EnvelopeAndLfoParameters.h" #include "SampleLoader.h" -#include "gui_templates.h" #include "Knob.h" #include "LedCheckBox.h" #include "DataFile.h" @@ -86,6 +86,7 @@ EnvelopeAndLfoView::EnvelopeAndLfoView(QWidget * parent) : m_envelopeGraph = new EnvelopeGraph(this); graphAndAmountLayout->addWidget(m_envelopeGraph); + m_envelopeGraph->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); m_amountKnob = buildKnob(tr("AMT"), tr("Modulation amount:")); graphAndAmountLayout->addWidget(m_amountKnob, 0, Qt::AlignCenter); @@ -125,6 +126,7 @@ EnvelopeAndLfoView::EnvelopeAndLfoView(QWidget * parent) : lfoLayout->addLayout(graphAndTypesLayout); m_lfoGraph = new LfoGraph(this); + m_lfoGraph->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); graphAndTypesLayout->addWidget(m_lfoGraph); QHBoxLayout* typesLayout = new QHBoxLayout(); diff --git a/src/gui/instrument/EnvelopeGraph.cpp b/src/gui/instrument/EnvelopeGraph.cpp index 4cf5da74b..3483f46a0 100644 --- a/src/gui/instrument/EnvelopeGraph.cpp +++ b/src/gui/instrument/EnvelopeGraph.cpp @@ -44,7 +44,11 @@ namespace gui EnvelopeGraph::EnvelopeGraph(QWidget* parent) : QWidget(parent), - ModelView(nullptr, this) + ModelView(nullptr, this), + m_noAmountColor(96, 91, 96), + m_fullAmountColor(0, 255, 128), + m_markerFillColor(153, 175, 255), + m_markerOutlineColor(0, 0, 0) { setMinimumSize(m_envGraph.size()); } @@ -206,9 +210,7 @@ void EnvelopeGraph::paintEvent(QPaintEvent*) // Compute the color of the lines based on the amount of the envelope const float absAmount = std::abs(amount); - const QColor noAmountColor{96, 91, 96}; - const QColor fullAmountColor{0, 255, 128}; - const QColor lineColor{ColorHelper::interpolateInRgb(noAmountColor, fullAmountColor, absAmount)}; + const QColor lineColor{ColorHelper::interpolateInRgb(m_noAmountColor, m_fullAmountColor, absAmount)}; // Determine the line width so that it scales with the widget // Use the minimum value of the current width and height to compute it. @@ -221,14 +223,11 @@ void EnvelopeGraph::paintEvent(QPaintEvent*) p.drawPolyline(linePoly); // Now draw all marker on top of the lines - const QColor markerFillColor{153, 175, 255}; - const QColor markerOutlineColor{0, 0, 0}; - QPen pen; pen.setWidthF(lineWidth * 0.75); - pen.setBrush(markerOutlineColor); + pen.setBrush(m_markerOutlineColor); p.setPen(pen); - p.setBrush(markerFillColor); + p.setBrush(m_markerFillColor); // Compute the size of the circle we will draw based on the line width const qreal baseRectSize = lineWidth * 3; diff --git a/src/gui/instrument/InstrumentFunctionViews.cpp b/src/gui/instrument/InstrumentFunctionViews.cpp index ad8abe735..a60fa64f9 100644 --- a/src/gui/instrument/InstrumentFunctionViews.cpp +++ b/src/gui/instrument/InstrumentFunctionViews.cpp @@ -30,7 +30,7 @@ #include "InstrumentFunctionViews.h" #include "ComboBox.h" #include "GroupBox.h" -#include "gui_templates.h" +#include "FontHelper.h" #include "Knob.h" #include "TempoSyncKnob.h" @@ -57,7 +57,7 @@ InstrumentFunctionNoteStackingView::InstrumentFunctionNoteStackingView( Instrume mainLayout->setVerticalSpacing( 1 ); auto chordLabel = new QLabel(tr("Chord:")); - chordLabel->setFont(adjustedToPixelSize(chordLabel->font(), 10)); + chordLabel->setFont(adjustedToPixelSize(chordLabel->font(), DEFAULT_FONT_SIZE)); m_chordRangeKnob->setLabel( tr( "RANGE" ) ); m_chordRangeKnob->setHintText( tr( "Chord range:" ), " " + tr( "octave(s)" ) ); @@ -145,15 +145,14 @@ InstrumentFunctionArpeggioView::InstrumentFunctionArpeggioView( InstrumentFuncti m_arpGateKnob->setLabel( tr( "GATE" ) ); m_arpGateKnob->setHintText( tr( "Arpeggio gate:" ), tr( "%" ) ); - constexpr int labelFontSize = 10; auto arpChordLabel = new QLabel(tr("Chord:")); - arpChordLabel->setFont(adjustedToPixelSize(arpChordLabel->font(), labelFontSize)); + arpChordLabel->setFont(adjustedToPixelSize(arpChordLabel->font(), DEFAULT_FONT_SIZE)); auto arpDirectionLabel = new QLabel(tr("Direction:")); - arpDirectionLabel->setFont(adjustedToPixelSize(arpDirectionLabel->font(), labelFontSize)); + arpDirectionLabel->setFont(adjustedToPixelSize(arpDirectionLabel->font(), DEFAULT_FONT_SIZE)); auto arpModeLabel = new QLabel(tr("Mode:")); - arpModeLabel->setFont(adjustedToPixelSize(arpModeLabel->font(), labelFontSize)); + arpModeLabel->setFont(adjustedToPixelSize(arpModeLabel->font(), DEFAULT_FONT_SIZE)); mainLayout->addWidget( arpChordLabel, 0, 0 ); mainLayout->addWidget( m_arpComboBox, 1, 0 ); diff --git a/src/gui/instrument/InstrumentMidiIOView.cpp b/src/gui/instrument/InstrumentMidiIOView.cpp index e3f10bd1a..c6b58e090 100644 --- a/src/gui/instrument/InstrumentMidiIOView.cpp +++ b/src/gui/instrument/InstrumentMidiIOView.cpp @@ -33,7 +33,6 @@ #include "Engine.h" #include "embed.h" #include "GroupBox.h" -#include "gui_templates.h" #include "LcdSpinBox.h" #include "MidiClient.h" diff --git a/src/gui/instrument/InstrumentSoundShapingView.cpp b/src/gui/instrument/InstrumentSoundShapingView.cpp index 7558c4c26..e0d6a6e98 100644 --- a/src/gui/instrument/InstrumentSoundShapingView.cpp +++ b/src/gui/instrument/InstrumentSoundShapingView.cpp @@ -31,7 +31,7 @@ #include "EnvelopeAndLfoView.h" #include "ComboBox.h" #include "GroupBox.h" -#include "gui_templates.h" +#include "FontHelper.h" #include "Knob.h" #include "TabWidget.h" @@ -48,12 +48,13 @@ InstrumentSoundShapingView::InstrumentSoundShapingView(QWidget* parent) : m_targetsTabWidget = new TabWidget(tr("TARGET"), this); - for (auto i = std::size_t{0}; i < InstrumentSoundShaping::NumTargets; ++i) - { - m_envLfoViews[i] = new EnvelopeAndLfoView(m_targetsTabWidget); - m_targetsTabWidget->addTab(m_envLfoViews[i], - tr(InstrumentSoundShaping::targetNames[i][0]), nullptr); - } + m_volumeView = new EnvelopeAndLfoView(m_targetsTabWidget); + m_cutoffView = new EnvelopeAndLfoView(m_targetsTabWidget); + m_resonanceView = new EnvelopeAndLfoView(m_targetsTabWidget); + + m_targetsTabWidget->addTab(m_volumeView, tr("VOLUME"), nullptr); + m_targetsTabWidget->addTab(m_cutoffView, tr("CUTOFF"), nullptr); + m_targetsTabWidget->addTab(m_resonanceView, tr("RESO"), nullptr); mainLayout->addWidget(m_targetsTabWidget, 1); @@ -83,7 +84,7 @@ InstrumentSoundShapingView::InstrumentSoundShapingView(QWidget* parent) : m_singleStreamInfoLabel = new QLabel(tr("Envelopes, LFOs and filters are not supported by the current instrument."), this); m_singleStreamInfoLabel->setWordWrap(true); // TODO Could also be rendered in system font size... - m_singleStreamInfoLabel->setFont(adjustedToPixelSize(m_singleStreamInfoLabel->font(), 10)); + m_singleStreamInfoLabel->setFont(adjustedToPixelSize(m_singleStreamInfoLabel->font(), DEFAULT_FONT_SIZE)); m_singleStreamInfoLabel->setFixedWidth(242); mainLayout->addWidget(m_singleStreamInfoLabel, 0, Qt::AlignTop); @@ -111,14 +112,14 @@ void InstrumentSoundShapingView::setFunctionsHidden( bool hidden ) void InstrumentSoundShapingView::modelChanged() { m_ss = castModel(); - m_filterGroupBox->setModel( &m_ss->m_filterEnabledModel ); - m_filterComboBox->setModel( &m_ss->m_filterModel ); - m_filterCutKnob->setModel( &m_ss->m_filterCutModel ); - m_filterResKnob->setModel( &m_ss->m_filterResModel ); - for (auto i = std::size_t{0}; i < InstrumentSoundShaping::NumTargets; ++i) - { - m_envLfoViews[i]->setModel( m_ss->m_envLfoParameters[i] ); - } + m_filterGroupBox->setModel(&m_ss->getFilterEnabledModel()); + m_filterComboBox->setModel(&m_ss->getFilterModel()); + m_filterCutKnob->setModel(&m_ss->getFilterCutModel()); + m_filterResKnob->setModel(&m_ss->getFilterResModel()); + + m_volumeView->setModel(&m_ss->getVolumeParameters()); + m_cutoffView->setModel(&m_ss->getCutoffParameters()); + m_resonanceView->setModel(&m_ss->getResonanceParameters()); } diff --git a/src/gui/instrument/InstrumentTrackWindow.cpp b/src/gui/instrument/InstrumentTrackWindow.cpp index 1c9c93a09..d6c32a205 100644 --- a/src/gui/instrument/InstrumentTrackWindow.cpp +++ b/src/gui/instrument/InstrumentTrackWindow.cpp @@ -59,7 +59,6 @@ #include "MainWindow.h" #include "PianoView.h" #include "PluginFactory.h" -#include "PluginView.h" #include "Song.h" #include "StringPairDrag.h" #include "SubWindow.h" @@ -105,7 +104,7 @@ InstrumentTrackWindow::InstrumentTrackWindow( InstrumentTrackView * _itv ) : connect( m_nameLineEdit, SIGNAL( textChanged( const QString& ) ), this, SLOT( textChanged( const QString& ) ) ); - m_nameLineEdit->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred)); + m_nameLineEdit->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed)); nameAndChangeTrackLayout->addWidget(m_nameLineEdit, 1); @@ -118,7 +117,7 @@ InstrumentTrackWindow::InstrumentTrackWindow( InstrumentTrackView * _itv ) : // m_leftRightNav->setShortcuts(); nameAndChangeTrackLayout->addWidget(m_leftRightNav); - + nameAndChangeTrackWidget->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); generalSettingsLayout->addWidget( nameAndChangeTrackWidget ); auto basicControlsLayout = new QGridLayout; @@ -137,77 +136,93 @@ InstrumentTrackWindow::InstrumentTrackWindow( InstrumentTrackView * _itv ) : #endif - QString labelStyleSheet = "font-size: 6pt;"; + QString labelStyleSheet = "font-size: 10px;"; Qt::Alignment labelAlignment = Qt::AlignHCenter | Qt::AlignTop; Qt::Alignment widgetAlignment = Qt::AlignHCenter | Qt::AlignCenter; + + auto soloMuteLayout = new QVBoxLayout(); + soloMuteLayout->setContentsMargins(0, 0, 2, 0); + soloMuteLayout->setSpacing(2); + + m_muteBtn = new PixmapButton(this, tr("Mute")); + m_muteBtn->setModel(&m_track->m_mutedModel); + m_muteBtn->setActiveGraphic(embed::getIconPixmap("mute_active")); + m_muteBtn->setInactiveGraphic(embed::getIconPixmap("mute_inactive")); + m_muteBtn->setCheckable(true); + m_muteBtn->setToolTip(tr("Mute this instrument")); + soloMuteLayout->addWidget(m_muteBtn, 0, widgetAlignment); + + m_soloBtn = new PixmapButton(this, tr("Solo")); + m_soloBtn->setModel(&m_track->m_soloModel); + m_soloBtn->setActiveGraphic(embed::getIconPixmap("solo_active")); + m_soloBtn->setInactiveGraphic(embed::getIconPixmap("solo_inactive")); + m_soloBtn->setCheckable(true); + m_soloBtn->setToolTip(tr("Solo this instrument")); + soloMuteLayout->addWidget(m_soloBtn, 0, widgetAlignment); + + basicControlsLayout->addLayout(soloMuteLayout, 0, 0, 2, 1, widgetAlignment); // set up volume knob m_volumeKnob = new Knob( KnobType::Bright26, nullptr, tr( "Volume" ) ); m_volumeKnob->setVolumeKnob( true ); m_volumeKnob->setHintText( tr( "Volume:" ), "%" ); - basicControlsLayout->addWidget( m_volumeKnob, 0, 0 ); + basicControlsLayout->addWidget(m_volumeKnob, 0, 1); basicControlsLayout->setAlignment( m_volumeKnob, widgetAlignment ); auto label = new QLabel(tr("VOL"), this); - label->setStyleSheet( labelStyleSheet ); - basicControlsLayout->addWidget( label, 1, 0); - basicControlsLayout->setAlignment( label, labelAlignment ); - + label->setStyleSheet(labelStyleSheet); + basicControlsLayout->addWidget(label, 1, 1); + basicControlsLayout->setAlignment(label, labelAlignment); // set up panning knob m_panningKnob = new Knob( KnobType::Bright26, nullptr, tr( "Panning" ) ); m_panningKnob->setHintText( tr( "Panning:" ), "" ); - basicControlsLayout->addWidget( m_panningKnob, 0, 1 ); + basicControlsLayout->addWidget(m_panningKnob, 0, 2); basicControlsLayout->setAlignment( m_panningKnob, widgetAlignment ); label = new QLabel( tr( "PAN" ), this ); label->setStyleSheet( labelStyleSheet ); - basicControlsLayout->addWidget( label, 1, 1); + basicControlsLayout->addWidget(label, 1, 2); basicControlsLayout->setAlignment( label, labelAlignment ); - - basicControlsLayout->setColumnStretch(2, 1); - + basicControlsLayout->setColumnStretch(3, 1); // set up pitch knob m_pitchKnob = new Knob( KnobType::Bright26, nullptr, tr( "Pitch" ) ); m_pitchKnob->setHintText( tr( "Pitch:" ), " " + tr( "cents" ) ); - basicControlsLayout->addWidget( m_pitchKnob, 0, 3 ); + basicControlsLayout->addWidget(m_pitchKnob, 0, 4); basicControlsLayout->setAlignment( m_pitchKnob, widgetAlignment ); m_pitchLabel = new QLabel( tr( "PITCH" ), this ); m_pitchLabel->setStyleSheet( labelStyleSheet ); - basicControlsLayout->addWidget( m_pitchLabel, 1, 3); + basicControlsLayout->addWidget(m_pitchLabel, 1, 4); basicControlsLayout->setAlignment( m_pitchLabel, labelAlignment ); - // set up pitch range knob m_pitchRangeSpinBox= new LcdSpinBox( 2, nullptr, tr( "Pitch range (semitones)" ) ); - basicControlsLayout->addWidget( m_pitchRangeSpinBox, 0, 4 ); + basicControlsLayout->addWidget(m_pitchRangeSpinBox, 0, 5); basicControlsLayout->setAlignment( m_pitchRangeSpinBox, widgetAlignment ); m_pitchRangeLabel = new QLabel( tr( "RANGE" ), this ); m_pitchRangeLabel->setStyleSheet( labelStyleSheet ); - basicControlsLayout->addWidget( m_pitchRangeLabel, 1, 4); + basicControlsLayout->addWidget(m_pitchRangeLabel, 1, 5); basicControlsLayout->setAlignment( m_pitchRangeLabel, labelAlignment ); - - basicControlsLayout->setColumnStretch(5, 1); - + basicControlsLayout->setColumnStretch(6, 1); // setup spinbox for selecting Mixer-channel m_mixerChannelNumber = new MixerChannelLcdSpinBox(2, nullptr, tr("Mixer channel"), m_itv); - basicControlsLayout->addWidget( m_mixerChannelNumber, 0, 6 ); + basicControlsLayout->addWidget(m_mixerChannelNumber, 0, 7); basicControlsLayout->setAlignment( m_mixerChannelNumber, widgetAlignment ); - label = new QLabel( tr( "CHANNEL" ), this ); + label = new QLabel(tr("CHAN"), this); label->setStyleSheet( labelStyleSheet ); - basicControlsLayout->addWidget( label, 1, 6); + basicControlsLayout->addWidget(label, 1, 7); basicControlsLayout->setAlignment( label, labelAlignment ); auto saveSettingsBtn = new QPushButton(embed::getIconPixmap("project_save"), QString()); @@ -217,11 +232,11 @@ InstrumentTrackWindow::InstrumentTrackWindow( InstrumentTrackView * _itv ) : saveSettingsBtn->setToolTip(tr("Save current instrument track settings in a preset file")); - basicControlsLayout->addWidget( saveSettingsBtn, 0, 7 ); + basicControlsLayout->addWidget(saveSettingsBtn, 0, 8); label = new QLabel( tr( "SAVE" ), this ); label->setStyleSheet( labelStyleSheet ); - basicControlsLayout->addWidget( label, 1, 7); + basicControlsLayout->addWidget(label, 1, 8); basicControlsLayout->setAlignment( label, labelAlignment ); generalSettingsLayout->addLayout( basicControlsLayout ); @@ -238,8 +253,8 @@ InstrumentTrackWindow::InstrumentTrackWindow( InstrumentTrackView * _itv ) : m_ssView = new InstrumentSoundShapingView( m_tabWidget ); // FUNC tab - auto instrumentFunctions = new QWidget(m_tabWidget); - auto instrumentFunctionsLayout = new QVBoxLayout(instrumentFunctions); + m_instrumentFunctionsView = new QWidget(m_tabWidget); + auto instrumentFunctionsLayout = new QVBoxLayout(m_instrumentFunctionsView); instrumentFunctionsLayout->setContentsMargins(5, 5, 5, 5); m_noteStackingView = new InstrumentFunctionNoteStackingView( &m_track->m_noteStacking ); m_arpeggioView = new InstrumentFunctionArpeggioView( &m_track->m_arpeggio ); @@ -252,28 +267,28 @@ InstrumentTrackWindow::InstrumentTrackWindow( InstrumentTrackView * _itv ) : m_midiView = new InstrumentMidiIOView(m_tabWidget); // FX tab - m_effectView = new EffectRackView(m_track->m_audioPort.effects(), m_tabWidget); + m_effectView = new EffectRackView(m_track->m_audioBusHandle.effects(), m_tabWidget); // Tuning tab m_tuningView = new InstrumentTuningView(m_track, m_tabWidget); m_tabWidget->addTab(m_ssView, tr("Envelope, filter & LFO"), "env_lfo_tab", 1); - m_tabWidget->addTab(instrumentFunctions, tr("Chord stacking & arpeggio"), "func_tab", 2); + m_tabWidget->addTab(m_instrumentFunctionsView, tr("Chord stacking & arpeggio"), "func_tab", 2); m_tabWidget->addTab(m_effectView, tr("Effects"), "fx_tab", 3); m_tabWidget->addTab(m_midiView, tr("MIDI"), "midi_tab", 4); m_tabWidget->addTab(m_tuningView, tr("Tuning and transposition"), "tuning_tab", 5); - adjustTabSize(m_ssView); - adjustTabSize(instrumentFunctions); - // EffectRackView has sizeHint to be QSize(EffectRackView::DEFAULT_WIDTH, INSTRUMENT_HEIGHT - 4 - 1) - adjustTabSize(m_midiView); - adjustTabSize(m_tuningView); // setup piano-widget m_pianoView = new PianoView( this ); m_pianoView->setMinimumHeight( PIANO_HEIGHT ); m_pianoView->setMaximumHeight( PIANO_HEIGHT ); + // setup sizes and policies + generalSettingsWidget->setMaximumHeight(90); + generalSettingsWidget->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); + m_tabWidget->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); + vlayout->addWidget( generalSettingsWidget ); // Use QWidgetItem explicitly to make the size hint change on instrument changes // QLayout::addWidget() uses QWidgetItemV2 with size hint caching @@ -281,25 +296,27 @@ InstrumentTrackWindow::InstrumentTrackWindow( InstrumentTrackView * _itv ) : vlayout->addWidget( m_pianoView ); setModel( _itv->model() ); - QMdiSubWindow* subWin = getGUI()->mainWindow()->addWindowedWidget( this ); - Qt::WindowFlags flags = subWin->windowFlags(); - flags |= Qt::MSWindowsFixedSizeDialogHint; - flags &= ~Qt::WindowMaximizeButtonHint; - subWin->setWindowFlags( flags ); - updateInstrumentView(); - // Hide the Size and Maximize options from the system menu - // since the dialog size is fixed. - QMenu * systemMenu = subWin->systemMenu(); - systemMenu->actions().at( 2 )->setVisible( false ); // Size - systemMenu->actions().at( 4 )->setVisible( false ); // Maximize + QMdiSubWindow* subWin = getGUI()->mainWindow()->addWindowedWidget( this ); - subWin->setWindowIcon( embed::getIconPixmap( "instrument_track" ) ); - subWin->setMinimumSize( subWin->size() ); + // The previous call should have given us a sub window parent. Therefore + // we can reuse this method. + updateSubWindow(); + + subWin->setWindowIcon(embed::getIconPixmap("instrument_track")); subWin->hide(); } +void InstrumentTrackWindow::resizeEvent(QResizeEvent * event) { + /* m_instrumentView->resize(QSize(size().width()-1, maxHeight)); */ + adjustTabSize(m_instrumentView); + adjustTabSize(m_instrumentFunctionsView); + adjustTabSize(m_ssView); + adjustTabSize(m_effectView); + adjustTabSize(m_midiView); + adjustTabSize(m_tuningView); +} @@ -380,17 +397,19 @@ void InstrumentTrackWindow::modelChanged() m_tuningView->microtunerGroupBox()->show(); } - m_ssView->setModel( &m_track->m_soundShaping ); - m_noteStackingView->setModel( &m_track->m_noteStacking ); - m_arpeggioView->setModel( &m_track->m_arpeggio ); - m_midiView->setModel( &m_track->m_midiPort ); - m_effectView->setModel( m_track->m_audioPort.effects() ); + m_ssView->setModel(&m_track->m_soundShaping); + m_noteStackingView->setModel(&m_track->m_noteStacking); + m_arpeggioView->setModel(&m_track->m_arpeggio); + m_midiView->setModel(&m_track->m_midiPort); + m_effectView->setModel(m_track->m_audioBusHandle.effects()); m_tuningView->pitchGroupBox()->setModel(&m_track->m_useMasterPitchModel); m_tuningView->microtunerGroupBox()->setModel(m_track->m_microtuner.enabledModel()); m_tuningView->scaleCombo()->setModel(m_track->m_microtuner.scaleModel()); m_tuningView->keymapCombo()->setModel(m_track->m_microtuner.keymapModel()); m_tuningView->rangeImportCheckbox()->setModel(m_track->m_microtuner.keyRangeImportModel()); updateName(); + + updateSubWindow(); } @@ -424,8 +443,7 @@ void InstrumentTrackWindow::saveSettingsBtnClicked() DataFile dataFile(DataFile::Type::InstrumentTrackSettings); QDomElement& content(dataFile.content()); - m_track->setSimpleSerializing(); - m_track->saveSettings(dataFile, content); + m_track->savePreset(dataFile, content); //We don't want to save muted & solo settings when we're saving a preset content.setAttribute("muted", 0); content.setAttribute("solo", 0); @@ -669,6 +687,13 @@ void InstrumentTrackWindow::viewInstrumentInDirection(int d) } Q_ASSERT(bringToFront); bringToFront->getInstrumentTrackWindow()->setFocus(); + Qt::WindowFlags flags = windowFlags(); + if (!m_instrumentView->isResizable()) { + flags |= Qt::MSWindowsFixedSizeDialogHint; + } else { + flags &= ~Qt::MSWindowsFixedSizeDialogHint; + } + setWindowFlags( flags ); } void InstrumentTrackWindow::viewNextInstrument() @@ -685,8 +710,79 @@ void InstrumentTrackWindow::adjustTabSize(QWidget *w) // "-1" : // in "TabWidget::addTab", under "Position tab's window", the widget is // moved up by 1 pixel - w->setMinimumSize(INSTRUMENT_WIDTH - 4, INSTRUMENT_HEIGHT - 4 - 1); + w->resize(width() - 4, height() - 180); + w->update(); } +QMdiSubWindow* InstrumentTrackWindow::findSubWindowInParents() +{ + // TODO Move to helper? Does not seem to be provided by Qt. + auto p = parentWidget(); + + while (p != nullptr) + { + auto mdiSubWindow = dynamic_cast(p); + if (mdiSubWindow) + { + return mdiSubWindow; + } + else + { + p = p->parentWidget(); + } + } + + return nullptr; +} + +void InstrumentTrackWindow::updateSubWindow() +{ + auto subWindow = findSubWindowInParents(); + if (subWindow && m_instrumentView) + { + Qt::WindowFlags flags = subWindow->windowFlags(); + + const auto instrumentViewResizable = m_instrumentView->isResizable(); + + if (instrumentViewResizable) + { + // TODO As of writing SlicerT is the only resizable instrument. Is this code specific to SlicerT? + const auto extraSpace = QSize(12, 208); + subWindow->setMaximumSize(m_instrumentView->maximumSize() + extraSpace); + subWindow->setMinimumSize(m_instrumentView->minimumSize() + extraSpace); + + flags &= ~Qt::MSWindowsFixedSizeDialogHint; + flags |= Qt::WindowMaximizeButtonHint; + } + else + { + flags |= Qt::MSWindowsFixedSizeDialogHint; + flags &= ~Qt::WindowMaximizeButtonHint; + + // The sub window might be reused from an instrument that was maximized. Show the sub window + // as normal, i.e. not maximized, if the instrument view is not resizable. + if (subWindow->isMaximized()) + { + subWindow->showNormal(); + } + } + + subWindow->setWindowFlags(flags); + + // Show or hide the Size and Maximize options from the system menu depending on whether the view is resizable or not + QMenu * systemMenu = subWindow->systemMenu(); + systemMenu->actions().at(2)->setVisible(instrumentViewResizable); // Size + systemMenu->actions().at(4)->setVisible(instrumentViewResizable); // Maximize + + // TODO This is only needed if the sub window is implemented with LMMS' own SubWindow class. + // If an QMdiSubWindow is used everything works automatically. It seems that SubWindow is + // missing some implementation details that QMdiSubWindow has. + auto subWin = dynamic_cast(subWindow); + if (subWin) + { + subWin->updateTitleBar(); + } + } +} } // namespace lmms::gui diff --git a/src/gui/instrument/InstrumentTuningView.cpp b/src/gui/instrument/InstrumentTuningView.cpp index daa361aad..06121502e 100644 --- a/src/gui/instrument/InstrumentTuningView.cpp +++ b/src/gui/instrument/InstrumentTuningView.cpp @@ -33,7 +33,7 @@ #include "ComboBox.h" #include "GroupBox.h" #include "GuiApplication.h" -#include "gui_templates.h" +#include "FontHelper.h" #include "InstrumentTrack.h" #include "LedCheckBox.h" #include "MainWindow.h" @@ -60,7 +60,7 @@ InstrumentTuningView::InstrumentTuningView(InstrumentTrack *it, QWidget *parent) auto tlabel = new QLabel(tr("Enables the use of global transposition")); tlabel->setWordWrap(true); - tlabel->setFont(adjustedToPixelSize(tlabel->font(), 10)); + tlabel->setFont(adjustedToPixelSize(tlabel->font(), DEFAULT_FONT_SIZE)); masterPitchLayout->addWidget(tlabel); // Microtuner settings diff --git a/src/gui/instrument/InstrumentView.cpp b/src/gui/instrument/InstrumentView.cpp index fe2c04cfb..f7912444d 100644 --- a/src/gui/instrument/InstrumentView.cpp +++ b/src/gui/instrument/InstrumentView.cpp @@ -35,6 +35,7 @@ namespace lmms::gui InstrumentView::InstrumentView( Instrument * _Instrument, QWidget * _parent ) : PluginView( _Instrument, _parent ) { + setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); setModel( _Instrument ); setAttribute( Qt::WA_DeleteOnClose, true ); } @@ -76,4 +77,4 @@ InstrumentTrackWindow * InstrumentView::instrumentTrackWindow() -} // namespace lmms::gui \ No newline at end of file +} // namespace lmms::gui diff --git a/src/gui/instrument/LfoGraph.cpp b/src/gui/instrument/LfoGraph.cpp index 7edbacb09..fe8e01a7f 100644 --- a/src/gui/instrument/LfoGraph.cpp +++ b/src/gui/instrument/LfoGraph.cpp @@ -32,7 +32,7 @@ #include "Oscillator.h" #include "ColorHelper.h" -#include "gui_templates.h" +#include "FontHelper.h" namespace lmms { @@ -44,7 +44,9 @@ namespace gui LfoGraph::LfoGraph(QWidget* parent) : QWidget(parent), - ModelView(nullptr, this) + ModelView(nullptr, this), + m_noAmountColor(96, 91, 96), + m_fullAmountColor(0, 255, 128) { setMinimumSize(m_lfoGraph.size()); } @@ -143,9 +145,7 @@ void LfoGraph::paintEvent(QPaintEvent*) // Compute the color of the lines based on the amount of the LFO const float absAmount = std::abs(amount); - const QColor noAmountColor{96, 91, 96}; - const QColor fullAmountColor{0, 255, 128}; - const QColor lineColor{ColorHelper::interpolateInRgb(noAmountColor, fullAmountColor, absAmount)}; + const QColor lineColor{ColorHelper::interpolateInRgb(m_noAmountColor, m_fullAmountColor, absAmount)}; p.setPen(QPen(lineColor, 1.5)); @@ -166,8 +166,7 @@ void LfoGraph::drawInfoText(const EnvelopeAndLfoParameters& params) // First configure the font so that we get correct results for the font metrics used below QFont f = p.font(); - f.setPixelSize(height() * 0.2); - p.setFont(f); + p.setFont(adjustedToPixelSize(f, height() * 0.2)); // This is the position where the text and its rectangle will be rendered const QPoint textPosition(4, height() - 6); diff --git a/src/gui/instrument/PianoView.cpp b/src/gui/instrument/PianoView.cpp index 13628d97e..8491927db 100644 --- a/src/gui/instrument/PianoView.cpp +++ b/src/gui/instrument/PianoView.cpp @@ -50,7 +50,7 @@ #include "CaptionMenu.h" #include "embed.h" #include "Engine.h" -#include "gui_templates.h" +#include "FontHelper.h" #include "InstrumentTrack.h" #include "Song.h" #include "StringPairDrag.h" @@ -72,7 +72,7 @@ const int PW_WHITE_KEY_WIDTH = 10; /*!< The width of a white key */ const int PW_BLACK_KEY_WIDTH = 8; /*!< The width of a black key */ const int PW_WHITE_KEY_HEIGHT = 57; /*!< The height of a white key */ const int PW_BLACK_KEY_HEIGHT = 38; /*!< The height of a black key */ -const int LABEL_TEXT_SIZE = 7; /*!< The height of the key label text */ +const int LABEL_TEXT_SIZE = 8; /*!< The height of the key label text */ @@ -90,7 +90,6 @@ PianoView::PianoView(QWidget *parent) : m_lastKey(-1), /*!< The last key displayed? */ m_movedNoteModel(nullptr) /*!< Key marker which is being moved */ { - setAttribute(Qt::WA_OpaquePaintEvent, true); setFocusPolicy(Qt::StrongFocus); // Black keys are drawn halfway between successive white keys, so they do not @@ -777,12 +776,12 @@ IntModel* PianoView::getNearestMarker(int key, QString* title) const int first = m_piano->instrumentTrack()->firstKey(); const int last = m_piano->instrumentTrack()->lastKey(); - if (abs(key - base) < abs(key - first) && abs(key - base) < abs(key - last)) + if (std::abs(key - base) < std::abs(key - first) && std::abs(key - base) < std::abs(key - last)) { if (title) {*title = tr("Base note");} return m_piano->instrumentTrack()->baseNoteModel(); } - else if (abs(key - first) < abs(key - last)) + else if (std::abs(key - first) < std::abs(key - last)) { if (title) {*title = tr("First note");} return m_piano->instrumentTrack()->firstKeyModel(); diff --git a/src/gui/modals/ExportProjectDialog.cpp b/src/gui/modals/ExportProjectDialog.cpp index 1f989841f..016ed447b 100644 --- a/src/gui/modals/ExportProjectDialog.cpp +++ b/src/gui/modals/ExportProjectDialog.cpp @@ -159,14 +159,11 @@ void ExportProjectDialog::startExport() const auto samplerates = std::array{44100, 48000, 88200, 96000, 192000}; const auto bitrates = std::array{64, 128, 160, 192, 256, 320}; - bool useVariableBitRate = checkBoxVariableBitRate->isChecked(); + const auto bitrate = bitrates[bitrateCB->currentIndex()]; - OutputSettings::BitRateSettings bitRateSettings(bitrates[ bitrateCB->currentIndex() ], useVariableBitRate); - OutputSettings os = OutputSettings( - samplerates[ samplerateCB->currentIndex() ], - bitRateSettings, - static_cast( depthCB->currentIndex() ), - mapToStereoMode(stereoModeComboBox->currentIndex()) ); + OutputSettings os = OutputSettings(samplerates[samplerateCB->currentIndex()], bitrate, + static_cast(depthCB->currentIndex()), + mapToStereoMode(stereoModeComboBox->currentIndex())); if (compressionWidget->isVisible()) { @@ -230,8 +227,6 @@ void ExportProjectDialog::onFileFormatChanged(int index) (exportFormat == ProjectRenderer::ExportFileFormat::Wave || exportFormat == ProjectRenderer::ExportFileFormat::Flac); - bool variableBitrateVisible = !(exportFormat == ProjectRenderer::ExportFileFormat::MP3 || exportFormat == ProjectRenderer::ExportFileFormat::Flac); - #ifdef LMMS_HAVE_SF_COMPLEVEL bool compressionLevelVisible = (exportFormat == ProjectRenderer::ExportFileFormat::Flac); compressionWidget->setVisible(compressionLevelVisible); @@ -241,7 +236,6 @@ void ExportProjectDialog::onFileFormatChanged(int index) sampleRateWidget->setVisible(sampleRateControlsVisible); bitrateWidget->setVisible(bitRateControlsEnabled); - checkBoxVariableBitRate->setVisible(variableBitrateVisible); depthWidget->setVisible(bitDepthControlEnabled); } diff --git a/src/gui/modals/SetupDialog.cpp b/src/gui/modals/SetupDialog.cpp index 6f05433b7..06f228ab7 100644 --- a/src/gui/modals/SetupDialog.cpp +++ b/src/gui/modals/SetupDialog.cpp @@ -91,14 +91,14 @@ inline void labelWidget(QWidget * w, const QString & txt) SetupDialog::SetupDialog(ConfigTab tab_to_open) : - m_displaydBFS(ConfigManager::inst()->value( - "app", "displaydbfs").toInt()), m_tooltips(!ConfigManager::inst()->value( "tooltips", "disabled").toInt()), m_displayWaveform(ConfigManager::inst()->value( "ui", "displaywaveform").toInt()), m_printNoteLabels(ConfigManager::inst()->value( "ui", "printnotelabels").toInt()), + m_showFaderTicks(ConfigManager::inst()->value( + "ui", "showfaderticks").toInt()), m_compactTrackButtons(ConfigManager::inst()->value( "ui", "compacttrackbuttons").toInt()), m_oneInstrumentTrackWindow(ConfigManager::inst()->value( @@ -231,14 +231,14 @@ SetupDialog::SetupDialog(ConfigTab tab_to_open) : QGroupBox * guiGroupBox = new QGroupBox(tr("Graphical user interface (GUI)"), generalControls); QVBoxLayout * guiGroupLayout = new QVBoxLayout(guiGroupBox); - addCheckBox(tr("Display volume as dBFS "), guiGroupBox, guiGroupLayout, - m_displaydBFS, SLOT(toggleDisplaydBFS(bool)), true); addCheckBox(tr("Enable tooltips"), guiGroupBox, guiGroupLayout, m_tooltips, SLOT(toggleTooltips(bool)), true); addCheckBox(tr("Enable master oscilloscope by default"), guiGroupBox, guiGroupLayout, m_displayWaveform, SLOT(toggleDisplayWaveform(bool)), true); addCheckBox(tr("Enable all note labels in piano roll"), guiGroupBox, guiGroupLayout, m_printNoteLabels, SLOT(toggleNoteLabels(bool)), false); + addCheckBox(tr("Show fader ticks"), guiGroupBox, guiGroupLayout, + m_showFaderTicks, SLOT(toggleShowFaderTicks(bool)), false); addCheckBox(tr("Enable compact track buttons"), guiGroupBox, guiGroupLayout, m_compactTrackButtons, SLOT(toggleCompactTrackButtons(bool)), true); addCheckBox(tr("Enable one instrument-track-window mode"), guiGroupBox, guiGroupLayout, @@ -564,7 +564,7 @@ SetupDialog::SetupDialog(ConfigTab tab_to_open) : QHBoxLayout * bufferSizeSubLayout = new QHBoxLayout(); m_bufferSizeSlider = new QSlider(Qt::Horizontal, bufferSizeBox); - m_bufferSizeSlider->setRange(1, 128); + m_bufferSizeSlider->setRange(1, MAXIMUM_BUFFER_SIZE / BUFFERSIZE_RESOLUTION); m_bufferSizeSlider->setTickInterval(8); m_bufferSizeSlider->setPageStep(8); m_bufferSizeSlider->setValue(m_bufferSize / BUFFERSIZE_RESOLUTION); @@ -913,14 +913,14 @@ void SetupDialog::accept() from taking mouse input, rendering the application unusable. */ QDialog::accept(); - ConfigManager::inst()->setValue("app", "displaydbfs", - QString::number(m_displaydBFS)); ConfigManager::inst()->setValue("tooltips", "disabled", QString::number(!m_tooltips)); ConfigManager::inst()->setValue("ui", "displaywaveform", QString::number(m_displayWaveform)); ConfigManager::inst()->setValue("ui", "printnotelabels", QString::number(m_printNoteLabels)); + ConfigManager::inst()->setValue("ui", "showfaderticks", + QString::number(m_showFaderTicks)); ConfigManager::inst()->setValue("ui", "compacttrackbuttons", QString::number(m_compactTrackButtons)); ConfigManager::inst()->setValue("ui", "oneinstrumenttrackwindow", @@ -1003,12 +1003,6 @@ void SetupDialog::accept() // General settings slots. -void SetupDialog::toggleDisplaydBFS(bool enabled) -{ - m_displaydBFS = enabled; -} - - void SetupDialog::toggleTooltips(bool enabled) { m_tooltips = enabled; @@ -1026,6 +1020,10 @@ void SetupDialog::toggleNoteLabels(bool enabled) m_printNoteLabels = enabled; } +void SetupDialog::toggleShowFaderTicks(bool enabled) +{ + m_showFaderTicks = enabled; +} void SetupDialog::toggleCompactTrackButtons(bool enabled) { diff --git a/src/gui/modals/export_project.ui b/src/gui/modals/export_project.ui index 797ae0790..b047bec08 100644 --- a/src/gui/modals/export_project.ui +++ b/src/gui/modals/export_project.ui @@ -71,7 +71,7 @@ 1 - 99 + 2147483647 1 @@ -338,13 +338,6 @@ - - - - Use variable bitrate - - - diff --git a/src/gui/tracks/FadeButton.cpp b/src/gui/tracks/FadeButton.cpp index 2f4727e5e..386b5be41 100644 --- a/src/gui/tracks/FadeButton.cpp +++ b/src/gui/tracks/FadeButton.cpp @@ -47,7 +47,6 @@ FadeButton::FadeButton(const QColor & _normal_color, m_activatedColor( _activated_color ), m_holdColor( holdColor ) { - setAttribute(Qt::WA_OpaquePaintEvent, true); setCursor(QCursor(embed::getIconPixmap("hand"), 3, 3)); setFocusPolicy(Qt::NoFocus); activeNotes = 0; diff --git a/src/gui/tracks/InstrumentTrackView.cpp b/src/gui/tracks/InstrumentTrackView.cpp index 1d9991c31..b8ca43bcd 100644 --- a/src/gui/tracks/InstrumentTrackView.cpp +++ b/src/gui/tracks/InstrumentTrackView.cpp @@ -385,8 +385,8 @@ QMenu * InstrumentTrackView::createMixerMenu(QString title, QString newMixerLabe if ( currentChannel != mixerChannel ) { - auto index = currentChannel->m_channelIndex; - QString label = tr( "%1: %2" ).arg( currentChannel->m_channelIndex ).arg( currentChannel->m_name ); + auto index = currentChannel->index(); + QString label = tr( "%1: %2" ).arg(index).arg(currentChannel->m_name); mixerMenu->addAction(label, [this, index](){ assignMixerLine(index); }); diff --git a/src/gui/tracks/SampleTrackView.cpp b/src/gui/tracks/SampleTrackView.cpp index 8475f7fa9..064cc5206 100644 --- a/src/gui/tracks/SampleTrackView.cpp +++ b/src/gui/tracks/SampleTrackView.cpp @@ -155,8 +155,8 @@ QMenu * SampleTrackView::createMixerMenu(QString title, QString newMixerLabel) if (currentChannel != mixerChannel) { - const auto index = currentChannel->m_channelIndex; - QString label = tr("%1: %2").arg(currentChannel->m_channelIndex).arg(currentChannel->m_name); + const auto index = currentChannel->index(); + QString label = tr("%1: %2").arg(index).arg(currentChannel->m_name); mixerMenu->addAction(label, [this, index](){ assignMixerLine(index); }); diff --git a/src/gui/tracks/TrackContentWidget.cpp b/src/gui/tracks/TrackContentWidget.cpp index 1926ffeef..1d39f97b3 100644 --- a/src/gui/tracks/TrackContentWidget.cpp +++ b/src/gui/tracks/TrackContentWidget.cpp @@ -140,7 +140,7 @@ void TrackContentWidget::updateBackground() // draw coarse grid pmp.setPen( QPen( coarseGridColor(), coarseGridWidth() ) ); - for (float x = 0; x < w * 2; x += ppb * coarseGridResolution) + for (float x = 0; x <= w * 2; x += ppb * coarseGridResolution) { pmp.drawLine( QLineF( x, 0.0, x, h ) ); } diff --git a/src/gui/tracks/TrackGrip.cpp b/src/gui/tracks/TrackGrip.cpp new file mode 100644 index 000000000..6133c6e96 --- /dev/null +++ b/src/gui/tracks/TrackGrip.cpp @@ -0,0 +1,106 @@ +/* + * TrackGrip.cpp - Grip that can be used to move tracks + * + * Copyright (c) 2024- Michael Gregorius + * + * This file is part of LMMS - https://lmms.io + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program (see COPYING); if not, write to the + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA. + * + */ + +#include "TrackGrip.h" + +#include "embed.h" +#include "Track.h" + +#include +#include +#include + + +namespace lmms::gui +{ + +QPixmap* TrackGrip::s_grabbedPixmap = nullptr; +QPixmap* TrackGrip::s_releasedPixmap = nullptr; + +constexpr int c_margin = 2; + +TrackGrip::TrackGrip(Track* track, QWidget* parent) : + QWidget(parent), + m_track(track) +{ + if (!s_grabbedPixmap) + { + s_grabbedPixmap = new QPixmap(embed::getIconPixmap("track_op_grip_c")); + } + + if (!s_releasedPixmap) + { + s_releasedPixmap = new QPixmap(embed::getIconPixmap("track_op_grip")); + } + + setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Expanding); + + setCursor(Qt::OpenHandCursor); + + setFixedWidth(std::max(s_grabbedPixmap->width(), s_releasedPixmap->width()) + 2 * c_margin); +} + +void TrackGrip::mousePressEvent(QMouseEvent* m) +{ + m->accept(); + + m_isGrabbed = true; + setCursor(Qt::ClosedHandCursor); + + emit grabbed(); + + update(); +} + +void TrackGrip::mouseReleaseEvent(QMouseEvent* m) +{ + m->accept(); + + m_isGrabbed = false; + setCursor(Qt::OpenHandCursor); + + emit released(); + + update(); +} + +void TrackGrip::paintEvent(QPaintEvent*) +{ + QPainter p(this); + + // Check if the color of the track should be used for the background + const auto color = m_track->color(); + const auto muted = m_track->getMutedModel()->value(); + + if (color.has_value() && !muted) + { + p.fillRect(rect(), color.value()); + } + + // Paint the pixmap + auto r = rect().marginsRemoved(QMargins(c_margin, c_margin, c_margin, c_margin)); + p.drawTiledPixmap(r, m_isGrabbed ? *s_grabbedPixmap : *s_releasedPixmap); +} + +} // namespace lmms::gui diff --git a/src/gui/tracks/TrackLabelButton.cpp b/src/gui/tracks/TrackLabelButton.cpp index 871d42316..c203fad8c 100644 --- a/src/gui/tracks/TrackLabelButton.cpp +++ b/src/gui/tracks/TrackLabelButton.cpp @@ -46,10 +46,10 @@ TrackLabelButton::TrackLabelButton( TrackView * _tv, QWidget * _parent ) : m_trackView( _tv ), m_iconName() { - setAttribute( Qt::WA_OpaquePaintEvent, true ); setAcceptDrops( true ); setCursor( QCursor( embed::getIconPixmap( "hand" ), 3, 3 ) ); setToolButtonStyle( Qt::ToolButtonTextBesideIcon ); + m_renameLineEdit = new TrackRenameLineEdit( this ); m_renameLineEdit->hide(); @@ -60,8 +60,6 @@ TrackLabelButton::TrackLabelButton( TrackView * _tv, QWidget * _parent ) : else { setFixedSize( 160, 29 ); - m_renameLineEdit->move( 30, ( height() / 2 ) - ( m_renameLineEdit->sizeHint().height() / 2 ) ); - m_renameLineEdit->setFixedWidth( width() - 33 ); connect( m_renameLineEdit, SIGNAL(editingFinished()), this, SLOT(renameFinished())); } @@ -89,11 +87,22 @@ void TrackLabelButton::rename() } else { - QString txt = m_trackView->getTrack()->name(); - m_renameLineEdit->show(); - m_renameLineEdit->setText( txt ); + const auto & trackName = m_trackView->getTrack()->name(); + m_renameLineEdit->setText(trackName); m_renameLineEdit->selectAll(); m_renameLineEdit->setFocus(); + + // Make sure that the rename line edit uses the same font as the widget + // which is set via style sheets + m_renameLineEdit->setFont(font()); + + // Move the line edit to the correct position by taking the size of the + // icon into account. + const auto iconWidth = iconSize().width(); + m_renameLineEdit->move(iconWidth + 1, (height() / 2 - m_renameLineEdit->sizeHint().height() / 2) + 1); + m_renameLineEdit->setFixedWidth(width() - (iconWidth + 6)); + + m_renameLineEdit->show(); } } diff --git a/src/gui/tracks/TrackOperationsWidget.cpp b/src/gui/tracks/TrackOperationsWidget.cpp index 6cb74e2c5..c43cd022c 100644 --- a/src/gui/tracks/TrackOperationsWidget.cpp +++ b/src/gui/tracks/TrackOperationsWidget.cpp @@ -24,6 +24,7 @@ #include "TrackOperationsWidget.h" +#include #include #include #include @@ -39,11 +40,13 @@ #include "embed.h" #include "Engine.h" #include "InstrumentTrackView.h" +#include "KeyboardShortcuts.h" #include "PixmapButton.h" #include "Song.h" #include "StringPairDrag.h" #include "Track.h" #include "TrackContainerView.h" +#include "TrackGrip.h" #include "TrackView.h" namespace lmms::gui @@ -68,41 +71,66 @@ TrackOperationsWidget::TrackOperationsWidget( TrackView * parent ) : setObjectName( "automationEnabled" ); + auto layout = new QHBoxLayout(this); + layout->setContentsMargins(0, 0, 0, 0); + layout->setSpacing(0); + layout->setAlignment(Qt::AlignTop); - m_trackOps = new QPushButton( this ); - m_trackOps->move( 12, 1 ); + m_trackGrip = new TrackGrip(m_trackView->getTrack(), this); + layout->addWidget(m_trackGrip); + + // This widget holds the gear icon and the mute and solo + // buttons in a layout. + auto operationsWidget = new QWidget(this); + auto operationsLayout = new QHBoxLayout(operationsWidget); + operationsLayout->setContentsMargins(0, 3, 0, 0); + operationsLayout->setSpacing(2); + + m_trackOps = new QPushButton(operationsWidget); m_trackOps->setFocusPolicy( Qt::NoFocus ); m_trackOps->setMenu( toMenu ); m_trackOps->setToolTip(tr("Actions")); - - m_muteBtn = new PixmapButton( this, tr( "Mute" ) ); - m_muteBtn->setActiveGraphic( embed::getIconPixmap( "led_off" ) ); - m_muteBtn->setInactiveGraphic( embed::getIconPixmap( "led_green" ) ); - m_muteBtn->setCheckable( true ); - - m_soloBtn = new PixmapButton( this, tr( "Solo" ) ); - m_soloBtn->setActiveGraphic( embed::getIconPixmap( "led_red" ) ); - m_soloBtn->setInactiveGraphic( embed::getIconPixmap( "led_off" ) ); - m_soloBtn->setCheckable( true ); - - if( ConfigManager::inst()->value( "ui", - "compacttrackbuttons" ).toInt() ) + // This helper lambda wraps a PixmapButton in a QWidget. This is necessary due to some strange effect where the + // PixmapButtons are resized to a size that's larger than their minimum/fixed size when the method "show" is called + // in "TrackContainerView::realignTracks". Specifically, with the default theme the buttons are resized from + // (16, 14) to (26, 26). This then makes them behave not as expected in layouts. + // The resizing is not done for QWidgets. Therefore we wrap the PixmapButton in a QWidget which is set to a + // fixed size that will be able to show the active and inactive pixmap. We can then use the QWidget in layouts + // without any disturbances. + // + // The resizing only seems to affect the track view hierarchy and is triggered by Qt's internal mechanisms. + // For example the buttons in the mixer view do not seem to be affected. + // If you want to debug this simply override "PixmapButton::resizeEvent" and trigger a break point in there. + auto buildPixmapButtonWrappedInWidget = [](QWidget* parent, const QString& toolTip, + std::string_view activeGraphic, std::string_view inactiveGraphic, PixmapButton*& pixmapButton) { - m_muteBtn->move( 46, 0 ); - m_soloBtn->move( 46, 16 ); - } - else - { - m_muteBtn->move( 46, 8 ); - m_soloBtn->move( 62, 8 ); - } + const auto activePixmap = embed::getIconPixmap(activeGraphic); + const auto inactivePixmap = embed::getIconPixmap(inactiveGraphic); - m_muteBtn->show(); - m_muteBtn->setToolTip(tr("Mute")); + auto wrapperWidget = new QWidget(parent); - m_soloBtn->show(); - m_soloBtn->setToolTip(tr("Solo")); + auto button = new PixmapButton(wrapperWidget, toolTip); + button->setCheckable(true); + button->setActiveGraphic(activePixmap); + button->setInactiveGraphic(inactivePixmap); + button->setToolTip(toolTip); + + wrapperWidget->setFixedSize(button->minimumSizeHint()); + + pixmapButton = button; + + return wrapperWidget; + }; + + auto muteWidget = buildPixmapButtonWrappedInWidget(operationsWidget, tr("Mute"), "mute_active", "mute_inactive", m_muteBtn); + auto soloWidget = buildPixmapButtonWrappedInWidget(operationsWidget, tr("Solo"), "solo_active", "solo_inactive", m_soloBtn); + + operationsLayout->addWidget(m_trackOps); + operationsLayout->addWidget(muteWidget); + operationsLayout->addWidget(soloWidget); + + layout->addWidget(operationsWidget, 0, Qt::AlignTop | Qt::AlignLeading); connect( this, SIGNAL(trackRemovalScheduled(lmms::gui::TrackView*)), m_trackView->trackContainerView(), @@ -116,11 +144,6 @@ TrackOperationsWidget::TrackOperationsWidget( TrackView * parent ) : } - - - - - /*! \brief Respond to trackOperationsWidget mouse events * * If it's the left mouse button, and Ctrl is held down, and we're @@ -133,9 +156,8 @@ TrackOperationsWidget::TrackOperationsWidget( TrackView * parent ) : */ void TrackOperationsWidget::mousePressEvent( QMouseEvent * me ) { - if( me->button() == Qt::LeftButton && - me->modifiers() & Qt::ControlModifier && - m_trackView->getTrack()->type() != Track::Type::Pattern) + if (me->button() == Qt::LeftButton && me->modifiers() & KBD_COPY_MODIFIER && + m_trackView->getTrack()->type() != Track::Type::Pattern) { DataFile dataFile( DataFile::Type::DragNDropData ); m_trackView->getTrack()->saveState( dataFile, dataFile.content() ); @@ -152,33 +174,17 @@ void TrackOperationsWidget::mousePressEvent( QMouseEvent * me ) } - - -/*! \brief Repaint the trackOperationsWidget +/*! + * \brief Repaint the trackOperationsWidget * - * If we're not moving, and in the Pattern Editor, then turn - * automation on or off depending on its previous state and show - * ourselves. - * - * Otherwise, hide ourselves. - * - * \todo Flesh this out a bit - is it correct? - * \param pe The paint event to respond to + * Only things that's done for now is to paint the background + * with the brush of the window from the palette. */ -void TrackOperationsWidget::paintEvent( QPaintEvent * pe ) +void TrackOperationsWidget::paintEvent(QPaintEvent*) { QPainter p( this ); p.fillRect(rect(), palette().brush(QPalette::Window)); - - if (m_trackView->getTrack()->color().has_value() && !m_trackView->getTrack()->getMutedModel()->value()) - { - QRect coloredRect( 0, 0, 10, m_trackView->getTrack()->getHeight() ); - - p.fillRect(coloredRect, m_trackView->getTrack()->color().value()); - } - - p.drawPixmap(2, 2, embed::getIconPixmap(m_trackView->isMovingTrack() ? "track_op_grip_c" : "track_op_grip")); } @@ -199,7 +205,7 @@ bool TrackOperationsWidget::confirmRemoval() ConfigManager::inst()->setValue("ui", "trackdeletionwarning", state ? "0" : "1"); }); - QMessageBox mb(this); + QMessageBox mb; mb.setText(messageRemoveTrack); mb.setWindowTitle(messageTitleRemoveTrack); mb.setIcon(QMessageBox::Warning); @@ -208,17 +214,9 @@ bool TrackOperationsWidget::confirmRemoval() mb.setCheckBox(askAgainCheckBox); mb.setDefaultButton(QMessageBox::Cancel); - int answer = mb.exec(); - - if( answer == QMessageBox::Ok ) - { - return true; - } - return false; + return mb.exec() == QMessageBox::Ok; } - - /*! \brief Clone this track * */ @@ -256,7 +254,6 @@ void TrackOperationsWidget::clearTrack() } - /*! \brief Remove this track from the track list * */ @@ -310,6 +307,7 @@ void TrackOperationsWidget::resetClipColors() Engine::getSong()->setModified(); } + /*! \brief Update the trackOperationsWidget context menu * * For all track types, we have the Clone and Remove options. @@ -376,7 +374,6 @@ void TrackOperationsWidget::toggleRecording( bool on ) } - void TrackOperationsWidget::recordingOn() { toggleRecording( true ); diff --git a/src/gui/tracks/TrackView.cpp b/src/gui/tracks/TrackView.cpp index e23236021..ecd397975 100644 --- a/src/gui/tracks/TrackView.cpp +++ b/src/gui/tracks/TrackView.cpp @@ -41,6 +41,7 @@ #include "PixmapButton.h" #include "StringPairDrag.h" #include "Track.h" +#include "TrackGrip.h" #include "TrackContainerView.h" #include "ClipView.h" @@ -102,6 +103,10 @@ TrackView::TrackView( Track * track, TrackContainerView * tcv ) : connect( &m_track->m_soloModel, SIGNAL(dataChanged()), m_track, SLOT(toggleSolo()), Qt::DirectConnection ); + + auto trackGrip = m_trackOperationsWidget.getTrackGrip(); + connect(trackGrip, &TrackGrip::grabbed, this, &TrackView::onTrackGripGrabbed); + connect(trackGrip, &TrackGrip::released, this, &TrackView::onTrackGripReleased); // create views for already existing clips for (const auto& clip : m_track->m_clips) @@ -284,22 +289,6 @@ void TrackView::mousePressEvent( QMouseEvent * me ) QCursor c( Qt::SizeVerCursor); QApplication::setOverrideCursor( c ); } - else - { - if( me->x()>10 ) // 10 = The width of the grip + 2 pixels to the left and right. - { - QWidget::mousePressEvent( me ); - return; - } - - m_action = Action::Move; - - QCursor c( Qt::SizeVerCursor ); - QApplication::setOverrideCursor( c ); - // update because in move-mode, all elements in - // track-op-widgets are hidden as a visual feedback - m_trackOperationsWidget.update(); - } me->accept(); } @@ -451,6 +440,16 @@ void TrackView::muteChanged() } +void TrackView::onTrackGripGrabbed() +{ + m_action = Action::Move; +} + +void TrackView::onTrackGripReleased() +{ + m_action = Action::None; +} + void TrackView::setIndicatorMute(FadeButton* indicator, bool muted) diff --git a/src/gui/widgets/CPULoadWidget.cpp b/src/gui/widgets/CPULoadWidget.cpp index db1f5cacc..8362e6713 100644 --- a/src/gui/widgets/CPULoadWidget.cpp +++ b/src/gui/widgets/CPULoadWidget.cpp @@ -46,7 +46,6 @@ CPULoadWidget::CPULoadWidget( QWidget * _parent ) : m_changed( true ), m_updateTimer() { - setAttribute( Qt::WA_OpaquePaintEvent, true ); setFixedSize( m_background.width(), m_background.height() ); m_temp = QPixmap( width(), height() ); diff --git a/src/gui/widgets/ComboBox.cpp b/src/gui/widgets/ComboBox.cpp index 0daae1b24..945d30aa3 100644 --- a/src/gui/widgets/ComboBox.cpp +++ b/src/gui/widgets/ComboBox.cpp @@ -32,7 +32,7 @@ #include #include "CaptionMenu.h" -#include "gui_templates.h" +#include "FontHelper.h" #define QT_SUPPORTS_WIDGET_SCREEN (QT_VERSION >= QT_VERSION_CHECK(5,14,0)) #if !QT_SUPPORTS_WIDGET_SCREEN @@ -53,7 +53,7 @@ ComboBox::ComboBox( QWidget * _parent, const QString & _name ) : { setFixedHeight( ComboBox::DEFAULT_HEIGHT ); - setFont(adjustedToPixelSize(font(), 10)); + setFont(adjustedToPixelSize(font(), DEFAULT_FONT_SIZE)); connect( &m_menu, SIGNAL(triggered(QAction*)), this, SLOT(setItem(QAction*))); diff --git a/src/gui/widgets/Fader.cpp b/src/gui/widgets/Fader.cpp index 9a0da4db4..153d8ca1a 100644 --- a/src/gui/widgets/Fader.cpp +++ b/src/gui/widgets/Fader.cpp @@ -55,16 +55,25 @@ #include "embed.h" #include "CaptionMenu.h" #include "ConfigManager.h" +#include "KeyboardShortcuts.h" #include "SimpleTextFloat.h" +namespace +{ + constexpr auto c_dBScalingExponent = 3.f; + //! The dbFS amount after which we drop down to -inf dbFS + constexpr auto c_faderMinDb = -120.f; +} + namespace lmms::gui { SimpleTextFloat* Fader::s_textFloat = nullptr; -Fader::Fader(FloatModel* model, const QString& name, QWidget* parent) : +Fader::Fader(FloatModel* model, const QString& name, QWidget* parent, bool modelIsLinear) : QWidget(parent), - FloatModelView(model, this) + FloatModelView(model, this), + m_modelIsLinear(modelIsLinear) { if (s_textFloat == nullptr) { @@ -72,7 +81,6 @@ Fader::Fader(FloatModel* model, const QString& name, QWidget* parent) : } setWindowTitle(name); - setAttribute(Qt::WA_OpaquePaintEvent, false); // For now resize the widget to the size of the previous background image "fader_background.png" as it was found in the classic and default theme constexpr QSize minimumSize(23, 116); setMinimumSize(minimumSize); @@ -82,15 +90,74 @@ Fader::Fader(FloatModel* model, const QString& name, QWidget* parent) : setHintText("Volume:", "%"); m_conversionFactor = 100.0; + + if (model) + { + // We currently assume that the model is not changed later on and only connect here once + + // This is for example used to update the tool tip which shows the current value of the fader + connect(model, &FloatModel::dataChanged, this, &Fader::modelValueChanged); + + // Trigger manually so that the tool tip is initialized correctly + modelValueChanged(); + } } -Fader::Fader(FloatModel* model, const QString& name, QWidget* parent, const QPixmap& knob) : - Fader(model, name, parent) +Fader::Fader(FloatModel* model, const QString& name, QWidget* parent, const QPixmap& knob, bool modelIsLinear) : + Fader(model, name, parent, modelIsLinear) { m_knob = knob; } +void Fader::adjust(const Qt::KeyboardModifiers & modifiers, AdjustmentDirection direction) +{ + const auto adjustmentDb = determineAdjustmentDelta(modifiers) * (direction == AdjustmentDirection::Down ? -1. : 1.); + adjustByDecibelDelta(adjustmentDb); +} + +void Fader::adjustByDecibelDelta(float value) +{ + adjustModelByDBDelta(value); + + updateTextFloat(); + s_textFloat->setVisibilityTimeOut(1000); +} + +void Fader::adjustByDialog() +{ + bool ok; + + if (modelIsLinear()) + { + auto maxDB = ampToDbfs(model()->maxValue()); + const auto currentValue = model()->value() <= 0. ? c_faderMinDb : ampToDbfs(model()->value()); + + float enteredValue = QInputDialog::getDouble(this, tr("Set value"), + tr("Please enter a new value between %1 and %2:").arg(c_faderMinDb).arg(maxDB), + currentValue, c_faderMinDb, maxDB, model()->getDigitCount(), &ok); + + if (ok) + { + model()->setValue(dbfsToAmp(enteredValue)); + } + return; + } + else + { + // The model already is in dB + auto minv = model()->minValue() * m_conversionFactor; + auto maxv = model()->maxValue() * m_conversionFactor; + float enteredValue = QInputDialog::getDouble(this, tr("Set value"), + tr("Please enter a new value between %1 and %2:").arg(minv).arg(maxv), + model()->getRoundedValue() * m_conversionFactor, minv, maxv, model()->getDigitCount(), &ok); + + if (ok) + { + model()->setValue(enteredValue / m_conversionFactor); + } + } +} void Fader::contextMenuEvent(QContextMenuEvent* ev) { @@ -105,18 +172,13 @@ void Fader::contextMenuEvent(QContextMenuEvent* ev) void Fader::mouseMoveEvent(QMouseEvent* mouseEvent) { - if (m_moveStartPoint >= 0) - { - int dy = m_moveStartPoint - mouseEvent->globalY(); + const int localY = mouseEvent->y(); - float delta = dy * (model()->maxValue() - model()->minValue()) / (float)(height() - (m_knob).height()); + setVolumeByLocalPixelValue(localY); - const auto step = model()->step(); - float newValue = static_cast(static_cast((m_startValue + delta) / step + 0.5)) * step; - model()->setValue(newValue); + updateTextFloat(); - updateTextFloat(); - } + mouseEvent->accept(); } @@ -125,7 +187,7 @@ void Fader::mouseMoveEvent(QMouseEvent* mouseEvent) void Fader::mousePressEvent(QMouseEvent* mouseEvent) { if (mouseEvent->button() == Qt::LeftButton && - !(mouseEvent->modifiers() & Qt::ControlModifier)) + !(mouseEvent->modifiers() & KBD_COPY_MODIFIER)) { AutomatableModel* thisModel = model(); if (thisModel) @@ -134,20 +196,37 @@ void Fader::mousePressEvent(QMouseEvent* mouseEvent) thisModel->saveJournallingState(false); } - if (mouseEvent->y() >= knobPosY() - (m_knob).height() && mouseEvent->y() < knobPosY()) + const int localY = mouseEvent->y(); + const auto knobLowerPosY = calculateKnobPosYFromModel(); + const auto knobUpperPosY = knobLowerPosY - m_knob.height(); + + const auto clickedOnKnob = localY >= knobUpperPosY && localY <= knobLowerPosY; + + if (clickedOnKnob) { - updateTextFloat(); - s_textFloat->show(); + // If the users clicked on the knob we want to compensate for the offset to the center line + // of the knob when dealing with mouse move events. + // This will make it feel like the users have grabbed the knob where they clicked. + const auto knobCenterPos = knobLowerPosY - (m_knob.height() / 2); + m_knobCenterOffset = localY - knobCenterPos; - m_moveStartPoint = mouseEvent->globalY(); - m_startValue = model()->value(); - - mouseEvent->accept(); + // In this case we also will not call setVolumeByLocalPixelValue, i.e. we do not make any immediate + // changes. This should only happen if the users actually move the mouse while grabbing the knob. + // This makes the knobs less "jumpy". } else { - m_moveStartPoint = -1; + // If the users did not click on the knob then we assume that the fader knob's center should move to + // the position of the click. We do not compensate for any offset. + m_knobCenterOffset = 0; + + setVolumeByLocalPixelValue(localY); } + + updateTextFloat(); + s_textFloat->show(); + + mouseEvent->accept(); } else { @@ -159,18 +238,9 @@ void Fader::mousePressEvent(QMouseEvent* mouseEvent) void Fader::mouseDoubleClickEvent(QMouseEvent* mouseEvent) { - bool ok; - // TODO: dbFS handling - auto minv = model()->minValue() * m_conversionFactor; - auto maxv = model()->maxValue() * m_conversionFactor; - float enteredValue = QInputDialog::getDouble(this, tr("Set value"), - tr("Please enter a new value between %1 and %2:").arg(minv).arg(maxv), - model()->getRoundedValue() * m_conversionFactor, minv, maxv, model()->getDigitCount(), &ok); + adjustByDialog(); - if (ok) - { - model()->setValue(enteredValue / m_conversionFactor); - } + mouseEvent->accept(); } @@ -186,20 +256,197 @@ void Fader::mouseReleaseEvent(QMouseEvent* mouseEvent) } } + // Always reset the offset to 0 regardless of which mouse button is pressed + m_knobCenterOffset = 0; + s_textFloat->hide(); } void Fader::wheelEvent (QWheelEvent* ev) { - ev->accept(); const int direction = (ev->angleDelta().y() > 0 ? 1 : -1) * (ev->inverted() ? -1 : 1); - model()->incValue(direction); - updateTextFloat(); - s_textFloat->setVisibilityTimeOut(1000); + const float increment = determineAdjustmentDelta(ev->modifiers()) * direction; + + adjustByDecibelDelta(increment); + + ev->accept(); } +float Fader::determineAdjustmentDelta(const Qt::KeyboardModifiers & modifiers) const +{ + if (modifiers == Qt::ShiftModifier) + { + // The shift is intended to go through the values in very coarse steps as in: + // "Shift into overdrive" + return 3.f; + } + else if (modifiers == Qt::ControlModifier) + { + // The control key gives more control, i.e. it enables more fine-grained adjustments + return 0.1f; + } + else if (modifiers & Qt::AltModifier) + { + // Work around a Qt bug in conjunction with the scroll wheel and the Alt key + return 0.f; + } + + return 1.f; +} + +void Fader::adjustModelByDBDelta(float value) +{ + if (modelIsLinear()) + { + const auto modelValue = model()->value(); + + if (modelValue <= 0.) + { + // We are at -inf dB. Do nothing if we user wishes to decrease. + if (value > 0) + { + // Otherwise set the model to the minimum value supported by the fader. + model()->setValue(dbfsToAmp(c_faderMinDb)); + } + } + else + { + // We can safely compute the dB value as the value is greater than 0 + const auto valueInDB = ampToDbfs(modelValue); + + const auto adjustedValue = valueInDB + value; + + model()->setValue(adjustedValue < c_faderMinDb ? 0. : dbfsToAmp(adjustedValue)); + } + } + else + { + const auto adjustedValue = std::clamp(model()->value() + value, model()->minValue(), model()->maxValue()); + + model()->setValue(adjustedValue); + } +} + +int Fader::calculateKnobPosYFromModel() const +{ + auto* m = model(); + + auto const minV = m->minValue(); + auto const maxV = m->maxValue(); + auto const value = m->value(); + + if (modelIsLinear()) + { + // This method calculates the pixel position where the lower end of + // the fader knob should be for the amplification value in the model. + // + // The following assumes that the model describes an amplification, + // i.e. that values are in [0, max] and that 1 is unity, i.e. 0 dbFS. + + auto const distanceToMin = value - minV; + + // Prevent dbFS calculations with zero or negative values + if (distanceToMin <= 0) + { + return height(); + } + else + { + // Make sure that we do not get values less that the minimum fader dbFS + // for the calculations that will follow. + auto const actualDb = std::max(c_faderMinDb, ampToDbfs(value)); + + const auto scaledRatio = computeScaledRatio(actualDb); + + // This returns results between: + // * m_knob.height() for a ratio of 1 + // * height() for a ratio of 0 + return height() - (height() - m_knob.height()) * scaledRatio; + } + } + else + { + // The model is in dB so we just show that in a linear fashion + + auto const clampedValue = std::clamp(value, minV, maxV); + + auto const ratio = (clampedValue - minV) / (maxV - minV); + + // This returns results between: + // * m_knob.height() for a ratio of 1 + // * height() for a ratio of 0 + return height() - (height() - m_knob.height()) * ratio; + } +} + + +void Fader::setVolumeByLocalPixelValue(int y) +{ + auto* m = model(); + + // Compensate the offset where users have actually clicked + y -= m_knobCenterOffset; + + // The y parameter gives us where the mouse click went. + // Assume that the middle of the fader should go there. + int const lowerFaderKnob = y + (m_knob.height() / 2); + + // In some cases we need the clamped lower position of the fader knob so we can ensure + // that we only set allowed values in the model range. + int const clampedLowerFaderKnob = std::clamp(lowerFaderKnob, m_knob.height(), height()); + + if (modelIsLinear()) + { + if (lowerFaderKnob >= height()) + { + // Check the non-clamped value because otherwise we wouldn't be able to set -inf dB! + model()->setValue(0); + } + else + { + // We are in the case where we set a value that's different from -inf dB so we use the clamped value + // of the lower knob position so that we only set allowed values in the model range. + + // First map the lower knob position to [0, 1] so that we can apply some curve mapping, e.g. + // square, cube, etc. + LinearMap knobMap(float(m_knob.height()), 1., float(height()), 0.); + + // Apply the inverse of what is done in calculateKnobPosYFromModel + auto const knobPos = std::pow(knobMap.map(clampedLowerFaderKnob), 1./c_dBScalingExponent); + + float const maxDb = ampToDbfs(m->maxValue()); + + LinearMap dbMap(1., maxDb, 0., c_faderMinDb); + + float const dbValue = dbMap.map(knobPos); + + // Pull everything that's quieter than the minimum fader dbFS value down to 0 amplification. + // This should not happen due to the steps above but let's be sure. + // Otherwise compute the amplification value from the mapped dbFS value but make sure that we + // do not exceed the maximum dbValue of the model + float ampValue = dbValue < c_faderMinDb ? 0. : dbfsToAmp(std::min(maxDb, dbValue)); + + model()->setValue(ampValue); + } + } + else + { + LinearMap valueMap(float(m_knob.height()), model()->maxValue(), float(height()), model()->minValue()); + + model()->setValue(valueMap.map(clampedLowerFaderKnob)); + } +} + +float Fader::computeScaledRatio(float dBValue) const +{ + const auto maxDb = ampToDbfs(model()->maxValue()); + + const auto ratio = (dBValue - c_faderMinDb) / (maxDb - c_faderMinDb); + + return std::pow(ratio, c_dBScalingExponent); +} /// @@ -246,28 +493,45 @@ void Fader::setPeak_R(float fPeak) // update tooltip showing value and adjust position while changing fader value void Fader::updateTextFloat() { - if (ConfigManager::inst()->value("app", "displaydbfs").toInt() && m_conversionFactor == 100.0) + if (m_conversionFactor == 100.0) { - QString label(tr("Volume: %1 dBFS")); - - auto const modelValue = model()->value(); - if (modelValue <= 0.) - { - s_textFloat->setText(label.arg("-∞")); - } - else - { - s_textFloat->setText(label.arg(ampToDbfs(modelValue), 3, 'f', 2)); - } + s_textFloat->setText(getModelValueAsDbString()); } else { s_textFloat->setText(m_description + " " + QString("%1 ").arg(model()->value() * m_conversionFactor) + " " + m_unit); } - s_textFloat->moveGlobal(this, QPoint(width() + 2, knobPosY() - s_textFloat->height() / 2)); + s_textFloat->moveGlobal(this, QPoint(width() + 2, calculateKnobPosYFromModel() - s_textFloat->height() / 2)); } +void Fader::modelValueChanged() +{ + setToolTip(getModelValueAsDbString()); +} + +QString Fader::getModelValueAsDbString() const +{ + const auto value = model()->value(); + + QString label(tr("Volume: %1 dB")); + + if (modelIsLinear()) + { + if (value <= 0.) + { + return label.arg(tr("-inf")); + } + else + { + return label.arg(ampToDbfs(value), 3, 'f', 2); + } + } + else + { + return label.arg(value, 3, 'f', 2); + } +} void Fader::paintEvent(QPaintEvent* ev) { @@ -276,26 +540,28 @@ void Fader::paintEvent(QPaintEvent* ev) // Draw the levels with peaks paintLevels(ev, painter, !m_levelsDisplayedInDBFS); + if (ConfigManager::inst()->value( "ui", "showfaderticks" ).toInt() && modelIsLinear()) + { + paintFaderTicks(painter); + } + // Draw the knob - painter.drawPixmap((width() - m_knob.width()) / 2, knobPosY() - m_knob.height(), m_knob); + painter.drawPixmap((width() - m_knob.width()) / 2, calculateKnobPosYFromModel() - m_knob.height(), m_knob); } void Fader::paintLevels(QPaintEvent* ev, QPainter& painter, bool linear) { - std::function mapper = [this](float value) { return ampToDbfs(qMax(0.0001f, value)); }; + const auto mapper = linear + ? +[](float value) -> float { return value; } + : +[](float value) -> float { return ampToDbfs(qMax(0.0001f, value)); }; - if (linear) - { - mapper = [this](float value) { return value; }; - } - - const float mappedMinPeak(mapper(m_fMinPeak)); - const float mappedMaxPeak(mapper(m_fMaxPeak)); - const float mappedPeakL(mapper(m_fPeakValue_L)); - const float mappedPeakR(mapper(m_fPeakValue_R)); - const float mappedPersistentPeakL(mapper(m_persistentPeak_L)); - const float mappedPersistentPeakR(mapper(m_persistentPeak_R)); - const float mappedUnity(mapper(1.f)); + const float mappedMinPeak = mapper(m_fMinPeak); + const float mappedMaxPeak = mapper(m_fMaxPeak); + const float mappedPeakL = mapper(m_fPeakValue_L); + const float mappedPeakR = mapper(m_fPeakValue_R); + const float mappedPersistentPeakL = mapper(m_persistentPeak_L); + const float mappedPersistentPeakR = mapper(m_persistentPeak_R); + const float mappedUnity = mapper(1.f); painter.save(); @@ -375,10 +641,10 @@ void Fader::paintLevels(QPaintEvent* ev, QPainter& painter, bool linear) // Please ensure that "clip starts" is the maximum value and that "ok ends" // is the minimum value and that all other values lie inbetween. Otherwise // there will be warnings when the gradient is defined. - const float mappedClipStarts(mapper(dbfsToAmp(0.f))); - const float mappedWarnEnd(mapper(dbfsToAmp(-0.01f))); - const float mappedWarnStart(mapper(dbfsToAmp(-6.f))); - const float mappedOkEnd(mapper(dbfsToAmp(-12.f))); + const float mappedClipStarts = mapper(dbfsToAmp(0.f)); + const float mappedWarnEnd = mapper(dbfsToAmp(-0.01f)); + const float mappedWarnStart = mapper(dbfsToAmp(-6.f)); + const float mappedOkEnd = mapper(dbfsToAmp(-12.f)); // Prepare the gradient for the meters // @@ -436,4 +702,40 @@ void Fader::paintLevels(QPaintEvent* ev, QPainter& painter, bool linear) painter.restore(); } +void Fader::paintFaderTicks(QPainter& painter) +{ + painter.save(); + + const QPen zeroPen(QColor(255, 255, 255, 216), 2.5); + const QPen nonZeroPen(QColor(255, 255, 255, 128), 1.); + + // We use the maximum dB value of the model to calculate the nearest multiple + // of the step size that we use to paint the ticks so that we know the start point. + // This code will paint ticks with steps that are defined by the step size around + // the 0 dB marker. + const auto maxDB = ampToDbfs(model()->maxValue()); + const auto stepSize = 6.f; + const auto startValue = std::floor(maxDB / stepSize) * stepSize; + + for (float i = startValue; i >= c_faderMinDb; i-= stepSize) + { + const auto scaledRatio = computeScaledRatio(i); + const auto maxHeight = height() - (height() - m_knob.height()) * scaledRatio - (m_knob.height() / 2); + + if (approximatelyEqual(i, 0.)) + { + painter.setPen(zeroPen); + } + else + { + painter.setPen(nonZeroPen); + } + + painter.drawLine(QPointF(0, maxHeight), QPointF(1, maxHeight)); + painter.drawLine(QPointF(width() - 1, maxHeight), QPointF(width(), maxHeight)); + } + + painter.restore(); +} + } // namespace lmms::gui diff --git a/src/gui/widgets/FloatModelEditorBase.cpp b/src/gui/widgets/FloatModelEditorBase.cpp index ebd0d3d9d..3c7fe93c7 100644 --- a/src/gui/widgets/FloatModelEditorBase.cpp +++ b/src/gui/widgets/FloatModelEditorBase.cpp @@ -29,14 +29,11 @@ #include #include -#ifndef __USE_XOPEN -#define __USE_XOPEN -#endif - #include "lmms_math.h" #include "CaptionMenu.h" #include "ControllerConnection.h" #include "GuiApplication.h" +#include "KeyboardShortcuts.h" #include "LocaleHelper.h" #include "MainWindow.h" #include "ProjectJournal.h" @@ -159,7 +156,7 @@ void FloatModelEditorBase::dropEvent(QDropEvent * de) void FloatModelEditorBase::mousePressEvent(QMouseEvent * me) { if (me->button() == Qt::LeftButton && - ! (me->modifiers() & Qt::ControlModifier) && + ! (me->modifiers() & KBD_COPY_MODIFIER) && ! (me->modifiers() & Qt::ShiftModifier)) { AutomatableModel *thisModel = model(); @@ -332,7 +329,10 @@ void FloatModelEditorBase::wheelEvent(QWheelEvent * we) } // Compute the number of steps but make sure that we always do at least one step - const float stepMult = std::max(range / numberOfStepsForFullSweep / step, 1.f); + const float currentValue = model()->value(); + const float valueOffset = range / numberOfStepsForFullSweep; + const float scaledValueOffset = model()->scaledValue(model()->inverseScaledValue(currentValue) + valueOffset) - currentValue; + const float stepMult = std::max(scaledValueOffset / step, 1.f); const int inc = direction * stepMult; model()->incValue(inc); @@ -346,40 +346,26 @@ void FloatModelEditorBase::wheelEvent(QWheelEvent * we) void FloatModelEditorBase::setPosition(const QPoint & p) { - const float value = getValue(p) + m_leftOver; + const float valueOffset = getValue(p) + m_leftOver; + const float currentValue = model()->value(); + const float scaledValueOffset = currentValue - model()->scaledValue(model()->inverseScaledValue(currentValue) - valueOffset); const auto step = model()->step(); - const float oldValue = model()->value(); + const float roundedValue = std::round((currentValue - scaledValueOffset) / step) * step; - if (model()->isScaleLogarithmic()) // logarithmic code + if (!approximatelyEqual(roundedValue, currentValue)) { - const float pos = model()->minValue() < 0 - ? oldValue / qMax(qAbs(model()->maxValue()), qAbs(model()->minValue())) - : (oldValue - model()->minValue()) / model()->range(); - const float ratio = 0.1f + qAbs(pos) * 15.f; - float newValue = value * ratio; - if (qAbs(newValue) >= step) - { - float roundedValue = qRound((oldValue - value) / step) * step; - model()->setValue(roundedValue); - m_leftOver = 0.0f; - } - else - { - m_leftOver = value; - } + model()->setValue(roundedValue); + m_leftOver = 0.0f; } - - else // linear code + else { - if (qAbs(value) >= step) + if (valueOffset > 0 && approximatelyEqual(currentValue, model()->minValue())) { - float roundedValue = qRound((oldValue - value) / step) * step; - model()->setValue(roundedValue); m_leftOver = 0.0f; } else { - m_leftOver = value; + m_leftOver = valueOffset; } } } @@ -390,8 +376,7 @@ void FloatModelEditorBase::enterValue() bool ok; float new_val; - if (isVolumeKnob() && - ConfigManager::inst()->value("app", "displaydbfs").toInt()) + if (isVolumeKnob()) { auto const initalValue = model()->getRoundedValue() / 100.0; auto const initialDbValue = initalValue > 0. ? ampToDbfs(initalValue) : -96; @@ -444,8 +429,7 @@ void FloatModelEditorBase::friendlyUpdate() QString FloatModelEditorBase::displayValue() const { - if (isVolumeKnob() && - ConfigManager::inst()->value("app", "displaydbfs").toInt()) + if (isVolumeKnob()) { auto const valueToVolumeRatio = model()->getRoundedValue() / volumeRatio(); return m_description.trimmed() + ( diff --git a/src/gui/widgets/Graph.cpp b/src/gui/widgets/Graph.cpp index 0781d4f11..de4d10792 100644 --- a/src/gui/widgets/Graph.cpp +++ b/src/gui/widgets/Graph.cpp @@ -459,39 +459,31 @@ void Graph::updateGraph() } // namespace gui -graphModel::graphModel( float _min, float _max, int _length, - Model* _parent, bool _default_constructed, float _step ) : - Model( _parent, tr( "Graph" ), _default_constructed ), - m_samples( _length ), - m_length( _length ), - m_minValue( _min ), - m_maxValue( _max ), - m_step( _step ) +graphModel::graphModel(float ymin, float ymax, int length, Model* parent, bool defaultConstructed, float step) : + Model(parent, tr("Graph"), defaultConstructed), + m_samples(length), + m_length(length), + m_minValue(ymin), + m_maxValue(ymax), + m_step(std::clamp(step, 0.f, std::abs(ymax - ymin))) { } -void graphModel::setRange( float _min, float _max ) +void graphModel::setRange(float ymin, float ymax) { - if( _min != m_minValue || _max != m_maxValue ) - { - m_minValue = _min; - m_maxValue = _max; - - if( !m_samples.isEmpty() ) - { - // Trim existing values - for( int i=0; i < length(); i++ ) - { - m_samples[i] = fmaxf( _min, fminf( m_samples[i], _max ) ); - } - } - - emit rangeChanged(); + if (ymin == m_minValue && ymax == m_maxValue) { return; } + // Step sizes less than zero or larger than the entire range of + // values are nonsense, clamp those + m_step = std::clamp(m_step, 0.f, std::abs(ymax - ymin)); + m_minValue = ymin; + m_maxValue = ymax; + // Trim existing values + for (float& sample : m_samples) { + sample = std::clamp(sample, ymin, ymax); } + emit rangeChanged(); } - - void graphModel::setLength( int _length ) { if( _length != m_length ) @@ -732,15 +724,13 @@ void graphModel::clearInvisible() emit samplesChanged( graph_length, full_graph_length - 1 ); } -void graphModel::drawSampleAt( int x, float val ) +void graphModel::drawSampleAt(int x, float val) { - //snap to the grid - val -= ( m_step != 0.0 ) ? fmod( val, m_step ) * m_step : 0; - + // snap to the grid + if (m_step > 0) { val = std::floor(val / m_step) * m_step; } // boundary crop - x = qMax( 0, qMin( length()-1, x ) ); - val = qMax( minValue(), qMin( maxValue(), val ) ); - + x = std::clamp(x, 0, length() - 1); + val = std::clamp(val, minValue(), maxValue()); // change sample shape m_samples[x] = val; } diff --git a/src/gui/widgets/GroupBox.cpp b/src/gui/widgets/GroupBox.cpp index e7d78acb9..041e11c43 100644 --- a/src/gui/widgets/GroupBox.cpp +++ b/src/gui/widgets/GroupBox.cpp @@ -25,14 +25,9 @@ #include #include -#ifndef __USE_XOPEN -#define __USE_XOPEN -#endif - #include "GroupBox.h" #include "embed.h" -#include "gui_templates.h" - +#include "FontHelper.h" namespace lmms::gui { @@ -111,7 +106,7 @@ void GroupBox::paintEvent( QPaintEvent * pe ) // draw text p.setPen( palette().color( QPalette::Active, QPalette::Text ) ); - p.setFont(adjustedToPixelSize(font(), 10)); + p.setFont(adjustedToPixelSize(font(), DEFAULT_FONT_SIZE)); int const captionX = ledButtonShown() ? 22 : 6; p.drawText(captionX, m_titleBarHeight, m_caption); diff --git a/src/gui/widgets/Knob.cpp b/src/gui/widgets/Knob.cpp index d282f72c2..25d2e3e3f 100644 --- a/src/gui/widgets/Knob.cpp +++ b/src/gui/widgets/Knob.cpp @@ -25,15 +25,12 @@ #include "Knob.h" #include - -#ifndef __USE_XOPEN -#define __USE_XOPEN -#endif +#include #include "lmms_math.h" #include "DeprecationHelper.h" #include "embed.h" -#include "gui_templates.h" +#include "FontHelper.h" namespace lmms::gui @@ -139,7 +136,7 @@ void Knob::setLabel( const QString & txt ) if( m_knobPixmap ) { setFixedSize(qMax( m_knobPixmap->width(), - horizontalAdvance(QFontMetrics(adjustedToPixelSize(font(), 10)), m_label)), + horizontalAdvance(QFontMetrics(adjustedToPixelSize(font(), SMALL_FONT_SIZE)), m_label)), m_knobPixmap->height() + 10); } @@ -316,9 +313,9 @@ void Knob::setTextColor( const QColor & c ) QLineF Knob::calculateLine( const QPointF & _mid, float _radius, float _innerRadius ) const { - const float rarc = m_angle * F_PI / 180.0; - const float ca = cos( rarc ); - const float sa = -sin( rarc ); + const float rarc = m_angle * std::numbers::pi_v / 180.0; + const float ca = std::cos(rarc); + const float sa = -std::sin(rarc); return QLineF( _mid.x() - sa*_innerRadius, _mid.y() - ca*_innerRadius, _mid.x() - sa*_radius, _mid.y() - ca*_radius ); @@ -459,7 +456,7 @@ void Knob::paintEvent( QPaintEvent * _me ) { if (!m_isHtmlLabel) { - p.setFont(adjustedToPixelSize(p.font(), 10)); + p.setFont(adjustedToPixelSize(p.font(), SMALL_FONT_SIZE)); p.setPen(textColor()); p.drawText(width() / 2 - horizontalAdvance(p.fontMetrics(), m_label) / 2, @@ -468,7 +465,7 @@ void Knob::paintEvent( QPaintEvent * _me ) else { // TODO setHtmlLabel is never called so this will never be executed. Remove functionality? - m_tdRenderer->setDefaultFont(adjustedToPixelSize(p.font(), 10)); + m_tdRenderer->setDefaultFont(adjustedToPixelSize(p.font(), SMALL_FONT_SIZE)); p.translate((width() - m_tdRenderer->idealWidth()) / 2, (height() - m_tdRenderer->pageSize().height()) / 2); m_tdRenderer->drawContents(&p); } diff --git a/src/gui/widgets/LcdFloatSpinBox.cpp b/src/gui/widgets/LcdFloatSpinBox.cpp index c71d66568..75762b8a1 100644 --- a/src/gui/widgets/LcdFloatSpinBox.cpp +++ b/src/gui/widgets/LcdFloatSpinBox.cpp @@ -41,8 +41,10 @@ #include "DeprecationHelper.h" #include "embed.h" #include "GuiApplication.h" -#include "gui_templates.h" +#include "FontHelper.h" +#include "KeyboardShortcuts.h" #include "MainWindow.h" +#include "lmms_math.h" namespace lmms::gui { @@ -109,7 +111,7 @@ void LcdFloatSpinBox::layoutSetup(const QString &style) void LcdFloatSpinBox::update() { - const int digitValue = std::pow(10.f, m_fractionDisplay.numDigits()); + const int digitValue = fastPow10f(m_fractionDisplay.numDigits()); float value = model()->value(); int fraction = std::abs(std::round((value - static_cast(value)) * digitValue)); if (fraction == digitValue) @@ -138,7 +140,7 @@ void LcdFloatSpinBox::mousePressEvent(QMouseEvent* event) m_intStep = event->x() < m_wholeDisplay.width(); if (event->button() == Qt::LeftButton && - !(event->modifiers() & Qt::ControlModifier) && + !(event->modifiers() & KBD_COPY_MODIFIER) && event->y() < m_wholeDisplay.cellHeight() + 2) { m_mouseMoving = true; @@ -245,7 +247,7 @@ void LcdFloatSpinBox::paintEvent(QPaintEvent*) // Label if (!m_label.isEmpty()) { - p.setFont(adjustedToPixelSize(p.font(), 10)); + p.setFont(adjustedToPixelSize(p.font(), DEFAULT_FONT_SIZE)); p.setPen(m_wholeDisplay.textShadowColor()); p.drawText(width() / 2 - p.fontMetrics().boundingRect(m_label).width() / 2 + 1, height(), m_label); p.setPen(m_wholeDisplay.textColor()); diff --git a/src/gui/widgets/LcdSpinBox.cpp b/src/gui/widgets/LcdSpinBox.cpp index 3f12360cc..9d04d5fdb 100644 --- a/src/gui/widgets/LcdSpinBox.cpp +++ b/src/gui/widgets/LcdSpinBox.cpp @@ -28,6 +28,7 @@ #include #include "LcdSpinBox.h" +#include "KeyboardShortcuts.h" #include "CaptionMenu.h" @@ -79,7 +80,7 @@ void LcdSpinBox::contextMenuEvent(QContextMenuEvent* event) void LcdSpinBox::mousePressEvent( QMouseEvent* event ) { if( event->button() == Qt::LeftButton && - ! ( event->modifiers() & Qt::ControlModifier ) && + ! (event->modifiers() & KBD_COPY_MODIFIER) && event->y() < cellHeight() + 2 ) { m_mouseMoving = true; diff --git a/src/gui/widgets/LcdWidget.cpp b/src/gui/widgets/LcdWidget.cpp index 7370a939f..4b07af6f7 100644 --- a/src/gui/widgets/LcdWidget.cpp +++ b/src/gui/widgets/LcdWidget.cpp @@ -31,7 +31,7 @@ #include "LcdWidget.h" #include "DeprecationHelper.h" #include "embed.h" -#include "gui_templates.h" +#include "FontHelper.h" namespace lmms::gui @@ -209,7 +209,7 @@ void LcdWidget::paintEvent( QPaintEvent* ) // Label if( !m_label.isEmpty() ) { - p.setFont(adjustedToPixelSize(p.font(), 10)); + p.setFont(adjustedToPixelSize(p.font(), DEFAULT_FONT_SIZE)); p.setPen( textShadowColor() ); p.drawText(width() / 2 - horizontalAdvance(p.fontMetrics(), m_label) / 2 + 1, @@ -261,7 +261,7 @@ void LcdWidget::updateSize() setFixedSize( qMax( m_cellWidth * m_numDigits + marginX1 + marginX2, - horizontalAdvance(QFontMetrics(adjustedToPixelSize(font(), 10)), m_label) + horizontalAdvance(QFontMetrics(adjustedToPixelSize(font(), DEFAULT_FONT_SIZE)), m_label) ), m_cellHeight + (2 * marginY) + 9 ); diff --git a/src/gui/widgets/LedCheckBox.cpp b/src/gui/widgets/LedCheckBox.cpp index c26e21039..850393356 100644 --- a/src/gui/widgets/LedCheckBox.cpp +++ b/src/gui/widgets/LedCheckBox.cpp @@ -30,7 +30,7 @@ #include "DeprecationHelper.h" #include "embed.h" -#include "gui_templates.h" +#include "FontHelper.h" namespace lmms::gui { @@ -93,7 +93,7 @@ void LedCheckBox::initUi( LedColor _color ) m_ledOnPixmap = embed::getIconPixmap(names[static_cast(_color)].toUtf8().constData()); m_ledOffPixmap = embed::getIconPixmap("led_off"); - if (m_legacyMode){ setFont(adjustedToPixelSize(font(), 10)); } + if (m_legacyMode){ setFont(adjustedToPixelSize(font(), DEFAULT_FONT_SIZE)); } setText( m_text ); } @@ -114,7 +114,7 @@ void LedCheckBox::onTextUpdated() void LedCheckBox::paintLegacy(QPaintEvent * pe) { QPainter p( this ); - p.setFont(adjustedToPixelSize(font(), 10)); + p.setFont(adjustedToPixelSize(font(), DEFAULT_FONT_SIZE)); p.drawPixmap(0, 0, model()->value() ? m_ledOnPixmap : m_ledOffPixmap); diff --git a/src/gui/widgets/MixerChannelLcdSpinBox.cpp b/src/gui/widgets/MixerChannelLcdSpinBox.cpp index 8a67394de..73e21b479 100644 --- a/src/gui/widgets/MixerChannelLcdSpinBox.cpp +++ b/src/gui/widgets/MixerChannelLcdSpinBox.cpp @@ -24,6 +24,9 @@ #include "MixerChannelLcdSpinBox.h" +#include +#include + #include "CaptionMenu.h" #include "MixerView.h" #include "GuiApplication.h" @@ -40,6 +43,13 @@ void MixerChannelLcdSpinBox::setTrackView(TrackView * tv) void MixerChannelLcdSpinBox::mouseDoubleClickEvent(QMouseEvent* event) { + if (!(event->modifiers() & Qt::ShiftModifier) && + !(event->modifiers() & Qt::ControlModifier)) + { + enterValue(); + return; + } + getGUI()->mixerView()->setCurrentMixerChannel(model()->value()); getGUI()->mixerView()->parentWidget()->show(); @@ -69,5 +79,18 @@ void MixerChannelLcdSpinBox::contextMenuEvent(QContextMenuEvent* event) contextMenu->exec(QCursor::pos()); } +void MixerChannelLcdSpinBox::enterValue() +{ + const auto val = model()->value(); + const auto min = model()->minValue(); + const auto max = model()->maxValue(); + const auto step = model()->step(); + const auto label = tr("Please enter a new value between %1 and %2:").arg(min).arg(max); + + auto ok = false; + const auto newVal = QInputDialog::getInt(this, tr("Set value"), label, val, min, max, step, &ok); + + if (ok) { model()->setValue(newVal); } +} } // namespace lmms::gui diff --git a/src/gui/widgets/Oscilloscope.cpp b/src/gui/widgets/Oscilloscope.cpp index 775bd96a8..bf66fa465 100644 --- a/src/gui/widgets/Oscilloscope.cpp +++ b/src/gui/widgets/Oscilloscope.cpp @@ -28,7 +28,7 @@ #include "Oscilloscope.h" #include "GuiApplication.h" -#include "gui_templates.h" +#include "FontHelper.h" #include "MainWindow.h" #include "AudioEngine.h" #include "Engine.h" @@ -51,7 +51,6 @@ Oscilloscope::Oscilloscope( QWidget * _p ) : m_clippingColor(255, 64, 64) { setFixedSize( m_background.width(), m_background.height() ); - setAttribute( Qt::WA_OpaquePaintEvent, true ); setActive( ConfigManager::inst()->value( "ui", "displaywaveform").toInt() ); const fpp_t frames = Engine::audioEngine()->framesPerPeriod(); @@ -203,7 +202,7 @@ void Oscilloscope::paintEvent( QPaintEvent * ) else { p.setPen( QColor( 192, 192, 192 ) ); - p.setFont(adjustedToPixelSize(p.font(), 10)); + p.setFont(adjustedToPixelSize(p.font(), DEFAULT_FONT_SIZE)); p.drawText( 6, height()-5, tr( "Click to enable" ) ); } } diff --git a/src/gui/widgets/PixmapButton.cpp b/src/gui/widgets/PixmapButton.cpp index 069acad56..bd683ed71 100644 --- a/src/gui/widgets/PixmapButton.cpp +++ b/src/gui/widgets/PixmapButton.cpp @@ -107,7 +107,7 @@ void PixmapButton::mouseDoubleClickEvent( QMouseEvent * _me ) void PixmapButton::setActiveGraphic( const QPixmap & _pm ) { m_activePixmap = _pm; - resize( m_activePixmap.width(), m_activePixmap.height() ); + resize(m_activePixmap.size() / m_activePixmap.devicePixelRatio()); } @@ -124,16 +124,15 @@ void PixmapButton::setInactiveGraphic( const QPixmap & _pm, bool _update ) QSize PixmapButton::sizeHint() const { - if (isActive()) - { - return m_activePixmap.size(); - } - else - { - return m_inactivePixmap.size(); - } + return minimumSizeHint(); } +QSize PixmapButton::minimumSizeHint() const +{ + const auto activeSize = m_activePixmap.size() / m_activePixmap.devicePixelRatio(); + const auto inactiveSize = m_inactivePixmap.size() / m_inactivePixmap.devicePixelRatio(); + return activeSize.expandedTo(inactiveSize); +} bool PixmapButton::isActive() const { diff --git a/src/gui/widgets/TabWidget.cpp b/src/gui/widgets/TabWidget.cpp index a370c1ea9..81fae1c04 100644 --- a/src/gui/widgets/TabWidget.cpp +++ b/src/gui/widgets/TabWidget.cpp @@ -33,7 +33,7 @@ #include "DeprecationHelper.h" #include "embed.h" -#include "gui_templates.h" +#include "FontHelper.h" namespace lmms::gui { @@ -58,7 +58,7 @@ TabWidget::TabWidget(const QString& caption, QWidget* parent, bool usePixmap, m_tabheight = caption.isEmpty() ? m_tabbarHeight - 3 : m_tabbarHeight - 4; - setFont(adjustedToPixelSize(font(), 10)); + setFont(adjustedToPixelSize(font(), DEFAULT_FONT_SIZE)); setAutoFillBackground(true); QColor bg_color = QApplication::palette().color(QPalette::Active, QPalette::Window).darker(132); @@ -214,7 +214,7 @@ void TabWidget::resizeEvent(QResizeEvent*) void TabWidget::paintEvent(QPaintEvent* pe) { QPainter p(this); - p.setFont(adjustedToPixelSize(font(), 10)); + p.setFont(adjustedToPixelSize(font(), DEFAULT_FONT_SIZE)); // Draw background QBrush bg_color = p.background(); diff --git a/src/gui/widgets/TextFloat.cpp b/src/gui/widgets/TextFloat.cpp index 4eb14bd50..bd3ed03bc 100644 --- a/src/gui/widgets/TextFloat.cpp +++ b/src/gui/widgets/TextFloat.cpp @@ -44,7 +44,7 @@ TextFloat::TextFloat() : } TextFloat::TextFloat(const QString & title, const QString & text, const QPixmap & pixmap) : - QWidget(getGUI()->mainWindow(), Qt::ToolTip) + QWidget(getGUI()->mainWindow(), Qt::Tool | Qt::FramelessWindowHint) { QHBoxLayout * mainLayout = new QHBoxLayout(); setLayout(mainLayout); diff --git a/src/tracks/AutomationTrack.cpp b/src/tracks/AutomationTrack.cpp index e353197f8..1ff30ac76 100644 --- a/src/tracks/AutomationTrack.cpp +++ b/src/tracks/AutomationTrack.cpp @@ -66,8 +66,7 @@ Clip* AutomationTrack::createClip(const TimePos & pos) -void AutomationTrack::saveTrackSpecificSettings( QDomDocument & _doc, - QDomElement & _this ) +void AutomationTrack::saveTrackSpecificSettings(QDomDocument& doc, QDomElement& _this, bool presetMode) { } diff --git a/src/tracks/InstrumentTrack.cpp b/src/tracks/InstrumentTrack.cpp index be18fc9e4..70ac7432e 100644 --- a/src/tracks/InstrumentTrack.cpp +++ b/src/tracks/InstrumentTrack.cpp @@ -46,30 +46,29 @@ namespace lmms { -InstrumentTrack::InstrumentTrack( TrackContainer* tc ) : - Track( Track::Type::Instrument, tc ), +InstrumentTrack::InstrumentTrack(TrackContainer* tc) : + Track(Track::Type::Instrument, tc), MidiEventProcessor(), - m_midiPort( tr( "unnamed_track" ), Engine::audioEngine()->midiClient(), - this, this ), + m_midiPort(tr("unnamed_track"), Engine::audioEngine()->midiClient(), this, this), m_notes(), - m_sustainPedalPressed( false ), - m_silentBuffersProcessed( false ), - m_previewMode( false ), + m_sustainPedalPressed(false), + m_silentBuffersProcessed(false), + m_previewMode(false), m_baseNoteModel(0, 0, NumKeys - 1, this, tr("Base note")), m_firstKeyModel(0, 0, NumKeys - 1, this, tr("First note")), m_lastKeyModel(0, 0, NumKeys - 1, this, tr("Last note")), - m_hasAutoMidiDev( false ), - m_volumeModel( DefaultVolume, MinVolume, MaxVolume, 0.1f, this, tr( "Volume" ) ), - m_panningModel( DefaultPanning, PanningLeft, PanningRight, 0.1f, this, tr( "Panning" ) ), - m_audioPort( tr( "unnamed_track" ), true, &m_volumeModel, &m_panningModel, &m_mutedModel ), - m_pitchModel( 0, MinPitchDefault, MaxPitchDefault, 1, this, tr( "Pitch" ) ), - m_pitchRangeModel( 1, 1, 60, this, tr( "Pitch range" ) ), - m_mixerChannelModel( 0, 0, 0, this, tr( "Mixer channel" ) ), - m_useMasterPitchModel( true, this, tr( "Master pitch") ), - m_instrument( nullptr ), - m_soundShaping( this ), - m_arpeggio( this ), - m_noteStacking( this ), + m_hasAutoMidiDev(false), + m_volumeModel(DefaultVolume, MinVolume, MaxVolume, 0.1f, this, tr("Volume")), + m_panningModel(DefaultPanning, PanningLeft, PanningRight, 0.1f, this, tr("Panning")), + m_audioBusHandle(tr("unnamed_track"), true, &m_volumeModel, &m_panningModel, &m_mutedModel), + m_pitchModel(0, MinPitchDefault, MaxPitchDefault, 1, this, tr("Pitch")), + m_pitchRangeModel(1, 1, 60, this, tr("Pitch range")), + m_mixerChannelModel(0, 0, 0, this, tr("Mixer channel")), + m_useMasterPitchModel(true, this, tr("Master pitch")), + m_instrument(nullptr), + m_soundShaping(this), + m_arpeggio(this), + m_noteStacking(this), m_piano(this), m_microtuner() { @@ -250,7 +249,7 @@ void InstrumentTrack::processAudioBuffer( SampleFrame* buf, const fpp_t frames, // if effects "went to sleep" because there was no input, wake them up // now - m_audioPort.effects()->startRunning(); + m_audioBusHandle.effects()->startRunning(); // get volume knob data static const float DefaultVolumeRatio = 1.0f / DefaultVolume; @@ -620,11 +619,11 @@ void InstrumentTrack::deleteNotePluginData( NotePlayHandle* n ) -void InstrumentTrack::setName( const QString & _new_name ) +void InstrumentTrack::setName(const QString& new_name) { - Track::setName( _new_name ); - m_midiPort.setName( name() ); - m_audioPort.setName( name() ); + Track::setName(new_name); + m_midiPort.setName(name()); + m_audioBusHandle.setName(name()); } @@ -672,7 +671,7 @@ void InstrumentTrack::updatePitchRange() void InstrumentTrack::updateMixerChannel() { - m_audioPort.setNextMixerChannel( m_mixerChannelModel.value() ); + m_audioBusHandle.setNextMixerChannel(m_mixerChannelModel.value()); } @@ -821,7 +820,7 @@ gui::TrackView* InstrumentTrack::createView( gui::TrackContainerView* tcv ) -void InstrumentTrack::saveTrackSpecificSettings( QDomDocument& doc, QDomElement & thisElement ) +void InstrumentTrack::saveTrackSpecificSettings(QDomDocument& doc, QDomElement& thisElement, bool presetMode) { m_volumeModel.saveSettings( doc, thisElement, "vol" ); m_panningModel.saveSettings( doc, thisElement, "pan" ); @@ -860,7 +859,7 @@ void InstrumentTrack::saveTrackSpecificSettings( QDomDocument& doc, QDomElement // Save the midi port info if we are not in song saving mode, e.g. in // track cloning mode or if we are in song saving mode and the user - // has chosen to discard the MIDI connections. + // has chosen not to discard the MIDI connections. if (!Engine::getSong()->isSavingProject() || !Engine::getSong()->getSaveOptions().discardMIDIConnections.value()) { @@ -868,12 +867,16 @@ void InstrumentTrack::saveTrackSpecificSettings( QDomDocument& doc, QDomElement bool hasAuto = m_hasAutoMidiDev; autoAssignMidiDevice(false); - m_midiPort.saveState( doc, thisElement ); + // Only save the MIDI port information if we are not saving a preset. + if (!presetMode) + { + m_midiPort.saveState(doc, thisElement); + } autoAssignMidiDevice(hasAuto); } - m_audioPort.effects()->saveState( doc, thisElement ); + m_audioBusHandle.effects()->saveState(doc, thisElement); } @@ -905,7 +908,7 @@ void InstrumentTrack::loadTrackSpecificSettings( const QDomElement & thisElement m_microtuner.loadSettings(thisElement); // clear effect-chain just in case we load an old preset without FX-data - m_audioPort.effects()->clear(); + m_audioBusHandle.effects()->clear(); // We set MIDI CC enable to false so the knobs don't trigger MIDI CC events while // they are being loaded. After all knobs are loaded we load the right value of m_midiCCEnable. @@ -932,9 +935,9 @@ void InstrumentTrack::loadTrackSpecificSettings( const QDomElement & thisElement { m_midiPort.restoreState( node.toElement() ); } - else if( m_audioPort.effects()->nodeName() == node.nodeName() ) + else if (m_audioBusHandle.effects()->nodeName() == node.nodeName()) { - m_audioPort.effects()->restoreState( node.toElement() ); + m_audioBusHandle.effects()->restoreState(node.toElement()); } else if(node.nodeName() == "instrument") { @@ -1007,14 +1010,13 @@ void InstrumentTrack::replaceInstrument(DataFile dataFile) int mixerChannel = mixerChannelModel()->value(); InstrumentTrack::removeMidiPortNode(dataFile); - setSimpleSerializing(); //Replacing an instrument shouldn't change the solo/mute state. bool oldMute = isMuted(); bool oldSolo = isSolo(); bool oldMutedBeforeSolo = isMutedBeforeSolo(); - loadSettings(dataFile.content().toElement()); + loadPreset(dataFile.content().toElement()); setMuted(oldMute); setSolo(oldSolo); diff --git a/src/tracks/MidiClip.cpp b/src/tracks/MidiClip.cpp index 409fb60ae..ab5321687 100644 --- a/src/tracks/MidiClip.cpp +++ b/src/tracks/MidiClip.cpp @@ -344,6 +344,48 @@ void MidiClip::splitNotes(const NoteVector& notes, TimePos pos) } } +void MidiClip::splitNotesAlongLine(const NoteVector notes, TimePos pos1, int key1, TimePos pos2, int key2, bool deleteShortEnds) +{ + if (notes.empty()) { return; } + + // Don't split if the line is horitzontal + if (key1 == key2) { return; } + + addJournalCheckPoint(); + + const auto slope = 1.f * (pos2 - pos1) / (key2 - key1); + const auto& [minKey, maxKey] = std::minmax(key1, key2); + + for (const auto& note : notes) + { + // Skip if the key is <= to minKey, since the line is drawn from the top of minKey to the top of maxKey, but only passes through maxKey - minKey - 1 total keys. + if (note->key() <= minKey || note->key() > maxKey) { continue; } + + // Subtracting 0.5 to get the line's intercept at the "center" of the key, not the top. + const TimePos keyIntercept = slope * (note->key() - 0.5 - key1) + pos1; + if (note->pos() < keyIntercept && note->endPos() > keyIntercept) + { + auto newNote1 = Note{*note}; + newNote1.setLength(keyIntercept - note->pos()); + + auto newNote2 = Note{*note}; + newNote2.setPos(keyIntercept); + newNote2.setLength(note->endPos() - keyIntercept); + + if (deleteShortEnds) + { + addNote(newNote1.length() >= newNote2.length() ? newNote1 : newNote2, false); + } + else + { + addNote(newNote1, false); + addNote(newNote2, false); + } + + removeNote(note); + } + } +} diff --git a/src/tracks/PatternTrack.cpp b/src/tracks/PatternTrack.cpp index bdde4780c..697a7c2a8 100644 --- a/src/tracks/PatternTrack.cpp +++ b/src/tracks/PatternTrack.cpp @@ -154,7 +154,7 @@ Clip* PatternTrack::createClip(const TimePos & pos) -void PatternTrack::saveTrackSpecificSettings(QDomDocument& doc, QDomElement& _this) +void PatternTrack::saveTrackSpecificSettings(QDomDocument& doc, QDomElement& _this, bool presetMode) { // _this.setAttribute( "icon", m_trackLabel->pixmapFile() ); /* _this.setAttribute( "current", s_infoMap[this] == diff --git a/src/tracks/SampleTrack.cpp b/src/tracks/SampleTrack.cpp index be7393d27..5d6c61f28 100644 --- a/src/tracks/SampleTrack.cpp +++ b/src/tracks/SampleTrack.cpp @@ -29,7 +29,7 @@ #include "EffectChain.h" #include "Mixer.h" -#include "panning_constants.h" +#include "panning.h" #include "PatternStore.h" #include "PatternTrack.h" #include "SampleClip.h" @@ -49,7 +49,7 @@ SampleTrack::SampleTrack(TrackContainer* tc) : m_volumeModel(DefaultVolume, MinVolume, MaxVolume, 0.1f, this, tr("Volume")), m_panningModel(DefaultPanning, PanningLeft, PanningRight, 0.1f, this, tr("Panning")), m_mixerChannelModel(0, 0, 0, this, tr("Mixer channel")), - m_audioPort(tr("Sample track"), true, &m_volumeModel, &m_panningModel, &m_mutedModel), + m_audioBusHandle(tr("Sample track"), true, &m_volumeModel, &m_panningModel, &m_mutedModel), m_isPlaying(false) { setName(tr("Sample track")); @@ -73,7 +73,7 @@ SampleTrack::~SampleTrack() bool SampleTrack::play( const TimePos & _start, const fpp_t _frames, const f_cnt_t _offset, int _clip_num ) { - m_audioPort.effects()->startRunning(); + m_audioBusHandle.effects()->startRunning(); bool played_a_note = false; // will be return variable @@ -197,40 +197,36 @@ Clip * SampleTrack::createClip(const TimePos & pos) -void SampleTrack::saveTrackSpecificSettings( QDomDocument & _doc, - QDomElement & _this ) +void SampleTrack::saveTrackSpecificSettings(QDomDocument& doc, QDomElement& thisElem, bool /*presetMode*/) { - m_audioPort.effects()->saveState( _doc, _this ); -#if 0 - _this.setAttribute( "icon", tlb->pixmapFile() ); -#endif - m_volumeModel.saveSettings( _doc, _this, "vol" ); - m_panningModel.saveSettings( _doc, _this, "pan" ); - m_mixerChannelModel.saveSettings( _doc, _this, "mixch" ); + m_audioBusHandle.effects()->saveState(doc, thisElem); + m_volumeModel.saveSettings(doc, thisElem, "vol"); + m_panningModel.saveSettings(doc, thisElem, "pan"); + m_mixerChannelModel.saveSettings(doc, thisElem, "mixch"); } -void SampleTrack::loadTrackSpecificSettings( const QDomElement & _this ) +void SampleTrack::loadTrackSpecificSettings(const QDomElement & thisElem) { - QDomNode node = _this.firstChild(); - m_audioPort.effects()->clear(); - while( !node.isNull() ) + QDomNode node = thisElem.firstChild(); + m_audioBusHandle.effects()->clear(); + while(!node.isNull()) { - if( node.isElement() ) + if (node.isElement()) { - if( m_audioPort.effects()->nodeName() == node.nodeName() ) + if (m_audioBusHandle.effects()->nodeName() == node.nodeName()) { - m_audioPort.effects()->restoreState( node.toElement() ); + m_audioBusHandle.effects()->restoreState(node.toElement()); } } node = node.nextSibling(); } - m_volumeModel.loadSettings( _this, "vol" ); - m_panningModel.loadSettings( _this, "pan" ); - m_mixerChannelModel.setRange( 0, Engine::mixer()->numChannels() - 1 ); - m_mixerChannelModel.loadSettings( _this, "mixch" ); + m_volumeModel.loadSettings(thisElem, "vol"); + m_panningModel.loadSettings(thisElem, "pan"); + m_mixerChannelModel.setRange(0, Engine::mixer()->numChannels() - 1); + m_mixerChannelModel.loadSettings(thisElem, "mixch"); } @@ -260,7 +256,7 @@ void SampleTrack::setPlayingClips( bool isPlaying ) void SampleTrack::updateMixerChannel() { - m_audioPort.setNextMixerChannel( m_mixerChannelModel.value() ); + m_audioBusHandle.setNextMixerChannel(m_mixerChannelModel.value()); } diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 625601a3e..7d7b499af 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -28,5 +28,5 @@ foreach(LMMS_TEST_SRC IN LISTS LMMS_TESTS) ${QT_QTTEST_LIBRARY} ) - target_compile_features(${LMMS_TEST_NAME} PRIVATE cxx_std_17) + target_compile_features(${LMMS_TEST_NAME} PRIVATE cxx_std_20) endforeach()